*{
    margin: 0;
    padding: 0;
}
html, body{
    font-size: 14px;
    color: #333333;
    font-family: "Microsoft YaHei","黑体","宋体",sans-serif;
}
a{
    text-decoration: none;
    color: #494949;
}
ul, li{
    list-style: none;
}
img{
    border: none;
    outline: none;
}
input, button{
    outline: none;
}
@media (min-width: 768px) {
    .container {
        box-sizing: border-box;
        width: 992px;
    }
}
@media (min-width: 992px) {
    .container {
        /* [disabled]width: 970px; */
    }
}
@media (min-width: 1200px) {
    .container {
        box-sizing: border-box;
        width: 1170px;
    }
}
.hide{
    display: none;
}
.container {
    margin-right: auto;
    margin-left: auto;
}
.clear-float:after{
    content: ".";
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
}
.m-t-50{
    margin-top: 50px;
}
.m-t-15{
    margin-top: 15px;
}
.m-l-30{
    margin-left: 30px;
}
.m-l-20{
    margin-left: 20px;
}
@media (min-width: 768px) {
    .container_width {
        box-sizing: border-box;
        width: 960px;
        margin: 0 auto;
    }
}
@media (min-width: 1200px) {
    .container_width {
        box-sizing: border-box;
        width: 1160px;
        margin: 0 auto;
    }
}
.header{
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    height: 56px;
}
.header.index_header{
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    transition: all .3s;
    z-index: 9999;
    background: none;
}
.header.index_header.hide{
    top: -77px;
}
.header.index_header.hide:hover{
    top: 0;
}
.header .index_header_box{
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9999;
    height: 60px;
    background: -webkit-linear-gradient(bottom, rgba(255,0,0,0), rgba(0,137,225,.3));
    background: -o-linear-gradient(bottom, rgba(255,0,0,0), rgba(0,137,225,.3));
    background: -moz-linear-gradient(bottom, rgba(255,0,0,0), rgba(0,137,225,.3));
    background: linear-gradient(to bottom, rgba(0,137,225,.3), rgba(255,0,0,0));
}
.header .index_header_box:hover{
    background: rgba(13,80,131,.8)
}
.header .index_header_box.active{
    background: rgba(13,80,131,.8);
    border-bottom: 1px solid #508CB7;
}
.header .container_width{
    margin-top: 10px;
}
.header.container_width{
    margin-top: 10px;
}
.logo{
    width: 135px;
    float: left;
    margin-left: 20px;
    margin-top: 13px;
}
.menu{
    width: 762px;
    float: left;
    height: 60px;
    line-height: 60px;
    margin-left: 20px;
}
.menu-right{
    width: 180px;
    float: right;
    margin-right: 15px;
}
.menu-right.menu{
    width: 180px;
    margin-left: 10px;
}
.menu_ul{
    list-style: none;
}
.menu_li{
    display: inline-block;
    float: left;
}
.menu_a{
    display: inline-block;
    padding: 0 15px;
    position: relative;
    height: 60px;
    line-height: 60px;
    color: #fff;
    font-size: 16px;
}
a.menu_a:focus, a.menu_a:hover{
    text-decoration: none;
    color: #fff;
    outline: none;
}
.logo_img{
    height: 37px;
}
.drop_down{
    display: none;
    position: fixed;
    width: 100%;
    height: 210px;
    top: 60px;
    left: 0;
    background: rgba(13,80,131,.8);
    overflow: hidden;
}
.menu_li.active .drop_down{
    display: block;
}
.drop_down_con{
    width: 730px;
    color: #fff;
}
.drop_down_con_left{
    width: 200px;
    float: left;
    margin-top: 20px;
}
.drop_down_con_left h3{
    margin-top: 5px;
    font-size: 16px;
    height: 26px;
    line-height: 26px;
    text-align: right;
    padding-right: 25px;
    font-weight: 400;
}
.drop_down_con_right{
    width: 300px;
    margin-top: 20px;
    float: left;
}
.drop_down_con_right a{
    display: block;
    color: #fff;
    margin: 5px 5px 0;
    height: 25px;
    line-height: 25px;
    font-size: 15px;
}
.menu-right .drop_down_con_right{
    width: 250px;
}
.menu-right .drop_down_con_right a{
    box-sizing: border-box;
    width: 100px;
    float: left;
}

@media (max-width: 1280px) {
    .menu{
        width: 670px;
        float: left;
        height: 60px;
        line-height: 60px;
        margin-left: 50px;
    }
    .menu-right{
        float: right;
        margin-right: 15px;
    }
    .menu-right.menu{
        width: 180px;
        margin-left: 10px;
    }
    .menu_a{
        display: inline-block;
        padding: 0 12px;
        position: relative;
        height: 60px;
        line-height: 60px;
        color: #fff;
        font-size: 14px;
    }
}

/*index css*/
.section {
    position: relative;
    overflow: hidden;
}
.section1 .section_bg{
    background: url("../images/home/banner4.jpg");
    background-size: 100% auto;
    transition: all 4s cubic-bezier(0.25, 0.1, 0.25, 1);;
}
.section1.active.scale .section_bg{
    transform:scale(1.05);
    -ms-transform:scale(1.05); 	/* IE 9 */
    -moz-transform:scale(1.05); 	/* Firefox */
    -webkit-transform:scale(1.05); /* Safari 和 Chrome */
    -o-transform:scale(1.05); 	/* Opera */
}
.section2 .section_bg, .section3 .section_bg, .section4 .section_bg, .section5 .section_bg{
    background: url("../images/home/section_shadow.png") no-repeat;
    background-size: 100% 100%;
}
.section2{
    background: url("../images/home/section2_bg.jpg") no-repeat;
}
.section3{
    background: url("../images/home/section3_bg.jpg") no-repeat;
}
.section4{
    background: url("../images/home/section4_bg.jpg") no-repeat;
}
.section5{
    background: url("../images/home/section5_bg.jpg") no-repeat;
}
.section2, .section3, .section4, .section5{
    background-size: 100% auto;
}
.section_bg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.section3 .slide{
    position: relative;
    overflow: hidden;
}
.p1_img{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}
.section1_text{
    position: absolute;
    width: 80%;
    /* height: 280px; */
    top: 50%;
    margin-top: -180px;
    left: 150px;
    z-index: 99;
}

.section_tit_box{
    width: 300px;
    height: 110px;
    margin: 0 auto;
    text-align: center;
}
.section_tit_box h3, .section_tit_box h4{
    display: inline-block;
}
.section_tit_box h3{
    position: relative;
    padding: 0 18px;
    overflow: hidden;
    font-size: 24px;
    font-weight: 400;
    color: #0C4876;
}
.section_tit_box h4{
    position: relative;
    font-size: 16px;
    color: #0B436D;
    font-weight: 400;
    padding-top: 10px;
}
.section_tit_box.section_tit_box_white h3{
    color: #FFFFFF;
}
.section_tit_box.section_tit_box_white h4{
    color: #FFFFFF;
}
.section_tit_box h3:before{
    content: '\2014';
    position: absolute;
    left: -15px;
    color: #0C4876;
}
.section_tit_box h3:after{
    content: '\2014';
    position: absolute;
    right: -15px;
    color: #0C4876;
}
.section_tit_box.section_tit_box_white h3:before{
    color: #fff;
}
.section_tit_box.section_tit_box_white h3:after{
    color: #fff;
}



.section2_con_box{
    position: absolute;
    width: 100%;
    height: 430px;
    top: 50%;
    margin-top: -215px;
}
.slide_news_box{
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
}
.device {
    position: absolute;
    width: 3000px;
    height: 100%;
    left: 200px;
    bottom: 0;
    color: #fff;
    overflow: hidden;
}
.device_con{
    position: absolute;
    width: 3000px;
    height: 100%;
    left: 0;
    bottom: 0;
}
.section2 .device_con.animation{
    left: 600px;
    opacity: 0;
    transition: all .5s .3s;
}
.section2.active .device_con.animation{
    left: 0;
    opacity: 1;
}
.slide_news_box .swiper-slide {
    position: relative;
    width: 300px;
    height: 100%;
    margin-right: 50px;
    -webkit-transition: all 600ms;
    -moz-transition: all 600ms;
    -ms-transition: all 600ms;
    -o-transition: all 600ms;
    transition: all 600ms;
}
.slide_news_box .swiper-slide-active.swiper-slide{
    width: 620px;
}
a .normal-slide, a .active-slide{
    color: #fff;
}
.normal-slide{
    position: absolute;
    left: 0;
    top: 0;
    width: 300px;
    height: 100%;
    margin: 0 auto;
    transition: all 300ms;
    overflow: hidden;
    opacity: 1;
}
.slide_news_box .swiper-slide-active .normal-slide{
    width: 0;
    opacity: 0;
}
.normal-slide-top{
    width: 100%;
    height: 160px;
}
.normal-slide-top img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.normal-slide-bottom{
    position: relative;
    box-sizing: border-box;
    height: 200px;
    padding: 15px;
    background: rgba(0, 0, 0, .3);
    text-align: left;
}
.normal-b1{
    padding-top: 5px;
}
.normal-b1 .iconfont{
    font-size: 18px;
    float: left;
}
.normal-b1-text{
    display: inline-block;
    padding-left: 3px;
}
.normal-b2{
    font-size: 14px;
    margin-top: 20px;
    line-height: 25px;
}
.normal-b3{
    position: absolute;
    bottom: 30px;
    border: none;
    outline: none;
    border-radius: 2px;
    background: #EB621A;
    width: 110px;
    height: 32px;
    line-height: 32px;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
}
.normal-b3:hover{
    background: #CB4601;
}
.normal-b3 .iconfont{
    font-size: 13px;
}
.active-slide{
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    transition: all 500ms;
    overflow: hidden;
    opacity: 0;
}
.slide_news_box .swiper-slide-active .active-slide{
    width: 620px;
    opacity: 1;
}
.active-slide img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.active-slide-right{
    position: absolute;
    width: 60%;
    height: 100%;
    top: 0;
    right: 0;
    background: url("../images/home/news_black_bg.png");
    background-size: 100% 100%;
}
.active-slide-con{
    position: absolute;
    width: 60%;
    height: 100%;
    right: 20px;
    top: 0;
    text-align: center;
}
.active-slide-con-date{
    box-sizing: border-box;
    padding: 50px 0 40px;
    height: 140px;
}
.active-slide-con1{
    font-size: 18px;
}
.active-slide-con2{
    font-size: 14px;
    margin-top: 3px;
}
.active-slide-con3{
    width: 223px;
    line-height: 30px;
    text-align: center;
}
.active-slide-con4.normal-b3{
    left: 50%;
    margin-left: -65px;
    bottom: 40px;
    width: 130px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
}
.active-slide-con4.normal-b3 .iconfont{
    font-size: 15px;
}



.section3 .section3-slide2 {
    position: absolute;
    width: 100%;
    height: 350px;
    color: #fff;
    text-align: center;
    z-index: 98;
    right: 0;
    top: 50%;
    margin-top: -175px;
}
.section3 .swiper-slide {
    height: 70px;
    width: 100%;
    line-height: 70px;
    opacity: 0;
    -webkit-transition: 300ms;
    -moz-transition: 300ms;
    -ms-transition: 300ms;
    -o-transition: 300ms;
    transition: 300ms;
}
.section3 .swiper-slide-visible {
    opacity: 1;
}
.section3 .swiper-slide .title {
    font-size: 18px;
    cursor: pointer;
}
.section3 .swiper-slide.col-orange .title {
    font-size: 20px;
}
.section3-slide2 .swiper-slide-visible.col-gray{
    color: #7894AE;
}
.section3-slide2-btn{
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: rgba(0, 0, 0, .6);
    border-radius: 50px;
    text-align: center;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    z-index: 101;
}
.section2 .section3-slide2-btn{
    top: 50%;
    margin-top: -25px;
}
.section3 .section3-slide2-btn{
    left: 50%;
    margin-left: -20px;
}
.section3-slide2-btn:hover{
    background: rgba(0, 0, 0, .8);
}
.section3-slide2-btn.top{
    top: 100px;
}
.section3-slide2-btn.bottom{
    bottom: 80px;
}
.section3-slide2-btn.left{
    left: 50px;
}
.section3-slide2-btn.right{
    right: 50px;
}
.section3-slide2 .swiper-slide-active{
    color: #EB621A;
    font-weight: 600;
}
.section3 .swiper-slide.swiper-slide-active .title{
    font-size: 20px;
}
.section3_box{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.section3_right{
    position: absolute;
    width: 35%;
    height: 100%;
    right: 0;
    top: 0;
    background: rgba(13,80,131,.85);
}
.section3_left{
    position: absolute;
    width: 50%;
    height: 430px;
    right: 33%;
    top: 50%;
}
.section3-slide1 {
    position: absolute;
    width: 100%;
    top: 320px;
    color: #fff;
    text-align: center;
    border-radius: 3px;
    overflow: hidden;
    z-index: 99;
    opacity: 0;
    transition: all .5s .3s;
}
.section3.active .section3-slide1{
    top: 120px;
    opacity: 1;
}
.section3-slide1 .swiper-slide img{
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section3-slide1 .swiper-slide{
    position: relative;
}
.section3-slide1 .swiper-slide {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.play_btn{
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 80px;
    background: rgba(255, 255, 255, .7);
    left: 50%;
    margin-left: -40px;
    top: 50%;
    margin-top: -40px;
    z-index: 100;
    cursor: pointer;
}
.play_btn:hover{
    background: rgba(255, 255, 255, .9);
}
.play_btn_sig{
    position: absolute;
    width: 0;
    height: 0;
    border-top: 18px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 25px solid rgba(0, 0, 0, .8);
    left: 31px;
    top: 23px;
}


.business_box{
    position: absolute;
    width: 50%;
    left: 25%;
    top: 40%;
    z-index: 99;
}
.business_item{
    position: absolute;
    box-sizing: border-box;
    width: 33.33%;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    border-right: 1px solid #888E91;
    overflow: hidden;
    transition: all 1s;
    opacity: 0;
}
.business_item a{
    color: #fff;
}
.business_item:hover .business_item_top{
    top: -100%;
}
.business_item:hover .business_item_bottom{
    top: 0;
}
.business_item:last-child{
    border-right: none;
}

.section4.active .business_item{
    opacity: 1;
}
.section4.active .business_item1{
    left: 0;
}
/*.section4.active .business_item2{*/
/*left: 25%;*/
/*}*/
.section4.active .business_item3{
    left: 33.4%;
}
.section4.active .business_item4{

}
.section4.active .business_item5{
    top: 95.2%;
    left: 0;
}
.section4.active .business_item6{
    top: 95.2%;
    left: 33.4%;
}
.section4.active .business_item7{
    top: 95.2%;

}


.business_item1{
    /*left: -40%;*/
}
/*.business_item2{*/
/*left: 0;*/
/*}*/
.business_item3{
    left: 10%;
}
.business_item4{
    left: 66.9%;
}
.business_item5{
    right: 0%;
}
.business_item6{
    left: 66.9%;
}
.business_item7{
    left: 66.9%;
}

.business_item_top{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: all .3s;
}
.business_item .business_item_top_img_box{
    position: absolute;
    width: 33%;
    padding: 33% 0 0;
    left: 33.5%;
    top: 28%;
}
.business_item .business_item_top_img{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.business_item .business_item_top_img img{
    width: 100%;
}
.business_item_top h3{
    position: absolute;
    width: 100%;
    height: 50px;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    top: 70%;
    left: 0;
}
.business_item_bottom{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 100%;
    z-index: 1111;
    background: #ddd;
    transition: all .3s;
    background: url("../images/home/business_bottom_bg.png") no-repeat;
    background-size: 100% 100%;
}
.business_item_bottom h3{
    padding: 20px 20px 10px;
    font-size: 20px;
}
.business_item_bottom .business_line{
    width: 30px;
    height: 2px;
    margin-left: 20px;
    margin-bottom: 10px;
    border-top: 2px solid #fff;
}
.business_item_bottom p{
    padding: 0 20px;
    line-height: 23px;
}
@media (min-width: 1500px) {
    .business_item_top h3{
        font-size: 22px;
    }
    .business_item_bottom p{
        line-height: 28px;
        font-size: 13px;
    }
}
@media (max-width: 1500px) {
    .business_item_top h3{
        font-size: 20px;
    }
    .business_item_bottom h3{
        padding: 15px 15px 10px;
        font-size: 20px;
    }
    .business_item_bottom .business_line{
        margin-left: 15px;
        margin-bottom: 8px;
    }
    .business_item_bottom p{
        padding: 0 15px;
        line-height: 28px;
        font-size: 13px;
    }
}
@media (max-width: 1400px) {
    .business_item_top h3{
        font-size: 20px;
    }
    .business_item_bottom h3{
        padding: 15px 15px 10px;
        font-size: 18px;
    }
    .business_item_bottom .business_line{
        margin-left: 15px;
        margin-bottom: 6px;
    }
    .business_item_bottom p{
        padding: 0 15px;
        line-height: 24px;
        font-size: 13px;
    }
}
@media (max-width: 1300px) {
    .business_item_top h3{
        font-size: 18px;
    }
    .business_item_bottom h3{
        padding: 13px 13px 8px;
        font-size: 16px;
    }
    .business_item_bottom .business_line{
        margin-left: 13px;
        margin-bottom: 6px;
    }
    .business_item_bottom p{
        padding: 0 13px;
        line-height: 24px;
        font-size: 12px;
    }
}
@media (max-width: 1200px) {
    .business_item_top h3{
        font-size: 16px;
    }
    .business_item_bottom h3{
        padding: 12px 12px 10px;
        font-size: 16px;
    }
    .business_item_bottom .business_line{
        margin-left: 12px;
        margin-bottom: 8px;
    }
    .business_item_bottom p{
        padding: 0 12px;
        line-height: 21px;
        font-size: 12px;
    }
}

.section4_bottom_bg{
    position: absolute;
    width: 100%;
    height: 30%;
    left: 0;
    bottom: 0;
    background: rgba(13,80,131,.8);
}


.footer_top_box{
    background: #3C3C3C;
    color: #fff;
    padding: 33px;
}
.footer_top{
    margin: 0 auto;
}

.footer_top1{
    box-sizing: border-box;
    width: 15%;
    float: left;
    padding-top: 10px;
}
.footer_top1 img{
    width: 80px;
}
.footer_top2{
    box-sizing: border-box;
    width: 45%;
    float: left;
    padding-top:10px;
}
.footer_top3{
    box-sizing: border-box;
    width: 20%;
    float: left;
    padding-top:30px;
}

.footer_top4{
    box-sizing: border-box;
    width: 20%;
    float: left;
    padding-top:30px;
}

.footer_top4 p{
    padding-top: 10px;
}

.company_weixin{
    box-sizing: border-box;
    position: absolute;
    width: 150px;
    height: 150px;
    padding: 3px;
    display: none;
    top: -45px;
    right: -120px;
    border-radius: 3px;
    z-index: 103;
    background: #fff;
}
.company_weixin img{
    width: 100%;
    height: 100%;
}
.code_sig{
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 8px solid #fff;
    border-bottom: 10px solid transparent;
    border-left: 8px solid transparent;
    top: 60px;
    left: -15px;
}
.company_item{
    box-sizing: border-box;
    margin-top: 0px;
    position: relative;
    width: 80px;
    float: left;
    cursor: pointer;
    text-align: center;
    margin-right: 40px;
}
.company_item_name{
    font-size: 13px;
}
.company_item:hover .company_weixin{
    display: block;
}
.footer_top2_box{
    width: 480px;
}
.footer_top3 p{
    padding-top: 10px;
}

.footer_mid_box, .footer_bottom_box{
    background: #363636;
}
.footer_bottom_box{
    border-top: 1px solid #515151;
}
.footer_mid{
    padding: 50px 0;
    margin: 0 auto;
}
.footer_mid_item{
    box-sizing: border-box;
    width: 20%;
    float: left;
}
.footer_mid_item h4{
    font-size: 14px;
    color: #fff;
    padding-bottom: 20px;
    font-weight: 600;
}
.footer_mid_item_h{
    float: left;
}
.footer_mid_item .iconfont{
    color: #EC6811;
    float: left;
    margin-top: 2px;
    margin-left: 5px;
}
.footer_mid_item a{
    display: block;
    padding: 5px 0;
    color: #BBBBBB;
    font-size: 13px;
}
.footer_mid_item a:hover{
    text-decoration: underline;
}
.footer_bottom{
    margin: 0 auto;
    padding: 30px 0;
    color: #BBBBBB;
    font-size: 12px;
}
.footer_bottom a{
    color: #BBBBBB;
}
.footer_bottom a:hover{
    text-decoration: underline;
}
.jing{
    display: inline-block;
}
.jing img{
    float: left;
}
.copyright{
    float: left;
}
.footer_system{
    float: right;
}
.footer_system a{
    display: inline-block;
    width: 80px;
}
.system_email{
    padding-left: 20px;
}
.footer_system_icon{
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 20px;
    border: 1px solid #BBBBBB;
    text-align: center;
    float: right;
    margin-top: -3px;
}
.footer_system_icon .iconfont{
    color: #fff;
}
.system_line{
    display: inline-block;
    padding: 0 15px;
}


input.search_inp::-webkit-input-placeholder {
    color: #ccc;
}
input.search_inp::-moz-input-placeholder {
    color: #ccc;
}
input.search_inp::-ms-input-placeholder {
    color: #ccc;
}
.navbar-brand{
    width: 150px;
}
.navbar-brand img{
    width: 100%;
}

.header_tit_box{
    position: relative;
    height: 500px;
    background-image: url("../images/about/about_top.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}
.contact_tit_box.header_tit_box{
    background-image: url("../images/contact_bg.jpg");
}
.product_tit_box.header_tit_box{
    background-image: url("../images/product/product_bg.jpg");
}
.employee_tit_box.header_tit_box{
    background-image: url("../images/employee/banner.jpg");
}
.honest_tit_box.header_tit_box{
    background-image: url("../images/lianjie_banner.jpg");
}
.header_tit_box.media{
    background-image: url("../images/media/bg.jpg");
}
.header_tit_bg{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .2);
}
.header_tit{
    position: absolute;
    width: 300px;
    height: 100px;
    left: 50%;
    top: 130px;
    margin-left: -150px;
    text-align: center;
    color: #fff;
}
.header_tit h2{
    font-size: 36px;
    font-weight: 400;
}
.header_tit h4{
    font-size: 18px;
    font-weight: 400;
    padding-top: 8px;
}
.body_con{
    background: #FAFAFA;
}
.body_con.product_body_con{
    background: url("../images/product/product_con_bg.png") #FAFAFA no-repeat bottom left;
}
.con_box{
    position: relative;
    margin-top: -220px;
    padding-bottom: 50px;
}
.con_box.article_con_box{
    padding-bottom: 0;
}
.con_box.con_box_media{
    padding-bottom: 0;
}
.tab_box{
    text-align: center;
}
.tab_box a{
    display: inline-block;
    margin-right: 20px;
}
.tab_box a:last-child{
    margin-right: 0;
}
.tab_item{
    position: relative;
    display: inline-block;
    text-align: center;
    width: 150px;
    height: 50px;
    line-height: 48px;
    box-sizing: border-box;
    border: 1px solid #fff;
    border-radius: 3px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    background: rgba(0, 0, 0, .3);
}
.tab_item.active, .tab_item:hover{
    background: #0D5083;
}
.tab_sig{
    position: absolute;
    width: 0;
    height: 0;
    bottom: -40px;
    left: 53px;
    display: none;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid transparent;
    border-bottom: 20px solid #fff;
}
.tab_item.active .tab_sig{
    display: block;
}
.about_con{
    box-sizing: border-box;
    background: #fff;
    margin: 30px auto;
    padding: 50px;
}
.tab_content{
    background: #fff;
    margin: 30px auto;
    padding: 30px 30px 50px;
    box-shadow: 0 0 8px rgba(0, 0, 0, .08);
}
.about_con.media_con{
    box-sizing: border-box;
    width: 100%;
    min-height: 300px;
    box-shadow: none;
    margin-top: 50px;
    background: #FAFAFA;
    margin-bottom: 0;
}
.about_con.lead_con{
    padding: 30px 0 50px;
    overflow: hidden;
}
.about_con_left{
    box-sizing: border-box;
    width: 52.5%;
    padding: 20px;
    float: left;
    line-height: 36px;
    font-size: 18px;
}
.about_con_left div, .about_con_left p{
    text-indent: 2em;
    line-height: 36px;
    font-size: 18px;
}
.about_con_right{
    box-sizing: border-box;
    width: 47.5%;
    padding: 20px;
    float: left;
}
.about_con_right img{
    width: 100%;
}
.about_h{
    text-align: center;
}
.about_h h2{
    position: relative;
    font-size: 26px;
    display: inline-block;
    padding: 20px 20px 40px;
    color: #074C80;
    overflow: hidden;
    font-weight: 400;
}
.about_h h2:before{
    content: '\2014';
    position: absolute;
    left: -19px;
    color: #0C4876;
}
.about_h h2:after{
    content: '\2014';
    position: absolute;
    right: -19px;
    color: #0C4876;
}
.ceo_con_left, .ceo_con_right{
    box-sizing: border-box;
    width: 50%;
    float: left;
    padding: 30px;
}
.ceo_text{
    margin-top: 38px;
}
.ceo_text p, .ceo_con_right p, .ceo_text div, .ceo_con_right div{
    text-indent: 2em;
    line-height: 36px;
    font-size: 18px;
}
.ceo_intro{
    position: relative;
}
.ceo_intro_img{
    box-sizing: border-box;
    width: 50%;
    float: left;
    padding: 5px;
}
.ceo_intro_img img{
    display: block;
    width: 85%;
    box-shadow: 8px 8px 0 #F0F0F0;
}
.ceo_intro_text{
    position: absolute;
    width: 50%;
    height: 130px;
    right: 0;
    bottom: 0;
}
.ceo_intro_text h4{
    font-weight: 400;
    font-size: 20px;
    padding: 8px 0;
    color: #003092;
    border-bottom: 1px solid #003092;
    margin-bottom: 12px;
}
.ceo_intro_text p{
    color: #8A8A8A;
    margin-bottom: 8px;
}
.ceo_img{
    display: block;
    width: 100%;
    margin: 20px 0;
}
.ceo_i1{
    margin-top: 30px;
}
.ceo_i1, .ceo_i2{
    text-align: right;
}
.ceo_talk p{
    line-height: 30px;
    font-size: 16px;
}
.tab_content.wenhua_content{
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}
.lead_img_big{
    position: relative;
    margin: 20px auto 30px;
}
.lead_img_big_slide{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
}
.lead_img_big .swiper-slide{
    position: relative;
    width: 100%;
    height: 100%;
}
.lead_img_big .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lead_img_big .swiper-slide h4{
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    height: 50px;
    left: 0;
    bottom: 0;
    line-height: 50px;
    padding: 0 15px;
    background: rgba(13,80,131,.8);
    color: #fff !important;
    text-align: center;
    font-weight: 400 !important;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    font-size: 16px !important;
}
.lead_img_big .swiper-slide h4 span{
    color: #fff !important;
    font-weight: 400 !important;
    font-size: 16px !important;
}
.small_img{
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    margin: 0 auto;
    background: url("../images/about/lead_bg.png") no-repeat;
    background-size: 100% 100%;
}
.lead_img_small_box{
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}
.lead_img_small{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    margin: 0 auto;
}
.lead_img_small .swiper-slide{
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 5px;
}
@media (min-width: 768px) {
    .lead_img_big{
        width: 704px;
        height: 530px;
    }
    .small_img{
        height: 185px;
    }
    .lead_img_small_box{
        width: 930px;
        height: 195px;
    }
    .lead_img_small{
        height: 155px;
    }
    .lead_img_small .swiper-slide{
        width: 155px;
        height: 155px;
    }
}
@media (min-width: 1200px) {
    .lead_img_big{
        width: 830px;
        height: 625px;
    }
    .small_img{
        height: 215px;
    }
    .lead_img_small_box{
        width: 1110px;
        height: 225px;
    }
    .lead_img_small{
        height: 185px;
    }
    .lead_img_small .swiper-slide{
        width: 185px;
        height: 185px;
    }
}
.lead_img_small .swiper-slide img{
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lead_img_small .swiper-slide.active img{
    border: 4px solid #EB621A;
    border-radius: 3px;
}
.lead_img_small .swiper-slide h4{
    position: absolute;
    width: 100%;
    height: 30px;
    left: 0;
    bottom: -47px;
    text-align: center;
    color: #CCCCCC;
    font-weight: 400;
    font-size: 18px;
}
.lead_img_small .swiper-slide.active h4{
    color: #EB621A;
}
.lead_img_big .section3-slide2-btn{
    top: 50%;
    margin-top: -20px;
}
.lead_img_big .section3-slide2-btn.left{
    left: -13%;
}
.lead_img_big .section3-slide2-btn.right{
    right: -13%;
}
.lead_img_big .section3-slide2-btn{
    background: rgba(0, 0, 0, .3);
}
.lead_img_big .section3-slide2-btn:hover{
    background: rgba(0, 0, 0, .6);
}
.lead_img_big .iconfont{
    font-size: 26px;
}

.develop_box{
    position: relative;
    margin-top: 20px;
}
.develop_box_line{
    box-sizing: border-box;
    position: absolute;
    height: 100%;
    width: 30%;
    border-right: 1px solid #CCCCCC;
    left: 0;
    z-index: 1;
}
.develop_item{
    position: relative;
    box-sizing: border-box;
    padding: 10px 0;
    cursor: pointer;
    z-index: 2;
}
.develop_item:hover{
    background: url("../images/about/develop_item_bg.png") no-repeat;
    background-size: 100% 100%;
}
.develop_item_left{
    box-sizing: border-box;
    width: 30%;
    min-height: 100px;
    float: left;
    padding-top: 3px;
}
.develop_item_left img{
    width: 150px;
    margin-left: 50px;
    transform:scale(.8);
    -ms-transform:scale(.8); 	/* IE 9 */
    -moz-transform:scale(.8); 	/* Firefox */
    -webkit-transform:scale(.8); /* Safari 和 Chrome */
    -o-transform:scale(.8); 	/* Opera */
    transition: all .5s;
}
.develop_item:hover .develop_item_left img{
    transform:scale(1);
    -ms-transform:scale(1); 	/* IE 9 */
    -moz-transform:scale(1); 	/* Firefox */
    -webkit-transform:scale(1); /* Safari 和 Chrome */
    -o-transform:scale(1); 	/* Opera */
}
.develop_item_right{
    box-sizing: border-box;
    width: 70%;
    float: left;
}
.develop_time_box{
    position: relative;
    padding-left: 30px;
    color: #0D5083;
    font-weight: 600;
    font-size: 17px;
    margin-left: -8.5px;
}
.develop_item:hover .develop_time_box{
    color: #fff;
    font-size: 19px;
}
.develop_item_line{
    position: absolute;
    width: 30%;
    height: 120%;
    border-right: 1px solid #CCCCCC;
    left: -1px;
    top: -10%;
}
.develop_text_box{
    position: relative;
    padding-left: 30px;
    margin-top: 20px;
    margin-left: -8.5px;
    font-size: 15px;
    line-height: 26px;
}
.develop_item:hover .develop_text_box{
    color: #fff;
    font-weight: 600;
}
.dot_big{
    position: absolute;
    left: 0;
    top: 4px;
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 16px;
    background: #0D5083;
    text-align: center;
}
.dot_big_in{
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background: #fff;
    margin-top: 5px;
}
.develop_item:hover .dot_big{
    background: #fff;
}
.develop_item:hover .dot_big_in{
    background: #0D5083;
}
.dot_small{
    position: absolute;
    left: 5px;
    top: 10px;
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background: #EB621A;
}

.media_news_con{
    width: 90%;
    margin: 0 auto;
}
.media_news_item_box{
    position: relative;
    box-sizing: border-box;
    width: 33.3%;
    float: left;
    padding: 0 30px;
    margin: 5px 0 30px;
}
.honest_item_box .media_news_item_box{
    width: 50%;
}
.media_style_item_box{
    width: 25%;
}
.media_news_item{
    position: relative;
    box-shadow: 0 0 5px #ddd;
}
.media_news_img{
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding-bottom: 70%;
    background: #fff;
    overflow: hidden;
}
.media_style_item .media_news_img{
    padding-bottom: 130%;
}
.media_video_item .media_news_img{
    padding-bottom: 56.3%;
}
.media_news_img img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.media_news_shadow{
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .2);
}
.media_video_shadow{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .2);
}
.media_video_shadow .play_btn{
    width: 50px;
    height: 50px;
    left: 50%;
    margin-left: -25px;
    top: 50%;
    margin-top: -25px;
}
.media_video_shadow .play_btn_sig {
    border-top: 12px solid transparent;
    border-right: 17px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 17px solid rgba(0, 0, 0, .8);
    left: 20px;
    top: 14px;
}
.media_news_text_box{
    height: 188px;
    position: relative;
}
.media_news_text{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 188px;
    box-sizing: border-box;
    padding: 15px;
    background: #fff;
    transition: all .5s;
    overflow: hidden;
}
.media_news_text h4{
    padding: 6px 0 15px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    font-size: 16px;
}
.media_news_det{
    font-size: 14px;
    color: #666666;
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:3;
    line-height: 25px;
    height: 72px;
}
.media_news_time{
    margin-top: 15px;
    font-size: 14px;
    color: #0066CC;
}

.media_news_item:hover .media_news_text{
    height: 256px;
    bottom: 0;
    background: url("../images/media/hover.png") no-repeat;
    background-size: 100% 100%;
}
.media_news_item:hover .media_news_time, .media_news_item:hover  .media_news_det, .media_news_item:hover  .media_news_text h4{
    color: #fff;
}
.media_news_item:hover .media_news_shadow{
    display: block;
}
.media_news_read{
    display: block;
    margin-top: 30px;
    padding: 8px 24px;
    border: none;
    outline: none;
    background: #EB621A;
    color: #fff;
    font-size: 12px;
    text-align: center;
    border-radius: 3px;
    cursor: pointer;
    vertical-align: middle;
}
.media_news_read .iconfont{
    float: right;
}

.media_style_shadow{
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url("../images/media/style_hover.png") no-repeat;
    background-size: 100% 100%;
    transition: all .3s;
}
.media_style_item p{
    text-align: center;
    padding: 20px 0;
    color: #333333;
    font-size: 18px;
}
.media_style_item:hover p{
    color: #EB621A;
}
.media_style_item:hover .media_style_shadow{
    opacity: 1;
}
.media_video_item{
    box-sizing: border-box;
    padding: 8px;
}
.media_video_item:hover{
    background: url("../images/media/hover.png") no-repeat;
    background-size: 100% 100%;
}
.media_video_item p{
    text-align: center;
    padding: 25px 15px;
    font-size: 16px;
    font-weight: 600;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.media_video_item:hover p{
    color: #fff;
}

.article_container{
    padding-left: 50px;
    padding-right: 50px;
}
.article_top{
    width: 340px;
    float: right;
    color: #999999;
    font-size: 12px;
}
.article_top_1{
    float: left;
    margin-top: 1px;
}
.article_top_2{
    float: left;
    display: inline-block;
    padding: 0 20px;
}
.article_top_3{
    margin-top: 1px;
    float: left;
}
#share_con{
    float: right;
}
.article_tit{
    font-size: 20px;
    padding: 30px 0 10px;
    text-align: center;
}
.article_con{
    margin-top: 10px;
}
.article_con div, .article_con span{
    font-family: "Microsoft YaHei","黑体","宋体",sans-serif !important;
    font-size: 16px !important;
    line-height: 30px !important;
}
.article_con div{
    text-indent: 2em;
}
.article_con img{
    display: block;
    width: 550px;
    margin: 0 auto;
}
.article_bottom{
    position: relative;
    width: 100%;
    box-sizing: border-box;
    margin-top: 80px;
    padding: 0 15px;
    height: 50px;
    background: #F0F0F0;
}
.article_bottom_left, .article_bottom_right{
    width: 36%;
    float: left;
    margin-top: 15px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    color: #666666;
}
.article_bottom_right{
    float: right;
    text-align: right;
}
.article_bottom_left a, .article_bottom_right a{
    color: #666666;
}
.article_bottom_left a:hover, .article_bottom_right a:hover{
    text-decoration: underline;
}

.contact_us_con{
    background: #FAFAFA;
}
.map_box{
    position: relative;
    margin-top: -250px;
    background: #fff;
}
.map_box.container{
    padding: 8px;
    box-sizing: border-box;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
}
.map{
    width: 100%;
    height: 450px;
}
.contact_box{
    margin-top: 30px;
    padding-bottom: 50px;
}
.contact_type{
    box-sizing: border-box;
    width: 30%;
    float: left;
    padding-right: 30px;
}
.contact_type h3{
    padding: 15px 0;
    margin-bottom: 25px;
    border-bottom: 1px solid #E1E1E1;
}
.contact_type p{
    margin-bottom: 10px;
}
.contact_type .iconfont{
    float: left;
    margin-right: 10px;
    margin-top: 3px;
    color: #CDCDCD;
}
.contact_msg{
    box-sizing: border-box;
    width: 70%;
    padding: 15px 15px 35px;
    float: left;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
    background: #fff;
}
.contact_msg h3{
    padding-bottom: 20px;
    padding-left: 8px;
}
.msg_item{
    box-sizing: border-box;
    width: 33.3%;
    padding: 0 10px;
    float: left;
    cursor: pointer;
}
.msg_item p{
    padding-bottom: 10px;
    border-bottom: 1px solid #EEEEEE;
}
.msg_item.active p{
    border-bottom: 2px solid #0C4F82;
}
.msg_item_con{
    display: none;
    margin-top: 20px;
    box-sizing: border-box;
}
.msg_item_con.active{
    display: block;
}
.input_box{
    position: relative;
    width: 100%;
    padding: 0 10px;
    margin-bottom: 15px;
    box-sizing: border-box;
}
.input_box input{
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 10px 8px 50px;
    outline: none;
    border: none;
    border-bottom: 1px solid #E7E7E7;
}
.input_box span{
    position: absolute;
    left: 10px;
    top: 6px;
    color: #C6C6C6;
}
.input_box textarea{
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    resize: none;
    border: 1px solid #E7E7E7;
    border-radius: 5px;
    margin-top: 10px;
}
.input_box.input_code_box input{
    display: block;
    width: 250px;
    padding-left: 60px;
    padding-right: 90px;
}
.input_box.input_code_box img{
    position: absolute;
    width: 84px;
    height: 28px;
    left: 176px;
    top: 3px;
}
.msg_submit{
    display: block;
    padding: 10px 18px;
    margin-top: 28px;
    border: none;
    background: #0D5083;
    color: #fff;
    margin-left: 10px;
    border-radius: 3px;
    box-shadow: 0 0 8px #ddd;
}

.tab_content.product_content{
    box-sizing: border-box;
    padding: 40px 0 50px;
    background: none;
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr=#ffffff, endColorstr=#ffffff);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient (GradientType=1, startColorstr=#ffffff, endColorstr=#ffffff)";
    background-image: linear-gradient(white, white, rgba(255, 255, 255, .05));
}
.advantage_item{
    position: relative;
    width: 32%;
    margin-top: 100px;
    margin-left: 13%;
    margin-bottom: 40px;
    padding-bottom: 44px;
    box-sizing: border-box;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
    border-radius: 3px;
    border: 1px solid #fff;
    background: #fff;
    float: left;
}
.advantage_item:hover{
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr=#89A5D5, endColorstr=#87A3D5);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient (GradientType=1, startColorstr=#81BEED, endColorstr=#115387)";
    background-image: linear-gradient(#89A5D5, #87A3D5);
}
.advantage_item:hover .advantage_img{
    display: none;
}
.advantage_item .advantage_img_hover{
    display: none;
}
.advantage_item:hover .advantage_img_hover{
    display: block;
}
.advantage_item:nth-child(odd)
{
    margin-left: 10%;
}
.advantage_tit{
    position: relative;
    width: 38%;
    padding-top: 38%;
    margin: -19% auto 0;
    background: url("../images/product/circle2.png") no-repeat;
    background-size: 100% auto;
}
.advantage_tit span{
    position: absolute;
    display: block;
    text-align: center;
    width: 100%;
    height: 30px;
    top: 50%;
    margin-top: -15px;
    font-size: 26px;
    color: #fff;
}
.advantage_img img, .advantage_img_hover img{
    display: block;
    width: 70%;
    margin: 40px auto 38px;
}
.advantage_dec_box p{
    text-align: center;
    color: #555555;
    padding: 5px 0;
    font-size: 16px;
}
.advantage_item:hover .advantage_dec_box p{
    color: #fff;
}


.color_item{
    box-sizing: border-box;
    width: 82%;
    margin: 0 auto 30px;
    padding: 15px 0 15px 15px;
    background: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
    border-radius: 3px;
}
.color_item img{
    width: 29%;
    float: left;
}
.color_intro{
    box-sizing: border-box;
    width: 71%;
    float: left;
    padding: 0 15px;
}
.color_intro_tit{
    padding-bottom: 15px;
    border-bottom: 1px solid #E1E1E1;
    margin-bottom: 10px;
}
.color_intro_tit h3{
    float: left;
    color: #3E3E3E;
    font-size: 22px;
    font-weight: 400;
    margin-top: 3px;
}
.color_intro_tit span{
    display: inline-block;
    float: right;
    color: #fff;
    background: #0D5083;
    border: none;
    padding: 8px 30px;
    border-radius: 3px;
    margin-right: 5px;
    cursor: pointer;
}
.intro_text{
    position: relative;
    color: #666666;
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp: 7;
    line-height: 24px;
}
.intro_text span{
    position: absolute;
    display: inline-block;
    width: 100px;
    float: left;
    line-height: 25px;
}
.intro_text p{
    width: auto;
    float: left;
    margin-left: 70px;
    line-height: 25px;
}
.color_item:hover{
    background: url("../images/product/color_item_bg.png") no-repeat;
    background-size: 100% 100%;
}
.color_item:hover .intro_text, .color_item:hover .color_intro_tit h3{
    color: #fff;
}
.color_item:hover .color_intro_tit{
    border-bottom: 1px solid #fff;
}
.color_item:hover .color_intro_tit span{
    background: #EB621A;
}
.color_article_con{
    box-sizing: border-box;
    padding: 0 80px;
}
.article_back{
    position: absolute;
    width: 50px;
    text-align: center;
    text-decoration: underline;
    color: #0D5083;
    left: 50%;
    top: 15px;
    margin-left: -25px;
}

.hw_item_box{
    padding: 0 60px;
}
.hw_item{
    margin-bottom: 50px;
}
.hw_name{
    padding: 10px 25px;
    background: #F4F4F4;
}
.hw_msg{
    margin-top: 25px;
}
.hw_msg p{
    line-height: 28px;
}
.hw_name{
    color: #333333;
}
.hw_msg_1{
    box-sizing: border-box;
    width: 45%;
    float: left;
    padding-left: 25px;
    padding-right: 25px;
    color: #333333;
}
.hw_msg_2{
    box-sizing: border-box;
    width: 35%;
    float: left;
    color: #333333;
}
.hw_msg_2 a{
    color: #6942B5;
    text-decoration: underline;
}
.hw_msg_3{
    box-sizing: border-box;
    width: 20%;
    float: right;
    color: #333333;
    padding-right: 25px;
    text-align: right;
    margin-top: 5px;
}
.hw_msg_3 a{
    display: inline-block;
    padding: 6px 40px;
    background: #0D5083;
    color: #fff;
    border-radius: 2px;
    margin-bottom: 15px;
}
.hw_msg_3 a:hover{
    background: #EB621A;
}
.people_item_box .welfare_item{
    width: 100%;
    height: 180px;
    float: none;
}
.people_item_box .welfare_circle{
    margin-left: 15px;
}
.people_img{
    width: 110px;
    height: 110px;
    margin-top: 36px;
    margin-left: 36px;
    border-radius: 8px;
    overflow: hidden;
}
.people_img img{
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.people_item_box .welfare_into h3, .people_item_box .welfare_into h4{
    color: #3B3B3B;
    font-weight: 600;
    margin-bottom: 8px;
}
.people_item_box .welfare_into{
    padding-left: 36px;
    padding-right: 36px;
    position: relative;
    z-index: 3;
}
.people_item_box .welfare_into h3{
    font-size: 20px;
}
.people_item_box h4{
    font-size: 16px;
}
.people_item_box .welfare_item{
    position: relative;
}
.people_item_box .welfare_item:hover h4{
    color: #fff;
}
.people_item_box .welfare_item:hover p{
    color: #CCE2F3;
}
.people_item_box .welfare_into p{
    color: #6F6F6F;
    font-size: 14px;
    line-height: 25px;
    overflow:hidden;
    display: box;
    display: -webkit-box;
    display: -moz-box;
    display: -o-box;
    text-overflow:ellipsis;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
}
.people_num{
    position: absolute;
    font-size: 130px;
    color: #F4F9FD;
    font-style: italic;
    right: 50px;
    top: 13px;
    z-index: 2;
    font-family: "Roboto","Arial","Microsoft YaHei","黑体","宋体",sans-serif;
}
.people_item_box .welfare_item:hover .people_num{
    color: #fff;
    opacity: .1;
}




.hr-pagination {
    width: 90%;
    margin: 30px auto 0 auto;
    text-align: center;
}
.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}
.pagination > li {
    display: inline;
}
.pagination > li > a, .pagination > li > span {
    position: relative;
    float: left;
    padding: 0 10px;
    margin-left: 5px;
    height: 30px;
    line-height: 30px;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.pagination > li > span.a1{
    border: none;
    padding: 0 20px 0 0;
}
.pagination > li > span.a1 .orange{
    color: #ED782E;
}
.pagination > li > span.omit{
    border: none;
}

.pagination > li > a.current_page, .pagination > li > .current_page{
    background-color:#FAFAFA;
    color: #ED782E;
}
.pagination > li > a:hover, .pagination > li > a:focus{
    z-index: 2;
    color: #ED782E;
    background-color: #eee;
    border-color: #ddd;
}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #337ab7;
    border-color: #337ab7;
}
.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd;
}
.pagination-lg > li > a, .pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
}
.pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
.pagination-sm > li > a, .pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
}
.pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
.pager {
    padding-left: 0;
    margin: 20px 0;
    text-align: center;
    list-style: none;
}
.pager li {
    display: inline;
}
.pager li > a, .pager li > span {
    display: inline-block;
    padding: 5px 14px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
}
.pager li > a:hover, .pager li > a:focus {
    text-decoration: none;
    background-color: #eee;
}
.pager .next > a, .pager .next > span {
    float: right;
}
.pager .previous > a, .pager .previous > span {
    float: left;
}
.pager .disabled > a, .pager .disabled > a:hover, .pager .disabled > a:focus, .pager .disabled > span {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
}


.recruit_type_item{
    width: 16.6%;
    float: left;
    text-align: center;
    font-size: 16px;
    color: #333333;
    cursor: pointer;
}
.recruit_type_item span{
    display: inline-block;
    padding: 12px 0 12px;
    margin-bottom: -1px;
}
.recruit_type_item.active, .recruit_type_item.active a{
    color: #EB621A;
}
.recruit_type_item.active span{
    border-bottom: 2px solid #EB621A;
}
.recruit_type{
    border-top: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
}
.recruit_table{
    width: 100%;
    margin-top: 25px;
    border-collapse:collapse;
}
.recruit_table th{
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    padding: 0 15px 15px ;
}
.recruit_table td{
    font-size: 14px;
    color: #333333;
    padding: 13px 15px;
    text-align: center;
}
.recruit_table tr:nth-child(even){
    background: #FAFAFA;
}
.recruit_table td a{
    color: #0D5083;
}
.recruit_table td a:hover{
    text-decoration: underline;
}
.recruit_table th.first_t, .recruit_table td.first_t{
    text-align: left;
    padding-left: 20px;
}
.recruit_detail{
    padding-bottom: 50px;
}
.recruit_detail h3{
    padding: 15px 20px;
    background: #FAFAFA;
    color: #0D5083;
}
.recruit_msg{
    padding: 30px 20px;
}
.recruit_msg p{
    padding: 3px 0;
    font-size: 14px;
    font-weight: 600;
}
.recruit_text{
    padding: 0 20px 20px;
    line-height: 23px;
}

.welfare_item{
    width: 94%;
    height: 160px;
    float: right;
    margin-bottom: 26px;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
    background: #fff;
    transition: all .5s;
    display:table;
    text-align: left;
}
.welfare_item:hover{
    background: url("../images/employee/bg.png") no-repeat;
    background-size: 100% 100%;
}
.welfare_circle{
    box-sizing: border-box;
    width: 120px;
    height: 120px;
    margin-top: 20px;
    margin-left: -60px;
    float: left;
    border-radius: 50%;
    background: url("../images/employee/circle.png") no-repeat;
    background-size: 100% 100%;
}
.welfare_circle img{
    width: 48px;
    margin-left: 36px;
    margin-top: 36px;
}
.welfare_into{
    display:table-cell;
    vertical-align:middle;
    width: 100%;
    padding-left: 40px;
}
.welfare_into h3{
    font-size: 20px;
    color: #0D5083;
}
.welfare_into p{
    font-size: 16px;
    color: #333333;
    line-height: 28px;
    margin-top: 6px;
}
.welfare_item:hover h3, .welfare_item:hover p{
    color: #fff;
}
.honest_item_box{
    padding-bottom: 50px;
}

.section5 .section_tit_box{
    height: 90px;
}
.color_steel_intro{
    position: relative;
    width: 80%;
    height: 455px;
    margin: 0 auto;
    max-width: 1280px;
}
.intro_line{
    position: absolute;
    width: 8.6%;
    height: 100%;
    left: -400px;
    top: 0;
    opacity: 0;
    border-left: 2px solid #F7FBFD;
    border-top: 2px solid #F7FBFD;
    border-bottom: 2px solid #F7FBFD;
    transition: all .8s .3s;
}
.intro_line_top, .intro_line_bottom{
    position: absolute;
    width: 2px;
    height: 30px;
    right: 0;
    border-right: 2px solid #F7FBFD;
}
.intro_line_top{
    top: 0;
}
.intro_line_bottom{
    bottom: 0;
}
.steel_intro_left{
    width: 63%;
    position: absolute;
    left: -500px;
    top: 40px;
    opacity: 0;
    transition: all .8s .3s;
}
.intro_left_tit{
    color: #EB621A;
    font-size: 18px;
    line-height: 25px;
}
.intro_left_tit2{
    font-size: 16px;
    color: #fff;
    padding: 12px 0 15px;
}
.intro_left_tit_line{
    width: 30px;
    height: 2px;
    border-top: 2px solid #EB621A;
}
.intro_left_text{
    margin-top: 10px;
}
.intro_left_text p{
    text-indent: 2em;
    line-height: 22px;
    color: #fff;
}
.steel_intro_right{
    width: 28.6%;
    height: 100%;
    position: absolute;
    top: 0;
    opacity: 0;
    right: -300px;
    transition: all .8s .3s;
}
.color_steel_img{
    position: absolute;
    left: 0;
    top: 25px;
    width: 94%;
    height: 83.5%;
    z-index: 9;
}
.color_steel_img_bg{
    position: absolute;
    left: 25px;
    top: 50px;
    width: 94%;
    height: 83.5%;
    z-index: 8;
}
.color_steel_box{
    padding-top: 30px;
}

@media (min-width: 1500px) {
    .color_steel_intro{
        height: 500px;
    }
    .intro_left_text p{
        font-size: 15px;
        line-height: 26px;
    }
}
@media (max-width: 1500px) {
    .color_steel_intro{
        height: 480px;
    }
    .intro_left_text p{
        font-size: 14px;
        line-height: 24px;
    }
    .section5 .section_tit_box{
        height: 80px;
    }
}
@media (max-width: 1400px) {
    .color_steel_intro{
        height: 460px;
    }
    .intro_left_text p{
        font-size: 13px;
        line-height: 22px;
    }
    .section5 .section_tit_box{
        height: 70px;
    }
}
@media (max-width: 1300px) {
    .color_steel_intro{
        height: 420px;
    }
    .intro_left_text p{
        font-size: 12px;
        line-height: 20px;
    }
    .intro_left_tit{
        font-size: 16px;
        line-height: 22px;
    }
    .intro_left_tit2{
        font-size: 14px;
        color: #fff;
        padding: 6px 0 6px;
    }
    .intro_left_text{
        margin-top: 6px;
    }
    .section5 .section_tit_box{
        height: 60px;
    }
}


.section5.active .intro_line{
    opacity: 1;
    left: 0;
}
.section5.active .steel_intro_left{
    opacity: 1;
    left: 50px;
}
.section5.active .steel_intro_right{
    opacity: 1;
    right: 0;
}
.lianzheng_notice{
    padding: 50px;
}
.lianzheng_notice .article_con{
    font-size: 16px;
    line-height: 28px;
}
.lianzheng_con{
    font-size: 16px;
    line-height: 28px;
}
@media (max-width: 1290px) {
    /*.color_steel_box{*/
    /*-ms-transform: scale(.9); !* IE 9 *!*/
    /*-webkit-transform: scale(.9); !* Safari *!*/
    /*transform: scale(.9); !* 标准语法 *!*/
    /*}*/
}
.pre_img{
    width: 100%;
    display: block;
}
.reviewed_pass, .reviewed_unpass{
    width: 80px;
    height: 30px;
    line-height: 30px;
    outline: none;
    color: #fff;
    background-color: #5cb85c;
    border-radius: 5px;
    border: none;
}
.reviewed_unpass{
    color: #fff;
    background-color: #ddd;
}
.iframe_box{
    width: 550px;
    height: 403px;
    text-align: center;
    margin: 0 auto;
    text-indent: 0em;
}
.iframe_box iframe{
    width: 100%;
    height: 100%;
}

#share{
    float: right;
    margin-top: -6px;
}
#share .social-share-icon{
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
}

.index_header .index_header_box .clear-float .search {
    width: 35px;
    height: 35px;
    float: right;
    margin-right: 20px;
    position: relative;
    top: 12px;
    left:-5px;
}

.searchbd {
    position: absolute;
    left: 50%;
    top: 225px;
    margin-left: -250px;
    text-align: center;
    margin-top:10px;
    height: 50px;
    width:500px;
    background: url(../images/home/searchbg.svg) no-repeat;
    background-size:500px 50px;
}


.searchbd .bar6 input {
    border: none;
    background: none;
    height: 50px;
    width: 400px;
    padding-left: 8px;
    float: left;
}
.searchbd .bar6 button {
    border: none;
    background: none;
    height: 50px;
    width: 82px;
}

.search_tit_box{
    background-image: url("../images/search/search_b2.jpg");
}

.icon-dy {
    position: relative;
    top:2px;
}

.fesi-tb ul li{
    list-style-type:disc;
}

.fesi-tb ul li::marker{
    color: #0E6EB8;
    font-size: 30px;
}


