@charset "utf-8";

/*
 * @名称：reset.css
 * @功能：1、重设浏览器默认样式
 *       2、设置通用原子类
 */

@media screen and (min-width:320px) and (max-width:359px) {
    html {
        font-size: 44.444444px !important;
    }
}

@media screen and (min-width:360px) and (max-width:374px) {
    html {
        font-size: 50px !important;
    }
}

@media screen and (min-width:375px) and (max-width:413px) {
    html {
        font-size: 52.083333333px !important;
    }
}

@media screen and (min-width: 414px) and (max-width: 479px) {
    html {
        font-size: 57.5px !important;
    }
}

@media screen and (min-width:480px) and (max-width:539px) {
    html {
        font-size: 66.666667px !important;
    }
}

@media screen and (min-width:540px) and (max-width:639px) {
    html {
        font-size: 75px !important;
    }
}

@media screen and (min-width:640px) and (max-width:719px) {
    html {
        font-size: 88.888889px !important;
    }
}

@media only screen and (min-width: 720px) {
    html {
        font-size: 100px !important;
    }
}

html,
body,
body div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
footer,
header,
menu,
nav,
section,
time,
mark,
audio,
video,
details,
summary {
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: normal;
    vertical-align: baseline;
    background: transparent;
}

html,
body {
    font-family: "PingFangSC", "AvenirRoman", "HelveticaNeue-Light", "Helvetica Neue", "arial", "Hiragino Sans GB", "冬青黑体", "Microsoft YaHei New", "Microsoft Yahei", "微软雅黑", "宋体", "SimSun", "STXihei", "华文细黑", "sans-serif";
}

article,
aside,
figure,
footer,
header,
nav,
section,
details,
summary {
    display: block;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    overflow-y: scroll;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

th {
    font-weight: bold;
    vertical-align: bottom;
}

td {
    font-weight: normal;
    vertical-align: top;
}

label,
input[type=button],
input[type=submit],
input[type=file],
button {
    cursor: pointer;
}

fieldset,
img {
    border: none;
}

input {
    outline: none;
    border: none;
}

textarea {
    outline none
}

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

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

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

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

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

.hide {
    display: none!important;
}

.block {
    display: block!important;
}

.transparent {
    opacity: 0!important
}

.opaque {
    opacity: 1!important
}

.hidden {
    visibility: hidden!important;
}

.visible {
    visibility: visible!important;
}


/* 统一上标和下标 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}


/* 清除浮动 */

.clearfix:before,
.clearfix:after {
    content: "";
    display: block;
    height: 0;
    overflow: hidden;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    zoom: 1;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #bdbdbd;
    font-size .26rem
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: #bdbdbd;
    font-size .26rem
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #bdbdbd;
    font-size .26rem
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #bdbdbd;
    font-size .26rem
}
* {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input{
  -webkit-user-select: auto;
}