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
| .top-content{
| width: 100%;
| height: 380rpx;
| background: linear-gradient(180deg, #1171E0 42.5%, #F4F4F4 100%);
| }
| .main-page{
| position: relative;
| top: -380rpx;
| .status{
| color: white;
| margin: 20rpx 32rpx;
| font-size: 44rpx;
| margin-bottom: 24rpx;
| font-weight: 700;
| }
| .base-card{
| margin: 20rpx 32rpx;
| border-radius: 10rpx;
| background-color: white;
| padding: 24rpx 0;
| .title{
| padding: 0 24rpx;
| font-size: 32rpx;
| font-weight: 700;
| border-bottom: 2rpx solid #EEEEEE;
| padding-bottom: 14rpx;
| margin-bottom: 15rpx;
| }
| .view-form{
| padding: 0 24rpx;
| .view-form-item{
| display: flex;
| justify-content: flex-start;
| align-items: flex-start;
| margin-bottom: 34rpx;
| font-size: 30rpx;
| &:last-child{
| margin-bottom: 0;
| }
| &>view{
| width: 60%;
| font-weight: 500;
| }
| .label{
| color: #7E8596;
| font-weight: normal;
| width: 40%;
| }
| }
| }
| .view-content{
| font-size: 30rpx;
| padding: 0 24rpx;
| line-height: 52rpx;
| }
| .view-image{
| display: grid;
| grid-template-columns: 1fr 1fr 1fr;
| grid-gap: 22rpx;
| padding: 0 32rpx;
| image{
| width: 100%;
| height: 220rpx;
| border: 2rpx solid gray;
| }
| }
| .view-step{
| padding: 0 24rpx;
|
| .step-content{
| position: relative;
| padding-left: 64rpx;
| // height: 100rpx;
| padding-bottom: 64rpx;
| &::before{
| content: '';
| display: block;
| height: 100%;
| width: 4rpx;
| background-color: #E7F8F0;
| position: absolute;
| left: 19rpx;
| }
| .icon{
| position: absolute;
| left: 0;
| width: 40rpx;
| height: 40rpx;
| top: 0;
| }
| .top-title{
| font-size: 32rpx;
| color: #202D44;
| margin-bottom: 16rpx;
| line-height: 30rpx;
| }
| .down-tips{
| color: #7E8596;
| // display: flex;
| // justify-content: flex-start;
| // align-items: center;
| .time{
| // margin-left: 32rpx;
| // width: 60%;
| }
| .submit-per{
| // width: 40%;
| }
| text{
| color: #4A4E60;
| }
|
| }
| }
| .none{
| &::before{
| display: none;
| }
| padding-bottom: 0;
| }
|
| }
| }
| }
|
|