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.less | 155 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 155 insertions(+), 0 deletions(-)
diff --git a/wechat_jiaxuan/pages/kefu/select.less b/wechat_jiaxuan/pages/kefu/select.less
new file mode 100644
index 0000000..aae0fe5
--- /dev/null
+++ b/wechat_jiaxuan/pages/kefu/select.less
@@ -0,0 +1,155 @@
+page{
+ background-color: #f7f7f7;
+}
+.main_tab{
+ width: 100%;
+ display: flex;
+ align-items: flex-end;
+ height: 88rpx;
+ background-color: #fff;
+ padding: 0 40rpx;
+ .item{
+ flex: 1;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ font-size: 32rpx;
+ color: #555555;
+ margin-right: 60rpx;
+ .name{}
+ .border{
+ width: 40rpx;
+ height: 6rpx;
+ background-color: #fff;
+ border-radius: 3rpx;
+ margin-top: 16rpx;
+ }
+ }
+ .active{
+ font-weight: 600;
+ font-size: 38rpx;
+ color: #222222;
+ .border{
+ background: #F4CA1C;
+ }
+ }
+}
+.search_wrap {
+ width: 750rpx;
+ height: 100rpx;
+ padding: 0rpx 40rpx;
+ border-radius: 8rpx;
+ display: flex;
+ align-items: center;
+ background-color: #fff;
+ .input_wrap{
+ flex: 1;
+ height: 72rpx;
+ background-color: #f7f7f7;
+ padding-left: 40rpx;
+ display: flex;
+ align-items: center;
+ font-size: 26rpx;
+ input{
+ width: 100%;
+ }
+ .icon{
+ width: 26rpx;
+ margin-top: 4rpx;
+ margin-right: 16rpx;
+ }
+ }
+ .kehu{
+ width: 48rpx;
+ margin-left: 30rpx;
+ }
+}
+.list{
+ padding: 0 40rpx;
+ background-color: #fff;
+ .line{
+ display: flex;
+ align-items: center;
+ height: 148rpx;
+ border-bottom: 1rpx solid #e5e5e5;
+ &:nth-last-child(1){
+ border: none;
+ }
+ .icon{
+ width: 40rpx;
+ margin-right: 30rpx;
+ }
+ .avatar{
+ width: 88rpx;
+ height: 88rpx;
+ border-radius: 50%;
+ border: 1px solid;
+ margin-right: 20rpx;
+ }
+ .content{
+ flex: 1;
+ .header{
+ display: flex;
+ justify-content: space-between;
+ .left{
+ display: flex;
+ align-items: center;
+ .name{
+ font-weight: 500;
+ font-size: 30rpx;
+ color: #111111;
+ margin-right: 10rpx;
+ }
+ .tag{
+ font-size: 24rpx;
+ color: #57BE6A;
+ }
+ }
+ .remark{
+ font-size: 26rpx;
+ color: #666666;
+ }
+ }
+ .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;
+ .btns{
+ background-color: #f7f7f7;
+ display: flex;
+ align-items: center;
+ height: 102rpx;
+ padding: 14rpx 40rpx 0;
+ .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);
+ }
+ }
+}
\ No newline at end of file
--
Gitblit v1.9.3