From 20b11236b4364034f52df294b9240776f539ede1 Mon Sep 17 00:00:00 2001
From: liukangdong <898885815@qq.com>
Date: 星期二, 16 七月 2024 14:49:01 +0800
Subject: [PATCH] Merge branch 'master' of http://139.186.142.91:10010/r/productDev/zbomyoujia
---
wechat_jiaxuan/pages/kefu/select.wxss | 154 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 154 insertions(+), 0 deletions(-)
diff --git a/wechat_jiaxuan/pages/kefu/select.wxss b/wechat_jiaxuan/pages/kefu/select.wxss
new file mode 100644
index 0000000..e8dadc0
--- /dev/null
+++ b/wechat_jiaxuan/pages/kefu/select.wxss
@@ -0,0 +1,154 @@
+page {
+ background-color: #f7f7f7;
+}
+.main_tab {
+ width: 100%;
+ display: flex;
+ align-items: flex-end;
+ height: 88rpx;
+ background-color: #fff;
+ padding: 0 40rpx;
+}
+.main_tab .item {
+ flex: 1;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ font-size: 32rpx;
+ color: #555555;
+ margin-right: 60rpx;
+}
+.main_tab .item .border {
+ width: 40rpx;
+ height: 6rpx;
+ background-color: #fff;
+ border-radius: 3rpx;
+ margin-top: 16rpx;
+}
+.main_tab .active {
+ font-weight: 600;
+ font-size: 38rpx;
+ color: #222222;
+}
+.main_tab .active .border {
+ background: #F4CA1C;
+}
+.search_wrap {
+ width: 750rpx;
+ height: 100rpx;
+ padding: 0rpx 40rpx;
+ border-radius: 8rpx;
+ display: flex;
+ align-items: center;
+ background-color: #fff;
+}
+.search_wrap .input_wrap {
+ flex: 1;
+ height: 72rpx;
+ background-color: #f7f7f7;
+ padding-left: 40rpx;
+ display: flex;
+ align-items: center;
+ font-size: 26rpx;
+}
+.search_wrap .input_wrap input {
+ width: 100%;
+}
+.search_wrap .input_wrap .icon {
+ width: 26rpx;
+ margin-top: 4rpx;
+ margin-right: 16rpx;
+}
+.search_wrap .kehu {
+ width: 48rpx;
+ margin-left: 30rpx;
+}
+.list {
+ padding: 0 40rpx;
+ background-color: #fff;
+}
+.list .line {
+ display: flex;
+ align-items: center;
+ height: 148rpx;
+ border-bottom: 1rpx solid #e5e5e5;
+}
+.list .line:nth-last-child(1) {
+ border: none;
+}
+.list .line .icon {
+ width: 40rpx;
+ margin-right: 30rpx;
+}
+.list .line .avatar {
+ width: 88rpx;
+ height: 88rpx;
+ border-radius: 50%;
+ border: 1px solid;
+ margin-right: 20rpx;
+}
+.list .line .content {
+ flex: 1;
+}
+.list .line .content .header {
+ display: flex;
+ justify-content: space-between;
+}
+.list .line .content .header .left {
+ display: flex;
+ align-items: center;
+}
+.list .line .content .header .left .name {
+ font-weight: 500;
+ font-size: 30rpx;
+ color: #111111;
+ margin-right: 10rpx;
+}
+.list .line .content .header .left .tag {
+ font-size: 24rpx;
+ color: #57BE6A;
+}
+.list .line .content .header .remark {
+ font-size: 26rpx;
+ color: #666666;
+}
+.list .line .content .desc {
+ display: flex;
+ justify-content: space-between;
+ font-size: 24rpx;
+ color: #999999;
+ margin-top: 14rpx;
+}
+.footer {
+ position: fixed;
+ bottom: 0;
+ left: 0;
+ width: 750rpx;
+ background-color: #fff;
+ box-shadow: 0rpx -1rpx 0rpx 0rpx #EEEEEE;
+}
+.footer .btns {
+ background-color: #f7f7f7;
+ display: flex;
+ align-items: center;
+ height: 102rpx;
+ padding: 14rpx 40rpx 0;
+}
+.footer .btns .btn {
+ flex: 1;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ height: 88rpx;
+ width: 152rpx;
+ font-weight: 500;
+ color: #777777;
+ border: 1rpx solid #999999;
+ margin-left: 20rpx;
+ font-style: 28rpx;
+ border-radius: 8rpx;
+ color: #fff !important;
+ border: 1rpx solid var(--themeColor);
+ background-color: var(--themeColor);
+}
--
Gitblit v1.9.3