﻿/* 把我们所有标签的内外边距清零 */

* {
    margin: 0;
    padding: 0;
    /* css3盒子模型 */
    box-sizing: border-box;
}


/* em 和 i 斜体的文字不倾斜 */

em,
i {
    font-style: normal
}


/* 去掉li 的小圆点 */

li {
    list-style: none
}

img {
    /* border 0 照顾低版本浏览器 如果 图片外面包含了链接会有边框的问题 */
    border: 0;
    /* 取消图片底侧有空白缝隙的问题 */
    vertical-align: middle
}

button {
    /* 当我们鼠标经过button 按钮的时候，鼠标变成小手 */
    cursor: pointer
}

a {
    text-decoration: none;
}


button,
input {
    /* "\5B8B\4F53" 就是宋体的意思 这样浏览器兼容性比较好 */
    font-family: Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB, "\5B8B\4F53", sans-serif;
    border: 0;
    outline: none;
}

body {
    /* CSS3 抗锯齿形 让文字显示的更加清晰 */
    -webkit-font-smoothing: antialiased;
    background-color: #fff;
    font: 12px/1.5 Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB, "\5B8B\4F53", sans-serif;
}

.hide,
.none {
    display: none
}

*::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

*::-webkit-scrollbar-thumb {
    width: 4px;
    height: 60px;
    background-color: rgba(50, 50, 50, .2);
    border-radius: 10px;
}

*::-webkit-scrollbar-track {
    background-color: rgba(50, 50, 50, .2);
}


/* 清除浮动 */

.clearfix:after {
    visibility: hidden;
    clear: both;
    display: block;
    content: ".";
    height: 0
}

.clearfix {
    *zoom: 1
}

/* 版心 */

.w {
    width: 1200px;
    margin: 0 auto;
}


/* 浮动 */

.fl {
    float: left;
}

.fr {
    float: right;
}


/* 声明字体图标 */

/* @font-face {
    font-family: 'iconfont';
    src: url('./fonts/iconfont.eot');
    src: url('./fonts/iconfont.eot?#iefix') format('embedded-opentype'), url('./fonts/iconfont.woff2') format('woff2'), url('./fonts/iconfont.woff') format('woff'), url('./fonts/iconfont.ttf') format('truetype'), url('./fonts/iconfont.svg#iconfont') format('svg');
}

[class^="icon-"],
[class*="icon-"] {
    font-family: 'iconfont';
    font-style: normal;
} */

.fa-angle-double-right:before {
    font-size: 17px;
    margin-left: 4px;
}

/* 底部 */

.home-footer {
    width: 100%;
    height: 92px;
    background-color: #1871EF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.home-footer div:first-child {
    margin-bottom: 5px;
}

/* 轮播图 */
.home-header-newsInfo .focusBox1 {
    width: 540px;
    height: 392px;
    margin-left: 0;
}

.focusBox1 {
    position: relative;
    overflow: hidden;
    font: 12px/1.5 Verdana, Geneva, sans-serif;
    text-align: left;
    background: white;
}

.focusBox1 .pic1 li img {
    width: 100%;
    height: 100%;
    display: block;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.focusBox1 .pic1 li:hover img {
    -moz-transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
    -o-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
}

.focusBox1 .txt-bg1 {
    position: absolute;
    bottom: 0;
    z-index: 1;
    height: 32px;
    width: 100%;
    background: #333;
    filter: alpha(opacity=60);
    opacity: 0.6;
    overflow: hidden;
}

.focusBox1 .txt1 {
    position: absolute;
    bottom: 0;
    z-index: 1;
    height: 32px;
    width: 60%;
    overflow: hidden;
}

.focusBox1 .txt1 li {
    height: 32px;
    line-height: 32px;
    position: absolute;
    bottom: -32px;
}

.focusBox1 .txt1 li a {
    display: block;
    color: white;
    padding: 0 0 0 10px;
    font-size: 14px;
    text-decoration: none;
}

.focusBox1 .num1 {
    position: absolute;
    z-index: 1;
    bottom: 12px;
    right: 8px;
}

.focusBox1 .num1 li {
    float: left;
    position: relative;
    overflow: hidden;
    width: 6px;
    height: 6px;
    background: #FFFFFF;
    border-radius: 3px;
    text-align: center;
    margin-right: 9px;
    cursor: pointer;
}

.focusBox1 .num1 li a,
.focusBox1 .num1 li span {
    position: absolute;
    z-index: 2;
    display: block;
    color: white;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-decoration: none;
    font-size: 11px;
}

.focusBox1 .num1 li span {
    z-index: 1;
    background: black;
    filter: alpha(opacity=40);
    opacity: 0.4;
}

.focusBox1 .num1 li.on{
    width: 16px;
    height: 6px;
    background: #FFFFFF;
    border-radius: 3px;
}

.focusBox1 .num1 li.on a,
.focusBox1 .num1 a:hover {
    width: 16px;
    height: 6px;
    background: #FFFFFF;
    border-radius: 3px;
}

.lm_ej{background-color: #1871EF; color:#fff ;}
.lm_ej a{color:#fff ;}

.cont_text{color:#666 ;}

.cont_text a{color:#666 ;}