From cabbca85b518f561d0dc2b7a7ec11d6922785b86 Mon Sep 17 00:00:00 2001
From: liukangdong <898885815@qq.com>
Date: 星期三, 10 七月 2024 17:52:38 +0800
Subject: [PATCH] Merge branch 'master' of http://139.186.142.91:10010/r/productDev/zbomyoujia

---
 wechat_jiaxuan/pages/calculator/index.wxss |  164 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 164 insertions(+), 0 deletions(-)

diff --git a/wechat_jiaxuan/pages/calculator/index.wxss b/wechat_jiaxuan/pages/calculator/index.wxss
new file mode 100644
index 0000000..85e9ded
--- /dev/null
+++ b/wechat_jiaxuan/pages/calculator/index.wxss
@@ -0,0 +1,164 @@
+/* pages/calculator/index.wxss */
+.container {
+  color: #fff;
+  background-position: center;
+  background-repeat: no-repeat;
+  background-size: cover;
+  position: relative;
+  overflow: hidden;
+}
+
+.container::before {
+  content: '';
+  display: block;
+  width: 100%;
+  height: 100%;
+  top: 0;
+  left: 0;
+  background-color: rgba(255,255,255,0.5);
+  position: absolute;
+}
+
+.container-content {
+  background-color: rgba(0,0,0,0.75);
+  position: absolute;
+  height: 100%;
+  width: 100%;
+  left: 0;
+  right: 0;
+}
+
+.top-head-transparent {
+  background-color: transparent!important;
+}
+
+.top-head-transparent .van-icon.van-icon-arrow-left {
+  font-size: 40rpx!important;
+  color: #fff!important;
+}
+
+.calculator {
+  padding: 40rpx;
+}
+
+.calculator .title {
+  font-size: 52rpx;
+  padding: 60rpx 0 20rpx;
+}
+
+.calculator .tips {
+  font-size: 28rpx;
+  margin-bottom: 70rpx;
+  opacity: 0.8;
+}
+
+.calculator .form-item {
+  display: flex;
+  height: 88rpx;
+  line-height: 88rpx;
+  margin-bottom: 40rpx;
+}
+
+.calculator .input-box {
+  display: flex;
+  flex: 1;
+  border: 1px solid #fff;
+  background-color: rgba(0,0,0,0.1);
+  padding: 0 40rpx;
+  border-radius: 8rpx;
+}
+
+.calculator .input-box .input,
+.calculator .input-box .select {
+  flex: 1;
+  height: 88rpx;
+  line-height: 88rpx;
+}
+
+.calculator .input-box .placeholder {
+  color: rgba(255,255,255,0.6);
+}
+
+.calculator .submit-btn {
+  text-align: center;
+  line-height: 100rpx;
+  height: 100rpx;
+  background: linear-gradient(180deg, #E0B49C 0%, #B68B74 100%);
+box-shadow: 0rpx 4rpx 16rpx 0rpx rgba(176,135,113,0.3000), inset 0rpx 2rpx 2rpx 0rpx rgba(255,255,255,0.3300);
+border-radius: 8rpx;
+  width: 100%;
+  font-size: 32rpx;
+  color: #fff;
+}
+
+.popup-content .btn {
+  padding: 40rpx;
+}
+
+.popup-content .btn-cancel {
+  color: #999999;
+}
+
+.popup-content .btn-confirm {
+  color: #222222;
+}
+
+.picker {
+  height: 100%;
+  width: 100%;
+}
+
+.results {
+  background-color: #f7f7f7;
+  color: #222;
+  text-align: center;
+  margin: 0 30rpx 60rpx;
+  border-radius: 8rpx;
+  padding: 30rpx;
+}
+
+.results-title {
+  font-size: 32rpx;
+  font-weight: bold;
+  margin-bottom: 60rpx;
+  margin-top: 30rpx;
+}
+
+.results .thead {
+  font-size: 26rpx;
+  color: #555555;
+  margin-bottom: 32rpx;
+}
+
+.results .item {
+  background-color: #fff;
+  margin-bottom: 40rpx;
+  border-radius: 8rpx;
+  overflow: hidden;
+}
+
+.results .item:last-of-type {
+  margin-bottom: 0;
+}
+
+.results .item .td {
+  line-height: 74rpx;
+  height: 74rpx;
+}
+
+.results .item .th {
+  color: #7C4B31;
+  background-color: rgba(176, 135, 113, 0.2);
+}
+
+.results .name {
+  width: 35%;
+}
+
+.results .rate {
+  width: 30%;
+}
+
+.results .money {
+  width: 35%;
+}

--
Gitblit v1.9.3