jiangping
2024-07-29 d9a89d83c2048a964f16ca179feb2b7f21b9d33a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
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);
    }
  }
}