/* :root {
  
    --color-blue: #1D8FEF;
    --color-2: #222;
    --color-6: #666;
    --color-f: #fff;
    
    --fs-14: 14px;
    --fs-16: 16px;
    --fs-18: 18px;
    --fs-20: 20px;
    --fs-30: 30px;
    --border-1: 1px solid #eee;
    --bg-color-blue: rgba(29, 142, 238, .1);
    --bg-color-white: rgba(255, 255, 255, 1);
    --bg-color-bottom: #313B50;
} 

*/


/*初始化css*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0px;
    padding: 0px;
    color: #222;
    min-width: 1260px;
    font-size: 14px;
    line-height: 1.5;
    background: #EFF3FF;
    font-family: 'Microsoft Yahei', 'PingFang SC', 'Avenir', 'Segoe UI', 'Hiragino Sans GB', STHeiti, 'Microsoft Sans Serif', 'WenQuanYi Micro Hei', sans-serif;
}


/*按钮 页面字体样式*/

button,
input {
    font-family: 'Microsoft YaHei', 'Heiti SC', arial, '微软雅黑';
    outline: none;
    /*取消轮廓线*/
    -webkit-appearance: none;
    cursor: pointer;
    border: 0;
}

input[type=submit] {
    border: 0px;
    cursor: pointer;
    -webkit-appearance: none;
}

input[type=button] {
    -webkit-appearance: none;
}

input[type=text] {
    outline: none;
    -webkit-appearance: none;
    border: 0px;
}

input[type=date] {
    border: 0px;
    padding: 0px;
    outline: none;
    -webkit-appearance: none;
}

p {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    padding: 0;
    margin: 0;
}

ol,
ul,
li {
    list-style-type: none;
    list-style-image: none;
    padding: 0;
    margin: 0;
}

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

a {
    text-decoration: none;
}

a:active {
    background-color: transparent
}

a:active,
a:hover {
    outline: 0 none;
    color: #1D8FEF;
}

a:focus {
    outline: 0 dotted
}

img {
    vertical-align: middle;
}

i,
em {
    font-style: normal;
}

.w {
    width: 1200px;
    margin: 0 auto 15px auto;
    /* overflow: hidden; */
}


/*隐藏*/

.hide,
.none {
    display: none;
}


/*清除浮动*/

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

.clearfix {
    *zoom: 1;
}


/*左浮动*/

.fl {
    float: left;
}


/*右浮动*/

.fr {
    float: right;
}

.f3 {
    color: #000;
}

.copyright {
    width: 100%;
    padding: 50px 0;
    margin: auto;
    text-align: center;
    line-height: 2.5;
    color: #fff;
    background: #313B50;
}