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
| @charset "UTF-8";
| /* 颜色变量 */
| .date {
| padding: 44rpx 32rpx;
| background-color: #FFFFFF;
| box-sizing: border-box;
| }
| .date .title {
| width: 100%;
| text-align: center;
| position: relative;
| }
| .date .title text {
| font-size: 32rpx;
| font-family: PingFang SC-Semibold, PingFang SC;
| font-weight: 600;
| color: #333333;
| }
| .date .title .title_icon {
| position: absolute;
| right: 0;
| top: 0;
| }
| .date .content {
| width: 100%;
| margin-top: 80rpx;
| }
| .date .content .picker-view {
| width: 100%;
| height: 400rpx;
| }
| .date .content .picker-view .item {
| height: 40px;
| line-height: 40px;
| text-align: center;
| }
| .date .submit {
| width: 100%;
| height: 72rpx;
| line-height: 72rpx;
| text-align: center;
| background: linear-gradient(270deg, #D20A0A 0%, #D95A5A 100%);
| border-radius: 36rpx;
| font-size: 32rpx;
| font-family: PingFang SC-Medium, PingFang SC;
| font-weight: 500;
| color: #FFFFFF;
| margin-top: 50rpx;
| }
|
|