@charset "UTF-8";

/*初始化*/

blockquote,
body,
button,
dd,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
input,
legend,
li,
ol,
p,
pre,
td,
textarea,
th,
ul,
div {
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: normal;
    vertical-align: baseline;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    font-family: Microsoft YaHei, tahoma, arial, Hiragino Sans GB, \\5b8b\4f53, sans-serif;
}


/*清除列表的默认风格*/

ul,
ol,
dl {
    list-style: none;
}

li {
    list-style: none;
}


/*表单相关的元素*/

fieldset,
img,
input,
button,
textarea {
    border: none;
    margin: 0;
    padding: 0;
    /*去除外边线*/
    outline: none;
}


/*超链接标签*/

a {
    color: #1259bc;
    text-decoration: none;
}

a:hover {
    color: #1259bc;
}


/*h家族*/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    font-size: 100%;
}


/*浮动*/

.fl {
    float: left;
}

.fr {
    float: right;
}


/*清除浮动*/

.clearfix::before,
.clearfix::after {
    content: '';
    display: table;
    clear: both;
}


/*水平对齐方式*/

.tl {
    text-align: left;
}

.tr {
    text-align: right;
}

.tc {
    text-align: center;
}


/*页面通用颜色*/

.f60 {
    color: #f8b62b;
}


/*清除语义化标签的默认样式*/

s,
i {
    font-style: normal;
    text-decoration: none;
}

.w14 {
    max-width: 1400px;
    margin: auto;
}

.block {
    display: block;
}

.singe-line {
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    white-space: nowrap;
}

.fs24 {
    font-size: 24px;
}

.fs20 {
    font-size: 20px;
}

.fs18 {
    font-size: 18px;
}

.fs16 {
    font-size: 16px;
}

.fs14 {
    font-size: 14px;
}

.fs12 {
    font-size: 12px;
}

@media screen and (max-width: 600px) {
    .fs20 {
        font-size: 18px;
    }
    .fs18 {
        font-size: 16px;
    }
    .fs16 {
        font-size: 14px;
    }
    .fs14 {
        font-size: 12px;
    }
}