/*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; }