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
html, body ,#app{
height: 100%;
margin: 0px;
padding: 0px;
}
body {
-webkit-overflow-scrolling: touch;
overflow-scrolling: touch;
}
Element {
-webkit-appearance: none;
-webkit-tap-highlight-color:rgba(255,255,255,0)
}
input, button {
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
}
/*去掉高德地图的logo*/
.amap-logo{
display: none!important;
}
.amap-copyright{
opacity:0;
}
.mint-button-icon .mintui{
font-size: 24px;
}
.mint-button-text{
font-size: 16px;
}
.mint-header{
background-color: #FFFFFF;
color: #666666;
font-size: 18px;
}
.mint-header .mint-button-icon .mintui{
color: #999999;
}
.mint-radiolist-title{
font-weight: bold;
}
.mint-radiolist-label{
padding: 0px 0px;
}
.mint-cell-wrapper{
padding: 0px 0px;
}
.mint-radio-core{
width: 16px;
height: 16px
}
.mint-radio-input:checked + .mint-radio-core{
background-color: #FFFFFF;
border-color: #00CA9D;
}
.mint-radio-input:checked + .mint-radio-core::after{
background-color: #00CA9D;
}
.mint-radio-core::after{
top: 3px;
left: 3px;
}
input::-webkit-input-placeholder {
color: #ccc;
}
.flex_center {
display: flex;
justify-content: space-between;
align-items: center;
}
.flex_baseline {
display: flex;
justify-content: space-between;
align-items: baseline;
}
.flex_center_s {
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.flex_start {
display: flex;
justify-content: flex-start;
align-items: center;
}