.header{
	width: 100%;
	position: absolute;
	top:0;
	z-index: 9;
	transtion:0.3s ease;
	height: 300px;
	background:linear-gradient(to bottom,rgba(0,65, 162, 0.8), rgba(0, 0, 0, 0));
}
.header .header-box{
	padding-top: 30px;
	display: flex;
	justify-content: space-around;
    align-items:center;
    
}
.header  .logo img{
	width:100%;
}
.header .link{
	position: relative;
}
.header .link::before{
    content: "";
    width: 30px;
    height:30px;
   background: url(../img/home.png) no-repeat center center;
    position: absolute;
    top: -4px;
    left: -35px;
}
.header .link a{
	color:#fff;
}

.header .plate{
	position: relative;
}
.header .plate::before{
    content: "";
    width: 20px;
    height:20px;
   background: url(../img/cllogo.png) no-repeat center center;
    background-size: 20px 20px;
    position: absolute;
    top: 1px;
    left: -30px;
}
.header .plate a{
	color:#fff;
}

.header .nav{
	display: block;
	padding:14px 0px;
	border-bottom: 1px solid rgba(255, 255, 255, .3);
	transition:0.5s ease;
}
.header .scroll-nav{
	width:100%;
	position: fixed;
	top:0px;
	z-index: 999;
	padding:20px 0px;
	background: linear-gradient(to bottom, #0041A2, transparent);
       border-bottom:none;
	transition:all 1.2s;
	transform: translateY(-65px);
}
.navbar_nav {
	display: block;
}
.navbar_nav li.shouye{
	float:left;
	position: relative;
	display: block;
	text-align: center;
}
.navbar_nav .dropdown{
	float:left;
	position: relative;
	display: block;
	
}
.navbar_nav li .top-title{
 	text-decoration: none;
	display: block;
	padding:30px;
	font-size:20px;
	font-weight: bold;
	color: white;
 }
/*header .navbar_nav li .top-title:after{
    content: "";
    width: 0;
    height: 2px;
   	background:#f83600;
    position: absolute;
    bottom: 0;
    left: 50%;
	transition: all 0.8s ease 0s;
}
header .navbar_nav li .top-title:hover:after{
    width: 50%;
    background: #f9d423;
    color: #FFFFFF;
    position: absolute;
}
header .navbar_nav li .top-title:before{
    content: "";
    width: 0;
    height: 2px;
   	background:#f83600;
    position: absolute;
    bottom: 0;
    left: 50%;
	transition: all 0.8s ease 0s;
}
header .navbar_nav li .top-title:hover:before{
	content: "";
    width: 50%;
    height: 2px;
   	background:#f9d423;
    position: absolute;
    bottom: 0;
    left: 0%;
    transition: all 0.8s ease 0s;
}*/

/*header .navbar_nav li .top-title:hover{
	background: #0a237e;
	color: #FFFFFF;
}*/

.navbar_nav li.dropdown{
	display: inherit;
	position: relative;
}

.navbar_nav li.dropdown .dropdown_menu{
	display: none;
	position: absolute;
	z-index: 999;
	background-image: linear-gradient(135deg, rgba(255, 255, 255, 1) 60%, rgba(179, 205, 255, .7) 100%);
    border-radius: 0px 0px 12px 12px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, .2);
    top:69px;
    width: 100%;
    text-align: center;
}

.navbar_nav li.dropdown .dropdown_menu a{
	font-size: 16px;
	display: block;
	padding:18px 6px;
	text-align: center;

} 
.navbar_nav li.dropdown .dropdown_menu a:first-child{
	/*border-top:#CDA274 2px solid*/
}
@keyframes rt{
    from {
        transform:  translateY(10%);
        top: 75px;
    }

    to {
        transform: rotateX(0deg) translateY(0%);
        top: 75px;
    }
}

.navbar_nav li.dropdown:hover .dropdown_menu{
	display: block;
	animation: rt 300ms ease;
    -webkit-animation: rt 300ms ease;
    -moz-animation: rt 300ms ease;
}

.navbar_nav li.dropdown:hover .dropdown_menu a:hover{
	background-color: #0041A2;
	color: #FFFFFF;
}
.header .search {
	height: 40px;
	width:40px;
	
}
.header .search .fdj{
	padding-left: 10px;
	padding-top: 10px;
	cursor: pointer;
	
}
.header .search .search-mask{
	width:100%;
	height: 0;
	opacity: 0;
	visibility: hidden;
	background: rgba(0,0,0,0.8);
	position: fixed;
	left: 0;
	top:0;
	transition:height 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0s
}
.header .search .on{
	opacity: 1;
	visibility: visible;
	height:100vh;
}
.header .search .search-mask .xx{
	width:50px;
	height: 50px;
	background: rgba(255,255,255,0.3);
	position: absolute;
	right:50px;
	top: 50px;
	border-radius: 50%;
	transition:0.3s ease;
	-moz-transition:0.3s ease;
	-webkit-transition:0.3s ease;
	
}
.header .search .search-mask .xx i{
	display: inline-block;
	position: relative;
	left: 5px;
	top:5px;
	width: 40px;
	height: 40px;
	background: url(../img/xx.png) no-repeat center center;
	transition:0.3s ease;
	-moz-transition:0.3s ease;
	-webkit-transition:0.3s ease;
	
}
.header .search .search-mask .xx i:hover{
	transform: rotate(180deg);
}
.header .search .search-mask .xx:hover img{
	transform: rotate(180deg);
	transform-orgion: center center;
}
.header .search .search-mask .search-box{
	width:800px;
	position: absolute;
	left: 50%;
	top:50%;
	transform: translate(-50%,-50%);
}
/*.header .search .search-box input[type="button"]{
	width:88px;
	height: 100%;
	border: none;
	background: #2658BD;
	float:right;
	color:#fff;
	font-size:18px;
	cursor: pointer;
}*/
/*.header .search .search-box input[type="text"]{
	height: 100%;
	width:calc(100% - 88px);
	background: #fff;
	padding:0px 10px;
	border:none;
	float: left;
}*/
/*.header .search .search-box input[type="text"]:focus{
	outline: none;
}*/
 .nav_p{
	display: none;
	height: calc(100vh - 105px);
	width: 100%;
	background: rgba(255,255,255,0.9);
	position: absolute;
	top:105px;
	left: 0px;
	z-index: 9999;
	
}
.navbar_nav_t{
	padding: 0px 2rem;
}
 .navbar_nav_t li{
	
	width: 100%;
	position: relative;
	border-bottom: #d9d9d9 1px solid;
}
 .navbar_nav_t .dropdown_t:after{
	content: "";
	display: inline-block;
	background: url(../img/arrow.png) no-repeat;
	position: absolute;
	right: 10px;
	top:15px;
	width: 2rem;
	height: 2rem;
}
 .navbar_nav_t li a{
	line-height: 3.6rem;
}
 .navbar_nav_t .dropdown_menu{
	display: none;
}
.navbar_nav_t .dropdown_menu a{
	display: block;
	line-height: 2.6rem;
	font-size:14px;
}
.box{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.fix-nev{
	background: #2658BD;
	position: fixed;
	z-index: 999;
	transition: 0.5s all linear;
	transform: translateY(-100%);
	box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);;
}
.swiper {
    width: 100%;
}
.mySwiper .swiper-slide {
	width: 100%;
	height: 100vh;
    background-position: center;
    background-size: cover;
}
.mySwiper .swiper-slide img{
	width:100%;
	height:100%;
	transition:1s linear 2s;
	transform:scale(1,1);
}
.mySwiper .swiper-slide-active img,.swiper-slide-duplicate-active img{
	transition:6s linear;
	transform:scale(1.1,1.1);
}

/*.newsSwiper .swiper-pagination2{
  
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.newsSwiper .swiper-pagination-bullet2{
	width: 10px;
	height: 10px;
	color:#FFFFFF;
	text-align: center;
	font-size:16px;
}*/
.news{
	overflow: hidden;
	margin:60px auto 0px;
}
.news .news-main{
	margin-top: 60px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.news-top-title {
	position: relative;
}
.news-top-title h3{
	font-size:40px;
	font-weight: bold;
	text-align: center;
}
.news-top-title:before{
	content: "";
	display:inline-block;
	width: 230px;
	height: 10px;
	position: absolute;
	left:20%;
	top:45%;
	background: url(../img/ll.png) no-repeat; 
}
.news-top-title:after{
	content: "";
	display:inline-block;
	width: 230px;
	height:50px;
	position: absolute;
	right:20%;
	top:20%;
	background: url(../img/lr.png) no-repeat; 
}
.newsSwiper {
	width: 100%;
	height: 402px;
	position: relative;
}
.swiper-button-prev{
	position: absolute;
	bottom:20px;
}
.newsSwiper .swiper-slide{
    box-shadow: 0 5px 10px #dfdfdf;
    padding:0 10px 12px 0px
}
.newsSwiper .swiper-slide .cut-img{
	width:100%;
	height:100%;
	transition:1s linear 2s;
	
}
.newsSwiper .swiper-slide .cut-img img{
     width:100%;
     height:100%
}
.slideBox {
	overflow: hidden;
	position: relative;
	top:0px;
	margin: 0 auto;
}

.slideBox .hd {
	height: 65px;
	overflow: hidden;
	position: absolute;
	bottom: 0px;
	left:50%;
	z-index: 1;
	transform: translateX(-50%);
}

.slideBox .hd ul {
	overflow: hidden;
	zoom: 1;
	float: left;
}

.slideBox .hd ul li {
	width: 6px;
	height:6px;
	float:left;
	background: rgba(137,107,107,0.8);
	border-radius: 50%;;
	font-size:12px;
	text-align: center;
	margin-top: 10px;
	margin-right: 10px;
	color: #fff;
	cursor: pointer;
	transition: all 0.3 ease-out;
	-moz-transition:all 0.3s ease-out;
	-ms-transition:all 0.3s ease-out;
	-webkit-transition:all 0.3s ease-out;
	
}

@keyframes play{
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.slideBox .hd ul li.on {
	background: #007AFF;
	/*animation: play 5s linear infinite;*/
}

.slideBox .moreBox{
	color:#FFFFFF;
	padding:10px 20px;
	line-height:40px;
	background-color:#B70E17;
	position: relative;
	top:19px;
}
.slideBox .bd {
	position: relative;
	height: 100%;
	z-index: 0;
}

.slideBox .bd li {
	zoom: 1;
	vertical-align: middle;
}

.slideBox .bd .cut-img {
	width:100%;
	height:402px;
	transition: 0.3s all ease;
	-webkit-transition:0.3s all ease;
	-moz-transition:0.3s all ease;
}
.slideBox .bd li:hover .cut-img{
	transform: scale(1.1);
}

/* 下面是前/后按钮代码，如果不需要删除即可 */

.slideBox .next {
	left: auto;
	right: 3%;
	background-position: 8px 5px;
}

.slideBox .prev:hover,
.slideBox .next:hover {
	filter: alpha(opacity=100);
	opacity: 1;
}

.slideBox .prevStop {
	display: none;
}

.slideBox .nextStop {
	display: none;
}
.slideBox .prev{
	height:80px;
	width:80px;
	position: absolute;
	left: 30px;
	bottom:10px;
	background: url(../img/left-arrow.png) no-repeat 20% 45% ;
}
.slideBox .next{
	height:80px;
	width:80px;
	right: 0px;
	position: absolute;
	bottom:10px;
	background: url(../img/right-arrow.png) no-repeat 20% 45%;
}
.news .news-left{
 	width: 46%;
}
.news .news-right{
	width: 53%;
	
}
.news .news-left-title{
	background: #FFFFFF;
 	border:#DFDFDF solid 1px;
 	box-shadow: 0 5px 10px #dfdfdf;
 	padding:0 0 50px;
        height:183px;
}
.news  .news-left-title .headline{
	color:#0B47A1;
	font-size:14px;
	text-align: center;
	padding-top: 20px;
}
.news  .news-left-title .headline:before{
	content: "";
	display: inline-block;
	width:50px;
	height: 1px;
	background: #D9D9D9;
	position: relative;
	top:-4px;
	right: 15px;
}
.news .news-left-title .headline:after{
	content: "";
	display: inline-block;
	width:50px;
	height: 1px;
	background: #D9D9D9;
	position: relative;
	
	top:-4px;
	left: 15px;
}
.news .news-left-title .dx{
	color:#0B47A1;
	padding-left: 10px;
	font-size:14px
}
.news  .news-left-title a{
	display: block;
  	padding: 16px 50px;
  	font-size: 24px;
}
.news .title {
	position: relative;
}
.news .title p{
	font-size:30px;
	color:#2658BD;
	padding-left: 40px;
	font-weight: bold;
}
.news .title .get-more{
	position: absolute;
	right:45px;
}
.news .title .get-more:before{
	content: "";
	display:inline-block;
	width: 64px;
	height: 2px;
	background: #0064A6; 
}

.news .title .get-more .round{
	position: absolute;
	top:11px;
	left: 58px;
	z-index: 2;
	display: inline-block;
	width:8px;
	height: 8px;
	background: #0064A6;
	border-radius: 50%;
	
}
.news .title .get-more .dot{
	position: absolute;
	z-index: -1;
	left: 54px;
    top: 7px;
    -webkit-border-radius: 100;
    -moz-border-radius: 100;
    border: 8px solid #CADDE9;
    border-radius: 100%;
    z-index: 2;
    
}
.news .title a{
	position: absolute;
	top:4px;
	right: 0;
	font-size:14px;
	padding-left: 10px;
	line-height: 24px;
}
.news .news-list{
	display: flex;
	justify-content: space-between;
}
.news .news-right .news-detail{
	/*width:48%;*/
}
.news .news-right .news-detail  .first img{
	width:100%;
	height: 205px;
}
.news .news-right .news-detail  ul li{
	float:left;
	margin-left: 35px;
	width:45%;
        height:95px;
	border-bottom: #E5E5E5 solid 1px;
}
.news .news-right .news-detail .first{
    height:300px
}
.news .news-right .news-detail .bt{
	line-height: 30px;
	padding: 17px 0px;
}
.gdxw{
	width:200px;
	height:52px;
	border:#0e50b6 dashed 1px;
	margin: 0 auto;
	margin: 50px auto;
	text-align: center
}
.gdxw .gd-link{
	display: block;
	text-align: center;
	line-height: 52px;
	position: relative;
	transition:all 0.3s ease-in-out;
	z-index: 1;
}
.gdxw .gd-link::before{
	content: "";
	display: inline-block;
    background-color:#0041A2 ;
    width: 0;
    height: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}
.gdxw .gd-link::after{
	content: "";
	display: inline-block;
    background-color:#0041A2 ;
    width: 0;
    height: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}
.gdxw .gd-link:hover{
	color: white;
}
.gd-link:hover::before{
    width: 100%;
}
.gd-link:hover::after{
    width: 100%;
}


.tzgg{
	padding:60px 0px 20px;
	background: url(../img/3634.jpg) repeat;
}
.tzgg .tzgg-content{
	padding-top: 30px;
}
.tzgg .tzgg-nav{
	padding: 60px 0 20px;
	width:80%;
	margin:0 auto;
	overflow: hidden;
}
.tzgg .tzgg-nav ul li{
	float:left;
	padding:20px 42px;
	border-top: #DBDBDB solid 1px;
	position: relative;
	cursor: pointer;
	transition:all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-webkit-transition:  all 0.2s ease;
}

.tzgg .tzgg-nav ul li:before{
	content: "";
	display: block;
	width:6px;
	height: 6px;
	background: #7D7D7D;
	border-radius: 50%;
	position: absolute;
	top:-3px;
	left: 48%;
	z-index: 999;
}
.tzgg .tzgg-nav ul .active:before{
	content: "";
	display: block;
	width:26px;
	height: 26px;
	background: url(../img/dd.png) no-repeat;
	position: absolute;
	top:-13px;
	left: 40%;
	z-index: 999;
}
.tzgg .tzgg-box{
	display: none;
	transition:all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-webkit-transition:  all 0.2s ease;
}
.tzgg .tzgg-detail{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
        gap: 45px;
}
.tzgg .tzgg-detail .tzgg-va{
	display: block;
	width:326px;
        height:200px;
	cursor: pointer;
	border-radius: 5px;
	animation-name: fadeInUp;
	animation-delay:1600ms;
        border:#e1e9f7 1px solid;
	background: linear-gradient(45deg, rgba(255, 255, 255, 0.9) 90%, rgba(179, 205, 255, .8) 100%);
}
.tzgg .tzgg-detail .active{
	border-radius: 40px 0px 40px 0px;
	animation-name: fadeInUp;
	animation-delay:1600ms;
	background-image: url(../img/jp1.jpg);
/*	background: linear-gradient(135deg,#1255BD,#052687);*/
}
.tzgg-mobile-date{
	display: none;
}
.tzgg .tzgg-date .day{
	font-size:22px;
	font-weight: bold;
	text-align: center;
	padding-top: 10px;
	color: #fff;
}
.tzgg .tzgg-date .year{
	position: relative;
	right: 0;
	color: #fff;
	text-align: right;
	font-size:12px;
	padding-right:5px;
	padding-top: 6px;
}
.tzgg  .hover .day{
	color: #222;
}
.tzgg  .hover .year{
	color: #222;
	
}
.tzgg  .hover .tit{
	color: #fff;
}
.tzgg .tzgg-date{
	width:76px;
	height: 67px;
	background-image: url(../img/add-databj.png);
	margin-left: 30px;
	margin-top: 30px;
}
.tzgg .active .tzgg-date{
	background: url(../img/add-databj-hover.png) no-repeat;
	color:#222
}
.tzgg .active .tzgg-date p{
	color:#222
}
.tzgg .active .tzgg-title p{
	color:#FFFFFF
}
.tzgg .tzgg-detail .tit{
	padding: 20px 30px;
	line-height: 28px;
}
.research{
	padding:60px 0px 10px;
}
.research .research-left{
	width:64%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.research .research-right{
	width:33%;
	margin-top: 50px;
}
.research .research-left .research-left-block{
	width:48%;
	margin-top:50px;
}
.research .research-left .re-link .tit{
	display: block;
	font-weight: 700;
	padding: 20px 0px 20px;
        height:70px;
}
.research .research-left .re-link .abs{
	font-size:14px;
	color:#999;
	line-height: 24px;
}
.research .research-left .date{
	padding-top: 20px;
}
.research .research-left .re-img{
	position: relative;
	width: 100%;
    height: 305px;
}
.research .research-left .re-img img{
    position: absolute;
    top: 0px;
    left: 7px;
    width: 97%;
    height: 100%;
}
.research .research-left .re-img:before{
	content: "";
	display: inline-block;
	position: relative;
	bottom: -10px;
	width:100%;
	height: 100%;
	background: linear-gradient(to top,#1C5DBF,rgba(255,255,255,0) 50%);
}
.date{
	position: relative;
}
.date p{
	font-size:12px;
	color:#003498;
}
.date .rl{
	display: block;
	width: 60px;
	height: 30px;
	position: absolute;
	right: -10px;
	bottom:-14px;
	background: url(../img/right-a.png) no-repeat;
}

.research .research-right .other{
	height: 98px;
	margin-bottom: 30px;
	border-left:#0041A2 solid 1px;
	padding:20px 0 0 30px;
        background: #f3f8ff;
	transition:0.2s all ease;
}
.research .research-right .abs{
	display: none;
}
.research .research-right .renews{
	display: block;
	line-height: 24px;
}


.research .research-right .active{
	height: 200px;
	border-left:none;
	background:url(../img/jp1.jpg) no-repeat;
	background-size:cover;
	padding: 20px ;
	margin-bottom: 30px;
}

.research .research-right .active a{
	color: #FFFFFF;
	display:block;
}
.research .research-right .active .abs{
	display: block;
	color:#ABC6EE;
	font-size:14px;
	padding-top: 16px;
        height:90px;
}

.research .research-right .active .date p{
	color:#FFFFFF
}
.xshd{
	padding:60px 0 10px;
	background:url(../img/743.png) no-repeat bottom right;
    background-color:#F4F7F9;
}
.xshd .xshd-child{
	width: 30%;
	height: 167px;
	margin-top: 50px;
	box-shadow: 0 0 10px #d3d2d2;
	background-color:#FFFFFF;
	padding:0px 30px;
	transition:all 0.3s linear ;
	-webkit-transition:all 0.3s linear;
	-moz-transition:all 0.3s linear;
}
.xshd .xshd-child .lmmc {
	width:124px;
	height: 40px;
	border-radius: 0 0 10px 10px;
	background-color:#BE9E5D;
}
.xshd .xshd-child .lmmc p{
	text-align: center;
	line-height: 40px;
	color:#FFFFFF
}
.xshd .xshd-child .xshd-tit{
	display: block;
	margin:20px 0px;
	line-height: 24px;
        height:50px;
}
.xshd .xshd-child:hover{
	transform: scale(1.01);
	box-shadow: 0 0 20px #f2f2f2;
	background: url(../img/jp1.jpg) no-repeat;
	background-size: cover;
	color:#FFFFFF;
	
}
.xshd .xshd-child:hover .lmmc{
	background: #FFFFFF;
}
.xshd .xshd-child:hover .lmmc p{
	color: #0041A2;
}
.xshd .xshd-child:hover .date p{
	color: #FFFFFF;
}
.xshd .xshd-child:hover .xshd-tit{
	color:#FFFFFF
}
.yqsb{
	padding: 60px 0px;
}
.yqsb-content{
        position:relative;
}
.yqsb .yqsb-content  .swiper-ss{
	width: 100%;
	height: 100%;
	margin-top: 60px;
	margin-bottom: 20px;
	border: #fff solid 20px;
	box-shadow: 0 0 20px #dedede;
}
.yqsb .yqsb-content .swiper-ss img{
	width:100%;
	height: 184px;
}
.swiper-button-prev-yq{
	width:100px;
	height:80px;
	position: absolute;
	left:-20px;
	top:47%;
	z-index: 999;
        cursor:pointer;
	background: url(../img/zj.png) no-repeat;
       opacity:0.6;
}
.swiper-button-next-yq{
	width:100px;
	height:80px;
	position: absolute;
	right:-40px;
	top:47%;
	z-index: 999;
cursor:pointer;
	background: url(../img/yj.png) no-repeat;
 opacity:0.6;
}
.list-header{
	background: #0041A2;
	position: static;
	height: 230px;
}
.list-header .navbar_nav li .top-title {
    padding: 28px;
    font-size: 18px;
}
.yqsb .yqsb-content  .swiper-ss p{
	text-align: center;
	line-height: 36px;
}
.plant{
	margin-top: 30px;
}
.plant .left{
	width:45%
}
.plant .right{
	width:45%
}
.plant h3{
	font-size:24px;
	color:#1C5DBF;
	font-weight: bold;
	padding-left: 30px;
	position: relative;
}
.plant h3:before{
	content: "";
    display: inline-block;
    height: 8px;
    width:8px;
    background: #BBA723;
    position: absolute;
    left: 0px;
    top:10px
}
.plant  ul li{
	padding:20px 30px;
	margin-top: 20px;
	border: #dedede  solid 1px;
	position: relative;
	/*background:#f3f9fd;*/
}
.plant ul li:before{
	content: "";
    display: inline-block;
    height: 30px;
    width: 2px;
    background-color: #0041a2;
    position: absolute;
    top: 16px;
    left: -1px;
}
footer{
	padding: 10px 0px 0;
	width:100%;
	background:#0041A2;
	color: #FFFFFF;
}
footer .flex-box{
	padding:20px 0 0px 0px;
	display: flex;
}

footer .link {
	width: 50%;
	flex-wrap: wrap;
}
footer .link .link-title{
	line-height: 40px;
}

footer .link .link-title p{
	font-size:18px
}

footer .flex-box .linka a{
	list-style: circle;
	display: block;
	float:left;
	padding-right:30px;
	line-height: 30px;
	font-size:14px;
	color: #FFFFFF;
	
}
footer .address {
	width:30%
}
footer .address p{
	font-size:14px;
	line-height: 30px;
}

footer .copyright p{
	font-size:12px;
	line-height: 44px;
	text-align: center;
}
footer .email,
footer .contact{
	width:10%;
	margin-top: 20px;
}
footer .email img,
footer .contact img{
	display: block;
	margin:0 auto;
	width:46px;
	height: 46px;
}
footer .email a,
footer .contact a{
	display: block;
	text-align: center;
	color: #FFFFFF;
	line-height: 30px;
}
.ban{
	height: 320px;
	background: url(../img/9254.jpg) no-repeat center;
}
.list{
	overflow: hidden;
	padding-bottom: 50px;
	margin-top: 30px;
}
.list .list-left{
	width:265px;
}
.list .list-left:before{
	content: "";
	width:367px;
	height: 395px;
	background: url(../img/nav-shad.png) no-repeat;
	position: absolute;
	z-index: -1;
	left: -50px;
	top:-20px
}
.list .list-right{
	width:calc(100% - 335px);
}
.list .list-left-title{
	width: 100%;
	height: 137px;
	border-radius:40px 0px 0px 0px;
	background: linear-gradient(to top,#0041A2,#0064A6);
}
.list .list-left-title p{
	font-size:30px;
	color: #FFFFFF;
	line-height: 137px;
	padding-left: 50px;
}
.list .list-left-nav{
	background: #F1F9FF;
	padding: 20px 50px 50px;
	min-height:160px;
}
.list .list-left-nav ul li{
	
	border-bottom:#DBDBDB 1px dashed;
	position: relative;
}
.list .list-left-nav ul li a{
	font-size:18px;
	line-height: 60px;
        display:block;
}

.list .list-left-nav .active a{
	color:#BBA723;
	font-weight: bold;
}

.list .list-left-nav .first-nav{
	overflow: hidden;
	padding-bottom: 30px;
}
.list .list-left-nav .first-nav li{
	word-wrap: break-all;
	text-align: center;
}

.list .list-left-nav .first-nav li .first_alink{
	padding:14px 80px;
	line-height: 50px;
    font-weight: bold;
	background: url(../img/list_erji_l.png) no-repeat center bottom;
}


.list .list-left-nav .first-nav li.active a{
	color: #003F88;
	font-weight: bold;
	padding: 14px 80px;
    line-height: 50px;
    font-weight: bold;
    background: url(../img/list_erji_l.png) no-repeat center bottom;
}
.list .list-left-nav .navSub{
	background: none;
	padding-top: 5px;
    
}
.list .list-left-nav .navSub li{
	text-align: left;

}
.list .list-left-nav .navSub i{
	padding-right: 10px;
}
.list .list-left-nav .navSub li a{
	font-size: 14px;
	background: none;
	line-height: 16px;
        padding: 10px 0px;
	position: relative;
}
.list .list-left-nav .navSub li:last-child a{
	
}
.list .list-left-nav .navSub li a.button_check{
	color:#173eb1;
	font-weight: bold;
}
.list-right-mobile-title{
     display:none;
}
.list-mobile-ul{
     display:none;
}
.list .list-right .list-right-title{
	height: 60px;
	border-bottom: #D0D0D0 2px solid;
	position: relative;
}
.list .list-right .list-right-title p{
	font-size:24px;
	line-height: 58px;
	display: inline-block;
	border-bottom: #0B66AD 2px solid;
}
.list .list-right .list-right-title .local{
	position: absolute;
	right:0;
	top:30px;
	color:#797979
}
.home:before{
	content: "";
	width:14px;
	height: 14px;
	background: url(../img/ic_home.png) no-repeat;
	position: absolute;
	left: -20px;
	top:4px
}
.list .list-right .list-right-ul {
	padding-top: 20px;
}
.list .list-right .list-right-ul ul li{
	padding-top: 23px;
        padding-bottom: 23px;
	border-bottom: #D0D0D0 1px dashed;
	
}
.list .list-right .list-right-ul ul li:before{
	content: "";
	display: inline-block;
	width:10px;
	height: 4px;
	background: #BBA723;
	position: relative;
	top:-2px
}
.list .list-right .list-right-ul ul li a{
	display:inline-block;
	padding-left: 20px;
}
.list .list-right .list-right-ul ul li span{
	color:#8C8C8C;
	float:right;
}
.list .list-right .list-right-detail{
	padding-top: 20px;
}
.list .list-right .list-right-detail p{
	text-indent: 2rem;
	line-height: 46px;
}

/*杰出师资*/
.list-jcsz{
        margin-bottom:40px
}
.list-jcsz .list-jcsz-a{
	display: block;
	width:46%;
	height:60px;
	border:#ddd solid 1px;
	margin-top:20px;
	line-height:60px;
	padding-left: 30px;
	position:relative;
}

.list-jcsz .list-jcsz-a p::before{
	content:"";
	display:inline-block;
	height:50px;
	width:50px;
	position:absolute;
	top:25px;
	right:0px;
	background:url(../img/sz-1.png) no-repeat;
}
.list-jcsz .list-jcsz-a:hover p::before{
	background:url(../img/sz-2.png) no-repeat;
}
.list-jcsz .list-jcsz-a::before{
	content:"";
	display:inline-block;
	height:30px;
	width:2px;
	background-color:#0041A2;
	position:absolute;
	top:16px;
	left:-1px;
	
}

.list-jcsz .list-jcsz-a::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	background:url(../img/jp1.jpg);
	transform:scaleX(0);
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	-webkit-transform-origin: 0 50%;
	-ms-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
}
.list-jcsz .list-jcsz-a:hover p{
	color:#ffffff;
	
}
.list-jcsz .list-jcsz-a:hover .jscs-a-img{
	background-image:url(../img/sz-2.png);
}
.list-jcsz .list-jcsz-a:hover::after{
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
	opacity: 1;
	transition-timing-function: cubic-bezier(0.52, 1.64, 1.37, 0.66)
}
.list-jcsz-detail {
	width:200px;
	margin-top:30px
}
.list-jcsz-detail .sz-img{
	width:100%;
	height:280px;
	transition:0.3s all ease;
	-webkit-transiton:0.3s all ease;
	-moz-transition:0.3s all ease;
}

.list-jcsz-detail .sz-title{
	border-bottom:#0041A2 2px solid;
	padding:20px 0;
	height:60px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.list-jcsz-detail .sz-title::before{
	content:"";
	width:100%;
	height:0;
	position:absolute;
	bottom:0;
	left:0;
	right:0;
	background:#0041A2;
	z-index:-1;
	transition:0.4s all ease;
}
.list-jcsz-detail .sz-title:hover{
	color:#fff;
}
.list-jcsz-detail .sz-img-hover{
	transform: scale(1.05);
}
.list-jcsz-detail .sz-title:hover::before{
	height:80px;
	background:background: linear-gradient(to top,#1C5DBF,rgba(255,255,255,0) 50%);
}
.teacher-list{
	padding-top: 20px;
}
 .teacher-list p{
	background: #EAF3FB;
	line-height: 40px;
	font-size:18px;
	font-weight: bold;
	padding-left: 15px;
}
 .teacher-list span{
	color:#333;
	font-weight:300;
	font-size:16px;
}
 .teacher-list .lb{
	padding: 10px 0px 20px;
        overflow:hidden;
}
 .teacher-list .lb ul li{
       float:left;
       height:50px;
       width:116px;
       text-align:center;
       border-bottom:#f2f2f2 1px solid;
}
 .teacher-list .lb ul li a{
   line-height:50px;
}
@media screen and (max-width:1900px){
      header{
         padding:20px;
      }
      header .navbar_nav li .top-title {
        font-weight: bold; 
        font-size:16px;
        
     }
}
@media screen and (max-width:1280px) {
	html{
		font-size:14px
	}
	a{
		font-size:14px;
	}
	.header .header-box{
		padding: 20px;
	}
	.mySwiper .swiper-slide{
		width:100%;
		height:51vw;
	}
	.mySwiper .swiper-slide img{
		width: 100%;
		height: 100%;
	}
	.header .nav{
		display: none;
	}
	
	.header .link,.plate{
		display:none;
	}
	.header .search{
		display: none;
	}
	
	.mobile_nav .shg{
		display: block !important;
	    text-align: center;
	    font-size: 18px;
	    cursor: pointer;
	    padding:3vw;
	    color: #fff;
	    /*position: absolute;
	    z-index: 999;
	    right: 0;
	    top: 0;
	    bottom: 0;*/
	    line-height: 1;
	   
	}
	.mobile_nav .shg .icon-order{
		display: block;
		width:26px;
		height:2px;
		background-color: #FFFFFF;
		margin-bottom: 6px;
		transition: 0.3s all ease;
		-webkit-transition:0.3s all ease;
		-moz-transition:0.3s all ease;
	}

	.mobile_active .shg  .icon-order:nth-of-type(1) {
		margin-top: 10px;
		background-color: #FFFFFF;
	    -webkit-transform: rotate(42deg);
	    -ms-transform: rotate(42deg);
	    -o-transform: rotate(42deg);
	    transform: rotate(42deg);
	    margin-left:-5px
    }
	.mobile_active .shg  .icon-order:nth-of-type(3) {
		margin-top: -16px;
		background-color: #FFFFFF;
	    -webkit-transform: rotate(-42deg);
	    -ms-transform: rotate(-42deg);
	    -o-transform: rotate(-42deg);
	    transform: rotate(-42deg);
	    margin-left:-4px
    }
    .mobile_active .shg .icon-order:nth-of-type(2){
    	opacity: 0;
    }
    .mobile_nav .list-shg{
		display: block !important;
	    text-align: center;
	    font-size: 18px;
	    cursor: pointer;
	    padding:3vw;
	    color: #fff;
	    /*position: absolute;
	    z-index: 999;
	    right: 0;
	    top: 0;
	    bottom: 0;*/
	    line-height: 1;
	    position: absolute;
        right: 0;
        top: 20px;
	}
	.mobile_nav .list-shg .icon-order{
		display: block;
		width:26px;
		height:2px;
		background-color: #FFFFFF;
		margin-bottom: 6px;
		transition: 0.3s all ease;
		-webkit-transition:0.3s all ease;
		-moz-transition:0.3s all ease;
	}

	.mobile_active .list-shg  .icon-order:nth-of-type(1) {
		margin-top: 10px;
		background-color: #FFFFFF;
	    -webkit-transform: rotate(42deg);
	    -ms-transform: rotate(42deg);
	    -o-transform: rotate(42deg);
	    transform: rotate(42deg);
	    margin-left:-5px
    }
	.mobile_active .list-shg  .icon-order:nth-of-type(3) {
		margin-top: -16px;
		background-color: #FFFFFF;
	    -webkit-transform: rotate(-42deg);
	    -ms-transform: rotate(-42deg);
	    -o-transform: rotate(-42deg);
	    transform: rotate(-42deg);
	    margin-left:-4px
    }
    .mobile_active .list-shg .icon-order:nth-of-type(2){
    	opacity: 0;
    }
    .news-top-title h3{
    	font-size:1.6rem;
    }
    .news{
    	margin: 20px;
    }
    .news .news-main{
    	margin-top: 20px;
    }
	.news .news-left{
		width: 100%;
		margin-bottom: 20px;
	}

	.slideBox .bd .cut-img{
		height: 205px;
	}
	.slideBox .prev{
                display:none;
        }
        .slideBox .next{
                display:none;
        }
	.news .news-left-title a{
		font-size:16px;
		font-weight: bold;
	}
	.news .news-left-title{
		padding:0 0 10px;
                height:120px
	}
	.news .news-right .news-detail ul li{
               margin-left:12px;
               height:170px;
      }
    .news .news-right{
		width: 100%;
		
	}
.news .news-right .news-detail .first{
      height:230px;
}
	.news-top-title:before{
		width: 0;
		height: 0;
	}
	.news-top-title:after{
		width: 0;
		height: 0;
	}
	.news .news-right .news-detail .first img{
		height: 105px;
	}
	
	.gdxw{
		margin:10px auto;
	}
	.tzgg{
		padding:20px 20px 20px
	}
	.tzgg .tzgg-nav{
		width:100%
	}
	.tzgg-date{
		display: none;
	}
	.tzgg-mobile-date{
		display: block;
		padding:10px 30px 0px;
	}
	.tzgg .tzgg-detail .tit{
		padding:10px 30px
	}
	.tzgg .hover{
		background: none;
	}
	.button_check .year{
		color:#FFFFFF
	}
	.tzgg .tzgg-nav ul li{
		padding:10px 12px
	}
	.tzgg .tzgg-detail a{
		width:48%;
		margin-bottom: 10px;
	}
	.tzgg .tzgg-content{
		padding-top: 10px;
	}
	.research{
		padding:20px
	}
	.research .research-left{
		width: 100%;
	}
	.research .research-left .re-img{
		height: 140px;
	}
	.research .research-left .re-img img{
		width:100%;
		height: 140px;
	}
	.research .research-left .research-left-block{
		margin-top: 20px;
	}
	.research .research-left .re-link .tit{
		padding:20px 0px 20px;
               
	}
	.research .research-left .re-img:before{
		display: none;
	}
	.research .research-left .re-link .abs{
               display: none;
         }
	.research .research-right{
		width: 100%;
		margin-top: 20px;
	}
       .research .research-right .active{
		height:130px
	}
	.research .research-right .active .abs{
		display: none;
	}
	.xshd{
		padding:20px 10px 20px
	}
	.xshd .xshd-child{
		width: 100%;
		margin-top: 20px;
	}
	.xshd .xshd-child .xshd-tit{
		margin:10px 0px
	}
	.date .rl{
		display: none;
	}
	footer {
		position: initial;
		padding:10px
	}
	footer .flex-box{
		display: block;
	}
	footer .address{
		display: none;
	}
	footer .link{
		display: none;
	}
	footer .email{
		display: none;
	}
	footer .contact{
		display: none;
	}
.ban{
      display:none;
 }
	.list-header{
		height: 120px;
	}
	.list .list-left{
		display: none;
	}
	.list .list-right{
		width:100%;
		padding:20px
	}
.list .list-right .list-right-title{
               display:none;
}
       .list-right-mobile-title{
               display:none;
	       height: 40px;
	       background: #dedede;
               position:relative;
         }
         .list-right-mobile-title .tit{
		padding-left: 10px;
		line-height: 40px;
         }
	.list-mobile-shg{
            display: block !important;
	    text-align: center;
	    font-size: 18px;
	    cursor: pointer;
	    padding: 0 5vw;
	    color: #333333;
	    position: absolute;
	    z-index: 999;
	    right: 10px;
	    top: 10px;
	    bottom: 0;
	    line-height: 1;
	}
	.list-mobile-shg .icon-order{
		display: block;
		width:24px;
		height:2px;
		background-color: #0041A2;
		margin-bottom: 6px;
		transition: 0.3s all ease;
		-webkit-transition:0.3s all ease;
		-moz-transition:0.3s all ease;
	}

	.list-mobile-shg .mobile-active .icon-order:nth-of-type(1) {
		margin-top: 10px;
		background-color: #FFFFFF;
	    -webkit-transform: rotate(42deg);
	    -ms-transform: rotate(42deg);
	    -o-transform: rotate(42deg);
	    transform: rotate(42deg);
    }
	.list-mobile-shg .mobile-active .icon-order:nth-of-type(3) {
		margin-top: -15px;
		background-color: #FFFFFF;
	    -webkit-transform: rotate(-42deg);
	    -ms-transform: rotate(-42deg);
	    -o-transform: rotate(-42deg);
	    transform: rotate(-42deg);
    }
    .list-mobile-shg .mobile-active .icon-order:nth-of-type(2){
    opacity: 0;
    }
.list-right-mobile-title {
       display:block;
}
.list-jcsz-detail{
        width:160px;
}
.list-jcsz-detail .sz-img{
       height:227px
}
.list .list-mobile-ul li{
     background: #f1f1f1;
     padding:10px;
     border-bottom: #e1e1e1 solid 1px;
     list-style: none;
}
.list-jcsz .list-jcsz-a{
      width:100%
}
	.list .list-right .list-right-title p{
		font-size:18px
	}
	.list .list-right .list-right-title .local{
		display: none;
	}
}
.v_news_content p{
    line-height:2rem;
    text-align: justify;
    text-indent:2rem;
}
.v_news_content .vsbcontent_img{
       text-align:center;  
}

.wz-title{
   font-size:24px;
   font-weight:bold;
   padding:20px 0px ;
}
	