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
| body {
| margin: 0;
| padding: 0;
| /* 不允许复制 */
| -moz-user-select: none;
| /* Firefox私有属性 */
| -webkit-user-select: none;
| /* WebKit内核私有属性 */
| -ms-user-select: none;
| /* IE私有属性(IE10及以后) */
| -khtml-user-select: none;
| /* KHTML内核私有属性 */
| -o-user-select: none;
| /* Opera私有属性 */
| user-select: none;
| /* IOS点击阴影 */
| -webkit-tap-highlight-color: transparent;
|
| font-family: Arial, "Microsoft YaHei";
| }
|
| .btn-default {
| width: 4.80rem;
| height: 0.8rem;
| background: #E5005C;
| border-radius: 0.4rem;
| font-size: 0.32rem;
| line-height: 0.8rem;
| text-align: center;
| color: #FFFFFF;
| }
|
| .error-info {
| font-size: 0.24rem;
| font-weight: 500;
| color: #E5005C;
| line-height: 0.39rem;
| }
|
| .check {
| height: 0.52rem;
| line-height: 0.52rem;
| border-radius: 0.08rem;
| font-size: 0.24rem;
| color: #000000;
| font-weight: 500;
| background: #EEEEEE;
| position: relative;
| width: 32%;
| margin-top: 0.2rem;
| text-align: center;
| display: inline-block;
| box-sizing: border-box;
| border: 1px solid #EEEEEE;
| }
|
| .check_tag {
| position: absolute;
| right: -0.15rem;
| top: -0.2rem;
| font-size:12px;
| line-height: 12px;
| background: #E5005C;
| color: #FFFFFF;
| text-align: center;
| border-radius: 12px;
| padding: 1px 2px;
| z-index: 100;
| }
|
| .choice .active {
| background: #FFE5EF;
| border: 1px solid #FFCBD8;
| color: #E5005C;
| }
|
| .choice {
| display: flex;
| flex-wrap: wrap;
| justify-content: space-between;
| margin-top: -0.1rem;
| }
|
|
| .dialog {
| width: 5.60rem;
| min-height: 1rem;
| background: #FFFFFF;
| border-radius: 0.20rem;
| padding: 0.2rem;
| z-index: 1000;
| display: block;
| height: auto;
| }
|
| .dialog .title {
| font-size: 0.32rem;
| font-weight: bold;
| color: #000000;
| text-align: center;
| margin-top: 0.2rem;
| }
|
| .dialog .content {
| margin-top: 0.2rem;
| }
|
|