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/store/info.wxss | 116 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 116 insertions(+), 0 deletions(-)
diff --git a/wechat_jiaxuan/pages/store/info.wxss b/wechat_jiaxuan/pages/store/info.wxss
new file mode 100644
index 0000000..6723b44
--- /dev/null
+++ b/wechat_jiaxuan/pages/store/info.wxss
@@ -0,0 +1,116 @@
+.header {
+ width: 670rpx;
+ margin: 40rpx auto 48rpx;
+ height: 224rpx;
+ background: #FFFFFF;
+ box-shadow: 0rpx 4rpx 16rpx 0rpx rgba(176, 135, 113, 0.2);
+ border-radius: 8rpx;
+ padding: 30rpx;
+}
+.header .name {
+ font-weight: 500;
+ font-size: 36rpx;
+}
+.header .desc {
+ font-size: 26rpx;
+ color: #666666;
+ margin: 16rpx 0 24rpx;
+}
+.header .addr {
+ font-size: 26rpx;
+ color: #888888;
+}
+.bg_wrap {
+ width: 750rpx;
+ height: 400rpx;
+ background-color: #333333;
+ position: fixed;
+ top: 0;
+ left: 0;
+ z-index: -1;
+}
+.main_content {
+ padding: 0 40rpx 40rpx;
+}
+.main_content .title {
+ font-weight: 600;
+ font-size: 36rpx;
+ margin-bottom: 38rpx;
+}
+.main_content .list .item {
+ width: 670rpx;
+ height: 148rpx;
+ background: rgba(176, 135, 113, 0.05) #FFFFFF;
+ box-shadow: 0rpx 4rpx 12rpx 0rpx rgba(0, 0, 0, 0.12);
+ border-radius: 8rpx;
+ padding: 0 30rpx;
+ display: flex;
+ align-items: center;
+ margin-bottom: 30rpx;
+}
+.main_content .list .item .content {
+ flex: 1;
+}
+.main_content .list .item .content .name {
+ font-size: 30rpx;
+ margin-bottom: 12rpx;
+}
+.main_content .list .item .content .desc {
+ font-size: 24rpx;
+ color: #999999;
+}
+.main_content .list .item .avatar {
+ width: 88rpx;
+ height: 88rpx;
+ border-radius: 50%;
+ border: 1rpx solid #cccccc;
+ margin-right: 24rpx;
+}
+.main_content .list .item .btn {
+ width: 118rpx;
+ height: 56rpx;
+ line-height: 52rpx;
+ text-align: center;
+ background: #FFFFFF;
+ border-radius: 8rpx;
+ font-weight: 500;
+ font-size: 26rpx;
+ color: var(--themeColor);
+ border: 1rpx solid var(--themeColor);
+}
+.footer {
+ display: flex;
+ align-items: center;
+ height: 100rpx;
+ position: fixed;
+ bottom: 0;
+ left: 0rpx;
+ width: 750rpx;
+ padding: 20rpx 40rpx 0;
+ box-shadow: 0rpx -4rpx 8rpx 0rpx rgba(0, 0, 0, 0.14);
+}
+.footer .btn {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ font-weight: 500;
+ background-color: #fff;
+ font-size: 32rpx;
+ height: 88rpx;
+ border-radius: 8rpx;
+ color: var(--themeColor);
+ border: 1rpx solid var(--themeColor);
+ flex: 1;
+}
+.footer .btn image {
+ width: 28rpx;
+ margin-right: 12rpx;
+}
+.footer .phone {
+ background-color: var(--themeColor);
+ color: #fff;
+ margin-left: 20rpx;
+}
+.footer .phone image {
+ width: 32rpx;
+}
--
Gitblit v1.9.3