* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/* 公共css*/
body, html {
    min-width: 320px;
    max-width: 100%;
    overflow-x: hidden;
    line-height: 1;
    font-family: '微软雅黑';
    color: #333333;
    background-color: #ffffff;
}
input,a,div{
    border: none;
    outline: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
input{
    /*去除阴影*/
    box-shadow:none;
    /*聚焦input的蓝色边框*/
    outline: none;
    /*textarea 禁止拖拽*/
    resize: none;
    /*去除边框*/
    border: none;
    /*常用于IOS下移除原生样式*/
    -webkit-appearance: none;
    /*点击高亮的颜色*/
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
ul{
    list-style-type: none;
}
input,textarea{
    outline: none;
}
*,*:hover,*:active,*:visited,*:link,*:focus{
    outline:none;
    background: none;
    text-decoration: none;
}
a{
    color: inherit;
    border:none;
    background:none;
    -webkit-appearance:none;
    -webkit-tap-highlight-color: transparent;
}



/*xlt-k*/
::-webkit-scrollbar
{
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track
{
    background-color: #e7e7e7;
}

::-webkit-scrollbar-thumb
{
    background-color: #0d3b95;
}
/*xlt-g*/



/* 内容宽度 */
.pct94 {
    width: 94%;
    margin: 0 auto;
}
.pct90 {
    width: 90%;
    margin: 0 auto;
}
@media screen and (max-width: 1200px) {
    .pct90 {
        width: 96%;
        margin: 0 auto;
    }
}

.s_bx80 {
    width: 80%;
    margin: 0 auto;
}
.s_bx90 {
    width: 90%;
    margin: 0 auto;
}


/* 自定义标签 */
.pubimg {
    width: 100%;
    height: 100%;
    display: block;
}
.pubimg1s{
    width: 100%;
    height: 100%;
    display: block;
    transition: all 1s;
}

.clear {
    clear: both;
}
.clearfix:after {
    clear: both;
    height: 0;
    content: "";
    line-height: 0;
    font-size: 0;
    display: block;
}
.fl {
    float: left;
}
.fr {
    float: right;
}