/* main color #f8b62b */
html,
body,
div,
a,
ul,
li,
ol,
dl,
dd,
dt,
p,
h1,
h2,
h3,
h4,
h5,
h6,
form,
input,
select,
fieldset,
legend,
img,
video,
header,
footer,
nav,
article,
section,
aside,
table,
thead,
tr,
td {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

fieldset,
img,
input,
button {
    border: none;
    padding: 0;
    margin: 0;
    outline-style: none;
}

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

em,
i {
    font-style: normal
}

input {
    padding-top: 0;
    padding-bottom: 0;
}

button {
    cursor: pointer
}

input,
textarea {
    font-family: "PingFang SC", "Source Han Sans CN", Microsoft YaHei, Heiti SC, "\5B8B\4F53", sans-serif;
    ;
    border: none;
    outline: none;
    background: none;
}

select,
input {
    vertical-align: middle;
}

select,
input,
textarea {
    font-size: 12px;
    margin: 0;
}

textarea {
    resize: none;
}

/*防止拖动*/
img {
    border: 0;
    vertical-align: middle;
    max-width: 100%;
    position: relative;
    object-fit: cover;
}

/*图片占位*/
img:after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/img-no.jpg) no-repeat center/cover;
}

/*滚动条*/
::-webkit-scrollbar {
    width: 16px;
    height: 16px;
    background-color: #F5F5F5;
}

/*定义滚动条轨道
 内阴影+圆角*/
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

/*定义滑块
 内阴影+圆角*/
::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 60px rgba(0, 0, 0, .3);
    background-color: #f1f3f5;
}

/*  去掉图片低测默认的3像素空白缝隙*/
table {
    border-collapse: collapse;
}

body {
    font: 1.8rem/1.6 "PingFang SC", "Source Han Sans CN", Microsoft YaHei, Heiti SC, "\5B8B\4F53", sans-serif;
    color: #222;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    max-width: 1920px;
    min-width: 320px;
    margin: 0 auto;
    /* text-align: justify; */
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, .15);
    padding-top:4.5rem;
}

.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
    /*IE/7/6*/
}

a {
    color: #2e2e2e;
    text-decoration: none;
    transition: color .5s ease-out
}

a:hover {
    color: #FF9900;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-decoration: none;
    font-weight: normal;
    font-size: 100%;
}

s,
i,
em {
    font-style: normal;
    text-decoration: none;
}

.col-red {
    color: #C81623 !important;
}


/*public*/
html {
    font-size: 62.5%;
}

.w {
    width: 1280px;
    margin: 0 auto;
}

.fl {
    float: left
}

.fr {
    float: right
}

.oh {
    overflow: hidden;
}

.al {
    text-align: left
}

.ac {
    text-align: center
}

.ar {
    text-align: right
}

.dn,
.hide {
    display: none !important;
}