@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    touch-action: pan-y;
    cursor: pointer;
}

html {
    width: 100%;
    /*min-height: 100%;*/
    /*height: 100%;*/
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    width: 100%;
    line-height:1;
    /*min-height: 100%;*/
    /*height: 100%;*/
    font-family: 'Microsoft YaHei';
    background-color: #FFF;
    /*touch-action: none;*/
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color:transparent;
    /*-webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;*/
    -webkit-user-select: auto!important;
    user-select: auto!important;
}

input, textarea, button {
    resize: none;
    border: none;
    outline: none;
    -webkit-appearance: none;
}

img {
    border: none;
}

em, i {
    font-style: normal;
}

ul, ol, li{
    list-style: none;
    list-style-type: none;
}
.main-relative{
    position: relative;
}


.weui-toast{
    top: 45%;
}
.weui-toast__content{
    font-size: 28px;
}
.weui-toptips{
    font-size: 28px;
}
.weui-dialog{
    width: 500px;
    border-radius: 10px;
    left: 50%;
    font-size: 28px;
    transform: translateY(-50%) translateX(-50%);
    right: initial;
}
.weui-dialog__bd,.weui-dialog__ft{
    font-size: 28px;
}
.weui-skin_android .weui-dialog__bd{
    font-size: 28px;
}

*{
    -webkit-touch-callout:none;  /*系统默认菜单被禁用*/
    -webkit-user-select:none; /*webkit浏览器*/
    -khtml-user-select:none; /*早期浏览器*/
    -moz-user-select:none;/*火狐*/
    -ms-user-select:none; /*IE10*/
    user-select:none;
}
input {
    -webkit-user-select:auto; /*webkit浏览器*/
}