wuzhenkun
2021-02-18 95033a06a92d00cbf9c103c8512e1b1c7a7646e5
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
/*720代表设计师给的设计稿的宽度,你的设计稿是多少,就写多少;100代表换算比例,这里写100是
      为了以后好算,比如,你测量的一个宽度是100px,就可以写为1rem,以及1px=0.01rem等等*/
 
body {
    margin: 0;
}
 
.z_app {
    background-color: #F9FAFC; 
    height: 100vh;
    user-select: none; /* 设置文本内容不被选中 */
}
 
.z_font_currency {
    color: #1E1F20;
    -webkit-text-fill-color: #1E1F20;
    font-family: PingFangSC-Regular, PingFang SC;
}
 
.iconfont {
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
 
.inline {/* 设置div为行内块 */
    display: inline-block
}
 
.badge_num {/* 带数据的小红点 */
    background-color: #fff;
    font-size: 15px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: #FA4169;
    -webkit-text-fill-color: #FA4169;
    background-color: rgba(0,0,0,0);
}
 
.visible_h {/* 元素隐藏,占空间 */
    visibility:hidden;
}
.visible_v { /* 元素显示 */
    visibility:visible;
}
 
 
/*滚动条样式*/
.app_page::-webkit-scrollbar{/*滚动条整体样式*/
  display: none;
}
 
html::-webkit-scrollbar-thumb{/*滚动条里面小方块*/
  border-radius:5px;
  -webkit-box-shadow:inset005pxrgba(0,0,0,0.2);
  background:rgba(0,0,0,0.2);
}
 
html::-webkit-scrollbar-track{/*滚动条里面轨道*/
  -webkit-box-shadow:inset005pxrgba(0,0,0,0.2);
  border-radius:0;
  background:#0077AA;
}
 
.confirm_button {
    width: -webkit-fill-available;
    height: 50px;
    background: #21D197;
    border-radius: 12px;
    
    font-size: 15px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 18px;
}
 
.outside_common_txt {
    margin-left: 16px;
    font-size: 15px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: #363F4D;
    line-height: 16px;
}