* {
    box-sizing: border-box;
    -webkit-box-sizing:border-box;
    font-family: MicrosoftYaHei;
    /*touch-action: pan-y;*/
}

html, body {
    min-height: 100vh;
    max-width: 750px;
    margin: 0 auto;
}

[hide] {
    display: none !important;
}

.container {
    min-height: 100vh;
    background: #fff;
    max-width: 750px;
    /*overflow-x: hidden;*/
}

li {
  list-style: none;
}

img {
    pointer-event: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    vertical-align: top;
    -webkit-touch-callout: none;
    -ms-user-select:none;
    touch-callout:none;
    -webkit-touch-callout:none;
    -ms-touch-callout:none;
    -moz-touch-callout:none;
}

.show {
    display: block !important;
}

.hide {
    display: none !important;
}

.marginAuto {
    margin: 0 auto;
}

.marginT10 {
    margin-top: 10px;
}

.marginT20 {
    margin-top: 20px;
}

.marginT30 {
    margin-top: 30px;
}

.marginT40 {
    margin-top: 40px;
}

.marginB10 {
    margin-bottom: 10px;
}

.marginB20 {
    margin-bottom: 20px;
}

.marginB30 {
    margin-bottom: 30px;
}

.marginB40 {
    margin-bottom: 40px;
}

[v-cloak] {
    display: none !important;
}

.container {
    height: 100%;
    font-size: 30px;
    background-color: #fff;
    width: 750px;
    position: relative;
}

.container.active {
    max-height: 100vh;
    overflow: hidden;
}

a {
    display: inline-block;
    text-decoration: none;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, hr, button, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    margin: 0;
    padding: 0;
    -webkit-user-select: none;
    user-select: none;
}

input,textarea{
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select:text;
    font-family: "微软雅黑","黑体";
    border: none;
    background: none;
    outline: none;
    font-size: 30px;
}

img, canvas {
    vertical-align: top;
}

i {
    font-style: normal;
}

div[hide], div[hidden], span[hide], span[hidden] {
    display: none !important;
}

.white {
    background-color: #fff;
}

.h100 {
    height: 100%;
}

.h80 {
    height: 80%;
}

.w100 {
    width: 750px;
}

.col {
    display: flex;
    flex-direction: column;
}

.row {
    display: flex;
    flex-direction: row;
}

.items {
    align-items: center;
}

.spaceb {
    justify-content: space-between;
}

.end {
    justify-content: flex-end;
}

.flexEnd {
    align-items: flex-end;
}

.center {
    justify-content: center;
}

.flex_group_1 {
    min-width: 0;
    flex-grow: 1;
    flex-shrink: 1;
}

.flex_group_0 {
    min-width: 0;
    flex-grow: 0;
    flex-shrink: 0;
}

/* 规定项目在必要的时候拆行或拆列 */
.wrap {
    flex-wrap: wrap;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.tcenter, .tc {
    text-align: center;
}

.tr, .tright {
    text-align: right;
}

.tl, .tleft {
    text-align: left;
}

.nowrap {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nowrap2 {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.z1 {
    z-index: 1;
}

.z2 {
    z-index: 2;
}

.z3 {
    z-index: 3;
}

.z4 {
    z-index: 4;
}

.z5 {
    z-index: 5;
}

.z6 {
    z-index: 6;
}

.z10 {
    z-index: 10;
}

.z20 {
    z-index: 20;
}

.z99 {
    z-index: 99;
}

.z100 {
    z-index: 100;
}

.button-hover:active {
    background-color: rgba(0, 0, 0, .1);
    opacity: .7;
}

.button-hover50:active {
    background-color: rgba(0, 0, 0, .1);
    opacity: .7;
    border-radius: 50%;
}

mask {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: .2s linear all;
    background: #000;
    opacity: 0;
    z-index: -1;
}

mask.active {
    background-color: rgba(0, 0, 0, .5);
    opacity: 1;
    z-index: 99;
}

/* 公共背景 */
.bg {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.float_image {
    position: fixed;
    right: 22px;
    bottom: 105px;
    z-index: 2;
    /*height: calc(120px + 18px);*/
}

.float_image img {
    width: 60px;
    height: 60px;
    box-shadow: 0px 3px 28px 2px
    rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin-bottom: 18px;
}

.float_image img:last-child {
    margin-bottom: 0;
}

/*.float_image img:nth-child(2) {*/
    /*margin-top: 18px;*/
    /*margin-bottom: 18px;*/
/*}*/

/* 公共颜色 */
.oc {
    color: #ffa400 !important;
}

.ob {
    border-color: #ffa400 !important;
}

.obc {
    background-color: #ffa400 !important;
}

/* 富文本 */
.ocontents img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    margin: 5px 0;
    box-shadow: 0px 3px 28px 2px rgba(0, 0, 0, 0.2);
}

/* 版权 */
.copyright {
    width: 100%;
    height: 180px;
}

.copyright span {
    font-family: PingFangSC-Regular;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 1px;
    color: #000000;
    opacity: 0.5;
}

/* 弹窗按钮颜色 */
.weui-dialog__btn {
    color: #ffa400 !important;
}

.mask_transparent{
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;

}