@charset "utf-8";
body{
	margin: 0;
	padding: 0;
	font-family: "sans-serif";
	background: #fff;
	font-size: 16px;
}
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
input,
select,
textarea{
	outline: 0;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	font-family: "sans-serif";
}
table{
  border-collapse: collapse;
}
img{
	border: 0;
	display: inline-block;
	max-width: 100%;
	width: auto;
	vertical-align: top;
}
ul,
li{
	list-style-type: none;
}
a{
	text-decoration: none;
	color: inherit;
}
a:hover{
	text-decoration: none;
}
.fl{
	float: left;
}
.fr{
	float: right;
}
.fb{
	font-weight: bold;
}
.tc{
	text-align: center;
}
.cl{
	clear: both;
}
.clear:after{
	content:"";
	display: block;
	clear:both;
}
.ov{
	overflow: hidden;
}
.rel{
	position: relative;
}
.abs{
	position: absolute;
}
.flex{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}
.bigimg img{
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.bigimg:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.tj{
	text-align: justify;
	word-break: break-all;
}
.to1{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.to2{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
}
.content{
	width: 1440px;
	margin: 0 auto;
}
.phone{
	display: none;
}

@font-face {
	font-family: "Techna-Sans";
	src:url("../fonts/Techna-Sans-Regular.otf") format("opentype"),
		url("../fonts/Techna-Sans-Regular.ttf") format("truetype"),
		url("../fonts/Techna-Sans-Regular.woff") format("woff");
	font-display: swap;
}
@font-face {
	font-family: "texgyretermes";
	src:url("../fonts/texgyretermes-regular.otf") format("opentype"),
		url("../fonts/texgyretermes-regular.ttf") format("truetype"),
		url("../fonts/texgyretermes-regular.woff") format("woff");
	font-display: swap;
}
@font-face {
	font-family: "Rubik-Bold";
	src:url("../fonts/Rubik-Bold.otf") format("opentype"),
		url("../fonts/Rubik-Bold.ttf") format("truetype"),
		url("../fonts/Rubik-Bold.woff") format("woff");
	font-display: swap;
}
@font-face {
	font-family: "Rubik-Regular";
	src:url("../fonts/Rubik-Regular.otf") format("opentype"),
		url("../fonts/Rubik-Regular.ttf") format("truetype"),
		url("../fonts/Rubik-Regular.woff") format("woff");
	font-display: swap;
}
@font-face {
	font-family: "思源宋体";
	src:url("../fonts/思源宋体SC-Medium.otf") format("opentype"),
		url("../fonts/思源宋体SC-Medium.ttf") format("truetype"),
		url("../fonts/思源宋体SC-Medium.woff") format("woff");
	font-display: swap;
}


/*首页*/
.header{
	width: 100%;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 90; 
}
.header .content{
	width: 1560px;
	height: 100px;
	position: relative;
}
.logo{
	width: 348px;
	position: absolute;
	top: 11px;
	left: 48%;
	transform: translateX(-48%);
}
.logo img{
	width: 100%;
}
.nav{
	float: left;
}
.nav li{
	float: left;
	line-height: 100px;
	color: #333;
	font-size: 16px;
	font-weight: bold;
	margin-right: 40px;
	position: relative;
}
.nav li:nth-child(6){
	margin-right: 410px;
}
.nav li:last-child{
	margin-right: 0;
}
.nav i{
	width: 100%;
	height: 04px;
	background: #7aa732;
	border-radius: 10px;
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	transform: scale(0,0);
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.nav li:hover i{
	transform: scale(1,1);
}
.nav li.on i{
	transform: scale(1,1);
}
.nav li:hover{
	color: #7aa732;
}
.nav li.on{
	color: #7aa732;
}
.nav li:hover .subnav{
	display: block;
}
.subnav{
	width: 150px;
	background: #fff;
	padding: 10px 0;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	position: absolute;
	top: 100%;
	left: -62%;
	display: none;
}
.subnav li{
	float: none;
	line-height: 44px;
	text-align: center;
	font-weight: normal;
	margin-right: 0 !important;
}
.subnav li:nth-child(6){
	margin-right: 0 !important;
}
.head_menu {
	float: right;
	width: 35px;
	height: 35px;
	margin: 30px 0 0 24px;
	cursor: pointer;
	position:relative;
}
.head_menu::before {
	content: "";
	position: absolute;
	width: 60%;
	height: 2px;
	background: #7caa17;
	left: 0;
	top: calc(50% + 10px);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.head_menu::after {
	content: "";
	width:100%;
	height: 2px;
	background: #7caa17;
	left: 0;
	top: 50%;
	position: absolute;
	transform: translateY(-50%);
}
.head_menu:hover::before{
	width:100%;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.head_menu:hover::after{
	width:100%;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.head_menu::after, .head_menu::before {
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.popup_nav{
	width:100%;
	height:100%;
	position:fixed;
	top:-100%;
	left:0;
	background: url(../images/search_bg.jpg) no-repeat center bottom #fff;
	background-size: 100%;
	z-index:900;
	transition: 0.5s;
	opacity:0;
	visibility: hidden;
}
.popup_nav.ac{
	top: 0;
	transition: 0.5s;
	opacity:1;
	visibility: visible;
}
.popup_close{
	width: 30px;
	height: 30px;
	cursor: pointer;
	position:absolute;
	top: 35px;
	right: 102px;
	display: flex;
    align-items: center;
    justify-content: center;
}
.popup_close::before,
.popup_close::after{
    content: "";
    position: absolute;
	width: 100%;
    height: 2px;
    background: #7caa17;
    left: 50%;
    top: 50%; 
    transition: all 0.5s ease-in-out;
    transform-origin: center center;
}
.popup_close::before{
    transform: translateX(-50%) translateY(-5px); 
}
.popup_close::after{
    transform: translateX(-50%) translateY(5px); 
}
.popup_close.active::before{
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.popup_close.active::after{
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.popup_ss{
	width: 25px;
	height: 27px;
	cursor: pointer;
	position:absolute;
	top: 35px;
	right: 167px;
}
.popup_ss img{
	width: 100%;
	height: 100%;
}
.nav_list{
	width: 95%;
	padding-top: 205px;
	margin: 0 auto;
}
.nav_list ul{
	display: flex;
	justify-content: center;
}
.nav_list li{
	width: 10%;
	text-align: center;
	line-height: 44px;
	font-size: 24px;
	color: #222;
	font-weight: bold;
}
.nav_list i{
	width: 66px;
	height: 44px;
	background: url(../images/icon.png) no-repeat;
	background-size: 100% 100%;
	display: block;
	margin: 0 auto;
	opacity: 0;
}
.nav_list h1{
	cursor: pointer;
	font-size: 24px;
	margin-bottom: 10px;
}
.nav_list li:hover i{
	opacity: 1;
}
.nav_list li:hover h1{
	color: #7caa17;
}
.subnav_list{
	width: 100%;
}
.subnav_list ul{
	display: block;
}
.subnav_list li{
	width: 100%;
	color: #454545;
	font-size: 16px;
	font-weight: normal;
	line-height: 40px;
}
.subnav_list li:hover{
	color: #7caa17;
}
.search_img{
	float: right;
	width: 25px;
	height: 27px;
	cursor: pointer;
	margin-top: 37px;
}
.search_img img{
	width: 100%;
	height: 100%;
}
.search_bg{
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: url(../images/search_bg.jpg) no-repeat center bottom #fff;
	background-size: 100%;
	position: fixed;
	z-index: 1000;
	top: -100%;
	left: 0;
	transition: 0.5s;
    opacity: 0;
}
.search_bg.ac{
	top: 0;
	transition: 0.5s;
	opacity:1;
	visibility: visible;
}
.search_close{
	width: 30px;
	height: 30px;
	cursor: pointer;
	position:absolute;
	top: 35px;
	right: 102px;
	display: flex;
    align-items: center;
    justify-content: center;
}
.search_close::before,
.search_close::after{
    content: "";
    position: absolute;
	width: 100%;
    height: 2px;
    background: #7caa17;
    left: 50%;
    top: 50%; 
    transition: all 0.5s ease-in-out;
    transform-origin: center center;
}
.search_close::before{
    transform: translateX(-50%) translateY(-5px); 
}
.search_close::after{
    transform: translateX(-50%) translateY(5px); 
}
.search_close.active::before{
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.search_close.active::after{
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.search_logo{
	width: 348px;
	position: absolute;
	top: 11px;
	left: 48%;
	transform: translateX(-48%);
}
.search_logo img{
	width: 100%;
}
.search_form{
	width: 900px;
}
.search_form h1{
	color: #333;
	font-size: 48px;
	font-weight: lighter;
	line-height: 56px;
	text-align: center;
	margin-bottom: 56px;
}
.ss_con{
	width: 100%;
	height: 82px;
	border-bottom: solid 2px #7caa17;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.ss_con img{
	width: 30px;
	height: 28px;
	cursor: pointer;
}
.ss_txt{
	width: 80%;
	height: 82px;
	border: none;
	background: none;
	font-size: 18px;
	color: #333;
	font-weight: lighter;
}
.ss_txt::placeholder{
	color: #333;
}
.ss_hot{
	color: #5f5f5f;
	font-size: 16px;
	line-height: 28px;
	margin: 38px 0;
}
.ss_hot span{
	color: #222;
	font-size: 18px;
	font-weight: bold;
}
.ss_hot a{
	padding-left: 30px;
}
.ss_bot{
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 48px;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
}
.ss_share ul{
	margin-right: -28px;
}
.ss_share li{
	float: left;
	width: 46px;
	height: 46px;
	border: solid 1px #c6c6c6;
	border-radius: 50%;
	position: relative;
	margin-right: 28px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.ss_share img{
	width: 22px;
	height: 22px;
}
.ss_code{
	width: 106px;
	height: 106px;
	border: solid 1px #e9e9e9;
	position: absolute;
	top: -115px;
	left: -32px;
	display: none;
	justify-content: center;
	align-items: center;
}
.ss_code img{
	width: 88px;
	height: 88px;
}
.ss_share li.active .ss_code {
    display: flex !important;
}
.ss_share li.active .img01 {
    display: none;
}
.ss_share li.active .img02 {
    display: block;
}
.ss_tel{
	color: #7caa17;
	font-size: 16px;
	font-weight: bold;
	display: flex;
	align-items: center;
	margin-left: 88px;
}
.ss_tel span{
	color: #454545;
	font-size: 30px;
	font-weight: normal;
	font-family: "Techna-Sans";
	padding-left: 16px;
}

.banner{
	width: 100%;
	height: 826px;
	position: relative;
	margin-top: 1rem;
}
.banner .swiper-slide img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 1s linear 2s;
	transform: scale(1.1);
}
.banner .swiper-slide video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.banner .swiper-slide-active img,
.banner .swiper-slide-duplicate-active img{
	transition: 2s linear;
	transform: scale(1);
}
.banner .swiper-pagination{
	text-align: right;
	line-height: 34px;
	z-index: 10;
	color: #fff;
	font-size: 18px;
	font-family: 'Techna-Sans';
	bottom: 70px;
}
.banner .swiper-pagination .pagination-current{
	font-size: 32px;
	padding-right: 12px;
}
.banner .swiper-pagination .pagination-total{
	padding-left: 12px;
}
.bg_tm{
	width: 100%;
	height: 295px;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
}
.bg_tm .content{
	height: 295px;
	position: relative;
}
.bn_mouse{
	width: 200px;
	text-align: center;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 67px;
	z-index: 5;
}
.bn_mouse h1{
	line-height: 24px;
	font-size: 16px;
	color: #fff;
	font-weight: normal;
	margin-bottom: 0.15rem;
}
.bn_mouse img{
	width: 26px;
	height: 41px;
}
.bn_mouse div{
	animation: bounce-down 2s linear infinite;
}
@-webkit-keyframes bounce-down {
	25% {
		-webkit-transform: translateY(-10px);
	}
	50%, 100% {
		-webkit-transform: translateY(0);
	}
	75% {
		-webkit-transform: translateY(10px);
	}
}

.grey{
	background: #f8f8f8;
}
.grey .content{
	position: relative;
}
.p80{
	padding-bottom: 80px;
}
.news_box{
	background: #fff;
	padding: 0 45px;
	overflow: hidden;
}
.news_bgt{
	width: 100%;
	height: 50px;
	background: url(../images/ind_01.png) no-repeat center top;
	background-size: 100% 100%;
	position: absolute;
	top: -48px;
	left: 0;
	z-index: 10;
}
.news_bgb{
	width: 100%;
	height: 70px;
	background: url(../images/ind_02.png) no-repeat center top;
	background-size: 100% 100%;
}
.list_box{
	width: 100%;
	position: relative;
	z-index: 12;
	margin-bottom: 34px;
}
.list_box .swiper-pagination{
	display: none;
	bottom: 0;
}
.list_box .swiper-button-disabled {
    display: none !important; 
}
.list_box .swiper-button-next, .list_box .swiper-button-prev{
	width: 38px;
	height: 38px;
	background: #fff;
	border: solid 1px #7caa17;
	border-radius: 50%;
	top: 40%;
	transform: translateY(-40%);
	display: flex;
	justify-content: center;
	align-items: center;
}
.list_box .swiper-button-next{
	right: -25px;
}
.list_box .swiper-button-prev{
	left: -25px;
}
.list_box .swiper-button-next:after, .list_box .swiper-button-prev:after{
	color: #7caa17;
    font-weight: bold;
    font-size: 12px;
	text-align: center;
}
.list_box .swiper-button-next:hover, .list_box .swiper-button-prev:hover{
	background: #7caa17;
}
.list_box .swiper-button-next:hover:after, .list_box .swiper-button-prev:hover:after{
	color: #fff;
}
.list{
	width: 100%;
	margin: 0 auto;
}
.list .swiper-slide{
	text-align: center;
}
.list_pic{
	width: 100px;
	height: 100px;
	border: dashed 1px #7eab1b;
	border-radius: 50%;
	margin: 0 auto 13px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.list_pic img{
	width: 61px;
	height: 61px;
	transition: transform 0.6s ease;
    transform-style: preserve-3d;
}
.list h1{
	line-height: 26px;
	color: #333;
	font-size: 16px;
	font-weight: normal;
}
.list_pic:hover img{
    transform: rotateY(180deg);
}

.news_left{
	float: left;
	width: 645px;
	padding-top: 6px;
}
.news_carousel{
	width: 100%;
	margin-bottom: 17px;
}
.news_pic{
	width: 100%;
	height: 356px;
	overflow: hidden;
}
.news_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.news_pic:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.news_picbg{
	width: 100%;
	height: 164px;
	background: url(../images/ind_11.jpg) no-repeat right top;
	background-size: cover;
	padding: 26px;
}
.news_pic_tit{
	color: #fff;
	font-size: 22px;
	font-weight: bold;
	line-height: 32px;
	height: 32px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.news_pic_text{
	color: #fff;
	font-size: 14px;
	line-height: 24px;
	height: 24px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 14px 0 20px;
}
.news_pic_time{
	color: #fff;
	font-size: 18px;
	line-height: 22px;
	font-family: "Techna-Sans";
}
.news_pic_time img{
	float: left;
	width: 21px;
	height: 21px;
	margin-right: 12px;
}
.news_list{
	width: 100%;
}
.news_list li{
	height: 46px;
	line-height: 46px;
	padding-left: 26px;
	position: relative;
}
.news_list i{
	width: 5px;
	height: 5px;
	background: #78a52d;
	border-radius: 50%;
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 4px;
}
.news_list .text{
	float: left;
	width: 75%;
	height: 46px;
	color: #333;
	font-size: 16px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.news_list li:hover .text{
	color: #7caa17;
}
.news_list .time{
	float: right;
	width: 25%;
	padding-right: 14px;
	text-align: right;
	height: 46px;
	overflow: hidden;
	color: #999;
	font-size: 16px;
	font-family: "Techna-Sans";
}

.news_right{
	float: right;
	width: 635px;
}
.ann_box{
	min-height: 384px;
	padding-bottom: 30px;
}
.ann_top{
	height: 44px;
	line-height: 44px;
	margin-bottom: 22px;
}
.ann_top img{
	float: left;
	width: 44px;
	height: 44px;
	margin-right: 12px;
}
.ann_tit{
	float: left;
	color: #333;
	font-size: 34px;
	display: flex;
	align-items: flex-end;
}
.ann_tit span{
	font-size: 18px;
	color: #7caa17;
	line-height: 24px;
	font-style: italic;
	font-family: "texgyretermes";
	text-transform: uppercase;
	margin-left: 5px;
}
.ann_more{
	float: right;
	width: 38px;
	height: 38px;
	border: solid 1px #7caa17;
	border-radius: 50%;
	color: #fff;
	font-family: 宋体;
	font-weight: bold;
	font-size: 15px;
	margin-top: 4px;
	position: relative;
	overflow: hidden;
}
.ann_more a{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
}
.ann_more::before {
	position: absolute;
	display: block;
	content: '';
	background: #7caa17;
	width: 110%;
	right: -5%;
	top: -5%;
	height: 110%;
	z-index: 1;
	overflow: hidden;
	transition: all 0.6s;
}
.ann_more:hover::before {
	width: 0;
}
.ann_more:hover{
	color: #7caa17;
}

.media_box{
	width: 100%;
}
.media_box .ann_top{
	margin-bottom: 36px;
}
.media{
	width: 100%;
}
.media_pic{
	width: 100%;
	height: 172px;
	overflow: hidden;
	position: relative;
	margin-bottom: 8px;
}
.media_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.media_video{
	width: 48px;
	height: 48px;
	background: url(../images/ind_17.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 2;
	cursor: pointer;
}
.video_bg{
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .8);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	display: none;
}
.video-a2{
    position:absolute;
    width:50px;
    height:50px;
    background:url(../images/close.png) no-repeat;
    background-size:100% 100%;
    right: 20px;
    top: 20px;
    cursor: pointer;
    z-index: 5;
}
.video-a3{
    width: 1440px;
    height: calc(1440px/16*9);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.video-a3 iframe,.video-a3 video{
    width: 100% !important;
    height: 100%;
}
.media_tit{
	color: #333;
	font-size: 16px;
	height: 40px;
	line-height: 40px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.media_line{
	width: 17px;
	height: 3px;
	background: #7caa17;
	display: block;
}
.media_time{
	color: #999;
	font-size: 16px;
	height: 36px;
	line-height: 36px;
	font-family: "Techna-Sans";
	overflow: hidden;
}

.adm_bg{
	width: 100%;
	min-height: 809px;
	background: url(../images/ind_18.jpg) no-repeat center bottom #7caa17;
	background-size: 100%;
	padding: 80px 0 130px;
	overflow: hidden;
}
.adm_box{
	float: left;
	width: 609px;
}
.adm_top{
	margin-bottom: 22px;
}
.adm_title{
	float: left;
	width: 70%;
	color: #fff;
}
.adm_title h1{
	line-height: 50px;
	font-size: 40px;
	font-weight: normal;
	margin-bottom: 10px;
	position: relative;
}
.adm_title h1 i{
	width: 156px;
	height: 6px;
	background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
	border-radius: 10px;
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	opacity: 0;
}
.adm_title div{
	font-size: 20px;
	font-family: "texgyretermes";
	font-style: italic;
	line-height: 28px;
	text-transform: uppercase;
}
.adm_more{
	float: right;
	width: 58px;
	height: 58px;
	border: solid 1px #fff;
	border-radius: 50%;
	color: #7caa17;
	font-family: 宋体;
	font-weight: bold;
	font-size: 20px;
	margin: 12px 7px 0 0;
	position: relative;
	overflow: hidden;
}
.adm_more a{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
}
.adm_more::before {
	position: absolute;
	display: block;
	content: '';
	background: #fff;
	width: 110%;
	right: -5%;
	top: -5%;
	height: 110%;
	z-index: 1;
	overflow: hidden;
	transition: all 0.6s;
}
.adm_more:hover::before {
	width: 0;
}
.adm_more:hover{
	color: #fff;
}
.adm_pic{
	width: 100%;
	height: 330px;
	margin-bottom: 20px;
	overflow: hidden;
	position: relative;
}
.adm_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.adm_pic:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.adm_picbg{
	width: 70%;
	height: 100%;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.adm_con{
	width: 86%;
	color: #fff;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 7%;
	z-index: 3;
}
.adm_con .text{
	width: 100%;
	font-size: 42px;
	font-weight: bold;
	line-height: 56px;
}
.adm_con .text div{
	font-size: 30px;
	font-family: "texgyretermes";
	line-height: 40px;
	font-weight: bold;
	text-transform: uppercase;
}
.adm_con_more{
	font-size: 14px;
	height: 48px;
	display: flex;
	align-items: center;
}
.adm_con_more img{
	width: 20px;
	height: 10px;
	margin-right: 10px;
}
.adm_list{
	width: 100%;
}
.adm_list ul{
	margin-right: -3%;
}
.adm_list li{
	float: left;
	width: 30.33%;
	height: 108px;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	background: rgba(255, 255, 255, 0.1);
	border: solid 0.01rem rgba(255, 255, 255, 0.5);
	margin-right: 3%;
}
.adm_list a{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px;
}
.adm_list span{
	font-family: 宋体;
	margin-left: 10px;
}
.adm_list li:hover{
	background: #fff;
	color: #7caa17;
}

.ind_box{
	float: right;
	width: 790px;
}
.ind_box .adm_more{
	margin: 12px 0 0 0;
}
.ind_list{
	width: 100%;
}
.ind_list ul{
	margin-right: -3%;
}
.ind_list li{
	float: left;
	width: 47%;
	margin: 0 3% 19px 0;
}
.ind_pic{
	float: left;
	width: 43%;
	height: 176px;
	overflow: hidden;
	display: none;
}
.ind_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.ind_pic:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.ind_con{
	float: left;
	width: 100%;
	height: 122px;
	background: rgba(255, 255, 255, 0.1);
	border: solid 1px rgba(255, 255, 255, 0.5);
	padding: 24px 30px;
	color: #fff;
	overflow: hidden;
}
.ind_tit{
	font-size: 20px;
	font-weight: bold;
	line-height: 28px;
	height: 28px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 15px;
}
.ind_txt{
	font-size: 14px;
	line-height: 28px;
	height: 56px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	margin-bottom: 10px;
	display: none;
}
.ind_time{
	font-size: 16px;
	font-family: "Techna-Sans";
	height: 22px;
	line-height: 22px;
	position: relative;
}
.ind_time i{
	width: 16px;
	height: 4px;
	background: #fff;
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -30px;
}
.ind_list li:first-child{
	width: 97%;
	height: 176px;
}
.ind_list li:first-child .ind_pic{
	display: block;
}
.ind_list li:first-child .ind_con{
	width: 57%;
	height: 176px;
	padding: 24px 27px;
}
.ind_list li:first-child .ind_tit{
	margin-bottom: 12px;
}
.ind_list li:first-child .ind_txt{
	display: block;
}
.ind_list li:first-child .ind_time{
	padding-left: 34px;
}
.ind_list li:first-child .ind_time i{
	left: 0;
}
.ind_list li:hover .ind_con{
	background: #fff;
	color: #7caa17;
}
.ind_list li:hover .ind_time i{
	background: #7caa17;
}

.program_box{
	padding-top: 75px;
	overflow: hidden;
}
.program_top{
	margin: 0 auto 35px;
}
.program_title{
	float: left;
	width: 70%;
}
.program_title h1{
	color: #333;
	font-size: 40px;
	font-weight: normal;
	line-height: 50px;
	margin-bottom: 10px;
	position: relative;
}
.program_title h1 i{
	width: 156px;
	height: 6px;
	background: linear-gradient(to right, #7aa732, rgba(122, 167, 50, 0));
	border-radius: 10px;
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
}
.program_title div{
	color: #a2a2a2;
	font-size: 20px;
	font-family: "texgyretermes";
	font-style: italic;
	line-height: 26px;
	text-transform: uppercase;
}
.program_more{
	float: right;
	width: 58px;
	height: 58px;
	border: solid 1px #7caa17;
	background: #7caa17;
	border-radius: 50%;
	color: #fff;
	font-family: 宋体;
	font-weight: bold;
	font-size: 20px;
	margin: 12px 7px 0 0;
	position: relative;
	overflow: hidden;
}
.program_more a{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
}
.program_more::before {
	position: absolute;
	display: block;
	content: '';
	background: #fff;
	width: 0;
	left: -5%;
	top: -5%;
	height: 110%;
	z-index: 1;
	overflow: hidden;
	transition: all 0.6s;
}
.program_more:hover::before {
	width: 110%;
}
.program_more:hover{
	color: #7caa17;
}
.program{
	width: 100%;
	height: 818px;
	overflow: hidden;
}
.program ul{
	width: 100%;
	height: 100%;
	position: relative;
}
.program li{
	width: 50px;
	height: 100%;
	position: absolute;
    top: 0;
	left: 0;
    transition: all 1s;
	-webkit-transition: all 1s;
    cursor: pointer;
    z-index: 1;
    overflow: hidden;
}
.program li.on{
	z-index: 9;
}
.program li.on .program_con{
	width: 50px;
}
.program_pic{
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 1s ease;
}
.program_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.program_pic:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.program_picbg{
	width: 100%;
	height: 240px;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
}
.program_text{
	width: 890px;
	color: #fff;
	position: absolute;
	left: calc((100% - 1440px) / 2 + 100px); 
	bottom: 46px;
	z-index: 3;
}
.program_text h1{
	font-size: 32px;
	line-height: 40px;
	font-weight: normal;
	margin-bottom: 15px;
}
.program_text div{
	font-size: 14px;
	font-weight: lighter;
	line-height: 28px;
}
.program_con{
	width: 50px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 7;
	transition: all 1s ease;
}
.program li:nth-child(1) .program_con{
	background: #7caa17;
}
.program li:nth-child(2) .program_con{
	background: #f6ac00;
}
.program li:nth-child(3) .program_con{
	background: #e58153;
}
.program li:nth-child(4) .program_con{
	background: #0068b7;
}
.program li:nth-child(5) .program_con{
	background: #206946;
}
.program_con .text{
	width: 20px;
	color: #fff;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	position: absolute;
	top: 270px;
	left: 50%;
	transform: translateX(-50%);
}
.program_logo{
	width: 40px;
	height: 40px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 48px;
	display: none;
}
.program_logo img{
	width: 100%;
	height: 100%;
}
.program li.on .program_logo{
	display: block;
}

.scenery_box{
	padding: 74px 0 80px;
	overflow: hidden;
}
.scenery_pic{
	width: 100%;
	height: 420px;
	overflow: hidden;
	margin-bottom: 30px;
}
.scenery_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.scenery_pic:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.scenery_type{
	width: 100%;
}
.scenery_type ul{
	margin-right: -13px;
}
.scenery_type li{
	float: left;
	width: 350px;
	height: 190px;
	margin-right: 13px;
	position: relative;
	overflow: hidden;
}
.scenery_type li img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.scenery_type li:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.scenery_typebg{
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.scenery_txt{
	width: 94%;
	text-align: center;
	color: #fff;
	position: absolute;
	top: 74px;
	left: 3%;
}
.scenery_txt div{
	font-size: 30px;
	font-weight: lighter;
	line-height: 40px;
	margin-bottom: 20px;
}
.scenery_txt i{
	width: 65px;
	height: 2px;
	background: #fff;
	display: block;
	margin: 0 auto;
}

.culture_bg{
	width: 100%;
	min-height: 809px;
	background: url(../images/ind_29.jpg) no-repeat left top;
	background-size: cover;
	padding: 102px 0;
	overflow: hidden;
}
.culture_bg .content{
	position: relative;
}
.culture_top{
	width: 140px;
	height: 342px;
	position: absolute;
	top: -7px;
	left: 0;
	z-index: 3;
}
.culture_title{
	width: 100%;
	color: #fff;
}
.culture_title h1{
	width: 80px;
	font-size: 40px;
	font-weight: normal;
	line-height: 56px;
	margin-bottom: 15px;
	position: relative;
}
.culture_title h1 i{
	width: 156px;
	height: 6px;
	background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
	border-radius: 10px;
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
}
.culture_title div{
	font-size: 20px;
	font-family: "texgyretermes";
	font-style: italic;
	line-height: 30px;
	text-transform: uppercase;
}
.culture_more{
	width: 58px;
	height: 58px;
	border: solid 1px #fff;
	border-radius: 50%;
	color: #7caa17;
	font-family: 宋体;
	font-weight: bold;
	font-size: 20px;
	position: absolute;
	left: 0;
	bottom: 0;
	overflow: hidden;
}
.culture_more a{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
}
.culture_more::before {
	position: absolute;
	display: block;
	content: '';
	background: #fff;
	width: 110%;
	right: -5%;
	top: -5%;
	height: 110%;
	z-index: 1;
	overflow: hidden;
	transition: all 0.6s;
}
.culture_more:hover::before {
	width: 0;
}
.culture_more:hover{
	color: #fff;
}
.culture_list ul{
	margin-right: -15px;
}
.culture_list li{
	float: left;
	width: 348px;
	height: 222px;
	margin: 0 15px 15px 0;
	overflow: hidden;
	position: relative;
}
.culture_left{
	float: left;
	width: 711px;
	overflow: hidden;
}
.culture_left li:nth-child(1){
	width: 532px;
	height: 360px;
	margin: 0 15px 15px 179px;
}
.culture_right{
	float: right;
	width: 711px;
	overflow: hidden;
}
.culture_right li:nth-child(3){
	width: 100%;
	height: 360px;
	margin: 0 15px 15px 0;
}
.culture_pic{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
}
.culture_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.culture_pic:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.one{
	top: 0;
	z-index: 1;
}
.two{
	top: 100%;
	z-index: 2;
}
.culture_tm{
	width: 100%;
	height: 90px;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
}
.culture_text{
	width: 86%;
	color: #fff;
	font-size: 16px;
	line-height: 24px;
	height: 24px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	position: absolute;
	left: 7%;
	bottom: 16px;
	z-index: 3;
}
.culture_pic:hover .culture_text{
	font-weight: bold;
}
.culture_pic:hover .culture_text{
	font-weight: bold;
}
.refresh{
	width: 58px;
	height: 58px;
	border: solid 1px #fff;
	border-radius: 50%;
	color: #7caa17;
	position: absolute;
	right: -30px;
	bottom: 40px;
	overflow: hidden;
	cursor: pointer;
	z-index: 3;
}
.refresh div{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
}
.refresh img{
	width: 30px;
	height: 26px;
}
.refresh::before {
	position: absolute;
	display: block;
	content: '';
	background: #fff;
	width: 110%;
	right: -5%;
	top: -5%;
	height: 110%;
	z-index: 1;
	overflow: hidden;
	transition: all 0.6s;
}
.refresh:hover::before {
	width: 0;
}
.img02{
	display: none;
}
.refresh:hover .img01{
	display: none;
}
.refresh:hover .img02{
	display: block;
}

.dang_bg{
	width: 100%;
	min-height: 686px;
	background: url(../images/ind_38.jpg) no-repeat center top #f8f8f8;
	background-size: 100%;
	padding: 76px 0 80px;
	overflow: hidden;
}
.dang_bg .program_top{
	margin-bottom: 44px;
}
.dang{
	width: 100%;
	padding-bottom: 50px;
	position: relative;
}
.dang .swiper-slide{
	height: 354px;
}
.dang .swiper-pagination{
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.dang .swiper-pagination-bullet{
	width: 10px;
	height: 10px;
	background: #cdcdcd;
	border-radius: 50%;
	margin: 8px 15px !important;
	opacity: 1;
}
.dang .swiper-pagination-bullet-active{
	width: 26px;
	height: 26px;
	background: url(../images/ind_44.png) no-repeat;
	background-size: 100% 100%;
	margin: 0 7px !important;
}
.dang .swiper-pagination-bullet:only-child{
	display: block !important;
}
.dang_pic{
	width: 100%;
	height: 219px;
	overflow: hidden;
	margin-bottom: 25px;
}
.dang_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.dang_pic:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.dang_txt{
	color: #222;
	font-size: 16px;
	height: 26px;
	line-height: 26px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.dang_line{
	width: 17px;
	height: 3px;
	background: #2a6948;
	border-radius: 10px;
	margin: 17px 0 13px;
}
.dang_time{
	color: #999;
	font-size: 16px;
	font-family: "Techna-Sans";
	height: 26px;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.dang_time img{
	width: 21px;
	height: 21px;
	margin-right: 10px;
}

.school_box{
	padding: 74px 0 122px;
	overflow: hidden;
}
.school_box .program_title{
	margin-bottom: 58px;
}
.school{
	width: 100%;
	padding: 1px;
}
.school .swiper-slide{
	height: 288px;
	border: solid 1px #ececec;
	border-radius: 8px;
}
.school .swiper-slide:hover{
	background: url(../images/ind_45.jpg) no-repeat;
	background-size: 100% 100%;
}
.school .swiper-slide a{
	display: block;
	padding: 56px 30px 20px;
}
.school_img{
	width: 90px;
	height: 90px;
	margin-bottom: 52px;
}
.school_img img{
	width: 100%;
	height: 100%;
}
.school_tit{
	color: #222;
	font-size: 22px;
	font-weight: bold;
	line-height: 40px;
	height: 40px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.school_text{
	color: #949494;
	font-size: 14px;
	line-height: 26px;
	height: 26px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.school_sz{
	color: #eee;
	font-size: 60px;
	line-height: 54px;
	font-family: "Techna-Sans";
	position: absolute;
	top: 15px;
	right: 24px;
}
.school .swiper-slide:hover .school_tit{
	color: #fff;
}
.school .swiper-slide:hover .school_text{
	color: #fff;
}
.school .swiper-slide:hover .school_sz{
	color: #fff;
}

.meiti_bg{
	width: 100%;
	background: #7caa17;
	padding: 27px 0 24px;
}
.meiti_box{
	color: #fff;
}
.meiti_left{
	float: left;
	width: 480px;
}
.meiti_tit{
	font-size: 16px;
	font-weight: bold;
	font-style: italic;
	line-height: 40px;
	margin-bottom: 15px;
}
.share{
	width: 100%;
}
.share_pic{
	width: 100px;
	height: 100px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
}
.share_pic img{
	width: 90px;
	height: 90px;
}
.share h1{
	font-size: 14px;
	line-height: 26px;
	text-align: center;
	font-weight: normal;
}
.tel{
	float: right;
}
.tel h1{
	font-size: 16px;
	line-height: 40px;
	font-style: italic;
	margin-bottom: 20px;
}
.tel div{
	font-size: 50px;
	font-family: "Techna-Sans";
	line-height: 64px;
}
.foot_bg{
	width: 100%;
	background: #252525;
	padding-top: 50px;
}
.f_nav{
	width: 100%;
	padding-bottom: 94px;
	border-bottom: solid 1px rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	position: relative;
}
.f_nav em{
	width: 100%;
	height: 1px;
	background: rgba(255, 255, 255, 0.1);
	display: block;
	position: absolute;
	left: 0;
	top: 55px;
}
.f_nav dl{
	padding: 0 14px;
}
.f_nav dl dt{
	color: #fff;
	line-height: 30px;
	height: 57px;
	position: relative;
}
.f_nav dl dt i{
	width: 100%;
	height: 4px;
	border-radius: 10px;
	background: #7aa732;
	position: absolute;
	left: 0;
	bottom: 0;
	transform: scale(0,0);
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.f_nav dl:hover i{
	transform: scale(1,1);
}
.f_nav dl dd{
	padding-top: 23px;
}
.f_nav ul{
	width: 100%;
}
.f_nav ul li{
	text-align: center;
	line-height: 30px;
	font-size: 13px;
	color: #fff;
	opacity: 0.5;
}
.f_nav ul li:hover{
	opacity: 1;
}
.copyright{
	line-height: 22px;
	padding: 16px 0;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
}
.copyright .fl{
	width: 65%;
	display: flex;
	align-items: center;
}
.copyright .fl img{
	width: 14px;
	height: 16px;
	margin: 0 8px 0 14px;
}
.copyright a:hover{
	color: #fff;
}

.piao_box{
	width: 56px;
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	right: 30px;
	z-index: 80;
	display: none;
}
.piao_box a{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.ljbm{
	width: 100%;
	padding: 20px 0;
	background: #7caa17;
	border-radius: 60px;
	text-align: center;
	margin-bottom: 18px;
	position: relative;
}
.ljbm div{
	width: 0.2rem;
	line-height: 18px;
	font-size: 16px;
	color: #fff;
	margin: 0 auto;
}
.ljbm img{
	width: 29px;
	height: 23px;
	display: block;
	margin: 0 auto 8px;
}
.pf_list{
	width: 100%;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border-radius: 60px;
}
.pf_list li{
	text-align: center;
	cursor: pointer;
	position: relative;
}
.pf_list li:nth-child(1) .pf_con{
	border-radius: 60px 60px 0 0;
	padding-top: 24px;
}
.pf_list li:nth-child(4) .pf_con{
	border-radius: 0 0 60px 60px;
	padding-bottom: 15px;
}
.pf_list li:nth-child(4) .pf_con h1{
	margin-bottom: 0;
}
.pf_list li:nth-child(4) .pf_con i{
	display: none;
}
.pf_con{
	width: 100%;
	padding-top: 10px;
	background: #fff;
	overflow: hidden;
	position: relative;
	z-index: 3;
}
.pf_con img{
	width: 24px;
	height: 24px;
	margin: 0 auto;
}
.pf_con h1{
	color: #454545;
	font-size: 12px;
	line-height: 26px;
	font-weight: normal;
	margin-bottom: 5px;
}
.pf_con i{
	width: 31px;
	height: 1px;
	background: #e5e5e5;
	display: block;
	margin: 0 auto;
}
.pf_list li:hover .pf_con{
	background: #7caa17;
}
.pf_list li:hover .img01{
	display: none;
}
.pf_list li:hover .img02{
	display: block;
}
.pf_list li:hover h1{
	color: #fff;
}
.pf_list li:hover i{
	opacity: 0;
}
.pf_tel{
	width:0;
	padding-right: 28px;
	height: 100%;
	background: #7caa17;
	border-radius: 60px 0 0 60px;
	color: #fff;
	font-size: 20px;
	font-family: "Techna-Sans";
	position: absolute;
	top: 0;
	right: 28px;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.pf_list li:hover .pf_tel{
	width: 228px;
	opacity: 1;
}
.pf_gz{
	width: 0;
	padding-right: 28px;
	height: 200px;
	background: #7caa17;
	border-radius: 10px;
	color: #fff;
	font-size: 20px;
	font-family: "Techna-Sans";
	position: absolute;
	top: -70px;
	right: 28px;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.pf_code{
	width: 170px;
	height: 170px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.pf_code img{
	width: 150px;
	height: 150px;
}
.pf_list li:hover .pf_gz{
	width: 228px;
	opacity: 1;
}


/* 学校概况-现任领导 */
.main_bn{
	width: 100%;
	height: 440px;
	position: relative;
	overflow: hidden;
	margin-top: 100px;
}
.main_bn img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.bn_bg{
	width: 60%;
	height: 100%;
	background: linear-gradient(to right, #7caa17, rgba(124, 170, 23, 0.8), rgba(124, 170, 23, 0));
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.bn_bg_red{
	width: 60%;
	height: 100%;
	background: linear-gradient(to right, #c51c09, rgba(197, 28, 9, 0.8), rgba(197, 28, 9, 0));
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.bn_text{
	width: 100%;
	color: #fff;
	font-size: 24px;
	text-transform: uppercase;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	z-index: 3;
}
.bn_text h1{
	font-size: 40px;
	line-height: 46px;
	font-weight: normal;
	margin-bottom: 12px;
}
.bn_text span{
	font-family: "texgyretermes";
	font-style: italic;
}

.type_bg{
	width: 100%;
	background: #7caa17;
}
.type ul{
    height: 70px;
    overflow-y: hidden;
    overflow-x: scroll;
	display: flex;
	flex-wrap: nowrap;
	-webkit-overflow-scrolling: touch;
    white-space: nowrap;
}
.type ul::-webkit-scrollbar {
    display: none;
}
.type li{
	flex: 0 0 auto;
	color: #fff;
	font-size: 16px;
	height: 70px;
	line-height: 70px;
	margin-right: 80px;
	position: relative;
	user-select: none; 
    -webkit-user-select: none;
}
.type a{
	display: block;
}
.type i{
	width: 100%;
	height: 17px;
	background: url(../images/about_01.png) no-repeat;
	background-size: 100% 100%;
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	opacity: 0;
}
.type li.active{
	font-weight: bold;
}
.type li.active i{
	opacity: 1;
}

.leader_box{
	min-height: 600px;
	padding: 74px 0 122px;
	overflow: hidden;
}
.leader_tit{
	width: 100%;
	text-align: center;
	line-height: 50px;
	color: #333;
	font-size: 40px;
	margin-bottom: 42px;
	position: relative;
}
.leader_tit i{
	width: 156px;
	height: 6px;
	background: linear-gradient(to right, #7ba834, rgba(123, 168, 52, 0));
	border-radius: 10px;
	display: block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
}
.leader_list{
	width: 100%;
}
.leader_list li{
	min-height: 167px;
	padding: 10px 20px 10px 112px;
	background: #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.04);
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	margin-bottom: 30px;
}
.leader_logo{
	width: 68px;
	height: 100%;
	background: url(../images/about_02.jpg) no-repeat;
	background-size: 100% 100%;
	padding: 8px 4px;
	display: flex;
	align-items: flex-end;
	position: absolute;
	left: 0;
	top: 0;
}
.leader_logo img{
	width: 100%;
}
.leader_tt{
	color: #070707;
	font-size: 24px;
	line-height: 32px;
	margin-bottom: 16px;
}
.leader_text{
	color: #717171;
	font-size: 18px;
	line-height: 26px;
}


/* 学校概况-学院风采 */
.school_box{
	min-height: 600px;
	padding: 30px 0 102px;
	overflow: hidden;
}
.school_w{
	width: 1440px;
	margin: 0 auto;
}
.school_type{
	width: 100%;
	padding-bottom: 30px;
}
.school_type ul{
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 50px;
}
.school_type li{
	float: left;
	/* width: 322px; */
	width: calc(25% - 38px); 
	height: 194px;
	display: flex;
	align-items: center;
	position: relative;
}
.school_num{
	width: 100%;
	height: 100%;
	line-height: 194px;
	text-align: center;
	-webkit-text-stroke: 2px #f0f0f0;
	text-stroke: 2px #f0f0f0;
	font-family: "Rubik-Bold";
	color: rgba(255, 255, 255, 0);
	font-size: 210px;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
.school_tt{
	width: 100%;
	height: 60px;
	line-height: 30px;
	text-align: center;
	background: #f8f8f8;
	color: #333;
	font-size: 20px;
	position: relative;
	z-index: 2;
}
.school_tt a{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	white-space: pre-wrap;
}
.school_tt::after{
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #7caa17;
    transform: translateX(-50%);
	opacity: 0;
}
.school_type li.active{
	background: url(../images/about_04.png) no-repeat;
	background-size: 100% 100%;
}
.school_type li.active .school_num{
	opacity: 1;
}
.school_type li.active .school_tt{
	background: #7caa17;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
}
.school_type li.active .school_tt::after{
	opacity: 1;
}
.school_txt{
	width: 74%;
	text-align: center;
	line-height: 40px;
	color: #666;
	font-size: 18px;
	margin: 0 auto 64px;
}
.school_list{
	width: 100%;
	padding: 0 10px                                   ;
}
.school_list ul{
	margin-right: -53px;
}
.school_list li{
	float: left;
	width: 438px;
	margin: 0 53px 20px 0;
}
.school_list .pic{
	width: 100%;
	height: 247px;
	overflow: hidden;
	margin-bottom: 20px;
}
.school_list .pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.school_list .pic img{
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.school_list .pic:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.school_list .text{
	width: 100%;
	text-align: center;
	line-height: 36px;
	color: #666;
	font-size: 18px;
	height: 72px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
}

.page{
	width: 100%;
	text-align: center;
	padding-top: 40px;
	font-family: Arial;
}
.page a{
	display: inline-block;
	width: 56px;
	height: 56px;
	line-height: 56px;
	background: #f8f8f8;
	color: #454545;
	font-size: 20px;
	margin: 0 6px;
}
.page a:hover{
	background: #7caa17;
	color: #fff !important;
	font-weight: bold;
}
.page a.fh{
	font-family: 宋体;
	color: #909090;
	font-weight: bold;
	font-size: 16px;
}
.page a.active{
	background: #7caa17;
	color: #fff !important;
	font-weight: bold;
}


/* 学校概况-联系我们 */
.contact_box{
	min-height: 600px;
	padding: 90px 0 72px;
	background: url(../images/about_06.png) no-repeat center top;
	background-size: 710px;
	overflow: hidden;
}
.contact_tit{
	width: 100%;
	text-align: center;
	line-height: 32px;
	color: #a2a2a2;
	font-size: 24px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 60px;
}
.contact_tit h1{
	color: #333;
	font-size: 48px;
	line-height: 60px;
	margin-bottom: 18px;
}
.contact_tit span{
	font-family: "texgyretermes";
	font-style: italic;
}
.con_list{
	width: 100%;
	padding: 14px 0 64px;
}
.con_list ul{
	display: flex;
	justify-content: space-between;
}
.con_list li{
	flex: 0 0 auto;
	text-align: center;
	padding: 0 25px;
}
.con_pic{
	width: 104px;
	height: 104px;
	margin: 0 auto 30px;
}
.con_pic img{
	width: 100%;
	height: 100%;
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.con_list li:hover .con_pic img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.con_list h1{
	color: #656464;
	font-size: 18px;
	line-height: 32px;
	margin-bottom: 8px;
}
.con_list li .text{
	color: #333;
	font-size: 22px;
	line-height: 34px;
	font-weight: bold;
	text-transform: uppercase;
	word-break: break-all;
}
.con_list li .text a{
	color: #7caa17;
}
.map{
	width: 100%;
	border: solid 3px #7caa17;
	margin-bottom: 85px;
}
.map img{
	width: 100%;
}
.code_list{
	width: 100%;
}
.code_list ul{
	display: flex;
	justify-content: space-between;
}
.code_list li{
	flex: 0 0 auto;
	text-align: center;
}
.code_pic{
	width: 234px;
	height: 234px;
	background: #f8f8f8;
	margin: 0 auto 26px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.code_pic img{
	width: 220px;
	height: 220px;
}
.code_list h1{
	color: #333;
	font-size: 22px;
	line-height: 32px;
}


/* 学校概况-学校简介 */
.com_box{
	min-height: 600px;
	padding: 80px 0 320px;
	background: url(../images/about_13.jpg) no-repeat center bottom;
	background-size: 100%;
	overflow: hidden;
}
.com_tit{
	width: 100%;
	text-align: center;
	margin-bottom: 52px;
	overflow: hidden;
}
.com_text{
	width: 100%;
	line-height: 40px;
	text-align: justify;
	color: #333;
	font-size: 20px;
	overflow: hidden;
}
.com_text img{
	width: 100%;
	border-radius: 24px;
}


/* 学校概况-办学理念 */
.linian_box{
	min-height: 600px;
	padding: 80px 0 100px;
	overflow: hidden;
}
.linian_t{
	padding-right: 48px;
	margin-bottom: 54px;
}
.linian_pic{
	float: left;
	width: 46%;
	height: 404px;
	border-radius: 24px;
	overflow: hidden;
}
.linian_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.linian_pic:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.linian_r{
	float: right;
	width: 50%;
}
.linian_rt{
	width: 100%;
	text-align: center;
	margin: 26px 0;
}
.linian_rt img{
	width: 62%;
}
.linian_txt{
	color: #333;
	font-size: 20px;
	line-height: 38px;
	text-align: justify;
}
.linian_con{
	margin-bottom: 40px;
}
.linian_tt{
	width: 100%;
	min-height: 57px;
	line-height: 47px;
	padding: 5px 48px;
	background: url(../images/about_17.png) no-repeat left top;
	background-size: auto 100%;
	color: #7caa17;
	font-size: 28px;
	margin-bottom: 15px;
}
.linian_p{
	padding: 0 48px;
}


/* 学校概况-学校荣誉 */
.honor_box{
	min-height: 600px;
	padding: 75px 0;
	overflow: hidden;
}
.honor_w{
	width: 1634px;
	padding-bottom: 64px;
	margin: 0 auto;
	position: relative;
}
.honor{
	width: 1440px;
	padding: 20px 0 20px 2px;
	margin: 0 auto;
}
.honor .swiper-slide{
	background: #fff;
	border: solid 4px #eaeaea;
	border-radius: 4px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.honor_con{
	width: 100%;
	min-height: 400px;
	padding: 48px 27px 40px;
	opacity: 0.6;
}
.honor .swiper-slide-active .honor_con{
	opacity: 1;
}
.honor_pic{
	width: 95%;
	height: 204px;
	margin: 0 auto 40px;
	overflow: hidden;
}
.honor_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.honor_pic:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.honor_line{
	width: 100%;
	height: 2px;
	background: #d8d8d8;
	margin-bottom: 28px;
}
.honor_txt{
	width: 100%;
	text-align: center;
	line-height: 30px;
	color: #333;
	font-size: 20px;
}
.honor_w .swiper-pagination{
	height: 28px !important;
    bottom: 0;
}
.honor_w .swiper-pagination-bullet{
	width: 8px;
    height: 8px;
	background: #bababa;
	border-radius: 50%;
    margin: 10px 16px !important;
    opacity: 1;
	position: relative;
}
.honor_w .swiper-pagination-bullet-active{
	background: #7caa17;
}
.honor_w .swiper-pagination-bullet-active::after{
    content: "";
    position: absolute;
    left: 4px;
    top: 2px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #7caa17;
    border-right-color: #7caa17;
    z-index: 1;
    animation: swipeRotate 5s linear infinite; 
}
@keyframes swipeRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.honor_w .swiper-button-next, .honor_w .swiper-button-prev{
	width: 58px;
	height: 58px;
	background: #fff;
	border: solid 1px #7caa17;
	border-radius: 50%;
	top: 40%;
	transform: translateY(-40%);
	display: flex;
	justify-content: center;
	align-items: center;
}
.honor_w .swiper-button-next{
	right: 0;
}
.honor_w .swiper-button-prev{
	left: 0;
}
.honor_w .swiper-button-next:after, .honor_w .swiper-button-prev:after{
	color: #7caa17;
    font-weight: bold;
    font-size: 12px;
	text-align: center;
}
.honor_w .swiper-button-next:hover, .honor_w .swiper-button-prev:hover{
	background: #7caa17;
}
.honor_w .swiper-button-next:hover:after, .honor_w .swiper-button-prev:hover:after{
	color: #fff;
}
.img_modal{
	position: fixed;
	width: 100%;
	height: 100% !important;
	background: rgba(0, 0, 0, 0.8);
	top: 0;
	left: 0;
	z-index: 100;
	display: none;
}
.img_modal_box{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.img_modal_con{
	/* width: 70%; */
	position: relative;
}
.img_modal_show{
	display: block;
}
.img_modal .img_modal_img{
	width: auto;
	height: 70vh;
}
.img_modal .img_modal_img img{
	width: auto;
	height: 100%;
}
.img_modal_header{
	display: flex;
	justify-content: flex-end;
	position: absolute;
	top: 0;
	right: -80px;
}
.img_modal_header img{
	width: 50px;
	height: 50px;
}
.img_modal_header img:nth-last-child(1){
	width: 50px;
	cursor: pointer;
}


/* 学校概况-领导信箱 */
.mailbox_box{
	min-height: 600px;
	padding: 88px 0 150px;
	background: url(../images/about_06.png) no-repeat center top;
	background-size: 710px;
	overflow: hidden;
}
.mailbox_con{
	width: 1340px;
	margin: 0 auto;
}
.mailbox_title{
	width: 100%;
	text-align: center;
	line-height: 32px;
	color: #333;
	font-size: 20px;
	margin-bottom: 42px;
}
.mailbox_title h1{
	font-size: 48px;
	line-height: 62px;
	margin-bottom: 15px;
}
.mailbox_bg{
	width: 100%;
	background: #f6fcf1;
	padding: 46px 50px 25px;
	margin-bottom: 42px;
}
.mailbox_tit{
	color: #212121;
	font-size: 32px;
	line-height: 50px;
}
.mailbox_txt{
	color: #454545;
	font-size: 16px;
	line-height: 32px;
	padding: 0 14px;
	text-align: justify;
	overflow: hidden;
	margin-bottom: 40px;
}
.mailbox_txt h4{
	color: #000;
	font-size: 18px;
	line-height: 32px;
	font-weight: normal;
	margin: 15px 0 10px;
}
.mailbox_xz{
	border-top: solid 1px #d2d2d2;
	padding-top: 22px;
	line-height: 28px;
	color: #636363;
	font-size: 16px;
}
.mailbox_xz input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.mailbox_xz label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
}
.mailbox_xz label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 1px solid #cbcbcb;
    background: #fff;
    border-radius: 2px;
}
.mailbox_xz input:checked + label::before {
    background: url(../images/about_19.jpg) no-repeat;
	background-size: 100% 100%;
}
.mailbox_btn{
	width: 492px;
	height: 78px;
	background: #7caa17;
	border-radius: 2px;
	color: #fff;
	font-size: 30px;
	position: relative;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 110px;
}
.mailbox_btn a{
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.mailbox_btn img{
	width: 34px;
	height: 36px;
	margin-right: 30px;
}

.letter_con{
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 22px;
}
.letter_bk{
	width: 32%;
	height: 52px;
	border: solid 1px #e5e5e5;
	background: #fff;
}
.letter_bk input{
	width: 100%;
	height: 50px;
	line-height: 50px;
	border: none;
	background: none;
	color: #999;
	font-size: 16px;
	padding-left: 20px;
}
.letter_bk input::placeholder{
	color: #999;
}
.shenfen{
	width: 100%;
	height: 50px;
	border: none;
	background: url("../images/about_21.png") no-repeat scroll 95% center transparent;
	background-size: 14px 7px;
	color: #999;
	font-size: 16px;
	padding-left: 20px;
	appearance: none;
	-webkit-appearance: none;
}
.zhengwen{
	width: 100%;
	height: 180px;
	border: solid 1px #e5e5e5;
	background: #fff;
	padding: 8px 0 0 20px;
	font-size: 16px;
	line-height: 30px;
	color: #999;
	margin-bottom: 20px;
}
.zhengwen input::placeholder{
	color: #999;
}
.letter_btn{
	width: 100%;
	text-align: center;
	padding-top: 50px;
}
.letter_btn button{
	width: 400px;
	height: 56px;
	border: none;
	background: #7caa17;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
}
.letter_yzmbox{
	width: 66%;
}
.letter_yzm{
	width: 120px;
	height: 52px;
	border: solid 1px #e5e5e5;
	background: #fff;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}
.letter_yzm img{
	width: 100%;
	height: 100%;
}


/* 招生就业-招生章程 */
.zhao_box{
	min-height: 600px;
	padding: 75px 0 102px;
	overflow: hidden;
}
.zhao_title{
	width: 100%;
	text-align: center;
	margin-bottom: 45px;
}
.zhao_title h1{
	color: #7caa17;
	font-size: 40px;
	line-height: 50px;
	margin-bottom: 6px;
}
.zhao_title h2{
	color: #333;
	font-size: 16px;
	line-height: 24px;
	font-weight: normal;
	margin-bottom: 20px;
}
.zhao_title i{
	width: 76px;
	height: 6px;
	background: #7caa17;
	display: block;
	margin: 0 auto;
}
.zhao_tit{
	display: inline-block;
	background: #7caa17;
	border-radius: 12px 12px 0 0;
	padding: 8px 32px;
	line-height: 34px;
	color: #fff;
	font-size: 26px;
	font-weight: bold;
	margin-bottom: 1px;
}
.zhao_bg{
	background: #fcfdfc;
	border: solid 2px #f1f6f0;
	padding: 30px 80px 30px 30px;
	margin-bottom: 50px;
}
.zhao_txt{
	color: #333;
	font-size: 18px;
	line-height: 42px;
	text-align: justify;
}
.zhao_txt span{
	color: #7caa17;
}


/* 招生就业-新生指南 */
.guide_box{
	min-height: 600px;
	padding: 110px 0 140px;
	overflow: hidden;
}
.guide_bg{
	width: 98%;
	min-height: 200px;
	border: solid 3px #3d3d3d;
	padding: 52px 40px 64px;
	margin: 0 auto 77px;
	position: relative;
}
.guide_title{
	display: inline-block;
	color: #fff;
	font-size: 34px;
	line-height: 40px;
	padding: 10px 76px;
	background: #7caa17;
	font-family: "思源宋体";
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
}
.guide_line{
	width: 16px;
	height: 96px;
	background: #7caa17;
	border-top: solid 8px #fff;
	border-bottom: solid 8px #fff;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.line_left{
	left: -8px;
}
.line_right{
	right: -8px;
}
.guide_text{
	color: #333;
	font-size: 16px;
	line-height: 36px;
	text-align: justify;
}
.guide_con{
	padding: 0 32px;
	margin-bottom: 46px;
}
.guide_top{
	min-height: 74px;
	position: relative;
}
.guide_num{
	color: #7caa17;
	font-size: 50px;
	line-height: 46px;
	position: absolute;
	top: 0;
	left: -32px;
}
.guide_numbg{
	width: 50px;
	height: 60px;
	background: #fff;
	border-top: solid 2px #7caa17;
	transform: rotate(-52deg);
	position: absolute;
	top: 17px;
	left: 20px;
	z-index: 2;
}
.guide_tt{
	color: #7caa17;
	font-size: 28px;
	line-height: 74px;
	position: relative;
	z-index: 3;
}
.guide_a{
	background: #f5f5f5;
	padding: 12px 20px;
	color: #666;
	font-size: 16px;
	text-align: justify;
	line-height: 36px;
	position: relative;
	z-index: 3;
}
.guide_a span{
	color: #323232;
	font-weight: bold;
}
.guide_a h1{
	font-size: 18px;
	color: #323232;
}
.guide_b{
	color: #333;
	font-size: 18px;
	line-height: 40px;
	text-align: justify;
	padding: 0 54px;
}


/* 招生就业-在线留言 */
.message_box{
	padding: 70px 0 140px;
	overflow: hidden;
}
.message_box .content{
	width: 1460px;
}
.message_t{
	width: 100%;
}
.message_t img{
	width: 100%;
}
.message_bg{
	width: 100%;
	min-height: 300px;
	background: url(../images/mes_02.png) repeat-y left top;
	background-size: 100%;
	padding: 0 118px;
}
.message_tit{
	color: #838383;
	font-size: 15px;
	line-height: 24px;
	margin-bottom: 45px;
}
.message_tit h1{
	color: #070707;
	font-size: 32px;
	line-height: 56px;
	font-weight: normal;
}
.message_con{
	display: flex;
	justify-content: space-between;
}
.p50{
	padding-bottom: 50px;
}
.p67{
	padding-bottom: 67px;
}
.mes_box{
	width: 47%;
}
.mes_text{
	color: #727272;
	font-size: 16px;
	line-height: 44px;
}
.mes_con{
	width: 100%;
	height: 60px;
	padding-left: 54px;
	background: #f9f9f9;
	position: relative;
}
.mes_con input{
	width: 100%;
	height: 60px;
	line-height: 60px;
	border: none;
	background: none;
	color: #757575;
	font-size: 16px;
}
.mes_con input::placeholder{
	color: #757575;
}
.mes_con textarea{
	width: 100%;
	height: 228px;
	line-height: 40px;
	border: none;
	background: none;
	color: #757575;
	font-size: 16px;
}
.mes_con textarea::placeholder{
	color: #757575;
}
.mes_img{
	width: 22px;
	height: 22px;
	position: absolute;
	top: 19px;
	left: 18px;
}
.mes_img img{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.mes_con:hover{
	background: #7caa17;
}
.mes_con:hover input{
	color: #fff;
}
.mes_con:hover input::placeholder{
	color: #fff;
}
.mes_con:hover .img01{
	display: none;
}
.mes_con:hover .img02{
	display: block;
}
.mes_con:hover textarea{
	color: #fff;
}
.mes_con:hover textarea::placeholder{
	color: #fff;
}
.mes .mes_con{
	height: 238px;
	padding: 10px 0 0 54px;
}
.btn_submit{
	width: 186px;
	height: 50px;
	background: #7caa17;
	border: none;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
}


/* 信息公开-学校公告 */
.xxgg_box{
	min-height: 600px;
	padding: 48px 0 94px;
	overflow: hidden;
}
.xxgg_list{
	width: 100%;
	padding-bottom: 70px;
}
.xxgg_list li:hover{
	background: #7caa17;
}
.xxgg_list li:hover .xxgg_con{
	border-bottom: solid 1px #7caa17;
}
.xxgg_list li:hover .xxgg_tt{
	color: #fff;
}
.xxgg_list li:hover .xxgg_time{
	color: #fff;
}
.xxgg_list li:hover .xxgg_txt{
	color: #fff;
}
.xxgg_list li:hover .xxgg_arrow{
	background: url(../images/int_02.png) no-repeat;
	background-size: 100% 100%;
}
.xxgg_con{
	padding: 42px 0 36px;
	border-bottom: solid 1px #ececec;
	position: relative;
}
.xxgg_arrow{
	width: 40px;
	height: 40px;
	background: url(../images/int_01.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: 46px;
	right: 0;
}
.xxgg_tt{
	width: 85%;
	color: #414141;
	font-size: 20px;
	font-weight: bold;
	line-height: 48px;
	height: 48px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.xxgg_time{
	color: #9e9e9e;
	font-size: 16px;
	line-height: 28px;
	height: 28px;
	overflow: hidden;
	margin-bottom: 12px;
}
.xxgg_txt{
	color: #868686;
	font-size: 16px;
	line-height: 28px;
	height: 56px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
}


/* 信息公开-人才招聘 */
.rec_box{
	min-height: 600px;
	padding: 77px 0 102px;
	overflow: hidden;
}
.rec_box .content{
	width: 1560px;
}
.rec_tit{
	width: 100%;
	text-align: center;
	line-height: 48px;
	color: #222;
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 65px;
}
.rec_ssbox{
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 48px;
}
.rec_ssbg{
	width: 42%;
	height: 64px;
	border: solid 1px #eee;
	background: #fff;
	padding: 0 28px 0 22px;
}
.rec_ss{
	float: left;
	width: 85%;
	height: 64px;
	border: none;
	background: none;
	color: #727272;
	font-size: 16px;
}
.rec_ss::placeholder{
	color: #727272;
}
.rec_ssimg{
	float: right;
	width: 24px;
	height: 24px;
	margin-top: 20px;
	cursor: pointer;
}
.rec_ssimg img{
	width: 100%;
	height: 100%;
}
.xueli_bg{
	width: 20%;
	height: 64px;
	border: solid 1px #eee;
	background: #fff;
}
.xueli{
	width: 100%;
	height: 64px;
	border: none;
	background: url("../images/int_04.png") no-repeat scroll 94% center transparent;
	background-size: 15px 12px;
	color: #757575;
	font-size: 16px;
	padding-left: 24px;
	appearance: none;
	-webkit-appearance: none;
}
.rec_submit{
	width: 12%;
	height: 64px;
	border: none;
	background: #7caa17;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
}
.zhiwei{
	width: 100%;
}
.zhiwei li{
	color: #757575;
	font-size: 16px;
	line-height: 28px;
	border: solid 1px #e7e7e7;
	padding: 12px 232px 26px 35px;
	margin-bottom: 50px;
	position: relative;
}
.zw_tt{
	color: #454545;
	font-size: 24px;
	font-weight: bold;
	line-height: 82px;
	height: 82px;
	border-bottom: solid 1px #e2e2e2;
	padding-left: 60px;
	position: relative;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 30px;
}
.zw_tt img{
	width: 28px;
	height: 28px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 10px;
}
.zw01{
	float: left;
	width: 35%;
	padding: 0 8px;
}
.zw02{
	float: left;
	width: 28%;
	padding: 0 8px;
}
.zw03{
	float: left;
	width: 37%;
}
.zw_more{
	width: 150px;
	height: 48px;
	border: solid 1px #7caa17;
	border-radius: 50px;
	color: #7caa17;
	font-weight: bold;
	font-size: 14px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 40px;
	overflow: hidden;
}
.zw_more a{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
}
.zw_more div{
	width: 9px;
	height: 14px;
	position: relative;
	margin-left: 20px;
}
.zw_more div img{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.zw_more::before {
	position: absolute;
	display: block;
	content: '';
	background: #7caa17;
	width: 0;
	left: -5%;
	top: -5%;
	height: 110%;
	z-index: 1;
	overflow: hidden;
	transition: all 0.6s;
}
.zw_more:hover::before {
	width: 110%;
}
.zw_more:hover{
	color: #fff;
}
.zw_more:hover .img01{
	display: none;
}
.zw_more:hover .img02{
	display: block;
}


/* 信息公开-人才招聘-详情 */
.rec_grey{
	background: #f8f8f8;
	padding: 95px 0 107px;
	margin-top: 2px;
}
.rec_grey .content{
	width: 1560px;
}
.show_bg{
	padding: 60px 61px 94px;
	background: #fff;
	min-height: 400px;
	overflow: hidden;
}
.show_tit{
	color: #454545;
	font-size: 24px;
	font-weight: bold;
	line-height: 36px;
	padding: 0 200px 0 5px;
	position: relative;
	margin-bottom: 30px;
}
.zxsq{
	width: 150px;
	height: 48px;
	border-radius: 2px;
	background: #7caa17;
	color: #fff;
	font-size: 16px;
	font-weight: normal;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: -20px;
	right: 0;
}
.zxsq a{
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.zxsq img{
	width: 9px;
	height: 14px;
	margin-left: 10px;
}
.show_top{
	width: 100%;
	padding: 28px 0;
	background: url(../images/int_08.png) no-repeat;
	background-size: 100% 100%;
	color: #757575;
	font-size: 16px;
	line-height: 32px;
	margin-bottom: 58px;
	display: flex;
	justify-content: space-between;
}
.show_top span{
	color: #454545;
	font-weight: bold;
}
.show_t01{
	width: 45%;
	padding: 0 6px;
}
.show_t02{
	width: 28%;
	padding: 0 6px;
}
.show_t03{
	width: 27%;
	padding: 0 6px;
}
.show_tt{
	display: inline-block;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	padding: 0 32px;
	height: 45px;
	line-height: 45px;
	background: #7caa17;
	border-radius: 50px;
	margin-bottom: 24px;
}
.show_text{
	color: #454545;
	font-size: 16px;
	line-height: 48px;
	text-align: justify;
	overflow: hidden;
	margin-bottom: 50px;
}
.fanye_box{
	border-top: solid 1px #e2e2e2;
	padding-top: 35px;
	position: relative;
}
.fanye_back{
	width: 34px;
	height: 35px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	z-index: 3;
}
.fanye_back img{
	width: 100%;
	height: 100%;
}
.fanye_left{
	float: left;
	width: 46%;
	min-height: 34px;
	line-height: 34px;
	padding-left: 36px;
	color: #757575;
	font-size: 18px;
	position: relative;
}
.fanye_left div{
	width: 14px;
	height: 21px;
	background: url(../images/int_10.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}
.fanye_right{
	float: right;
	width: 46%;
	min-height: 34px;
	line-height: 34px;
	text-align: right;
	padding-right: 36px;
	color: #757575;
	font-size: 18px;
	position: relative;
}
.fanye_right div{
	width: 14px;
	height: 21px;
	background: url(../images/int_12.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}
.fanye_left:hover,.fanye_right:hover{
	color: #7caa17;
	text-decoration: underline;
}
.fanye_left:hover div{
	background: url(../images/int_11.png) no-repeat;
	background-size: 100% 100%;
}
.fanye_right:hover div{
	background: url(../images/int_13.png) no-repeat;
	background-size: 100% 100%;
}


/* 学生工作-学生资助 */
.aid_box{
	min-height: 600px;
	padding: 75px 0 55px;
	overflow: hidden;
}
.aid_list{
	width: 100%;
}
.aid_list ul{
	margin-right: -45px;
}
.aid_list li{
	float: left;
	width: 450px;
	margin: 0 45px 70px 0;
}
.aid_time{
	width: 100%;
	text-align: center;
	line-height: 42px;
	color: #999;
	font-size: 30px;
	font-family: "Rubik-Regular";
}
.aid_time span{
	font-size: 18px;
}
.aid_text{
	color: #222;
	font-size: 16px;
	text-align: center;
	line-height: 38px;
	height: 38px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 20px;
}
.aid_pic{
	width: 100%;
	height: 290px;
	overflow: hidden;
}
.aid_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.aid_pic:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}


/* 合作交流-产教融合 */
.cjrh_box{
	min-height: 600px;
	padding: 92px 0 115px;
	overflow: hidden;
}
.cjrh_tit{
	text-align: center;
	line-height: 50px;
	color: #333;
	font-size: 40px;
	margin-bottom: 40px;
}
.cjrh_text{
	width: 75%;
	text-align: center;
	line-height: 36px;
	color: #333;
	font-size: 18px;
	margin: 0 auto 37px;
}
.cjrh_more{
	width: 58px;
	height: 58px;
	border: solid 1px #7caa17;
	background: #7caa17;
	border-radius: 50%;
	color: #fff;
	font-family: 宋体;
	font-weight: bold;
	font-size: 20px;
	margin: 0 auto 66px;
	position: relative;
	overflow: hidden;
}
.cjrh_more a{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
}
.cjrh_more::before {
	position: absolute;
	display: block;
	content: '';
	background: #fff;
	width: 0;
	left: -5%;
	top: -5%;
	height: 110%;
	z-index: 1;
	overflow: hidden;
	transition: all 0.6s;
}
.cjrh_more:hover::before {
	width: 110%;
}
.cjrh_more:hover{
	color: #7caa17;
}
.cjrh_con{
	width: 100%;
	height: 384px;
	border-radius: 20px;
	background: linear-gradient(to bottom, #e8edc5, #c2daca);
	padding: 27px 30px;
}
.cjrh_con:hover{
	background: linear-gradient(to bottom, #aabb26, #197238);
}
.cjrh_con:hover .cjrh_num,.cjrh_con:hover .cjrh_txt{
	color: #fff;
}
.cjrh_num{
	color: #177137;
	font-size: 36px;
	line-height: 70px;
	height: 70px;
	font-family: "Rubik-Regular";
	overflow: hidden;
}
.cjrh_txt{
	color: #333;
	font-size: 18px;
	line-height: 26px;
	height: 52px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	margin-bottom: 12px;
}
.cjrh_pic{
	width: 182px;
	height: 182px;
	margin-left: -5px;
}
.cjrh_pic img{
	width: 100%;
	height: 100%;
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.cjrh_con:hover .cjrh_pic img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}


/* 合作交流-产教融合-政策文件 */
.zcwj_box{
	min-height: 600px;
	padding: 72px 0 157px;
	overflow: hidden;
}


/* 党建工作-党建动态-党建引领 */
.djdt_box{
	min-height: 600px;
	padding: 80px 0 122px;
	overflow: hidden;
}
.djdt_list{
	width: 100%;
}
.djdt_list li{
	background: url(../images/dang_01.jpg) no-repeat right top #f8f8f8;
	background-size: 410px;
	height: 248px;
	padding: 28px 30px;
	margin-bottom: 30px;
}
.djdt_pic{
	float: left;
	width: 298px;
	height: 192px;
	overflow: hidden;
}
.djdt_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.djdt_pic:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.djdt_r{
	float: right;
	width: 1035px;
}
.djdt_rt{
	padding: 25px 0 23px;
}
.djdt_time{
	float: left;
	text-align: center;
	color: #7caa17;
	font-size: 14px;
	line-height: 16px;
	font-family: "Techna-Sans";
	position: relative;
}
.djdt_time h1{
	font-size: 32px;
	line-height: 30px;
	font-weight: normal;
}
.djdt_time i{
	width: 100%;
	height: 3px;
	background: #7caa17;
	display: block;
	position: absolute;
	top: -52px;
	left: 0;
}
.djdt_tt{
	float: right;
	width: 92%;
	font-size: 26px;
	font-weight: bold;
	color: #222;
	line-height: 46px;
	height: 46px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.djdt_txt{
	color: #949494;
	font-size: 14px;
	line-height: 30px;
	height: 60px;
	text-align: justify;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
}


/* 机构设置-组织机构 */
.group_bg{
	width: 100%;
	min-height: 1180px;
	background: url(../images/group_01.jpg) no-repeat center top;
	background-size: cover;
	padding: 80px 0 104px;
	overflow: hidden;
}
.group_title{
	width: 100%;
	text-align: center;
	margin-bottom: 42px;
}
.group_title div{
	display: inline-block;
	padding: 20px 41px;
	background: url(../images/group_02.jpg) no-repeat;
	background-size: 100% 100%;
	border-radius: 4px;
	line-height: 40px;
	color: #fff;
	font-size: 26px;
	font-weight: bold;
}
.group_top{
	width: 80%;
	height: 42px;
	border: solid 1px #d6d6d6;
	border-bottom: none;
	margin: 0 auto 2px;
	position: relative;
}
.group_line{
	width: 1px;
	height: 42px;
	background: #d6d6d6;
	position: absolute;
	top: -42px;
	left: 50%;
	transform: translateX(-50%);
}
.group{
	width: 100%;
}
.group dl{
	float: left;
	width: 19%;
	margin-right: 1%;
}
.group dl dt{
	width: 100%;
	height: 81px;
	line-height: 81px;
	text-align: center;
	color: #fff;
	font-size: 26px;
	font-weight: bold;
	background: url(../images/group_03.jpg) no-repeat;
	background-size: 100% 100%;
	border-radius: 4px;
}
.group ul{
	width: 100%;
	padding-top: 29px;
}
.group li{
	width: 100%;
	min-height: 81px;
	padding: 10px 5px;
	line-height: 30px;
	color: #333;
	font-size: 18px;
	background: #e9efe9;
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-bottom: 10px;
}
.group_pic{
	width: 100%;
}
.group_pic img{
	width: 100%;
}


/* 人才培养-培养模式 */
.pyms_box{
	min-height: 600px;
	padding: 60px 0 150px;
	overflow: hidden;
}
.rencai_type{
	width: 100%;
	padding-bottom: 40px;
}
.rencai_type ul{
	margin-right: -1.5%;
	height: 194px;
	display: flex;
	overflow-y: hidden;
    overflow-x: scroll;
    scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
    white-space: nowrap;
}
.rencai_type li{
	flex: 0 0 auto;
	width: 18.5%;
	height: 194px;
	display: flex;
	align-items: center;
	position: relative;
	margin-right: 1.5%;
}
.rencai_type li.active{
	background: url(../images/about_04.png) no-repeat;
	background-size: 100% 100%;
}
.rencai_type li.active .school_num{
	opacity: 1;
}
.rencai_type li.active .school_tt{
	background: #7caa17;
	color: #fff;
	font-size: 22px;
	font-weight: bold;
}
.rencai_type li.active .school_tt::after{
	opacity: 1;
}
.zhihui_bg{
	min-height: 260px;
	background: #f9fcf1;
	padding: 55px 65px 64px 62px;
	position: relative;
	margin: 0 auto 76px;
}
.zhihui_yh{
	width: 96px;
	height: 84px;
	background: url(../images/rencai_01.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	right: 18px;
	bottom: 14px;
	z-index: 1;
}
.zhihui_top{
	width: 100%;
	text-align: center;
	position: absolute;
	top: -19px;
	left: 0;
	z-index: 1;
}
.zhihui_tit{
	display: inline-block;
	line-height: 50px;
	background: url(../images/rencai_02.jpg) no-repeat;
	background-size: 100% 100%;
	padding: 0 25px;
	color: #fff;
	font-size: 26px;
	font-weight: bold;
	position: relative;
}
.zhihui_tl{
	width: 25px;
	height: 50px;
	background: url(../images/rencai_03.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: 0;
	left: -25px;
}
.zhihui_tr{
	width: 25px;
	height: 50px;
	background: url(../images/rencai_04.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: 0;
	right: -25px;
}
.zhihui_txt{
	width: 100%;
	line-height: 34px;
	text-align: justify;
	color: #435c0d;
	font-size: 18px;
}
.con1314{
	width: 1314px;
	margin: 0 auto;
}
.rencai_tit{
	width: 100%;
	text-align: center;
	line-height: 40px;
	position: relative;
	margin-bottom: 30px;
}
.rencai_tit i{
	width: 244px;
	height: 9px;
	background: linear-gradient(to right, #7caa17, rgba(127, 170, 23, 0));
	display: block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
}
.rencai_tit h1{
	color: #435c0d;
	font-size: 34px;
	font-weight: normal;
	position: relative;
	z-index: 2;
}
.rencai_txt{
	color: #435c0d;
	font-size: 18px;
	text-align: justify;
	line-height: 34px;
	margin-bottom: 100px;
}

.zyts_title{
	width: 100%;
	text-align: center;
	line-height: 40px;
	position: relative;
	margin-bottom: 35px;
}
.zyts_title i{
	width: 184px;
	height: 9px;
	background: linear-gradient(to right, #7caa17, rgba(127, 170, 23, 0));
	display: block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
}
.zyts_title h1{
	color: #435c0d;
	font-size: 34px;
	font-weight: normal;
	position: relative;
	z-index: 2;
}
.zyts{
	width: 100%;
	padding-bottom: 46px;
}
.zyts ul{
	margin-right: -3%;
	display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.zyts li{
	width: 47%;
	min-height: 178px;
	background: linear-gradient(to bottom, #e5eed1, #fff);
	border-bottom: solid 2px #7caa17;
	padding: 30px 45px 24px 148px;
	margin: 0 3% 30px 0;
	position: relative;
}
.zyts_num{
	width: 115px;
	height: 115px;
	position: absolute;
	top: 30px;
	left: 15px;
}
.zyts_num img{
	width: 100%;
	height: 100%;
}
.zyts_tit{
	color: #435c0d;
	font-size: 22px;
	font-weight: bold;
	line-height: 30px;
	margin-bottom: 7px;
}
.zyts_txt{
	color: #435c0d;
	font-size: 16px;
	line-height: 26px;
	text-align: justify;
}

.kecheng_txt{
	width: 74%;
	text-align: center;
	line-height: 34px;
	color: #435c0d;
	font-size: 18px;
	margin: 0 auto 35px;
}
.kecheng{
	width: 100%;
}
.kecheng th{
	border: solid 1px #a9d18e;
	background: #7caa17;
	color: #fff;
	font-size: 18px;
	line-height: 30px;
	padding: 15px;
}
.kecheng td{
	border: solid 1px #a9d18e;
	text-align: center;
	padding: 25px 50px;
	font-size: 18px;
	line-height: 26px;
}
.kecheng tbody td:nth-child(1){
	background: #f5f8ee;
	padding: 25px 5px;
}
.kc01{
	width: 14%;
}
.kc02{
	width: 43%;
}
.kc_text{
	width: 100%;
	text-align: justify !important;
}


/* 人才培养-微专业 */
.wei_box{
	min-height: 600px;
	padding: 80px 0 150px;
	overflow: hidden;
}
.wei_txtbg{
	width: 100%;
	background: #f0f6e3;
	border-bottom: solid 4px #7caa17;
	border-radius: 14px;
	padding: 24px 45px;
	color: #666;
	font-size: 16px;
	line-height: 28px;
	text-align: justify;
	margin-bottom: 25px;
}
.wei_txt{
	width: 90%;
	text-align: center;
	line-height: 40px;
	color: #666;
	font-size: 18px;
	margin: 0 auto 42px;
}
.wei_list{
	width: 100%;
}
.wei_list li{
	border-bottom: dotted 2px #ddd;
	padding: 50px 42px 50px 0;
	transition: all 0.6s;
	position: relative;
}
.wei_pic{
	float: left;
	width: 374px;
	height: 224px;
	overflow: hidden;
}
.wei_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.wei_pic:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.wei_r{
	float: right;
	width: 978px;
	position: relative;
	z-index: 2;
}
.wei_tit{
	color: #222;
	font-size: 24px;
	line-height: 32px;
	height: 32px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 14px;
}
.wei_text{
	color: #686868;
	font-size: 16px;
	line-height: 30px;
	height: 60px;
	text-align: justify;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	margin-bottom: 25px;
}
.wei_more{
	width: 112px;
	color: #191919;
	font-size: 16px;
}
.wei_more a{
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.wei_more div{
	width: 38px;
	height: 38px;
	border: solid 1px #7caa17;
	background: #7caa17;
	border-radius: 50%;
	color: #fff;
	font-family: 宋体;
	font-weight: bold;
	font-size: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.wei_logo{
	width: 360px;
	height: 182px;
	background: url(../images/rencai_10.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	right: 0;
	bottom: 0;
	opacity: 0;
}
.wei_list li:hover{
	background: #eff4f7;
	border-left: solid 4px #7caa17;
	border-bottom: none;
	padding: 50px 42px 50px 20px;
}
.wei_list li:hover .wei_logo{
	opacity: 1;
}
.wei_list li:hover .wei_tit{
	color: #7caa17;
}
.wei_list li:hover .wei_more{
	color: #7caa17;
}


/* 教育教学-5大专业 */
.jiaoyu_con{
	padding-bottom: 44px;
}
.jiaoyu{
	width: 100%;
}
.jiaoyu .swiper-slide{
	cursor: pointer;
}


/* 教育教学-详情 */
.show_bg02{
	padding: 52px 60px;
	background: #fff;
	border-radius: 8px;
	min-height: 400px;
	overflow: hidden;
}
.show_title{
	width: 100%;
	text-align: center;
	line-height: 32px;
	color: #454545;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 40px;
}
.show_top02{
	width: 100%;
	padding: 28px 0;
	background: url(../images/int_08.png) no-repeat;
	background-size: 100% 100%;
	color: #757575;
	font-size: 16px;
	line-height: 32px;
	margin-bottom: 115px;
	display: flex;
	justify-content: center;
}
.show_top02 div{
	padding: 0 100px;
}
.show_top02 span{
	color: #454545;
	font-weight: bold;
}


/* 教育教学-课程建设 */
.ke_t{
	padding: 70px 0 100px;
	overflow: hidden;
}
.zong{
	color: #333;
	font-size: 18px;
	line-height: 36px;
	text-align: justify;
	margin-bottom: 125px;
}
.zong span{
	color: #7caa17;
	font-size: 28px;
	padding-right: 10px;
}
.ke_top{
	width: 100%;
	height: 88px;
	text-align: center;
	position: relative;
	margin-bottom: 42px;
}
.ke_num{
	width: 100%;
	text-align: center;
	line-height: 68px;
	font-size: 76px;
	font-weight: bold;
	background: linear-gradient(to bottom, #a3c26f, rgba(169,198,122,0.1), rgba(169,198,122,0));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.ke_tit{
	display: inline-block;
	height: 50px;
	line-height: 50px;
	color: #333;
	font-size: 42px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	z-index: 2;
}
.ke_tit span{
	color: #7caa17;
}
.y01{
	width: 27px;
	height: 27px;
	background: url(../images/jiaoyu_01.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: -7px;
	left: -48px;
}
.y02{
	width: 35px;
	height: 35px;
	background: url(../images/jiaoyu_02.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	bottom: 0;
	right: -55px;
}
.ke_type{
	width: 100%;
	border-bottom: solid 1px #c7c7c7;
	margin-bottom: 24px;
}
.ke_type .swiper-slide{
	height: 172px;
	text-align: center;
	cursor: pointer;
}
.ke_type i{
	width: 60px;
	height: 3px;
	display: block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
}
.ke_type img{
	width: 90px;
	height: 90px;
	display: block;
	margin: 0 auto 34px;
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.ke_type .swiper-slide:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.ke_type h1{
	color: #666;
	font-size: 20px;
	line-height: 30px;
	font-weight: normal;
}
.ke_type i{
	width: 60px;
	height: 3px;
	display: block;
	background: #7caa17;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	opacity: 0;
}
.ke_type .swiper-slide-thumb-active h1{
	color: #7caa17;
	font-weight: bold;
}
.ke_type .swiper-slide-thumb-active i{
	opacity: 1;
}
.ke_box{
	width: 100%;
}
.ke_box .swiper-slide{
	height: 440px;
}
.ke_pic{
	float: left;
	width: 76%;
	height: 440px;
}
.ke_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.ke_pic:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.ke_bg{
	float: left;
	width: 24%;
	height: 440px;
	background: #7caa17;
	padding: 60px 0 10px;
	position: relative;
}
.ke_logo{
	width: 120px;
	height: 120px;
	background: url(../images/jiaoyu_09.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	right: 14px;
	bottom: 10px;
}
.ke_list{
	width: 100%;
	position: relative;
	z-index: 2;
}
.ke_list li{
	color: #fff;
	font-size: 22px;
	line-height: 32px;
	height: 98px;
	padding: 0 10px 0 88px;
	margin-bottom: 14px;
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
}
.ke_list i{
	width: 22px;
	height: 4px;
	display: block;
	background: #fff;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 45px;
}
.ke_list li.active{
	background: url(../images/jiaoyu_10.png) no-repeat;
	background-size: 100% 100%;
}
.ke_list li.active i{
	width: 39px;
	left: 27px;
}

.su_bg{
	width: 100%;
	height: 785px;
	background: url(../images/jiaoyu_11.jpg) no-repeat center top;
	background-size: cover;
	padding: 86px 0 90px;
	overflow: hidden;
}
.su_box{
	padding-bottom: 42px;
	position: relative;
}
.su_box .swiper-button-next, .su_box .swiper-button-prev{
	width: 58px;
	height: 58px;
	background: #7caa17;
	border: solid 1px #7caa17;
	border-radius: 50%;
	top: 44%;
	transform: translateY(-44%);
	display: flex;
	justify-content: center;
	align-items: center;
}
.su_box .swiper-button-next{
	right: 0;
}
.su_box .swiper-button-prev{
	left: 0;
}
.su_box .swiper-button-next:after, .su_box .swiper-button-prev:after{
	color: #fff;
    font-weight: bold;
    font-size: 12px;
	text-align: center;
}
.su_box .swiper-button-next:hover, .su_box .swiper-button-prev:hover{
	background: #fff;
}
.su_box .swiper-button-next:hover:after, .su_box .swiper-button-prev:hover:after{
	color: #7caa17;
}
.su_box .swiper-pagination{
	height: 6px;
	bottom: 0;
}
.su_box .swiper-pagination-bullet{
	width: 26px;
	height: 6px;
	background: #d4d4d4;
	border-radius: 0;
	margin: 0 5px !important;
	opacity: 1;
}
.su_box .swiper-pagination-bullet-active{
	width: 66px;
	background: #7caa17;
}
.su_con{
	width: 1226px;
	margin: 0 auto;
}
.su_con .swiper-slide{
	height: 430px;
	background: rgba(255, 255, 255, 0.3);
	border: solid 1px #fff;
	border-radius: 20px;
	padding: 52px 76px 32px 62px;
}
.su_tit{
	color: #333;
	font-size: 28px;
	font-weight: bold;
	line-height: 38px;
	height: 38px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 26px;
}
.su_text{
	color: #333;
	font-size: 16px;
	text-align: justify;
	line-height: 32px;
	height: 224px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 7;
	-webkit-box-orient: vertical;
	white-space: normal;
	margin-bottom: 24px;
}
.su_more{
	color: #7caa17;
	font-size: 16px;
	line-height: 28px;
}
.su_more a{
	display: inline-block;
}

.si_box{
	padding: 96px 0 136px;
	overflow: hidden;
}
.si_text{
	width: 100%;
	text-align: center;
	line-height: 38px;
	color: #333;
	font-size: 18px;
	margin-bottom: 58px;
}
.si_list{
	width: 1190px;
	margin: 0 auto;
}
.si_list ul{
	margin-right: -70px;
}
.si_list li{
	float: left;
	width: 350px;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	margin-right: 70px;
	overflow: hidden;
}
.si_top{
	width: 100%;
	height: 138px;
	background: url(../images/jiaoyu_12.jpg) no-repeat;
	background-size: 100% 100%;
	padding-top: 24px;
	text-align: center;
}
.si_top img{
	width: 66px;
	height: 66px;
	display: block;
	margin: 0 auto;
}
.si_top h1{
	color: #fff;
	font-size: 20px;
	font-weight: normal;
	line-height: 38px;
}
.si_di{
	min-height: 194px;
	padding: 18px 22px 28px;
}
.si_txt{
	width: 100%;
	text-align: center;
	line-height: 34px;
	min-height: 102px;
	color: #838383;
	font-size: 18px;
	margin-bottom: 12px;
}
.si_more{
	width: 100%;
	text-align: center;
	line-height: 34px;
	color: #7caa17;
	font-size: 18px;
}


/* 教育教学-专业建设 */
.fazhan_box{
	padding: 86px 0 50px;
	overflow: hidden;
}
.fazhan_tit{
	width: 100%;
	text-align: center;
	line-height: 48px;
	position: relative;
	margin-bottom: 55px;
}
.fazhan_tit i{
	width: 255px;
	height: 6px;
	background: linear-gradient(to right, #7caa17, rgba(127, 170, 23, 0));
	border-radius: 2px;
	display: block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
}
.fazhan_tit h1{
	color: #333;
	font-size: 42px;
	font-weight: normal;
	position: relative;
	z-index: 2;
}
.fazhan_type .swiper-slide{
	height: 178px;
	padding-top: 82px;
	cursor: pointer;
}
.fazhan_line{
	width: 100%;
	height: 2px;
	background: url(../images/jiaoyu_16.png) repeat-x;
	background-size: auto 100%;
	position: absolute;
	top: 22px;
	left: 10px;
}
.fazhan_y{
	width: 12px;
	height: 12px;
	background: #fff;
	border: solid 1px #375521;
	border-radius: 50%;
	position: absolute;
	top: 17px;
	left: 0;
	z-index: 2;
}
.fazhan_num{
	width: 42px;
	height: 42px;
	line-height: 42px;
	text-align: center;
	background: #f6f6f6;
	border-radius: 50%;
	color: #454545;
	font-size: 18px;
	font-family: "Techna-Sans";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	display: none;
	overflow: hidden;
}
.fazhan_text{
	width: 100%;
	display: flex;
	align-items: center;
	line-height: 28px;
	color: #959595;
	font-size: 18px;
}
.fazhan_text img{
	width: 40px;
	height: 40px;
	margin-right: 18px;
}
.fazhan_type .swiper-slide-thumb-active .fazhan_line{
	background: #d0d0d0;
}
.fazhan_type .swiper-slide-thumb-active .fazhan_num{
	display: block;
}
.fazhan_type .swiper-slide-thumb-active .fazhan_text{
	color: #454545;
}
.fazhan_con{
	width: 100%;
	position: relative;
}
.fazhan_con .swiper-pagination{
	height: 24px;
	color: #fff;
	font-size: 20px;
	font-family: "Rubik-Regular";
	bottom: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.fz_linebox{
	width: 215px;
	height: 24px;
	display: flex;
	align-items: center;
	position: absolute;
	top: 67px;
	right: 62px;
	z-index: 2;
}
.fz_line{
	width: 136px;
	height: 1px;
	background: #fff;
	margin: 0 auto;
	position: relative;
}
.fz_line div{
	width: 50%;
	height: 4px;
	background: #1a5124;
	position: absolute;
	top: -1px;
	left: 0;
}
.fazhan_bg{
	width: 100%;
	min-height: 487px;
	background: url(../images/jiaoyu_22.jpg) no-repeat;
	background-size: cover;
	padding: 100px 62px 5px 68px;
	color: #fff;
}
.fz_tit{
	font-size: 24px;
	line-height: 36px;
	margin-bottom: 30px;
}
.fz_text{
	min-height: 200px;
	font-size: 16px;
	line-height: 36px;
	text-align: justify;
	margin-bottom: 30px;
}
.fz_more{
	width: 100%;
	height: 86px;
	border-top: solid 1px rgba(255, 255, 255, 0.2);
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.fz_ml{
	width: 94px;
}
.fz_ml img{
	width: 100%;
}
.fz_arrow{
	width: 17px;
}
.fz_arrow img{
	width: 100%;
}

.biaozhun_box{
	padding-top: 40px;
	overflow: hidden;
}
.biaozhun_tit{
	width: 100%;
	text-align: center;
	line-height: 52px;
	position: relative;
	margin-bottom: 55px;
}
.biaozhun_tit i{
	width: 170px;
	height: 6px;
	background: linear-gradient(to right, #7caa17, rgba(127, 170, 23, 0));
	border-radius: 2px;
	display: block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
}
.biaozhun_tit h1{
	color: #333;
	font-size: 42px;
	font-weight: normal;
	position: relative;
	z-index: 2;
}
.biaozhun_bg{
	width: 100%;
	background: url(../images/jiaoyu_25.jpg) no-repeat center top #f7f7f7;
	background-size: 100%;
	padding: 86px 0 72px;
	overflow: hidden;
}
.biaozhun{
	width: 100%;
}
.biaozhun li{
	margin-bottom: 20px;
}
.biaozhun li:nth-child(even) .bz_pic{
	float: right;
}
.biaozhun li:nth-child(even) .bz_right{
	float: left;
	text-align: right !important;
}
.biaozhun li:nth-child(even) .program_more{
	float: right;
}
.bz_pic{
	float: left;
	width: 44%;
	height: 369px;
	border-radius: 10px;
	overflow: hidden;
}
.bz_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.bz_pic:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.bz_right{
	float: right;
	width: 48%;
	margin: 54px 32px 0 0;
}
.bz_right .program_more{
	float: none;
}
.bz_tit{
	color: #333;
	font-size: 20px;
	font-weight: bold;
	line-height: 32px;
	height: 32px;
	margin-bottom: 26px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.bz_text{
	color: #333;
	font-size: 16px;
	line-height: 32px;
	min-height: 96px;
	margin-bottom: 34px;
}

.shizi_bg{
	width: 100%;
	min-height: 905px;
	background: url(../images/jiaoyu_28.jpg) no-repeat center top;
	background-size: cover;
	padding: 90px 0;
}
.shizi_tit{
	width: 100%;
	text-align: center;
	line-height: 52px;
	position: relative;
	margin-bottom: 35px;
}
.shizi_tit i{
	width: 255px;
	height: 6px;
	background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
	border-radius: 2px;
	display: block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
}
.shizi_tit h1{
	color: #fff;
	font-size: 42px;
	font-weight: normal;
	position: relative;
	z-index: 2;
}
.shizi_m{
	margin-bottom: 75px;
}
.shizi_text{
	width: 100%;
	text-align: center;
	line-height: 36px;
	color: #fff;
	font-size: 18px;
	margin-bottom: 50px;
}
.shizi_more{
	width: 58px;
	height: 58px;
	border: solid 1px #fff;
	border-radius: 50%;
	color: #7caa17;
	font-family: 宋体;
	font-weight: bold;
	font-size: 20px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}
.shizi_more a{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
}
.shizi_more::before {
	position: absolute;
	display: block;
	content: '';
	background: #fff;
	width: 110%;
	right: -5%;
	top: -5%;
	height: 110%;
	z-index: 1;
	overflow: hidden;
	transition: all 0.6s;
}
.shizi_more:hover::before {
	width: 0;
}
.shizi_more:hover{
	color: #fff;
}
.shizi{
	width: 100%;
}
.shizi ul{
	margin-right: -1%;
}
.shizi li{
	float: left;
	width: 24%;
	min-height: 332px;
	background: url(../images/jiaoyu_29.png) no-repeat left top;
	background-size: 100% 100%;
	padding: 40px;
	margin-right: 1%;
}
.shizi_tt{
	width: 100%;
	text-align: center;
	line-height: 54px;
	color: #7aaa19;
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 26px;
}
.shizi_txt{
	width: 100%;
	text-align: center;
	line-height: 32px;
	color: #333;
	font-size: 16px;
}
.shizi li:hover{
	background: url(../images/jiaoyu_30.png) no-repeat left top;
	background-size: 100% 100%;
}
.shizi li:hover .shizi_tt{
	color: #fff;
}
.shizi li:hover .shizi_txt{
	color: #fff;
}

.tiaojian_box{
	padding: 80px 0 118px;
	overflow: hidden;
}
.tiaojian_top{
	margin-bottom: 57px;
}
.tiaojian_tit{
	float: left;
	line-height: 66px;
	position: relative;
}
.tiaojian_tit i{
	width: 255px;
	height: 6px;
	background: linear-gradient(to right, #7caa17, rgba(127, 170, 23, 0));
	border-radius: 2px;
	display: block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
}
.tiaojian_tit h1{
	color: #333;
	font-size: 42px;
	font-weight: normal;
	position: relative;
	z-index: 2;
}
.tiaojian_type{
	float: right;
}
.tiaojian_type ul{
	margin-right: -28px;
}
.tiaojian_type li{
	float: left;
	width: 270px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	background: #7aa732;
	border-radius: 5px;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	margin-right: 28px;
}
.tiaojian_type li.active{
	font-weight: bold;
}
.tiaojian_text{
	color: #333;
	font-size: 18px;
	line-height: 36px;
	text-align: justify;
	margin-bottom: 60px;
}
.tiaojian{
	width: 100%;
}
.tiaojian ul{
	margin-right: -3.33%;
}
.tiaojian li{
	float: left;
	width: 30%;
	height: 287px;
	border-radius: 6px;
	margin-right: 3.33%;
	overflow: hidden;
}
.tiaojian img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
}
.tiaojian li:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}


/* 教育教学-教学成果 */
.chengguo_box{
	min-height: 600px;
	padding: 80px 0;
	overflow: hidden;
}
.chengguo{
	width: 100%;
}
.chengguo th{
	border: solid 1px #a9d18e;
	background: #7caa17;
	color: #fff;
	font-size: 18px;
	line-height: 30px;
	padding: 15px 5px;
}
.chengguo td{
	border: solid 1px #a9d18e;
	text-align: center;
	padding: 16px;
	font-size: 18px;
	line-height: 26px;
}
.chengguo tbody td:nth-child(odd){
	background: #f5f8ee;
	padding: 16px 5px;
}
.cg01{
	width: 7%;
}
.cg02{
	width: 34%;
}
.cg03{
	width: 10%;
}