@charset "utf-8";

* {
    box-sizing: border-box;
    font-family: 'PingFang-SC';
}

body,
html {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: #F2F4F7; 
    /* font-size: 14px;
    overflow-y: auto;
	overflow-x: hidden;
    min-width: 1024px;
    @media screen and (min-width:1024px) and (max-width:1100px){font-size: 0.11rem; !important}
    @media screen and (min-width:1100px) and (max-width:1280px){font-size: 0.12rem; !important}
    @media screen and (min-width:1280px) and (max-width:1366px){font-size: 0.12rem;}
    @media screen and (min-width:1366px) and (max-width:1440px){font-size: 0.14rem;}
    @media screen and (min-width:1440px) and (max-width:1680px){font-size: 0.16rem;}
    @media screen and (min-width:1680px) and (max-width:1920px){font-size: 0.17rem;}
    @media screen and (min-width:1921px){font-size: 40px;} */
}
    /* @media screen and (min-width:360px) and (max-width:375px){font-size:0.21rem;}
    @media screen and (min-width:375px) and (max-width:400px){font-size:0.22rem;}
    @media screen and (min-width:400px) and (max-width:414px){font-size:0.23rem;}
    @media screen and (min-width:414px) and (max-width:480px){font-size:0.24rem;}
    @media screen and (min-width:480px) and (max-width:540px){font-size:0.26rem}
    @media screen and (min-width:540px) and (max-width:640px){font-size:0.28rem;}
    @media screen and (min-width:640px) and (max-width:768px){font-size:0.36rem;}
    @media screen and (min-width:768px) and (max-width:960px){font-size:0.36rem;}
    @media screen and (min-width:960px) and (max-width:1024px){font-size:0.46rem;} */
    
    


input {
    outline: none;
    background: transparent;
    border: none;
    outline: medium;
}

::selection {
    background: transparent;
}

::-moz-selection {
    background: transparent;
}

.cube-popup {
    z-index: 1000000000000000000 !important;
}

* {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

ul,
ol,
p {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

select,
input,
img,
select {
    vertical-align: middle;
}

a {
    text-decoration: none;
    outline: none;
    color: #000;
}

/* 在IOS下，input 和textarea表单默认会有个内阴影，一定程度上影响视觉一致，可通过设置下面代码去掉： */
input {
    -webkit-appearance: none;
}

* {
    -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浏览器*/
}

textarea {
    -webkit-user-select: auto;
    /*webkit浏览器*/
}