@charset "utf-8";

/* CSS Document */
*{ margin:0; padding:0;}

body{ color:#000; font-size:12px; line-height:22px; font-family:"Source Han Sans CN","Microsoft YaHei",Arial,Tahoma,sans-serif; min-width: 1200px;}
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:"Source Han Sans CN","Microsoft YaHei",Arial,Tahoma,sans-serif;}
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;}
.top_butt{
    display: none;
}

header{
    position: fixed;
    height: 108px;
    top: 0;
    left: 0;
    z-index: 19;
    padding-top: 16px;
    background: rgba(255,255,255,0);
    border-top: solid 6px transparent;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
header.header_on{
    background: rgba(255,255,255,1);
    border-color: #0F407B;
    box-shadow: 0 0 10px #efefef;
}
.header_m{
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}
.logo{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}
.logo_b{
    display: none;
}
header.header_on .logo_b{
    display: block;
}
header.header_on .logo_a{
    display: none;
}
.logo span{
    margin-left: 18px;
}
header.header_on .head_nav ul li:hover .navA a{
    color: #0F407B;
}
header.header_on .head_nav ul li.on .navA a{
    color: #0F407B;
}

.header_r_top{
    text-align: right;
}
.header_r_top span{
    font-size: 14px;
    color: #ffffff;
    margin-right: 15px;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.header_r_top a{
    color: #ffffff;
    font-size: 18px;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
header.header_on .head_nav ul li .navA a{
    color: #000000;
}
header.header_on .header_r_top span{
    color: #666666;
}
header.header_on .header_r_top a{
    color: #666666;
}

/*导航*/
.head_nav{ float: right;}
.head_nav ul{
    padding-left: 0;
}
.head_nav ul li{
    float: left; margin: 0 15px; 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{
    position: relative;
    padding-top: 10px;
}
.head_nav ul li .navA a{
    display: block;
    color: #fff;
    font-size:17px;
    font-weight: bold;
    -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 span{ font-size: 12px; text-transform: uppercase; display: block;}
.head_nav ul li.on .navA a{color: #c6a962;}
.head_nav ul li:hover .navA a,.head_nav ul li:hover .navA span{ color: #c6a962;}


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

.head_nav ul li .navTwo{
    margin-left: calc(-180px / 3.2);
    position: absolute; left: 0; top: 100%; width:180px; text-align: center; background: #c6a962; z-index: 9;
    box-shadow: 0 0 5px #aaa;
    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(178,148,74,0.5);}
.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(178,148,74,0.5);}

.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);
}



/*banner*/

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

.swiper_banner .swiper-slide {
    position: relative;
    text-align: center;
    font-size: 18px;
    /* Center slide text vertically */
    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;
    background-size: cover !important;
}
.swiper_banner .container{
    height: 100%;
    position: relative;
    text-align: left;
}
.swiper_banner .swiper-slide span{
    color: #ffffff;
    font-size: 54px;
    line-height: 60px;
    margin-bottom: 40px;
    display: block;
}
.swiper_banner .swiper-slide p{
    color: #ffffff;
    font-size: 16px;
}
.swiper_banner_b{
    width: 100%;
    position: absolute;
    bottom: 125px;
    left: 0;
}


.swiper_banner .swiper-pagination{ bottom: 20px !important;}
.swiper_banner .swiper-pagination span{ width: 16px; height:16px; opacity:1; margin: 0 15px !important; }
.swiper_banner .swiper-pagination .swiper-pagination-bullet-active{  background: #4f9ef8 !important;}



.index_news{
    background: #002041;
}

.index_news_list{
    width: 100%;
    position: relative;
    padding: 54px 0;
}
.index_news_list ul{
    padding-left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.index_news_list ul li{
    width: 49%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.index_news_img{
    width: 35%;
    overflow: hidden;
}
.index_news_img img{
    width: 100%;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.index_news_list ul li:hover .index_news_img img{
    -o-transform: scale(1.1,1.1);
    -moz-transform: scale(1.1,1.1);
    -ms-transform: scale(1.1,1.1);
    -webkit-transform: scale(1.1,1.1);
    transform: scale(1.1,1.1);
}

.index_news_r{
    width: 63%;
    padding-top: 10px;
}
.index_news_r a{
    color: #ffffff;
    font-size: 20px;
    line-height: 28px;
    display: block;
    margin-bottom: 15px;
}
.index_news_r a:hover{
    color: #c6a962;
}

.index_news_r p{
    font-size: 13px;
    color: #ededed;
    line-height: 26px;
    padding-right: 20px;
}


.index_about{
    background-size: cover !important;
    padding-top: 50px;
    padding-bottom: 50px;
}

.index_about_m{
    width: 456px;
    background: #ffffff;
    border-top: solid 6px #3FAAE2;
    padding: 55px 48px 35px;
}
.index_about_title{
    font-size: 40px;
    color: #111111;
    line-height: 50px;
    font-weight: 500;
    margin-bottom: 16px;
}
.index_about_p{
    width: 100%;
    margin-top: 10px;
}
.index_about_p p{
    font-size: 16px;
    color: #666666;
    line-height: 26px;
    font-weight: 300;
}
.index_about_list{
    width: 100%;
    margin-top: 10px;
}
.index_about_list dd{
    width: 100%;
    padding: 15px 0;
    border-bottom: solid 1px #E4E4E4;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}
.index_about_list dd a{
    font-size: 17px;
    color: #222222;
    font-weight: 400;
}
.index_about_list dd:hover a{
    color: #c6a962;
}
.index_about_list dd i{
    margin-left: 10px;
}
.index_about_more{
    width: 100%;
    padding: 25px 0;
}
.index_about_more a{
    font-size: 16px;
    color: #222222;
}
.index_about_more a i{
    width: 28px;
    height: 28px;
    background: #002041;
    color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 28px;
    margin-left: 10px;
}
.index_about_more a:hover{
    color: #c6a962;
}


.index_newsb{
    padding-top: 70px;
    padding-bottom: 70px;
}
.index_title_a{
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}
.index_title_a span{
    font-size: 70px;
    line-height: 70px;
    color: #111111;
    font-weight: 500;
}
.index_title_a a{
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}
.index_title_a a i{
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    background: #002041;
    color: #ffffff;
    margin-left: 10px;
}
.index_title_a a:hover{
    color: #c6a962;
}
.index_newsb_list{
    width: 100%;
    margin-top: 60px;
}
.index_newsb_list ul{
    padding-left: 0;
}

.index_newsb_div{
    width: 100%;
}
.index_newsb_img{
    width: 100%;
    overflow: hidden;
}
.index_newsb_img img{
    width: 100%;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.index_newsb_info{
    width: 100%;
    padding: 26px;
}
.index_newsb_info a{
    font-size: 22px;
    color: #222222;
    line-height: 26px;
    display: block;
    margin-bottom: 10px;
    font-weight: 400;
}
.index_newsb_info p{
    font-size: 16px;
    color: #666666;
    line-height: 26px;
    font-weight: 300;
}
.index_newsb_info a:hover{
    color: #c6a962;
}

.index_newsb_list ul li:hover .index_newsb_img img{
    -o-transform: scale(1.1,1.1);
    -moz-transform: scale(1.1,1.1);
    -ms-transform: scale(1.1,1.1);
    -webkit-transform: scale(1.1,1.1);
    transform: scale(1.1,1.1);
}

.index_w{
    padding-top: 160px;
    padding-bottom: 160px;
    background-size: cover !important;
    overflow: hidden;
}
.index_w_m {
    float: right;
    width: 456px;
    background: #ffffff;
    border-top: solid 6px #3FAAE2;
    padding: 55px 48px 35px;
}


.index_ne{
    padding-top: 80px;
    padding-bottom: 80px;
}

.index_ne_list{
    width: 100%;
    margin-top: 50px;
}
.index_ne_list ul{
    padding-left: 0;
}
.index_ne_m{
    width:100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}
.index_ne_date{
    display: flex;
    justify-content:center;
    flex-direction:column;
    align-items:center;
}
.index_ne_date span{
    font-size: 16px;
    color: #000000;
    line-height: 24px;
}
.index_ne_date i{
    font-size: 34px;
    color: #000000;
    line-height: 40px;
}

.index_ne_info{
    width: 88%;
}
.index_ne_info a{
    font-size: 22px;
    color: #222222;
    line-height: 26px;
    display: block;
    margin-bottom: 10px;
}
.index_ne_info a:hover{
    color: #c6a962;
}

.index_ne_info p{
    font-size: 16px;
    color: #666666;
    line-height: 26px;
    font-weight: 300;
    padding-right: 20px;
}

footer{
    background: #002041;
}
.footer_top{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    padding-top: 100px;
    padding-bottom: 50px;
}
.footer_top dd{
    width: 33.33%;
    height: 242px;
    position: relative;
}
.footer_top dd:after{
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: -ms-linear-gradient(rgba(255,255,255,0), rgba(255,255,255,0.3), rgba(255,255,255,0));
    background: -o-linear-gradient(rgba(255,255,255,0), rgba(255,255,255,0.3), rgba(255,255,255,0));
    background: -webkit-linear-gradient(rgba(255,255,255,0), rgba(255,255,255,0.3), rgba(255,255,255,0));
    background: -moz-linear-gradient(rgba(255,255,255,0), rgba(255,255,255,0.3), rgba(255,255,255,0));
    background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,0.3), rgba(255,255,255,0));
}
.footer_top dd:last-child:after{
    display: none;
}

.footer_fx{
    width:100%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    margin-top: 60px;
}
.footer_fx a{
    margin: 0 15px;
}

.footer_ico{
    width: 100%;
    text-align: center;
    margin-bottom: 22px;
}
.footer_xx{
    width: 100%;
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    line-height: 30px;
    padding: 0 140px;
}

.footer_m{
    width: 100%;
    border-top: solid 1px #334D68;
    border-bottom: solid 1px #334D68;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding-top: 65px;
    padding-bottom: 60px;
}
.footer_m dd{
    width: 33.333%;
}

.footer_m_title{
    width: 100%;
}
.footer_m_title span{
    display: inline-block;
    position: relative;
    font-size: 28px;
    color: #ffffff;
    font-weight: 200;
    padding-bottom: 10px;
}
.footer_m_title span:after{
    content: "";
    width: 52px;
    height: 3px;
    background: #ffffff;
    position: absolute;
    left: 0;
    bottom: 0;
}
.footer_m_title span i{
    font-weight: 500;
}
.footer_m_tr{
    text-align: right;
}

.footer_bot{
    width: 100%;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    padding: 16px 0;
    font-weight: 300;
}
.footer_bot a{
    color: #ffffff;
    font-size: 16px;
}

.dblogo{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content:center;
}
.dblogo img{
    margin: 0 10px;
}
.dbms{
    width: 100%;
    margin-top: 40px;
    color: #ffffff;
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
}
.footer_m_list{
    width: 100%;
    margin-top: 30px;
}
.footer_m_list ul{
    padding-left: 0;
}
.footer_m_list ul li{
    padding: 15px 0;
    width: 100%;
    display: flex;
    font-size: 18px;
    color: #ffffff;
}
.footer_m_list ul li a{
    font-size: 18px;
    color: #ffffff;
    width: 90%;
    margin-left: 10px;
}
.footer_m_logo{
    width: 100%;
    margin-top: 40px;
}
.footer_m_logo ul{
    float: right;
    width: 356px;
    padding-left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}
.footer_m_logo ul li{
    width: 32%;
    margin-bottom: 10px;
}
.footer_m_logo ul li img{
    width: 100%;
}
.ny_banner{
    height: 840px;
    background-size: cover !important;
}
.hx_h{
    height: 108px;
}
.ny_banner .container{
    height: 100%;
    position: relative;
}
.ny_banner_nr{
    position: absolute;
    bottom: 206px;
    left: 0;
}
.ny_banner_nr span{
    display: block;
    font-size: 82px;
    color: #ffffff;
    line-height: 90px;
    margin-bottom: 20px;
}
.ny_banner_nr p{
    width: 60%;
    font-size: 18px;
    color: #ffffff;
    line-height: 30px;
    font-weight: 200;
}
.ny_list{
    padding-top: 50px;
    padding-bottom: 50px;
}

.ny_list .index_newsb_list ul li{
    margin-bottom: 30px;
}
.ny_tj_m{
    width: 100%;
    background: #002041;
    padding: 98px 0;
    margin-top: -126px;
}
.ny_tj_m{
    display: flex;
}
.ny_tj_m dd{
    width: 25%;
    display: flex;
    justify-content:center;
    flex-direction:column;
    padding-left: 80px;
}
.ny_tj_m dd span{
    color: #ffffff;
    font-size: 80px;
    line-height: 90px;
    display: block;
    margin-bottom: 10px;
}
.ny_tj_m dd p{
    color: #b7b7b7;
    font-size: 18px;
    line-height: 26px;
}

.nyb_a{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    background: #ffffff;
    padding-bottom: 60px;
}

.nyb_about{
    width: 33.33%;
    background: #0F407B;
    padding: 75px 55px;
}
.nyb_about span{
    display: block;
    font-size: 46px;
    line-height: 50px;
    color: #ffffff;
}

.nyb_about_ms{
    width: 100%;
    margin-top: 68px;
    font-size: 18px;
    font-weight: 200;
    color: #ffffff;
    line-height: 30px;
}

.nyb_a_right{
    width: 66.67%;
    display: flex;
}
.nyb_a_right dd{
    width: 50%;
}


.nyb_a_rimg{
    width: 100%;
    position: relative;
    overflow: hidden;
}
.nyb_a_rimg img{
    width: 100%;
}
.nyb_a_rinfo{
    width: 100%;
    padding: 30px 50px;
}
.nyb_a_rinfo .nyb_a_rtitle{
    width: 100%;
    font-size: 24px;
    color: #222222;
    line-height: 30px;
    margin-bottom: 15px;
    display: block;
    font-weight: 500;
}
.nyb_a_rinfo p{
    font-size: 16px;
    color: #888888;
    line-height: 24px;
    height: 72px;
    overflow: hidden;
    font-weight: 300;
}

.nyb_a_rmore{
    margin-top: 30px;
    display: -moz-flex;
    display: -o-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    font-size: 16px;
    color: #000000;
    font-weight: bold;
}
.nyb_a_rmore i{
    display: inline-block;
    width: 25px;
    height: 25px;
    border: solid 1px #2A669A;
    border-radius: 50%;
    color: #2A669A;
    margin-left: 15px;
    text-align: center;
}
.nyb_a_rtitle:hover,.nyb_a_rmore:hover{
    color: #0F407B;
}

.nyb_b{
    background: #E4E4E4;
    padding-top: 80px;
    padding-bottom: 80px;
}
.nyb_b_title{
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    position: relative;
}
.nyb_b_title span{
    font-size: 70px;
    line-height: 70px;
    color: #111111;
}

.nyb_b_list{
    width: 100%;
    margin-top: 50px;
}
.nyb_b_list ul{
    padding-left: 0;
}
.nyb_b_div{
    width: 100%;
}
.nyb_b_img{
    width: 100%;
    overflow: hidden;
}
.nyb_b_img img{
    width: 100%;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.nyb_b_tit{
    width: 100%;
    margin-top: 20px;
}
.nyb_b_tit a{
    font-size: 22px;
    color: #222222;
    line-height: 24px;
}
.nyb_b_tit a:hover{
    color: #0F407B;
}
.nyb_b_ms{
    width: 100%;
    font-size: 18px;
    color: #636363;
    font-weight: 200;
    margin-top: 20px;
    line-height: 30px;
}
.nyb_b_list ul li:hover .nyb_b_img img{
    -o-transform: scale(1.1,1.1);
    -moz-transform: scale(1.1,1.1);
    -ms-transform: scale(1.1,1.1);
    -webkit-transform: scale(1.1,1.1);
    transform: scale(1.1,1.1);
}

.nyb_c{
    padding-top: 70px;
    padding-bottom: 70px;
}

.nyb_c_info{
    width: 100%;
    background: #F5F5F5;
    padding: 20px;
}
.nyb_c_info a{
    font-size: 24px;
    color: #333333;
    line-height: 28px;
    display: block;
    margin-bottom: 20px;
}
.nyb_c_info a:hover{
    color: #0F407B;
}
.nyb_c_info p{
    font-size: 16px;
    color: #636363;
    line-height: 26px;
    font-weight: 200;
}
.nyb_c_img{
    width: 100%;
    overflow: hidden;
}
.nyb_c_img img{
    width: 100%;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.nyb_c_list ul li:hover .nyb_c_img img{
    -o-transform: scale(1.1,1.1);
    -moz-transform: scale(1.1,1.1);
    -ms-transform: scale(1.1,1.1);
    -webkit-transform: scale(1.1,1.1);
    transform: scale(1.1,1.1);
}

.campus_a{
    padding-top: 70px;
}
.campus_a_m{
    width: 100%;
}
.campus_a_m dd{
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    overflow: hidden;
}
.campus_a_img{
    width:64.8%;
}
.campus_a_img img{
    width: 100%;
}
.campus_a_r{
    width: 35.2%;
}
.campus_a_m dd:nth-child(1){
    display:flex;
    flex-flow:row-reverse!important;
}
.campus_a_m dd:nth-child(1) .campus_a_r{
    padding-right: 90px;
}
.campus_a_m dd:nth-child(2) .campus_a_r{
    padding-left: 90px;
}
.campus_a_r span{
    display: block;
    font-size: 46px;
    color: #333333;
    line-height: 50px;
    font-weight: 500;
}
.campus_a_rms{
    width: 100%;
    margin-top: 70px;
    font-size: 18px;
    font-weight: 200;
    line-height: 30px;
}
.swiper_qha{
    overflow: hidden;
    position: relative;
}
.swiper_qhb{
    overflow: hidden;
}
.nyb_d{
    padding-top: 80px;
    padding-bottom: 80px;
}
.nyb_qh_list{
    width: 100%;
    margin-top: 50px;
}
.nyb_b_qh{
    width: 120px;
    position: relative;
}
.nyb_b_qh .swiper-button-next:after{
    display: none;
}
.nyb_b_qh .swiper-button-prev:after{
    display: none;
}
.nyb_b_qh .swiper-button-next,.nyb_b_qh .swiper-button-prev{
    width: 50px;
    height: 50px;
    border: solid 1px #ADADAD;
    border-radius: 50%;
}
.nyb_b_qh .swiper-button-next i,.nyb_b_qh .swiper-button-prev i{
    color: #ADADAD;
    font-size: 20px;
}
.nyb_b_qh .swiper-button-next{
    right: auto;
    left: 0;
}
.nyb_b_qh .swiper-button-prev{
    left: auto;
    right: 0;
}

.ny_lm_m{
    background: #002042;
    padding: 45px 32px;
    margin-top: -60px;
}
.ny_lm_m a{
    color: #d6d6d6;
    font-size: 18px;
    margin-right: 45px;
    font-weight: 200;
    position: relative;
    padding-bottom: 10px;
}
.ny_lm_m a:hover{
    font-weight: 400;
    color: #ffffff;
}
.ny_lm_m a:hover:after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffffff;
}
.ny_lm_m a.on:after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffffff;
}
.ny_lm_m a.on{
    font-weight: 400;
    color: #ffffff;
}

.ny_news_bk{
    padding-top: 40px;
    padding-bottom: 40px;
}
.ny_news_list{
    width: 100%;
}
.ny_news_list ul{
    padding-left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}
.ny_news_list ul li{
    width: 49%;
    background: #F9F9F9;
    padding: 40px 50px;
    margin-bottom: 45px;
}

.list_page{
    width: 100%;
    margin-top: 30px;
}
.list_page ul{
    padding-left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.list_page ul li{
    margin: 0 5px;
}
.list_page ul li.on span{
    font-size: 14px;
    border: solid 1px #ECECEC;
    padding: 4px 10px;
    background: #ECECEC;
    color: #6C7680;
}
.list_page ul li a{
    font-size: 14px;
    border: solid 1px #E5E5E5;
    padding: 4px 10px;
}
.list_page ul li:hover a{
    border: solid 1px #ECECEC;
    background: #ECECEC;
    color: #6C7680;
}

.course_list{
    width: 100%;
    margin-top: 80px;
}
.course_list ul{
    padding-left: 0;
}
.course_list ul li{
    margin-bottom: 30px;
}

.course_div{
    width: 100%;
    background: #F5F5F5;
    padding: 30px;
}
.course_title{
    width: 100%;
    font-size: 18px;
    color: #333333;
    line-height: 32px;
    border-bottom: solid 1px #E0E0E0;
    padding-bottom: 35px;
    font-weight: 500;
}
.course_title a:hover{
    color: #0F407B;
}
.course_b{
    width: 100%;
    padding-top: 25px;
    display: flex;
}
.course_b span{
    width: 50%;
    display: flex;
    align-items: center;
}
.course_b span i{
    font-size: 18px;
    margin-left: 15px;
    font-weight: 300;
}
.num_i{
    color: #888888;
}

.ny_ss_rw{
    width: 60%;
    margin: auto;
    text-align: center;
    height: 100%;
    display: flex;
    justify-content:center;
    flex-direction:column;
    align-items:center;
}
.ny_ss_rw_text span{
    display: block;
    font-size: 82px;
    color: #ffffff;
    line-height: 90px;
    margin-bottom: 20px;
}

.ny_ss_rw_text p{
    font-size: 18px;
    color: #ffffff;
    line-height: 30px;
    font-weight: 200;
}

.ny_ss_rw_form{
    width: 100%;
    margin-top: 80px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}
.ny_ss_rw_form dd{
    position: relative;
}
.ny_ss_rw_form dd input{
    width: 100%;
    height: 48px;
    padding: 0 10px;
    font-size: 14px;
}
.ny_ss_rw_form dd button{
    width: 100%;
    height: 48px;
    background: none;
    border: solid 1px #ffffff;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
}
.ny_ss_rw_form dd i{
    position: absolute;
    left: 5px;
    top: 8px;
    color: #f00;
}
.form_a{
    width: 20%;
}
.form_b{
    width: 63%;
}
.form_c{
    width: 15%;
}

.cq_show{
    padding-top: 50px;
    padding-bottom: 50px;
}
.cq_show_m{
    width: 100%;
}
.nyb_c_list ul{
    padding-left: 0;
}

.nyb_b_qh .swiper-button-next, .nyb_b_qh .swiper-button-prev{
    width: 40px;
    height: 40px;
    outline: none;
}


.sddjie {
    width: 68%;
    margin: auto;
}
.sddjie table {
    border: 2px solid #666;
    border-top: none;
    border-left: none;
    text-align: center;
    line-height: 40px;
}
.sddjie table {
    border-width: 1px;
}
.ee {
    background: #88673a;
    color: #fff;
    font-weight: bold;
    text-align: center;
}
.ee {
    background: #AC5230;
    font-size: 15px;
    height: 50px;
}
.sddjie table tr td {
    border-left: 2px solid #666;
    border-top: 2px solid #666;
    font-weight: 700;
}
.sddjie table tr td {
    border: 1px solid #666;
    font-weight: normal;
}
.djien {
    width: 25%;
}
.djien img{
    width: 100%;
}
.sddjie table tr td strong {
    font-weight: bold;
}
.eow {
    text-align: left;
    line-height: 30px;
    color: #d63937;
    padding: 2%;
}

.showinfo_title{
    width: 100%;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
}
.showinfo_xq{
    width: 100%;
    margin-top: 30px;
    font-size: 16px;
    line-height: 30px;
}
.showinfo_xq img{
    max-width: 100%;
}

.showpage{
    width: 100%;
    margin-top: 30px;
}



