gx
queenwuli
2022-04-23 4c851ca586c7ab21e9619404a443876ef9678bb6
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
.flex{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -moz-box;
    display: -moz-flex;
    display: flex;
}
.flex-v{
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.flex-1{
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.flex-wrap{
    flex-wrap: wrap;
}
.align-center{
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -moz-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.align-end{
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    align-items: flex-end;
}
.justify-center{
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -moz-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.justify-between{
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -moz-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.justify-around{
    -webkit-box-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    justify-content: space-around;
}
.justify-end{
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
}
 
.van-dropdown-menu__bar{
    background: transparent;
    box-shadow: none
}
.van-dropdown-menu__title{
    font-size: 24px;
    color: #FFFFFF;
}
.van-dropdown-menu__title:after{
    top: 46%;
    border: 8px solid;
    border-color: transparent transparent #FFFFFF #FFFFFF;
}
.scale.van-tabs--line>.van-tabs__wrap{
    height: 156px;
}
.scale>.van-tabs__wrap>.van-tabs__nav>.van-tab{
    font-size: 32px;
}
.scale>.van-tabs__wrap>.van-tabs__nav>.van-tab--active{
  font-size: 48px;
  font-weight: bold;
}
.scale>.van-tabs__wrap>.van-tabs__nav>.van-tabs__line{
    background: #3D8AF2;
    bottom: 40px;
}
.scale .van-tab__text--ellipsis{
    overflow: visible
}
.van-tabs--card>.van-tabs__wrap{
    height: 78px;
}
.van-tabs__nav--card{
    border-radius: 40px;
    height: 78px;
}
.van-tab--card{
    padding: 16px 0;
    font-size: 32px;
    line-height: 78px;
    font-weight: bold;
}
.van-tab--card:nth-child(1).van-tab--active{
    border-radius: 40px 0 0 40px;
}
.van-tab--card:nth-child(3).van-tab--active{
    border-radius:  0 40px 40px 0;
}
.van-tab--shrink{
    padding: 0 28px ;
}
.tab-wrap .van-tabs__wrap{
    border-bottom: 1px solid #E9E9E9;
}
.van-tabs__nav--line.van-tabs__nav--shrink, .van-tabs__nav--line.van-tabs__nav--complete{
    padding-left: 0;
    padding-right: 0;
}
.van-dropdown-menu__title--active{
    color: #FFFFFF!important;
}
.i18-wrap .van-cell__title{
    font-size: 28px;
    font-weight: normal;
}