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/store.less |  126 ++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 126 insertions(+), 0 deletions(-)

diff --git a/wechat_jiaxuan/pages/store/store.less b/wechat_jiaxuan/pages/store/store.less
new file mode 100644
index 0000000..ed04715
--- /dev/null
+++ b/wechat_jiaxuan/pages/store/store.less
@@ -0,0 +1,126 @@
+.app_header {
+  display: flex;
+  align-items: center;
+  height: 100rpx;
+  background-color: #fff;
+  padding: 0 40rpx;
+
+  .location {
+    width: 30rpx;
+  }
+
+  .add {
+    flex: 1;
+    white-space: nowrap;
+    overflow: hidden;
+    text-overflow: ellipsis;
+    margin: 0 10rpx;
+  }
+
+  .right {
+    width: 42rpx;
+  }
+}
+
+.main_content {
+  padding: 40rpx;
+  min-height: calc(100vh - 100rpx);
+  background-color: #F7F7F7;
+  .app_title {
+    font-weight: 600;
+    font-size: 36rpx;
+    margin-bottom: 40rpx;
+  }
+
+  .shops {
+    .shop {
+      width: 670rpx;
+      height: 362rpx;
+      background: linear-gradient(180deg, #F2E7E1 0%, #FEFEFD 30%, #FFFFFF 100%);
+      border-radius: 8rpx;
+      margin-bottom: 20rpx;
+      padding: 30rpx;
+      .header{
+        display: flex;
+        align-items: center;
+        .left{
+          flex: 1;
+          .title{
+            font-weight: 500;
+            font-size: 32rpx; 
+            width: 100%;
+            white-space: nowrap;
+            overflow: hidden;
+            text-overflow: ellipsis;
+            margin-bottom: 16rpx;
+          }
+          .address{
+            display: flex;
+            align-items: center;
+            white-space: nowrap;
+            overflow: hidden;
+            text-overflow: ellipsis;
+            font-size: 26rpx;
+            color: #888888;
+            image{
+              width: 13rpx;
+              margin-left: 8rpx;
+            }
+          }
+        }
+        .right{
+          width: 60rpx;
+          font-size: 24rpx;
+          color: #333333;
+          text-align: center;
+          margin-left: 80rpx;
+          .phone{
+            width: 60rpx;
+            margin-bottom: 4rpx;
+          }
+        }
+      }
+      .user_list{
+        display: flex;
+        padding: 24rpx 10rpx;
+        .item{
+          width: 240rpx;
+          height: 180rpx;
+          padding: 20rpx 0;
+          background: #FFFFFF;
+          box-shadow: 0rpx 0rpx 10rpx rgba(0,0,0,0.12);
+          border-radius: 8rpx;
+          margin-right: 20rpx;
+          flex-shrink: 0;
+          .info{
+            display: flex;
+            align-items: center;
+            padding: 0 20rpx 14rpx;
+            border-bottom: 1rpx solid #eeeeee;
+            .avatar{
+              width: 72rpx;
+              height: 72rpx;
+              border: 1px solid;
+              border-radius: 50%;
+              margin-right: 16rpx;
+            }
+            .ex{
+              font-size: 24rpx;
+              color: #999999;
+              margin-top: 4rpx;
+            }
+          }
+          .btn{
+            display: flex;
+            justify-content: center;
+            align-items: center;
+            height: 66rpx;
+            font-weight: 500;
+            font-size: 26rpx;
+            color: var(--themeColor);
+          }
+        }
+      }
+    }
+  }
+}
\ No newline at end of file

--
Gitblit v1.9.3