| 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
 | | .container{ |  |   width: 750rpx; |  |   background-color: #fff; |  |   padding: 10rpx 40rpx; |  | } |  | .wrap1{ |  |   display: flex; |  |   box-shadow: 0rpx 4rpx 16rpx 0rpx rgba(176,135,113,0.2); |  |   border-radius: 8rpx; |  |   padding: 30rpx; |  |   height: 140rpx; |  |   .ai{ |  |     width: 80rpx; |  |     height: 80rpx; |  |     display: flex; |  |     border-radius: 50%; |  |     justify-content: center; |  |     align-items: center; |  |     margin-right: 24rpx; |  |     background: rgba(176,135,113,0.14); |  |     image{ |  |       width: 56rpx; |  |       height: 56rpx; |  |     } |  |   } |  |   .content{ |  |     flex: 1; |  |     .name{ |  |       font-weight: 600; |  |       font-size: 32rpx; |  |       color: #111111; |  |       margin-bottom: 2rpx; |  |     } |  |     .desc{ |  |       font-weight: 300; |  |       font-size: 24rpx; |  |       color: #333333; |  |     } |  |   } |  |   .btn{ |  |     font-weight: 300; |  |     font-size: 26rpx; |  |     line-height: 32rpx; |  |     width: 68rpx; |  |     height: 140rpx; |  |     display: flex; |  |     flex-direction: column; |  |     align-items: center; |  |     justify-content: center; |  |     margin: -30rpx -30rpx -30rpx 24rpx; |  |     color: #FFFFFF; |  |     background: #B08771; |  |     border-radius: 0rpx 8rpx 8rpx 0rpx; |  |   } |  | } | 
 |