@font-face {
    font-family: f1;
    src: url('PingFang\ Regular_0.ttf')
}
html {
    font-size: 100%;
    width: 100%;
    outline: none;
    min-height: 100%;
    position: relative;
}

body {
    background: #FFF;
    font-family: f1;
    font-size: 14px;
    font-weight: 400;
    color: #373737;
    text-align: left;
    margin: auto;
    width: 100%;
    min-width: 1300px;
    outline: none;
}

body,
div,
p,
input,
a,
span,
img,
ul,
li,
textarea,
select,
button {
    outline: none;
}

a,
a:hover {
    color: #373737;
    text-decoration: none;
}

html {
    font-size: 100%;
    width: 100%;
    outline: none;
}

body,
div,
p,
span,
ul,
li,
a,
input,
textarea {
    box-sizing: border-box;
}

.clearfix::after {
    display: block;
    content: '';
    clear: both;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

.left {
    float: left;
}

.right {
    float: right;
}

img {
    width: auto;
    height: auto;
}

p {
    margin: 0;
}

.boxShadow {
    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.26);
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.26);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.26);
}


/* gShow */

.gShow {
    opacity: 0;
    animation-duration:2s;
    -webkit-animation-duration: 2s;
    animation-iteration-count:1;
    -webkit-animation-iteration-count:1;
}

@keyframes mymove {
    from {
        transform: translate3d(0, 30%, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-webkit-keyframes mymove
/* Safari and Chrome */

{
    from {
        transform: translate3d(0, 30%, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.fontFadeIn {
    animation: 3s ease 0s 1 normal none running fontMove;
    -webkit-animation: 3s ease 0s 1 normal none running fontMove;
}

@keyframes fontMove {
    from {
        transform: translate3d(-10%, 50%, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-webkit-keyframes fontMove
/* Safari and Chrome */

{
    from {
        transform: translate3d(-10%, 50%, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}


/* scaleImg */

.scaleImg {
    overflow: hidden;
    display: block;
}

.scaleImg img {
    transition-duration: .3s;
    display: block;
}

.scaleImg:hover img {
    transform: scale(1.1);
    /* filter: grayscale(0); */
}


/* banner */

.banner {
    position: relative;
    overflow: hidden;
}

.banner img {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    animation: 10s infinite alternate bannerMove;
    -webkit-animation: 10s infinite alternate bannerMove;
    display: block;
}

@keyframes bannerMove {
    from {
        transform: scale(1, 1);
    }
    to {
        transform: scale(1.1, 1.1);
    }
}

@-webkit-keyframes bannerMove
/*Safari and Chrome*/

{
    from {
        -webkit-transform: scale(1, 1);
    }
    to {
        -webkit-transform: scale(1.1, 1.1);
    }
}


/* content */

.content {
    width: 1200px;
    margin: 0 auto;
}
/* header */
header{
    height: 90px;
    position: fixed;
    top: 0;
    z-index: 99;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
header .logo{
    margin-top: 5px;
}
header .logo img{
    width: auto;
    display: block;
}
header .logo img:nth-child(2){
    display: none;
}
header .nav>li{
    margin-left: 34px;
    float: left;
}
header .nav>li>a{
    line-height: 90px;
    color: #FFFFFF;
    font-size: 18px;
    position: relative;
    transition: .5s;
    -webkit-transition: .5s;
    display: block;
    /*padding: 0 2px;*/
}
header .nav>li>a::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    border-bottom: 2px solid #fff;
    opacity: 0;
    transition: .5s;
    -webkit-transition: .5s;
}
header .nav>li.active>a::before,
header .nav>li:hover>a::before{
    width: 100%;
    opacity: 1;
}
header.hdBgcolor{
    background-color: #fff;
    box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.15);
}
header.hdBgcolor img:nth-child(1){
    display: none;
}
header.hdBgcolor img:nth-child(2){
    display: inline-block;
}
header.hdBgcolor .nav>li>a{
    color: #333333;
}
header.hdBgcolor .nav>li.active>a{
    color: #076CE0;
}
header.hdBgcolor .nav>li>a::before{
    border-bottom-color: #076CE0;
}
/* home */
.home .title{
    font-size: 28px;
    line-height: 28px;
    color: #000000;
    text-align: center;
}
.home .title .b{
    color: #076CE0;
}
.home_1 .swiper-button-btn{
    width:50px;
    height:50px;
    background-color:rgba(0,0,0,.2);
    border-radius:25px;
    background-size: 11px 21px;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_1 .swiper-button-prev{
    background-image: url(../images/index_02.png);
    left: 50%;
    margin-left: -600px;
}
.home_1 .swiper-button-next{
    background-image: url(../images/index_03.png);
    right: 50%;
    margin-right: -600px;
}
.home_1 .swiper-button-btn:hover{
    background-color: #003F9E;
}
.home_1 .swiper-pagination{
    bottom: 30px;
}
.home_1 .swiper-pagination-bullet{
    width:12px;
    height:12px;
    opacity: 1;
    background-color: #fff;
}
.home_1 .swiper-pagination-bullet-active{
    background-color: #FE0000;
}
.home_1 .info{
    position: absolute;
    top: 50%;
    width: 1200px;
    left: 50%;
    margin-left: -600px;
    text-align: right;
    color: #fff;
    padding: 0 100px;
    font-family: f1;
    margin-top: -48px;
    transition: .5s .3s;
    -webkit-transition: .5s .3s;;
    transform: translateX(80px);
    -webkit-transform:  translateX(80px);
    opacity: 0;
}
.home_1 .info .titEn{
    font-size: 19px;
    line-height: 18px;
    margin-bottom: 24px;
    letter-spacing: 2px;
}
.home_1 .info .tit{
    font-size: 54px;
    line-height: 54px;
    letter-spacing: 3px;
}
.home_1 .swiper-slide-active .info{
    opacity: 1;
    transform: translateX(0);
    -webkit-transform:  translateX(0);
}
.home_2{
    padding: 60px 0;
}
.home_21{
    width: 640px;
}
.home_21 .title{
    padding-bottom: 10px;
    border-bottom: 1px solid #CCCCCC;
    position: relative;
    text-align: left;
}
.home_21 .title a{
    color: #999999;
    font-size: 14px;
    line-height: 14px;
    margin-top: 15px;
}
.home_21 .title .btn{
    position: relative;
}
.home_21 .title .btn::before{
    content:"";
    position: absolute;
    bottom: -12px;
    left: 0;
    height: 2px;
    width: 110px;
    background-color: #076CE0;
    opacity: 0;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_21 .title .btn .b{
    color: #333333;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_21 .title .btn.on::before{
    opacity: 1;
}
.home_21 .title .btn.on .b,
.home_21 .title .btn:hover .b{
    color: #076CE0;
}
.home_21 .rows{
    padding-bottom: 15px;
    border-bottom: 1px solid #076CE0;
    margin-top: 30px;
}
.home_21 .rows .tit{
    font-size: 20px;
    line-height: 20px;
    color: #076CE0;
    display: block;
    margin-bottom: 12px;
}
.home_21 .rows .tit .left{
    width: 80%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.home_21 .rows .tit .right{
    font-size: 14px;
    margin-top: 6px;
    color: #999999;
}
.home_21 .rows .txt{
    line-height: 26px;
    color: #999999;
}
.home_21 .list a{
    display: block;
    border-bottom: 1px solid #F2F2F2;
    line-height: 78px;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_21 .list a .left{
    width: 80%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    font-size: 16px;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_21 .list a .right{
    color: #999999;
}
.home_21 .list a:hover{
    border-bottom-color: #076CE0;
}
.home_21 .list a:hover .left{
    color: #076CE0;
}
.home_21 .mode>div{
	display: none;
}
.home_21 .mode>div.show{
	display: block;
}
.home_21 .btn{
	cursor: pointer;
}
.homt_22{
    width: 500px;
}
.homt_22 .scaleImg img{
    width: 100%;
    height: 290px;
    object-position: center;
}
.homt_22 .info{
    position: relative;
    padding-top: 20px;
    padding-left: 80px;
}
.homt_22 .info .times{
    position: absolute;
    left: 0;
    top: 20px;
    text-align: center;
}
.homt_22 .info .times .d{
    font-size: 48px;
    margin-bottom: 8px;
    line-height: 38px;
    color: #666666;
    transition: .5s;
    -webkit-transition: .5s;
}
.homt_22 .info .times .y{
    line-height: 14px;
    color: #999999;
    transition: .5s;
    -webkit-transition: .5s;
}
.homt_22 .info .tit{
    font-size: 20px;
    color: #333333;
    line-height: 20px;
    margin-bottom: 15px;
    transition: .5s;
    -webkit-transition: .5s;
}
.homt_22 .info .txt{
    color: #999999;
    line-height: 26px;
}
.homt_22:hover .scaleImg img{
    transform: scale(1.1);
}
.homt_22:hover .info .tit,
.homt_22:hover .info .times .d,
.homt_22:hover .info .times .y{
    color: #076CE0;
}
.home_3{
    padding: 50px 0;
    background: url(../images/index_05.jpg) no-repeat;
    background-size: 1920px auto;
}
.home_3 .info{
    padding: 38px 45px 38px 40px;
    background-color: #fff;
    box-shadow:0px 0px 15px 1px rgba(0, 0, 0, 0.15);
    width: 600px;
}
.home_3 .info .title{
    padding-left: 15px;
    border-left: 3px solid #076CE0;
    text-align: left;
}
.home_3 .info .txt{
    color: #666666;
    line-height: 32px;
    margin-top: 26px;
    margin-bottom: 26px;
    font-size: 16px;
}
.home_3 .info a{
    width:160px;
    height:50px;
    line-height: 50px;
    background:rgba(0,63,158,1);
    border-radius:25px;
    text-align: center;
    font-size: 16px;
    color: #FFFFFF;
    display: block;
}
.home_3 .content{
    position: relative;
}
.home_3 .content .bg{
    position: absolute;
    width: 580px;
    left: 0;
    top: 50px;
}
.home_4{
    padding: 60px 0;
}
.home_4 .item{
    width: 385px;
    margin-right: 22.5px;
    margin-top: 30px;
}
.home_4 .item:nth-of-type(3n){
    margin-right: 0;
}
.home_4 .item .scaleImg{
    position: relative;
}
.home_4 .item span{
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}
.home_4 .item span img{
    width: auto;
    transform: scale(1);
}
.home_4 .item p{
    text-align: center;
    font-size: 20px;
    margin-top: 15px;
    line-height: 20px;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_4 .item:hover .scaleImg>img{
    transform: scale(1.1);
}
.home_4 .item:hover p{
    color: #076CE0;
}
.home_5{
    padding-bottom: 60px;
}
.home_5 .title{
    margin-bottom: 30px;
}
.home_5 .item{
    position: relative;
    width: 279px;
    height: 340px;
    margin-right: 28px;
    background-color: #003F9E;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_5 .item a::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 4px solid #003F9E;
    opacity: 0;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_5 .item img{
    display: block;
    width: 100%;
    height: 340px;
    object-fit: contain;
    background-color: #F6F6F6;
}
.home_5 .item p{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    line-height: 44px;
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    transition: .5s;
    -webkit-transition: .5s;
}
.home_5 .item:nth-of-type(4n){
    margin-right: 0;
}
.home_5 .item:hover{
    box-shadow:0px 2px 24px 0px rgba(0, 0, 0, 0.22);
}
.home_5 .item:hover a::before{
    opacity: 1;
}
.home_5 .item:hover p{
    background-color: #003F9E;
}
.home_5 .btn{
    width:160px;
    height:50px;
    border:1px solid #076CE0;
    border-radius:25px;
    text-align: center;
    line-height: 50px;
    font-size: 16px;
    color: #076CE0;
    display: block;
    margin: 30px auto 0 auto;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_5 .btn:hover{
    background-color: #076CE0;
    color: #fff;
}
.home_6{
    padding-bottom: 50px;
}
.home_6 .swiper-container{
    border-top: 2px solid #00409E;
    margin-top: 30px;
    padding-bottom: 52px;
}
.home_6 .swiper-slide{
    line-height: 120px;
    height: 160px;
    text-align: center;
    background-color: #F6F6F6;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_6 .swiper-slide img{
    width: auto;
    vertical-align: middle;
}
.home_6 .swiper-slide img:nth-child(2){
    display: none;
}
.home_6 .swiper-slide p{
    font-size: 16px;
    line-height: 16px;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_6 .swiper-slide:hover img:nth-child(1){
    display: none;
}
.home_6 .swiper-slide:hover img:nth-child(2){
    display: inline-block;
}
.home_6 .swiper-slide:hover p{
    color: #fff;
}
.home_6 .swiper-slide:hover{
    background-color: #00409E;
}
.home_6 .swiper-button-btn{
    width:34px;
    height:34px;
    background-color:rgba(204,204,204,1);
    border-radius:17px;
    background-size: 7px 14px;
    top: auto;
    margin-top: 0;
    bottom: 0;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_6 .swiper-button-prev{
    background-image: url(../images/index_02.png);
    left: 50%;
    margin-left: -44px;
}
.home_6 .swiper-button-next{
    background-image: url(../images/index_03.png);
    right: 50%;
    margin-right: -44px;
}
.home_6 .swiper-button-btn:hover{
    background-color: #086CE0;
}
footer{
    background-color: #00409E;
}
footer .link{
    border-bottom: 1px solid rgba(255,255,255,.3);
    line-height: 90px;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}
footer .link a{
    display: block;
    color: #fff;
    font-size: 16px;
}
footer .center{
    padding: 54px 0;
}
footer .info{
    margin-right: 160px;
}
footer .info .tit{
    font-size: 16px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}
footer .info .name{
    color: #fff;
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 16px;
}
footer .info .txt{
    color: #fff;
    line-height: 30px;
}
footer .info .txt span{
    color: rgba(255, 255, 255, 0.5);
}
footer .qrCode>div{
    margin-right: 30px;
}
footer .qrCode>div p{
    color: rgba(255, 255, 255, 0.5);
    line-height: 16px;
    font-size: 16px;
    margin-bottom: 15px;
}
footer .qrCode>div img{
    display: block;
    width: 122px;
}
footer .share .tit{
    color: rgba(255, 255, 255, 0.5);
    line-height: 16px;
    font-size: 16px;
    margin-bottom: 15px;
}
footer .share a{
    margin-right: 20px;
    width:40px;
    height:40px;
    border:1px solid rgba(255, 255, 255, .4);
    border-radius:50%;
    float: left;
    text-align: center;
    line-height: 36px;
}
footer .share a img{
    width: auto;
    vertical-align: middle;
}
footer .share a.code{
	position: relative;
}
footer .share a.code .icon{
	position: absolute;
	bottom: 45px;
	left: 50%;
	margin-left: -42px;
	width: 84px;
	display: none;
}
footer .share a.code:hover .icon{
	display: block;
}
footer .bottom{
    line-height: 76px;
    border-top: 1px solid rgba(255,255,255,.3);
    color: rgba(255, 255, 255, 0.4);
}
footer .bottom a{
    color: rgba(255, 255, 255, 0.4);
}
/* crumbs */
.crumbs{
    border-bottom: 1px solid #DEDEDE;
    padding: 14px 0;
}
.crumbs_1 a{
    margin-right: 15px;
    width:162px;
    height:44px;
    border:1px solid rgba(222, 222, 222, 1);
    border-radius:22px;
    text-align: center;
    line-height: 44px;
    display: block;
    float: left;
    font-size: 16px;
    color: #666666;
    transition: .5s;
    -webkit-transition: .5s;
}
.crumbs_1 a.on,
.crumbs_1 a:hover{
    background-color: #00409E;
    border-color: #00409E;
    color: #fff;
}
.crumbs_2{
    line-height: 44px;
    position: relative;
    padding-left: 28px;
}
.crumbs_2 img{
    width: auto;
    position: absolute;
    top: 14px;
    left: 0;
}
.crumbs_2 span,
.crumbs_2 a{
    float: left;
    color: #A5A5A7;
}
.crumbs_2 span{
    padding: 0 5px;
}
.pContent{
    padding: 40px 0 60px 0;
}
/* contact */
.contact_1{
    width: 573px;
    height: 400px;
}
.contact_2{
    border-top: 1px solid #E4E4E4;
    width: 627px;
}
.contact_2>div{
    width: 50%;
    border-right: 1px solid #E4E4E4;
    border-bottom: 1px solid #E4E4E4;
    position: relative;
    padding-left: 90px;
    height: 200px;
    padding-top: 74px;
}
.contact_2>div .icon{
    position: absolute;
    line-height: 42px;
    left: 32px;
    width: 40px;
    text-align: center;
    top: 50%;
    margin-top: -21px;
}
.contact_2>div .tit{
    color: #9A9A9A;
    font-size: 18px;
    line-height: 18px;
}
.contact_2>div .txt{
    color: #343434;
    font-size: 16px;
    line-height: 22px;
    margin-top: 12px;
}
/* student */
.student .item{
    position: relative;
    width: 279px;
    margin-right: 28px;
    background-color: #003F9E;
    margin-bottom: 20px;
    transition: .5s;
    -webkit-transition: .5s;
}
.student .item a::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 4px solid #003F9E;
    opacity: 0;
    transition: .5s;
    -webkit-transition: .5s;
}
.student .item img{
    display: block;
    width: 280px;
    height: 340px;
    object-fit: contain;
    background-color: #F6F6F6;
}
.student .item p{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    line-height: 44px;
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    transition: .5s;
    -webkit-transition: .5s;
}
.student .item:nth-of-type(4n){
    margin-right: 0;
}
.student .item:hover{
    box-shadow:0px 2px 24px 0px rgba(0, 0, 0, 0.22);
}
.student .item:hover a::before{
    opacity: 1;
}
.student .item:hover p{
    background-color: #003F9E;
}
/* pages */
.pages{
    margin-top: 10px;
    line-height: 34px;
}
.pages .nums{
    color: #999999;
    margin-right: 8px;
}
.pages a{
    margin-left: 12px;
    border: 1px solid #DEDEDE;
    float: left;
    color: #999999;
    padding: 0 13px;
    border-radius: 2px;
    transition: .5s;
    -webkit-transition: .5s;
}
.pages a.on,
.pages a:hover{
    color: #fff;
    background-color: #003F9E;
    border-color: #003F9E;
}
/* news */
.news .pages{
    margin-top: 30px;
}
.news .rows{
    margin-top: 16px;
    background-color: #F7F7F7;
    display: block;
    transition: .5s;
    -webkit-transition: .5s;
}
.news .rows .mImg{
    padding: 15px;
}
.news .rows .mImg img{
    width: 242px;
    height: 150px;
    object-fit: cover;
    display: block;
}
.news .rows .info{
    width: 928px;
    padding: 40px 60px;
}
.news .rows .info .tit{
    margin-bottom: 30px;
    line-height: 20px;
    font-size: 20px;
    transition: .5s;
    -webkit-transition: .5s;
}
.news .rows .info .tit .left{
    width: 82%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.news .rows .info .tit .right{
    font-size: 18px;
    color: #666666;
}
.news .rows .info .txt .left{
    line-height: 26px;
    color: #999999;
    width: 82%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.news .rows .info .txt .right{
    transition: .5s;
    -webkit-transition: .5s;
    width:90px;
    height:36px;
    border:1px solid rgba(222, 222, 222, 1);
    border-radius:18px;
    text-align: center;
    line-height: 36px;
    color: #999999;
    margin-top: 8px;
}
.news .rows:hover{
    box-shadow:0px 0px 18px 0px rgba(0, 0, 0, 0.22);
}
.news .rows:hover .info .tit{
    color: #076CE0;
}
.news .rows:hover .info .txt .right{
    background-color: #AAAAAA;
    border-color: #AAAAAA;
    color: #FFFFFF;
}
/* newsDetail */
.newsDetail_1{
    width: 800px;
}
.newsDetail_1 .tit{
    font-size: 30px;
    color: #1E50AE;
    line-height:36px;
    margin-bottom: 15px;
}
.newsDetail_1 .des{
    margin-bottom: 40px;
}
.newsDetail_1 .des span{
    color: #999999;
    margin-right: 30px;
    line-height: 14px;
}
.newsDetail_1 .txt{
    font-size: 16px;
    line-height: 30px;
    color: #666666;
    text-indent: 28px
}
.newsDetail_1 .txt img{
    width: auto;
    height: auto;
    display: block;
    margin: 15px auto;
}
.newsDetail_2{
    width: 330px;
    padding-bottom: 50px;
    background-color: #F7F7F7;
}
.newsDetail_2 .tit{
    line-height: 54px;
    background-color: #003F9E;
    font-size: 20px;
    text-align: center;
    color: #fff;
}
.newsDetail_2 .list{
    padding: 0 20px;
}
.newsDetail_2 .list a{
    display: block;
    position: relative;
    border-bottom: 1px solid #FFFFFF;
    padding: 18px 0;
    line-height: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    padding-left: 34px;
    font-size: 16px;
}
.newsDetail_2 .list a span{
    position: absolute;
    left: 0;
    top: 19px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #E5E5E5;
    line-height: 18px;
    text-align: center;
    font-size: 12px;
}
.newsDetail_2 .list a::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background-color: #EAEAEA;
}
.newsDetail_2 .list a:nth-child(1) span{
    background-color: #FF0000;
    color: #fff;
}
.newsDetail_2 .list a:nth-child(2) span{
    background-color: #FF6600;
    color: #fff;
}
.newsDetail_2 .list a:nth-child(3) span{
    background-color: #FF9900;
    color: #fff;
}

.newsDetail_3{
    margin-top: 40px;
    padding-top: 35px;
    border-top: 1px solid #CCCCCC;
}
.newsDetail_3 .left a{
    display: block;
    line-height: 28px;
    color: #666666;
    transition: .5s;
    -webkit-transition: .5s;
}
.newsDetail_3 .left a:hover{
    color: #1E50AE;
}
.newsDetail_3 .right{
    line-height: 34px;
    font-size: 16px;
    color: #1E50AE;
}
/* about */
.about .title{
    line-height: 30px;
    font-size: 16px;
    color: #999999;
}
.about .title span{
    display: inline-block;
    font-size: 30px;
    color: #076CE0;
    border-right: 1px solid #999999;
    padding-right: 20px;
    margin-right: 15px;
}
.about_1{
    padding-bottom: 50px;
}
.about_11{
    width: 580px;
}
.about_11 .title{
    margin-bottom: 20px;
}
.about_11 .tit{
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 18px;
}
.about_11 .txt{
    line-height: 36px;
    font-size: 16px;
}
.about_11 .txt span{
    color: #003F9E;
}
.about_12{
    width: 570px;
}
.about_2{
    padding: 80px 0;
    background: url(../images/index_05.jpg) no-repeat;
    background-size: auto 100%;
}
.about_2 .content {
    position: relative;
    z-index: 1;
}
.about_2 .content .bg {
    position: absolute;
    width: 660px;
    left: 0;
    top: -13px;
    z-index: -1;
}
.about_2 .info{
    width: 570px;
}
.about_2 .info .title{
    margin-bottom: 50px;
}
.about_2 .info .txt{
    font-size: 16px;
    line-height: 38px;
}
.about_2 .info .txt p{
    position: relative;
    /*padding-left: 84px;*/
}
.about_2 .info .txt p span{
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}
.about_3{
    padding-top: 60px;
}
.about_3 .title{
    margin-bottom: 60px;
}
.about_3 .swiper-container{
    padding-bottom: 200px;
}
.about_3 .times{
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    transition: .5s;
    -webkit-transition: .5s;
}
.about_3 .dots{
    width:24px;
    height:24px;
    border:4px solid rgba(212, 212, 212, 1);
    border-radius:50%;
    margin:  0 auto;
    background-color: #fff;
    transition: .5s;
    -webkit-transition: .5s;
}
.about_3 .txt{
    width: 940px;
    top: 140px;
    left: 50%;
    margin-left: -470px;
    opacity: 0;
    position: absolute;
    font-size: 16px;
    line-height: 36px;
}
.about_3 .swiper-slide-active .times{
    color: #003F9E;
}
.about_3 .swiper-slide-active .dots{
    background-color: #003F9E;
}
.about_3 .swiper-slide-active .txt{
    opacity: 1;
    transition: .5s;
    -webkit-transition: .5s;
}
.about_3 .swiper-button-btn{
    width:40px;
    height:40px;
    border-radius:50%;
    top: auto;
    bottom: 80px;
    background-size: 9px 16px;
    background-color: #F4F4F4;
    transition: .5s;
    -webkit-transition: .5s;
}
.about_3 .swiper-button-prev{
   background-image: url(../images/about_03.png); 
   left: 0;
}
.about_3 .swiper-button-next{
    background-image: url(../images/about_04.png); 
    right: 0;
}
.about_3 .swiper-button-btn:hover{
    background-color: #003F9E;
}
.about_3 .swiper-button-prev:hover{
    background-image: url(../images/about_031.png); 
}
.about_3 .swiper-button-next:hover{
    background-image: url(../images/about_041.png); 
}
.about_3 .swiper-container .line{
    height: 2px;
    background-color: #D4D4D4;
    width: 100%;
    top: 65px;
    left: 0;
    position: absolute;
}
/* build */
.build .content{
    padding: 80px 0 110px;
}
.build .content .bg{
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}


.partner .pContent{
    padding-top: 8px;
}
.partner .item{
    width: 236px;
    margin-right: 5px;
    margin-bottom: 5px;
    height: 160px;
    padding-top: 20px;
    background-color: #F6F6F6;
    transition: .5s;
    -webkit-transition: .5s;
}
.partner .item:nth-of-type(5n){
    margin-right: 0;
}
.partner .item img{
    width: auto;
    display: block;
    margin: 0 auto;
}
.partner .item img:nth-child(2){
    display: none;
}
.partner .item p{
    text-align: center;
    font-size: 16px;
    line-height: 16px;
    margin-top: 20px;
}
.partner .item:hover{
    background-color: #003F9E;
    color: #fff;
}
.partner .item:hover img:nth-child(1){
    display: none;
}
.partner .item:hover img:nth-child(2){
    display: block;
}



.page-num-current{
    color: #fff !important;
    background-color: #003F9E;
    border-color: #003F9E;
}
