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
| .info-view {
| padding: 0 30px;
| box-sizing: border-box;
| width: 686rpx;
| /* min-height: 440px; */
| background: #FFFFFF;
| box-shadow: 0px 1px 12px 0px rgba(56, 56, 235, 0.08);
| border-radius: 8px;
| position: relative;
| transform: translateY(-50px);
| margin: auto;
| }
|
| .img-view {
| width: 100%;
| text-align: center;
| padding: 36px 0 20px;
| border-bottom: 1px dashed #E6E6E6;
| }
|
| .img {
| width: 200px;
| height: 200px;
| margin-bottom: 12px;
| }
|
| .text {
| font-size: 12px;
| font-family: PingFang SC;
| font-weight: 500;
| color: #333333;
| }
|
| .rate-view {
| box-sizing: border-box;
| padding: 20px 3px 11px;
| }
|
| .rate-item {
| display: flex;
| justify-content: space-between;
| margin-bottom: 16px;
| }
|
| .name {
| font-size: 14px;
| font-family: PingFang SC;
| font-weight: 500;
| color: #8E8D99;
| }
|
| .rate {
| font-size: 14px;
| font-family: PingFang SC;
| font-weight: 500;
| color: #333333;
| }
|
|