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/staff.less | 181 +++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 181 insertions(+), 0 deletions(-)
diff --git a/wechat_jiaxuan/pages/store/staff.less b/wechat_jiaxuan/pages/store/staff.less
new file mode 100644
index 0000000..7986de4
--- /dev/null
+++ b/wechat_jiaxuan/pages/store/staff.less
@@ -0,0 +1,181 @@
+.bg_wrap {
+ width: 750rpx;
+ height: 400rpx;
+ background-color: #333333;
+ position: fixed;
+ top: 0;
+ left: 0;
+ z-index: -1;
+}
+
+.container {
+ padding: 26rpx 40rpx;
+ .avatar {
+ margin-top: 260rpx;
+ width: 140rpx;
+ height: 140rpx;
+ border-radius: 50%;
+ border: 4rpx solid #FFFFFF;
+ }
+ .desc {
+ display: flex;
+ align-items: center;
+ padding: 0 30rpx;
+ width: 670rpx;
+ height: 80rpx;
+ background: #F7F7F7;
+ margin-bottom: 40rpx;
+ color: #333333;
+ position: relative;
+ .icon{
+ position: absolute;
+ background: #F7F7F7;
+ width: 32rpx;
+ height: 32rpx;
+ left: 40rpx;
+ top: -16rpx;
+ transform: rotate(45deg);
+ }
+ image {
+ width: 32rpx;
+ margin-right: 20rpx;
+ }
+ }
+}
+
+.name_wrap {
+ display: flex;
+ margin-bottom: 32rpx;
+
+ .left {
+ flex: 1;
+ display: flex;
+ align-items: flex-end;
+
+ .name {
+ font-weight: 600;
+ font-size: 36rpx;
+ }
+
+ .tag {
+ height: 42rpx;
+ line-height: 40rpx;
+ color: var(--themeColor);
+ border: 1rpx solid var(--themeColor);
+ border-radius: 8rpx;
+ margin-left: 12rpx;
+ padding: 0 10rpx;
+ }
+ }
+
+ .qrcode {
+ width: 80rpx;
+ }
+}
+
+
+.static {
+ display: flex;
+ justify-content: space-between;
+ margin-bottom: 60rpx;
+
+ .card {
+ width: 320rpx;
+ height: 156rpx;
+ padding: 28rpx 40rpx;
+ background-color: #f7f7f7;
+ border-radius: 8rpx;
+ font-size: 26rpx;
+ color: #333333;
+
+ .num {
+ color: var(--themeColor);
+ margin-top: 8rpx;
+ font-weight: 600;
+ font-size: 40rpx;
+ display: flex;
+ }
+ }
+}
+
+.guide {
+ .title {
+ font-weight: 500;
+ font-size: 32rpx;
+ margin-bottom: 40rpx;
+ }
+
+ .line {
+ display: flex;
+ align-items: center;
+ font-size: 30rpx;
+ margin-bottom: 42rpx;
+ .icon {
+ width: 30rpx;
+ }
+ .label {
+ color: #777777;
+ margin-left: 24rpx;
+ margin-right: 44rpx;
+ }
+ }
+}
+.footer{
+ display: flex;
+ align-items: center;
+ height: 100rpx;
+ position: fixed;
+ bottom: 0;
+ left: 0rpx;
+ width: 750rpx;
+ padding: 0rpx 40rpx;
+ .btn {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ font-weight: 500;
+ background-color: var(--themeColor);
+ color: #fff;
+ font-size: 32rpx;
+ height: 88rpx;
+ border-radius: 8rpx;
+ flex: 1;
+ image{
+ width: 32rpx;
+ margin-right: 12rpx;
+ }
+ }
+}
+.modal{
+ width: 600rpx;
+ height: 720rpx;
+ padding: 48rpx 40rpx;
+ border-radius: 16rpx;
+ .header{
+ display: flex;
+ .avatar{
+ width: 88rpx;
+ height: 88rpx;
+ border-radius: 50%;
+ margin-right: 24rpx;
+ }
+ .content{
+ .name{font-size: 30rpx;}
+ .desc{
+ font-size: 24rpx;
+ color: #999999;
+ margin-top: 12rpx;
+ }
+ }
+ }
+ .qrcode{
+ width: 400rpx;
+ height: 400rpx;
+ margin: 60rpx auto 40rpx;
+ }
+ .text{
+ font-size: 26rpx;
+ color: #999999;
+ text-align: center;
+ }
+}
\ No newline at end of file
--
Gitblit v1.9.3