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
| /* pages/details/details.wxss */
| page {
| background-color: rgb(206, 206, 206);
| height: 100vh;
| display: flex;
| flex-direction: column;
| }
| .card1 {
| position: absolute;
| left: 0;
| right: 0;
| /* bottom: 0; */
| top:15px;
| margin: auto;
| width: 95%;
| /* height: 30%; */
| border-radius: 10px;
| background-color: rgb(255, 255, 255);
| }
|
| .card2 {
| position: absolute;
| left: 0;
| right: 0;
| /* bottom: 0; */
| top:26%;
| margin: auto;
| width: 95%;
| /* height: 30%; */
| border-radius: 10px;
| background-color: rgb(255, 255, 255);
| }
| .van-steps{
| white-space:pre-wrap
| }
| .modal-btn {
| position: relative;
| left: 85%;
| display: flex;
| align-items: center;
| justify-content: center;
| box-sizing: border-box;
| width: 140rpx;
| height: 40rpx;
| background: rgba(103, 149, 255, 0.2);
| }
|
| .modal-clear {
| font-size: 23rpx;
| font-family: PingFangSC-Regular, PingFang SC;
| font-weight: 400;
| color: #3670F5;
| margin-right: 42rpx;
| }
|
|