@charset "utf-8";

/* CSS Document */
*{
    margin:0;
    padding:0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body{ color:#000; font-size:12px; line-height:22px; font-family:Arial; min-width: 1200px;}
ul{
    padding-left: 0;
}
ul,li{ list-style:none; margin-bottom: 0;}
img{ border:none; display:inline-block;}
a{ text-decoration:none; color:#333;}
a:hover{ text-decoration:none; }
i{ font-style:normal;}
dl,dd,p{ margin-bottom: 0;}
input,textarea,select{ outline:none; font-family:Arial;}
h1,h2,h3,h4,h5,h6{ font-style:normal; font-weight:normal; list-style:none; margin-bottom: 0;}
.clear{ clear:both;}

/*美化滚动条*/

/*滚动条凹槽的颜色，还可以设置边框属性*/
::-webkit-scrollbar-track-piece {
    background-color:#f8f8f8;
}
/*滚动条的宽度*/
::-webkit-scrollbar {
    width:6px;
    height:9px;
}
/*滚动条的设置*/
::-webkit-scrollbar-thumb {
    background-color:#dddddd;
    background-clip:padding-box;
    min-height:28px;
}
::-webkit-scrollbar-thumb:hover {
    background-color:#bbb;
}


.container-fluid:after{ content: ""; display: block; clear: both;}
.container:after{ content: ""; display: block; clear: both;}


header{
    height: 136px;
    position: relative;
}
.header_m{
    width: 1450px;
    margin: auto;
    display: flow-root;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.logo{
    float: left;
    display: inline-block;
    margin-top: 58px;
}
.search_but{
    float: right;
    display: inline-block;
    cursor: pointer;
    margin-top: 60px;
}
.search_but i{
    font-size: 24px!important;
}


/*导航*/
.head_nav{ float: left; margin-right: 25px;}
.head_nav ul li{ float: left; margin: 0 40px; text-align: center; position: relative;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.head_nav ul li .navA{ height: 136px; position: relative;}
.head_nav ul li .navA a{ display: block; color: #1b1b1b; font-size:22px; line-height: 136px;}


.head_nav ul li .navA span{ font-size: 12px; text-transform: uppercase; display: block;}
.head_nav ul li.on .navA a{color: #004693;}
.head_nav ul li:hover .navA a,.head_nav ul li:hover .navA span{ color: #004693;}

.head_nav ul li .top_down{ display: none;}

.head_nav ul li .navTwo{
    position: absolute;
    left: 50%;
    top: 100%;
    width:150px;
    text-align: center;
    background: #004693;
    z-index: 9;
    margin-left: -75px;
    box-shadow: 0 0 5px #004693;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    -webkit-transform:translateY(10px);
    -moz-transform:translateY(10px);
    -ms-transform:translateY(10px);
    -o-transform:translateY(10px);
    transition:all .5s;
    -o-transition:all .5s;
    -ms-transition:all .5s;
    -moz-transition:all .5s;
    -webkit-transition:all .5s;
}
.head_nav ul li .navTwo dd{ margin-bottom: auto; height: 40px; border-bottom: solid 1px rgba(255,255,255,0.1);}
.head_nav ul li .navTwo a{ font-size: 14px !important; line-height: 40px !important; color: #fff; display: block; }
.head_nav ul li .navTwo dd:hover{ background: rgba(255,255,255,0.1);}

.head_nav ul li:hover .navTwo{
    opacity:1;
    visibility:inherit;
    transform:translateY(0);
    -webkit-transform:translateY(0);
    -moz-transform:translateY(0);
    -ms-transform:translateY(0);
    -o-transform:translateY(0);
}

.search_layer{
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: -100%;
    z-index: 99;
    background: rgba(0,0,0,0.5);
    transition:all .5s;
    -o-transition:all .5s;
    -ms-transition:all .5s;
    -moz-transition:all .5s;
    -webkit-transition:all .5s;
}
.search_layer.on{
    top: 0;
}
.search_layer_m{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.search_div{
    width: 1000px;
    background: #ffffff;
    overflow: hidden;
}
.search_div input{
    display: block;
    width: 82%;
    height: 48px;
    border: none;
    padding: 0 15px;
    font-size: 14px;
}
.search_div input::placeholder{
    font-size: 14px;
}
.search_div button{
    width: 18%;
    height: 50px;
    border: none;
    background: #0545A1;
    display: block;
}
.search_div button i{
    font-size: 26px;
    color: #ffffff;
    font-weight: bold;
}
.search_div form{
    overflow: hidden;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.search_close{
    position: absolute;
    right: 20px;
    top: 20px;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius:50%;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
}
.search_close i{
    font-size: 20px;
    font-weight: bold;
}



/*banner*/
.banner{ width: 100%; margin: 0 auto; position: relative;}
.banner:after{ content: ""; display: block; clear: both; }
.swiper_banner {
    float: left;
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.swiper_banner .swiper-slide {
    height: 100%;
    position: relative;
    background-size: cover !important;
    display: flex;
    justify-content:center;
    flex-direction:column;
    align-items:center;
}
.swiper_banner .swiper-pagination{ bottom: 20px !important;}
.swiper_banner .swiper-pagination span{ background: #ffffff; width: 16px; height:16px; opacity:1; margin: 0 15px !important; }
.swiper_banner .swiper-pagination .swiper-pagination-bullet-active{  background: #ff8b0d !important;}

.banner_text{
    width: 100%;
    padding-left: 170px;
}
.banner_text span{
    font-weight: bold;
    display: block;
    font-size: 64px;
    color: #ffffff;
    line-height: 70px;
    font-style:italic;
}
.banner_text p{
    font-weight: bold;
    font-size: 64px;
    color: #ff8b0d;
    line-height: 70px;
    font-style:italic;
}
/*indexa*/
.indexa{
    background: #ffffff;
    padding: 45px 0 145px;
}
.index_title{
    width: 100%;
    text-align: center;
}
.index_title span{
    font-style: italic;
    font-size: 44px;
    color: #1b1b1b;
    line-height: 50px;
}

.indexa_list{
    width: 100%;
    margin-top: 85px;
}

.indexa_div{
    background: #F3F3F3;
    padding: 50px 30px;
}
.indexa_div .hot{
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #D91111;
    color: #ffffff;
    text-align: center;
    padding-top: 45px;
    padding-left: 10px;
    position: absolute;
    left: -15px;
    top: -30px;
    font-size: 22px;
}

.indexa_div_img{
    width: 100%;
    height: 140px;
    text-align: center;
    display: flex;
    justify-content:center;
    flex-direction:column;
    align-items:center;
}
.indexa_div_img img{
    max-width: 100%;
}
.indexa_div_info{
    width: 100%;
    text-align: center;
    margin-top: 12px;
}
.indexa_div_info span{
    font-size: 25px;
    line-height: 30px;
    color: #414141;
    display: block;
    margin-bottom: 25px;
}
.indexa_div_info p{
    margin-bottom: 25px;
    font-size: 14px;
    color: #414141;
    line-height: 26px;
}
.indexa_div_info a{
    font-size: 14px;
    color: #414141;
    display: inline-block;
    width: 104px;
    height: 40px;
    border: solid 1px #545454;
    border-radius: 25px;
    line-height:39px;
}
.indexa_div_info a:hover{
    background: #545454;
    color: #ffffff;
}

.indexb{
    background: url("../images/bj_1.jpg") top center no-repeat;
    background-size: cover!important;
    padding: 85px 0 100px 0;
}
.color_ffffff{
    color: #FFFFFF!important;
}
.indexb_but{
    width: 100%;
    text-align: center;
    font-size: 0;
    margin-top: 45px;
}
.indexb_but dd{
    text-align: center;
    display: inline-block;
    margin: 0 24px;
    font-size: 28px;
    color: #3c3c3c;
    width: 192px;
    height: 66px;
    background: #FFFFFF;
    border-radius: 50px;
    line-height: 66px;
    cursor: pointer;
}
.indexb_but dd.on{
    background: #FF8D08;
    color: #ffffff;
}
.indexb_cp{
    width: 100%;
    margin-top: 45px;
}
.indexb_cp_list{
    display: none;
}
.indexb_cp .indexb_cp_list:nth-child(1){
    display: block;
}
.indexb_cp_div{
    width: 100%;
    background: #F7F7F7;
    padding: 100px 30px 60px;
}
.indexb_cp_img{
    width: 100%;
    height: 255px;
    display: flex;
    justify-content:center;
    flex-direction:column;
    align-items:center;
}
.indexb_cp_img img{
    max-width: 100%;
}

.indexb_cp_info{
    width: 100%;
    margin-top: 45px;
    text-align: center;
}
.indexb_cp_info span{
    font-size: 32px;
    color: #414141;
    line-height: 36px;
    display: block;
    margin-bottom: 35px;
}
.indexb_cp_info p{
    font-size: 18px;
    color: #414141;
    line-height: 26px;
}

/*indexc*/
.indexc{
    padding: 120px 0 145px;
}
.indexc_title{
    width: 100%;
    text-align: left;
    position: relative;
}
.indexc_title span{
    position: relative;
    display: inline-block;
    padding-bottom: 25px;
    font-size: 44px;
    color: #444444;
    line-height: 46px;
    font-weight: bold;
}
.indexc_title span:after{
    content: "";
    position: absolute;
    width: 94px;
    height: 10px;
    background: #FF8C10;
    border-radius: 4px;
    left: 0;
    bottom: 0;
}
.indexc_p{
    width: 100%;
    margin-top: 35px;
    font-size: 18px;
    color: #373737;
    line-height: 36px;
    font-style: italic;
    text-indent:35px;
}
.indexc_share{
    width: 100%;
    display: flex;
    margin-top: 50px;
}
.indexc_share dd{
    margin-right: 42px;
    width: 70px;
    height: 70px;
    background: #0A5BB7;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    overflow: hidden;
}
.indexc_share dd i{
    font-size: 30px !important;
    color: #ffffff;
}
.indexc_share dd:nth-child(4) i{
    font-size: 38px !important;
}

/*footer*/
footer{
    padding-top: 60px;
}
.footer_top{
    width: 100%;
    padding-bottom: 50px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.bot_nav span{
    font-size: 20px;
    color: #1b1b1b;
}
.bot_nav ul{
    margin-top: 30px;
}
.bot_nav ul li{
    font-size: 18px;
    color: #5e5e5e;
    margin-bottom: 20px;
}
.bot_nav ul li a{
    color: #5e5e5e;
}
.bot_nav ul li:hover a{
    color: #0A5BB7;
}


.footer_bot{
    width: 100%;
    border-top: solid 1px #E2E2E2;
    padding: 20px 0;
    font-size: 16px;
    color: #6c6c6c;
    line-height: 26px;
    text-align: center;
}
.footer_bot a{
    font-size: 18px;
    color: #6c6c6c;
}

.bot_bj{
    background: url("../images/bot_bj.png") bottom right no-repeat;
}

.ny_plate{
    padding: 60px 0 80px;
}

.ny_title{
    width: 100%;
    text-align: center;
}
.ny_title h1{
    display: block;
    font-size: 56px;
    color: #01469c;
    font-weight: bold;
}
.ny_mm{
    width: 100%;
    font-size: 20px;
    color: #373737;
    line-height: 30px;
    position: relative;
    font-style: italic;
    text-indent: 35px;
    margin-top: 30px;
}
.ny_mm img{
    display: block;
    max-width: 100%;
}

.ny_plate .indexc_share{
    display: flex;
    align-items: center;
    justify-content: center;
}

.ny_contact{
    margin-top: 158px;
    width: 100%;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.ny_contact_left{
    width: 48%;
}
.logo2{
    padding-left: 22px;
    margin-top: 25px;
}
.logo2 img{
    height: 36px;
}
.ny_contact_info{
    width: 100%;
    margin-top: 50px;
}
.ny_contact_right{
    width: 49%;
}
.ny_contact_right img{
    width: 100%;
}
.ny_contact_info dd{
    margin: 18px 0;
    width: 100%;
    display: flex;
    align-items: center;
}
.ny_contact_info dd img{
    margin-right: 10px;
}
.ny_contact_info dd span{
    font-size: 18px;
    color: #000000;
}

.ny_msg{
    background: #F6F6F6;
    padding: 60px 0;
}
.ny_msg li{
    margin-bottom:25px;
}

.ny_msg_div input{
    width: 100%;
    height: 40px;
    background: #ffffff;
    border: none;
    padding: 0 10px;
    color: #494949;
    font-size: 14px;
}
.ny_msg_div input::placeholder{
    font-size: 14px;
    color: #494949;
}
.ny_msg_div textarea{
    width: 100%;
    height: 140px;
    border: none;
    padding: 10px;
    color: #494949;
    font-size: 14px;
}
.ny_msg_div textarea::placeholder{
    font-size: 14px;
    color: #494949;
}
.ny_msg_div button{
    width: 194px;
    height:40px;
    border: none;
    color: #ffffff;
    font-size: 16px;
    background: #F42505;
    text-transform: uppercase;
}

.cp_plate{
    padding: 90px 0 120px;
}
.cp_plate .cp_plate_m{
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.cp_plate_left{
    width: 17.95%;
}
.cp_plate_left dd{
    position: relative;
    width: 100%;
    border-bottom: solid 1px #EAEAEA;
    font-size: 20px;
    color: #121212;
    line-height: 60px;
}
.cp_plate_left dd:first-child{
    border-top: solid 1px #EAEAEA;
}

.cp_plate_a{
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    cursor: pointer;
}
.cp_plate_a a{
    padding-left: 20px;
}
.cp_plate_a i{
    margin-right: 15px;
}

.cp_plate_left dd.on .cp_plate_a{
    background: #F48301;
    color: #ffffff;
}
.cp_plate_left dd.on .cp_plate_a a{

    color: #ffffff;
}
.cp_plate_left dd .cp_plate_a a{
    display: inline-block;
    color: #121212;
    /*width: 100%;*/
    /*height: 100%;*/
}

.cp_plate_b{
    display: none;
    width: 100%;
    border-top: solid 1px #efefef;
}
.cp_plate_b ul li{
    position: relative;
    width: 100%;
    line-height: 46px;
    border-bottom: solid 1px #eaeaea;
}
.cp_plate_b ul li:last-child{
    border-bottom: none;
}
.cp_plate_b ul li a{

}
.cp_plate_dj{
    width: 100%;
    background: rgba(244,131,1,0.6);
}
.cp_plate_dj a{
    color: #ffffff;
    padding-left: 30px;
    font-size: 18px;
}

.cp_plate_sj{
    width: 100%;
    border-top: solid 1px #eaeaea;
}
.cp_plate_sj a{
    font-size: 14px;
    display: block;
    line-height: 22px;
    padding: 15px 15px;
}



.cp_plate_right{
    width: 81.4%;
    position: relative;
}
.cp_banner{
    width: 100%;
    overflow: hidden;
}
.cp_banner img{
    width: 100%;
    display: block;
}

.cp_list{
    width: 100%;
    margin-top: 35px;
}
.cp_list li{
    margin-bottom: 30px;
}

.cp_list_div{
    width: 100%;
    height: 100%;
    background: #F7F7F7;
    padding: 40px 30px;
    box-shadow: -5px 5px 5px #efefef;
}
.cp_list_img{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cp_list_img img{
    max-width: 100%;
}
.cp_list_info{
    width: 100%;
    text-align: center;
    margin-top: 15px;
}
.cp_list_info span{
    display: block;
    font-size: 18px;
    color: #414141;
    margin-bottom: 15px;
}
.cp_list_info p{
    font-size: 12px;
    color: #414141;
}
.cp_sous{
    border-top: solid 1px #efefef;
}

.cp_plate_show{
    width: 100%;
    margin: auto;
    display: flow-root;
}

.cp_plate_info{
    width: 100%;
    margin-top: 40px;
}
.cp_show_title{
    width: 100%;
    font-size: 24px;
    color: #000000;
    font-weight: bold;
    line-height: 30px;
}
.cp_show_file{
    width: 100%;
    margin-top: 30px;
}
.cp_show_p{
    width: 100%;
    margin-top: 40px;
    font-size: 14px;
    line-height: 26px;
    color: #000000;
}
.cp_show_p img{
    display:block;
    max-width: 100%;
}
.cp_plate_color{
    background: #F5F5F5;
}
.Photoalbum{
    width:700px;
    overflow: hidden;
    position: relative;
    margin: auto;
}

.cpSwiper2 {
    height: 80%;
    width: 100%;
}

.cpSwiper_div{
    width: 514px;
    margin: auto;
    display: flow-root;
    position: relative;
}

.cpSwiper {
    width:382px;
    margin: auto;
    box-sizing: border-box;
    padding: 10px 10px;
}

.cpSwiper .swiper-slide{
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.cpSwiper .swiper-slide img{
    width: 100%;
}
.cpSwiper .swiper-slide.swiper-slide-thumb-active{
    border: solid 1px #CD3742;
}

.cpSwiper_div .swiper-button-prev,.cpSwiper_div .swiper-button-next{
    width: 32px;
    height: 32px;
    background: #C4C4C4;
    border-radius: 50%;
    text-align: center;
    top: 59%;
}
.cpSwiper_div .swiper-button-prev:after,.cpSwiper_div .swiper-button-next:after{
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
}

.news_right{
    width: 100%;
    background: #FFFFFF;
    padding:0 50px;
    font-size: 16px;
}

.news_right ul li{
    width: 100%;
    border-bottom: solid 1px #efefef;
    padding: 20px 0;
}
.news_right ul li a{
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    line-height: 26px;
    margin-bottom: 15px;
}
.news_right ul li:hover a{
    color: #003A7C;
}
.news_right ul li p{
    font-size: 14px;
    line-height: 24px;
}
.news_right ul li span{
    display: block;
    margin-top: 15px;
    font-size: 16px;
}
.news_right ul li:last-child{
    border-bottom: none;
}

.news_show_right{
    width: 100%;
    background: #FFFFFF;
    padding: 50px;
    font-size: 16px;
}
.news_show_title{
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    line-height: 26px;
    margin-bottom: 15px;
}

.news_show_sp{
    width: 100%;
    text-align: center;
    border-bottom: solid 1px #cccccc;
    padding-bottom: 15px;
}
.news_show_sp span{
    font-size: 14px;
    line-height: 24px;
    margin: 0 20px;
    color: #999999;
}

.news_show_nr{
    width: 100%;
    padding: 15px 0;
    font-size: 15px;
    line-height: 30px;
    color: #000000;
}
.search-pagination{ width:100%; margin:auto; margin-top:30px;}
.search-pagination .pagination{ width: 100%; text-align: center; display: block;}
.search-pagination .pagination>li{ margin: 0 5px; display: inline-block;}
.search-pagination .pagination>li a{ float: none; color: #555; padding: 5px 10px; border: solid 1px #e7e7e7; border-radius: 0;}
.search-pagination .pagination>li a:hover{ background-color:#004693; border-color: #004693; color: #fff;}
.search-pagination .pagination>li.active{ background:#004693;}
.search-pagination .pagination>li.active a{ color:#fff; background-color:#004693; border-color: #004693;}


.cpSwiper2 .swiper-button-next:after,.cpSwiper2 .swiper-button-prev:after{
    color: #F48301;
}