@charset "utf-8";

body,
div,
span,
header,
footer,
nav,
section,
aside,
article,
ul,
dl,
dt,
dd,
li,
a,
p,
h1,
h2,
h3,
h4,
h5,
i,
b,
textarea,
button,
input,
select,
em,
s,
ol,
table {
    padding: 0;
    margin: 0;
    list-style: none;
    font-style: normal;
    text-decoration: none;
    box-sizing: border-box;
    font-weight: normal;
    -webkit-tap-highlight-color: transparent;
}

body,
input,
label,
select,
option,
textarea,
button,
fieldset,
legend,
td,
th,
caption {
    font-weight: 400;
    color: #1C1C1E;
    font-size: 12px;
    font-family: 'Microsoft YaHei', 'PingFang SC', Helvetica, Roboto, Arial,
        sans-serif;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-style: normal;
    font-weight: 400;
}

a,
button {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    border: none;
    display: inline-block;
}

a {
    vertical-align: top;
}

img {
    border: none;
    vertical-align: middle;
}

ol,
ul,
li {
    list-style: none;
}

input,
textarea,
select,
button {
    outline: none;
}

table {
    border-collapse: collapse;
}

.clearfix:after {
    content: '.';
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    *zoom: 1;
}

article,
aside,
dialog,
footer,
header,
section,
footer,
nav,
figure,
menu {
    display: block;
}

body,
html {
    width: 100%;
    background: #fff;
    margin: 0 auto;
    overflow-x: hidden;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #ACACAC;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #ACACAC;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: #ACACAC;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #ACACAC;
}

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/

::-webkit-scrollbar {
    width: 4px;
    height: 10px;
    background-color: #f0f4f7;
}

/*定义滚动条轨道 内阴影+圆角*/

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #f0f4f7;
    overflow: hidden;
}


/*定义滑块 内阴影+圆角*/

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #9c9ea1;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.btnPos {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    cursor: pointer;
}

.btnPos.dis {
    display: block;
}

.btnPos a {
    display: block;
    width: 100%;
    height: 100%;
}

.imgWrap img {
    width: 100%;
}

.imgW100 {
    display: block;
    width: 100%;
    height: 100%;
}

body::-webkit-scrollbar {
    display: none;
}

a:hover,
a:focus {
    color: #2fa8e1;
    text-decoration: none;
}

.mr20 {
    margin-top: 20px;
}

button {
    border: none;
    outline: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    cursor: pointer;
}

input {
    -webkit-appearance: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}



li {
    list-style: none;
}

img {
    border: none 0;
}

input {
    outline: none;
    background: none;
}

input,
textarea,
select {
    margin: 0;
}

input,
textarea {
    padding: 0;
}

input::-ms-clear {
    display: none;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* 浮动公共样式 */
.left {
    float: left;
    _display: inline;
}

.right {
    float: right;
    _display: inline;
}

.clear:after {
    display: block;
    content: "";
    clear: both;
}

.clear {
    zoom: 1;
}

/* // 1px 解决方案 */
.border-1px {
    position: relative;
}

.border-1px:after {
    position: absolute;
    content: "";
    top: -50%;
    bottom: -50%;
    left: -50%;
    right: -50%;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    border-top: 1px solid #999;
}

@media (-webkit-min-device-pixel-radio: 1.5),
(min-device-pixel-radio: 1.5) {
    .border-1px::after {
        -webkit-transform: scaleY(0.7);
        transform: scaleY(0.7);
    }
}

@media (-webkit-min-device-pixel-radio: 2),
(min-device-pixel-radio: 2) {
    .border-1px::after {
        -webkit-transform: scaleY(0.5);
        transform: scaleY(0.5);
    }
}