@font-face {
	font-family: 'HarmonyB';
	src: url('../fonts/HarmonyOS_Sans_SC_Bold.eot');
	src: url('../fonts/HarmonyOS_Sans_SC_Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/HarmonyOS_Sans_SC_Bold.woff2') format('woff2'),
		url('../fonts/HarmonyOS_Sans_SC_Bold.woff') format('woff'),
		url('../fonts/HarmonyOS_Sans_SC_Bold.svg#HarmonyOS_Sans_SC_Bold') format('svg');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'HarmonyBl';
	src: url('../fonts/HarmonyOS_Sans_SC_Black.eot');
	src: url('../fonts/HarmonyOS_Sans_SC_Black.eot?#iefix') format('embedded-opentype'),
		url('../fonts/HarmonyOS_Sans_SC_Black.woff2') format('woff2'),
		url('../fonts/HarmonyOS_Sans_SC_Black.woff') format('woff'),
		url('../fonts/HarmonyOS_Sans_SC_Black.svg#HarmonyOS_Sans_SC_Black') format('svg');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'HarmonyM';
	src: url('../fonts/HarmonyOS_Sans_SC_Medium.eot');
	src: url('../fonts/HarmonyOS_Sans_SC_Medium.eot?#iefix') format('embedded-opentype'),
		url('../fonts/HarmonyOS_Sans_SC_Medium.woff2') format('woff2'),
		url('../fonts/HarmonyOS_Sans_SC_Medium.woff') format('woff'),
		url('../fonts/HarmonyOS_Sans_SC_Medium.svg#HarmonyOS_Sans_SC_Medium') format('svg');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'HarmonyR';
	src: url('../fonts/HarmonyOS_Sans_SC.eot');
	src: url('../fonts/HarmonyOS_Sans_SC.eot?#iefix') format('embedded-opentype'),
		url('../fonts/HarmonyOS_Sans_SC.woff2') format('woff2'),
		url('../fonts/HarmonyOS_Sans_SC.woff') format('woff'),
		url('../fonts/HarmonyOS_Sans_SC.svg#HarmonyOS_Sans_SC') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'HarmonyS';
	src: url('../fonts/HarmonyOS_Sans_SC_Semibold.eot');
	src: url('../fonts/HarmonyOS_Sans_SC_Semibold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/HarmonyOS_Sans_SC_Semibold.woff2') format('woff2'),
		url('../fonts/HarmonyOS_Sans_SC_Semibold.woff') format('woff'),
		url('../fonts/HarmonyOS_Sans_SC_Semibold.svg#HarmonyOS_Sans_SC_Semibold') format('svg');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}



/* homepage start */

.fullscreen_slide_box {
	height: 100vh;
	overflow: hidden;
	position: relative;
	z-index: 1;
	position: relative;
}

.fullscreen_slide_box .digital-school {
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 50%;
	transform: translate(50%, -50%);
	right: 0;
	z-index: 10;
}

.fullscreen_slide_box .digital-school .rotato {
	position: relative;
	top: 0;
	left: 0;
	transform: rotate(-40deg);
	width: 22rem;
	height: 22rem;
	border-radius: 50%;
	box-sizing: border-box;
	border: 1px solid rgba(255, 105, 0, 1);
	/* 添加动画 */
	animation: rotateDigitalSchool 25s linear infinite;
}

.fullscreen_slide_box .digital-school .rotato::before {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	top: -5px;
	/* 定位到顶部边框上 */
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 105, 0, 1);
	transform: translateX(-50%);
	/* 居中对齐 */
	z-index: 11;
	/* 确保在最上层 */
}

.fullscreen_slide_box .digital-school .rotato::after {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	bottom: -5px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 105, 0, 1);
	transform: translateX(-50%);
	z-index: 11;
}

/* 定义更平滑的旋转动画 */
@keyframes rotateDigitalSchool {
	0% {
		transform: rotate(-40deg);
	}

	100% {
		transform: rotate(320deg);
	}
}

.fullscreen_slide_box .digital-school .main {
	position: absolute;
	width: 20rem;
	height: 20rem;
	border-radius: 50%;
	box-sizing: border-box;
	padding: 4.4rem 5rem;
	background: rgba(7, 80, 86, 1);
	font-family: 'HarmonyM';
	color: #fff;
}

.fullscreen_slide_box .digital-school .main img {
	position: absolute;
	left: 0rem;
	top: 0rem;
	z-index: 2;
	width: 10rem;
	height: 100%;
	object-fit: contain;
	transition: all .5s ease-in-out;
}

.fullscreen_slide_box .digital-school .main .logo-img {
	position: absolute;
	left: -3rem;
	top: 0rem;
	z-index: 1;
	width: 16rem;
	height: 100%;
	object-fit: contain;
	transition: all .5s ease-in-out;
}

.fullscreen_slide_box .digital-school:hover .main .logo-img {
	transform: scale(1.1)
}

.fullscreen_slide_box .digital-school .main .text {
	position: relative;
	z-index: 5;
	display: block;
	width: 2.4rem;
	font-family: 'HarmonyM';
}

.fullscreen_slide {
	height: 100vh;
	width: 100%;
	overflow: auto;
	box-sizing: border-box;
	position: absolute;
	top: 0;
	transition: top ease-in-out .7s;
	-ms-transition: top ease-in-out .7s;
	-moz-transition: top ease-in-out .7s;
	-webkit-transition: top ease-in-out .7s;
	-o-transition: top ease-in-out .7s;
	top: 100vh;
}

.fullscreen_slide:first-child, .fullscreen_slide.on {
	top: 0;
}

.fullscreen_slide.before {
	top: -100vh;
}

@media screen and (max-width: 996px) {
	.fullscreen_slide, .fullscreen_slide_box, .fullscreen_slide.before {
		height: auto;
		display: block;
		position: relative;
		top: 0;
		overflow: initial;
	}

	.fullscreen_slide_box .digital-school .main .text {
		font-size: 2rem;
	}

	.fullscreen_slide_box .digital-school .main {
		width: 16rem;
		height: 16rem;
	}

	.fullscreen_slide_box .digital-school .rotato {
		width: 18rem;
		height: 18rem;
	}
}

.wrapbanner {
	overflow: hidden;
	position: relative;
	height: 100vh;
	box-sizing: border-box;
}

.banner {}

.banner a {
	display: block;
	position: relative
}

.banner a::before {
	content: '';
	display: block;
	background: #000000;
	/* fallback for old browsers */
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
	/* Safari 5.1-6.0 */
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
	/* Opera 11.1-12.0 */
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
	/* Firefox 3.6-15 */
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
	/* 标准语法 */
	height: 20rem;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
}

.banner .gp-img {
	padding-bottom: 100vh;
}

.banner .gp-img video, .banner .gp-img img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	object-fit: cover;
}

.banner .gp-img video {
	width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

/* .banner .swiper-slide-active .gp-img {
	animation: scaleBig 10s linear 0s 1 both;
	transform-style: preserve-3d
} */

@-webkit-keyframes scaleBig {
	0% {
		transform: scale(1)
	}

	100% {
		transform: scale(1.1)
	}
}

@keyframes scaleBig {
	0% {
		transform: scale(1)
	}

	100% {
		transform: scale(1.1)
	}
}

.wrapbanner .swiper_menu {
	display: flex;
	justify-content: center;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 6.4rem;
	z-index: 10;
}

.wrapbanner .swiper-pagination {
	display: flex;
}

.wrapbanner .swiper-pagination-bullet {
	width: 3.7rem;
	height: 2.1rem;
	display: inline-block;
	border-radius: 0%;
	background: url('../images/swiper_dot_bg.png') no-repeat center/ 100% 100%;
	opacity: 1;
	margin: 0 1.2rem;
	transition: all .3s;
}

.wrapbanner .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: url('../images/swiper_dot_active_bg.png') no-repeat center/ 100% 100%;
}



@media screen and (max-width: 996px) {
	.wrapbanner {
		height: auto;
	}

	.banner .gp-img {
		padding-bottom: 60.8%
	}

}

@media screen and (max-width:767px) {
	.banner a::before {
		height: 10rem;
	}
}

/* homepage end */

/* 公共标题 */
.content {
	padding-top: 9rem;
}

.com-title {
	position: relative;
	margin-bottom: 3rem;
}

.com-title .title {
	display: flex;
	align-items: center;
	flex-direction: column;
	width: max-content;
	margin: 0 auto;
}

.com-title .title span {
	display: block;
}

.com-title .title .img-bg {
	display: block;
	margin: 0 13.8px;
	height: 1.8rem;
	width: 21.4rem;
	margin-bottom: 2rem;
	background: url('../images/title_bg.png') no-repeat center/100% 100%;
}

.com-title .title .text {
	color: #222;
	text-align: center;
	font-family: 'HarmonyS';
}

.com-title .title .en-text {
	color: #FF6900;
	font-family: 'HarmonyS';
	text-align: center;
	text-transform: uppercase;
}

.com-title .title .en-text.dot {
	color: #F7D3B3;
}

.com-title .more {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.com-title .more a {
	position: relative;
	display: block;
	padding: 1.6rem 2.4rem 1.6rem 2rem;
	border-radius: 0px 5rem 5rem 0px;
	background: rgba(7, 80, 86, 1);
	color: #fff;
	transition: all .3s ease-in-out;
}

.com-title .more a::before {
	content: '';
	display: block;
	position: absolute;
	left: -8px;
	bottom: -8px;
	z-index: -1;
	background: rgba(255, 105, 0, 1);
	width: 3rem;
	height: 2rem;
}

.com-title .more a:hover {
	transform: translateX(-15px);
}


/* 康大头条 */
.wrap_mode01 {
	padding: 8rem 0;
	background: url('../images/kdtt_bg.png') no-repeat center/ 100% 100%;
}

.wrap_mode01 .news-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 3rem;
}

.wrap_mode01 .news-list .item {
	width: 32%;
}

.wrap_mode01 .news-list .item a {
	position: relative;
	display: block;
	padding: 3rem;
	min-height: 23.5rem;
	background-color: #fff;
	transition: all .3s ease-in-out;
}

.wrap_mode01 .news-list .item .title {
	position: relative;
	z-index: 5;
	display: block;
	padding: 1.6rem 4rem 1.6rem 3rem;
	border-radius: 0px 5rem 5rem 0px;
	background: rgba(255, 105, 0, 1);
	margin-left: -3rem;
	margin-bottom: 2rem;
	font-family: 'HarmonyB';
	color: #fff;
	width: max-content;
}

.wrap_mode01 .news-list .item .text {
	position: relative;
	z-index: 5;
	color: #333;
	font-family: 'HarmonyM';
	line-height: 1.5;
	margin-bottom: 2rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	word-break: break-all;
	transition: all .3s ease-in-out;
}

.wrap_mode01 .news-list .item .time {
	position: relative;
	z-index: 5;
	display: block;
	color: #999;
	font-family: 'HarmonyM';
	transition: all .3s ease-in-out;
}

.wrap_mode01 .news-list .item a::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0%;
	height: 100%;
	transition: all .5s ease-in-out;
	background: rgba(7, 80, 86, 1);
}

.wrap_mode01 .news-list .item a:hover {
	transform: translateY(-10px);

}

.wrap_mode01 .news-list .item a:hover::after {
	width: 100%;
}

.wrap_mode01 .news-list .item a:hover .text {
	color: #fff;
}

.wrap_mode01 .news-list .item a:hover .time {
	color: rgba(255, 255, 255, .6);
}

.wrap_mode01 .cen-box {
	display: flex;
}

.wrap_mode01 .cen-box .right {
	padding: 3rem;
	background-color: #fff;
}

.wrap_mode01 .cen-box .right li {
	margin-bottom: 2rem;
}

.wrap_mode01 .cen-box .right li:last-child {
	margin-bottom: 0;
}

.wrap_mode01 .cen-box .right a {
	display: flex;
	align-items: center;
}

.wrap_mode01 .cen-box .right a .img {
	width: 35.5%;
	margin-right: 2rem;
	flex-shrink: 0;
}

.wrap_mode01 .cen-box .right a .img .gp-img {
	padding-bottom: 66.66%;
}

.wrap_mode01 .cen-box .right a .text .title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	word-break: break-all;
	color: #333;
	font-family: 'HarmonyM';
	line-height: 1.5;
	margin-bottom: 2.5rem;
	transition: all .3s ease-in-out;
}

.wrap_mode01 .cen-box .right a .text .time {
	display: block;
	color: #999;
	font-family: 'HarmonyM';
}

.wrap_mode01 .cen-box .right a:hover .text .title {
	color: #075056;
	transform: translateX(10px);

}

.wrap_mode01 .cen-box .swiper-box {
	position: relative;
	width: 53.3%;
	flex-shrink: 0;
	margin-right: 3rem;
	overflow: hidden;
}

.wrap_mode01 .cen-box .swiper-box .swiper-slide a {
	position: relative;
	display: block;
	height: 100%;
}

.wrap_mode01 .cen-box .swiper-slide a .gp-img {
	padding-bottom: 66.62%;
}

.wrap_mode01 .cen-box .swiper-box .swiper-slide a .bottom {
	display: flex;
	align-items: center;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 5;
}

.wrap_mode01 .cen-box .swiper-box .swiper-slide a::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	width: 100%;
	height: 20rem;
	background: #000000;
	/* fallback for old browsers */
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
	/* Safari 5.1-6.0 */
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
	/* Opera 11.1-12.0 */
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
	/* Firefox 3.6-15 */
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
	/* 标准语法 */

}

.wrap_mode01 .cen-box .swiper-slide a .bottom .title {
	width: 40rem;
	color: #fff;
	line-height: 3rem;
	font-family: 'HarmonyM';
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	word-break: break-all;
}

.wrap_mode01 .cen-box .swiper-slide a .bottom .time {
	padding: 2rem 1.4rem 2rem 1.6rem;
	background-color: #fff;
	margin-right: 2rem;
	flex-shrink: 0;
}

.wrap_mode01 .cen-box .swiper-slide a .bottom .time .day {
	display: block;
	color: #075056;
	margin-bottom: 4px;
	font-family: 'HarmonyB';
}

.wrap_mode01 .cen-box .swiper-slide a .bottom .time .year {
	display: block;
	color: #075056;
	font-family: 'HarmonyM';
}

.wrap_mode01 .cen-box .swiper-pagination {
	bottom: 1.3rem;
	right: 3rem;
	left: auto;
	width: max-content;
}

.wrap_mode01 .cen-box .swiper-pagination-bullet {
	position: relative;
	width: 24px;
	height: 24px;
	background: rgba(255, 255, 255, 0.3);
	opacity: 1;
	margin: 0 7px;
}

.wrap_mode01 .cen-box .swiper-pagination-bullet::after {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1);
}

.wrap_mode01 .cen-box .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
	background: rgba(255, 105, 0, 1);
}

.wrap_mode01 .cen-box .swiper-button-next:after,
.wrap_mode01 .cen-box .swiper-button-prev:after {
	display: none;
	color: #075056;
	font-size: 6rem;
	transition: all .3s ease-in-out;
}

.wrap_mode01 .cen-box .swiper-button-next:hover:after,
.wrap_mode01 .cen-box .swiper-button-prev:hover:after {
	transform: scale(1.2);
	color: #FF6900;
}

/* 通知公告 */
.wrap_mode02 {
	padding: 8rem 0;
	background-color: #fff;
}

.wrap_mode02 .news-list {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 3rem;
}

.wrap_mode02 .news-list .item {
	margin-bottom: 5rem;
	box-sizing: border-box;
	padding: 0 1.5rem;
	transition: all .3s ease-in-out;
}

.wrap_mode02 .news-list .item a {
	position: relative;
	display: block;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	background: rgba(255, 255, 255, 1);
	padding: 0 3rem 3rem 3rem;
}

.wrap_mode02 .news-list .item a::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 0%;
	background: rgba(7, 80, 86, 1);
	transition: all .5s ease-in-out;
}

.wrap_mode02 .news-list .item .time {
	position: relative;
	z-index: 5;
	padding: 2rem 1.4rem 2rem 1.6rem;
	background: rgba(223, 238, 239, 1);
	color: #075056;
	width: max-content;
	transform: translateY(-2rem);
}

.wrap_mode02 .news-list .item .time .day {
	display: block;
	font-family: 'HarmonyB';
	margin-bottom: 4px;
}

.wrap_mode02 .news-list .item .time .year {
	display: block;
	font-family: 'HarmonyM';
}

.wrap_mode02 .news-list .item .text {
	position: relative;
	z-index: 5;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	word-break: break-word;
	color: #333;
	font-family: 'HarmonyM';
	transition: all .3s ease-in-out;
}

.wrap_mode02 .news-list .item .more {
	display: flex;
	align-items: center;
	position: absolute;
	right: 3rem;
	top: 4rem;
	z-index: 5;
	color: #999;
	font-family: 'HarmonyM';
	transition: all .3s ease-in-out;
}

.wrap_mode02 .news-list .item .more::after {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	margin-left: 1rem;
	background: url('../images/right_arrow.png') no-repeat center/100% 100%;
	transition: all .3s ease-in-out;
}

.wrap_mode02 .news-list .item:hover {
	transform: translateY(-10px);
}

.wrap_mode02 .news-list .item:hover a::after {
	height: 100%;
}

.wrap_mode02 .news-list .item:hover .text {
	color: #fff;
}

.wrap_mode02 .news-list .item:hover .more {
	color: #FF6900;
	transform: translateX(-15px);
}

.wrap_mode02 .news-list .item:hover .more::after {
	background: url('../images/right_active_arrow.png') no-repeat center/100% 100%;
}

/* 招生信息 */
.wrap_mode02 .zsxx-swiper {
	position: relative;
}

.wrap_mode02 .swiper-box {
	width: 100%;
	overflow: hidden;
}

.wrap_mode02 .swiper-box .item {
	position: relative;
}

.wrap_mode02 .swiper-box .item .gp-img {
	padding-bottom: 120%;
}

.wrap_mode02 .swiper-box .item::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	transition: all .3s ease-in-out;
}

.wrap_mode02 .swiper-box .item:hover::after {
	height: 50%;
	background: #000000;
	/* fallback for old browsers */
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
	/* Safari 5.1-6.0 */
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
	/* Opera 11.1-12.0 */
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
	/* Firefox 3.6-15 */
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
	/* 标准语法 */
}

.wrap_mode02 .swiper-box .item .bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 5;
	color: #fff;
	padding: 0 3rem 3.9rem 3rem;
}

.wrap_mode02 .swiper-box .item .bottom .top-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2rem;
}

.wrap_mode02 .swiper-box .item .bottom .time {
	flex-shrink: 0;
}

.wrap_mode02 .swiper-box .item .bottom .day {
	display: block;
	font-family: 'HarmonyB';
	margin-bottom: 4px;
}

.wrap_mode02 .swiper-box .item .bottom .year {
	display: block;
	font-family: 'HarmonyM';
}

.wrap_mode02 .swiper-box .item .bottom .title {
	font-family: 'HarmonyM';
	padding-left: 2rem;
	margin-left: 2rem;
	border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.wrap_mode02 .swiper-box .item .bottom .info {
	color: rgba(255, 255, 255, 0.6);
	line-height: 2.4rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	word-break: break-word;
	font-family: 'HarmonyM';
}

.wrap_mode02 .zsxx-swiper .swiper-pagination {
	position: relative;
	margin-top: 5rem;
	width: 100%;
}

.wrap_mode02 .zsxx-swiper .swiper-pagination::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 4px;
	z-index: 1;
	width: 100%;
	height: 1px;
	background: rgba(7, 80, 86, 0.3);
}

.wrap_mode02 .zsxx-swiper .swiper-pagination-bullet {
	position: relative;
	z-index: 5;
	width: 3.5rem;
	height: 2rem;
	display: inline-block;
	border-radius: 0%;
	background: url('../images/swiper_dot2_bg.jpg') no-repeat center/100% 100%;
	opacity: 1;
	margin: 0 1.5rem;
}

.wrap_mode02 .zsxx-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: url('../images/swiper_dot2_active_bg.jpg') no-repeat center/100% 100%;
}

@media screen and (max-width:680px) {
	.wrap_mode02 .zsxx-swiper .swiper-pagination-bullet {
		width: 2.5rem;
		margin: 0 1rem;
	}
}

/* 师资风采 */
.wrap_mode03 {
	padding: 8rem 0;
	padding-bottom: 0;
	background: rgba(7, 80, 86, 0.04);
}

.wrap_mode03 .tab-box {
	margin-top: 8rem;
	margin-bottom: 8rem;
}

.wrap_mode03 .tab-title-list {
	display: flex;
	margin-top: -8rem;
	margin-left: 5rem;
	overflow-x: auto;
	/* 隐藏滚动条 */
	-ms-overflow-style: none;
	/* IE 和 Edge */
	scrollbar-width: none;
	/* Firefox */
}

/* Webkit 浏览器 (Chrome, Safari) 隐藏滚动条 */
.wrap_mode03 .tab-title-list::-webkit-scrollbar {
	display: none;
}

.wrap_mode03 .tab-title-list .item {
	cursor: pointer;
	position: relative;
	width: 20rem;
	flex-shrink: 0;
}

.wrap_mode03 .tab-title-list .item .gp-img {
	padding-bottom: 133.5%;
}

.wrap_mode03 .tab-title-list .item::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	transition: all .3s ease-in-out;
}

.wrap_mode03 .tab-title-list .item::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 8;
	width: 100%;
	height: 0px;
	background-color: rgba(255, 105, 0, 1);
	transition: all .3s ease-in-out;
}

.wrap_mode03 .tab-title-list .item.on::before {
	background: rgba(0, 0, 0, 0);
}

.wrap_mode03 .tab-title-list .item.on::after {
	height: 5px;
}

.wrap_mode03 .tab-content-box {
	border-radius: 0px 10rem 10rem 0px;
	background: rgba(7, 80, 86, 1);
}

.wrap_mode03 .tab-content-box .item {
	display: none;
}

.wrap_mode03 .tab-content-box .item.on {
	display: flex;
}

.wrap_mode03 .tab-content-box .item .left {
	padding: 5rem;
	width: 53.5%;
	box-sizing: border-box;
}

.wrap_mode03 .tab-content-box .top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 3rem;
}

.wrap_mode03 .tab-content-box .top .name {
	margin-left: -5rem;
	color: #fff;
	font-family: 'HarmonyB';
	padding: 2rem 6rem 2rem 5rem;
	border-radius: 0px 6rem 6rem 0px;
	background: rgba(244, 105, 4, 1);
	margin-right: 3rem;
	flex-shrink: 0;
}

.wrap_mode03 .tab-content-box .top .zw {
	color: rgba(255, 255, 255, 0.6);
}

.wrap_mode03 .tab-content-box .info {
	color: rgba(255, 255, 255, 1);
	font-family: 'HarmonyM';
	line-height: 3rem;
	margin-bottom: 5rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	word-break: break-word;
}

.wrap_mode03 .tab-content-box .more {
	display: flex;
	align-items: center;
	font-family: 'HarmonyM';
	color: #FF6900;
	transition: all .3s ease-in-out;
}

.wrap_mode03 .tab-content-box .more::after {
	content: '';
	display: block;
	width: 2rem;
	height: 2rem;
	margin-left: 1rem;
	background: url('../images/right_active_arrow.png') no-repeat center/100% 100%;
}

.wrap_mode03 .tab-content-box .item:hover .more {
	transform: translateX(15px);
}

.wrap_mode03 .tab-content-box .item .right {
	width: 46.5%;
	border-radius: 0px 10rem 10rem 0px;
	background: rgba(255, 255, 255, 0.1);
}

.wrap_mode03 .tab-content-box .item .right .img {
	width: 57.2%;
	margin: 0 auto;
	margin-top: -5rem;
}

.wrap_mode03 .tab-content-box .item .right .img .gp-img {
	padding-bottom: 133.25%;
	border-radius: 50rem 50rem 0px 0px;
}

.wrap_mode03 .kdwh .top {
	position: relative;
	width: 100%;
	margin-bottom: 3rem;
}

.wrap_mode03 .kdwh .top .block {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	position: absolute;
	bottom: .7rem;
	width: calc((100% - 150rem)/2);
}

.wrap_mode03 .kdwh .top .block span {
	display: block;
	border: 1px solid #007c7e;
}

.wrap_mode03 .kdwh .top .block1 {
	left: 0;
}

.wrap_mode03 .kdwh .top .block2 {
	align-items: flex-start;
}

.wrap_mode03 .kdwh .top .block span:first-child {
	width: 1.2rem;
	height: 2rem;
	border-bottom: none;
	border-right: none;
}

.wrap_mode03 .kdwh .top .block2 span:first-child {
	border-left: none;
	border-right: 1px solid #007c7e;
}

.wrap_mode03 .kdwh .top .block span:nth-child(2) {
	width: 2rem;
	height: 2rem;
	margin-right: 1.1rem;
	border-bottom: none;
	border-right: none;
}

.wrap_mode03 .kdwh .top .block2 span:nth-child(2) {
	border-left: none;
	margin-right: 0rem;
	margin-left: 1.1rem;
	border-right: 1px solid #007c7e;
}

.wrap_mode03 .kdwh .top .block span:nth-child(3) {
	width: calc(100% - 3.2rem);
	margin-right: 3.1rem;
	border-bottom: none;
	border-right: none;
	border-left: none;
}

.wrap_mode03 .kdwh .top .block2 span:nth-child(3) {
	border-left: none;
	margin-right: 0rem;
	margin-left: 3.1rem;
	border-right: 1px solid #007c7e;
}

.wrap_mode03 .kdwh .top .block2 {
	right: 0;
}

.wrap_mode03 .kdwh .top ul {
	display: flex;
	flex-wrap: wrap;
}

.wrap_mode03 .kdwh .top li {
	position: relative;
	width: 25%;
	box-sizing: border-box;
	padding: 0 2rem;
}

.wrap_mode03 .kdwh .top li::after,
.wrap_mode03 .kdwh .top li::before {
	content: '';
	position: absolute;
	bottom: 4.75rem;
	left: 0;
	width: 2rem;
	border-top: 1px solid #007c7e;
}

.wrap_mode03 .kdwh .top li::after {
	left: auto;
	right: 0;
}

.wrap_mode03 .kdwh .top li a::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% - 4.75rem);
	border: 1px solid #007c7e;
	border-radius: 50rem 50rem 0px 0px;
	border-bottom: 1px solid transparent
}

.wrap_mode03 .kdwh .top li a {
	position: relative;
	display: block;
	width: 100%;
	padding-top: 1rem;
	padding-right: 1rem;
	padding-left: 1rem;
	border-radius: 50rem 50rem 0px 0px;
}

.wrap_mode03 .kdwh .top li a .gp-img {
	padding-bottom: 133.43%;
	border-radius: 50rem 50rem 0px 0px;
	overflow: hidden;
	transition: 0.4s;
	top: 0;
}

.wrap_mode03 .kdwh .top li a .gp-img img {
	position: relative;
	z-index: 1;
}

.wrap_mode03 .kdwh .top li a .gp-img::before {
	position: absolute;
	top: 0;
	left: -90%;
	display: block;
	content: "";
	width: 50%;
	height: 100%;
	opacity: 0.25;
	pointer-events: none;
	background: -webkit-linear-gradient(left,
			rgba(255, 255, 255, 0) 0,
			rgba(255, 255, 255, 53) 50%,
			rgba(255, 255, 255, 0) 70%);
	background: linear-gradient(to right,
			rgba(255, 255, 255, 0) 30%,
			rgba(255, 255, 255, 53) 50%,
			rgba(255, 255, 255, 0) 70%);
	-webkit-transform: skewX(-25deg);
	-ms-transform: skewX(-25deg);
	transform: skewX(-25deg);
	z-index: 3;
}

.wrap_mode03 .kdwh .top li a:hover .gp-img:before {
	-webkit-animation: shine 1s;
	animation: shine 1s;
}

@keyframes shine {
	100% {
		left: 125%;
	}
}

.wrap_mode03 .kdwh .top li a .text {
	display: block;
	position: absolute;
	left: 1rem;
	bottom: 0;
	z-index: 2;
	width: calc(100% - 2rem);
	padding-top: 5.7rem;
	padding-bottom: 2rem;
	color: #fff;
	text-align: center;
	font-family: 'HarmonyS';
	/* 渐变背景 - 兼容性写法 */
	background: #ff6900;
	/* fallback for very old browsers */
	background: -webkit-linear-gradient(top, rgba(255, 105, 0, 0) 0%, rgba(255, 105, 0, 1) 100%);
	/* Safari 5.1-6.0 */
	background: -o-linear-gradient(top, rgba(255, 105, 0, 0) 0%, rgba(255, 105, 0, 1) 100%);
	/* Opera 11.1-12.0 */
	background: -moz-linear-gradient(top, rgba(255, 105, 0, 0) 0%, rgba(255, 105, 0, 1) 100%);
	/* Firefox 3.6-15 */
	background: linear-gradient(180deg, rgba(255, 105, 0, 0) 0%, rgba(255, 105, 0, 1) 100%);
	/* 标准语法 */
}

.wrap_mode03 .kdwh .move {
	position: relative;
}

.wrap_mode03 .kdwh .move::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 30rem;
	background-color: #fff;
}

.wrap_mode03 .kdwh .move .gp-container {
	position: relative;
	display: block;
	padding: 0 3rem;
}

.wrap_mode03 .kdwh .move .gp-img {
	padding-bottom: 34.24%;
}

.wrap_mode03 .kdwh .move .move-but {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 10rem;
	height: 10rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.8);
}

.wrap_mode03 .kdwh .move .move-but img {
	width: 6rem;
	height: 6rem;
	transition: all 0.3s ease;
}

.wrap_mode03 .kdwh .move:hover .move-but img {
	animation: rotateDigitalSchool 5s linear infinite;
}

/* 校企合作 */
.wrap_mode04 {
	padding: 8rem 0;
}

.wrap_mode04 .com-title .title .img-bg {
	background: url('../images/title_bg.png') no-repeat center/100% 100%;
}

.wrap_mode04 .item-box {
	display: flex;
}

.wrap_mode04 .item-box>.img {
	position: relative;
	display: block;
	width: 46.8%;
	margin-right: 1.5rem;
}

.wrap_mode04 .item-box>.img .gp-img {
	padding-bottom: 66.71%;
}

.wrap_mode04 .item-box>.img .text {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 2.8rem 0 2rem 3rem;
	/* 渐变背景 - 兼容性写法 */
	background: #000000;
	/* fallback for very old browsers */
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
	/* Safari 5.1-6.0 */
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
	/* Opera 11.1-12.0 */
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
	/* Firefox 3.6-15 */
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
	/* 标准语法 */
}

.wrap_mode04 .item-box>.img .text span {
	display: block;
	font-family: 'HarmonyM';
	color: #fff;
}

.wrap_mode04 .item-box>.img .text .time {
	color: rgba(255, 255, 255, .6);
	margin-top: 1rem;
}

.wrap_mode04 .item-box>.img .text .title {
	transition: all .3s ease-in-out;
}

.wrap_mode04 .item-box>.img:hover .text .title {
	transform: translateX(15px);
}

.wrap_mode04 .item-box .right {
	display: flex;
	flex: 1;
}

.wrap_mode04 .item-box .right li {
	width: 50%;
	box-sizing: border-box;
	padding: 0 1.5rem;
	transition: all .3s ease-in-out;
}

.wrap_mode04 .item-box .right a {
	display: block;
	font-family: 'HarmonyM';
}

.wrap_mode04 .item-box .right li:hover {
	transform: translateY(-10px);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.wrap_mode04 .item-box .right a .img {
	width: 100%;
}

.wrap_mode04 .item-box .right a .img .gp-img {
	padding-bottom: 66.75%;
}

.wrap_mode04 .item-box .right a .info {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	word-break: break-word;
	color: #999;
	line-height: 1.5;
	margin: 2rem 0;
}

.wrap_mode04 .item-box .right a .time {
	display: block;
	color: #999;
}

.wrap_mode04 .item-box .right a .title {
	line-height: 3rem;
	color: #333;
	padding-bottom: 2rem;
	margin-top: 2rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease-in-out;
}

.wrap_mode04 .item-box .right a .title .text {
	line-height: 1.5;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	word-break: break-word;
}

.wrap_mode04 .item-box .right a:hover .title {
	color: rgba(7, 80, 86, 1);
	border-bottom: 1px solid rgba(7, 80, 86, 1);
}

@media screen and (max-width: 1680px) {
	.gp-container {
		width: 135rem;
	}

	.wrap_mode03 .kdwh .top .block {
		width: calc((100% - 135rem)/2);
	}

}

@media screen and (max-width: 1480px) {
	.wrap_mode03 .kdwh .top .block {
		width: calc((100% - 120rem)/2);
		bottom: .8rem;
	}

	.gp-container {
		width: 120rem;
	}

}

@media screen and (max-width: 996px) {
	.content {
		padding-top: 0rem;
	}

	.wrap_mode01 .cen-box {
		flex-direction: column;
	}

	.wrap_mode01 .cen-box .swiper-box {
		width: 100%;
		margin-right: 0;
		margin-bottom: 3rem;
	}

	.wrap_mode02 .swiper-box .item .bottom .info {
		line-height: 3.4rem;
	}

	.wrap_mode03 .tab-content-box {
		border-radius: 0px 0rem 0rem 0px;
	}

	.wrap_mode03 .tab-content-box .item {
		flex-direction: column;
	}

	.wrap_mode03 .tab-content-box .item .right {
		order: 0;
		width: 100%;
		border-radius: 0px 0rem 0rem 0px;
	}

	.wrap_mode03 .tab-content-box .info {
		line-height: 1.5;
	}

	.wrap_mode03 .tab-content-box .item .left {
		order: 1;
		width: 100%;
	}

	.wrap_mode03 .tab-content-box .item .right .img {
		width: 30.2%;
		margin: 0 auto;
		margin-top: -5rem;
	}

	.wrap_mode03 .tab-title-list {
		margin-top: 0rem;
		margin-left: 0rem;
		justify-content: center;
	}

	.wrap_mode03 .tab-title-list .item {
		width: 25%;
	}

	.wrap_mode04 .item-box {
		flex-direction: column;
	}

	.wrap_mode04 .item-box>.img {
		margin-bottom: 3rem;
		width: 100%;
	}

	.wrap_mode04 .item-box .right {
		justify-content: space-between;
	}

	.wrap_mode04 .item-box .right li {
		width: 49%;
		padding-left: 0rem;
	}

	.wrap_mode03 .kdwh .top .block {
		display: none;
	}

	.wrap_mode01 .cen-box .swiper-slide a .bottom .title {
		width: auto;
	}
}

@media screen and (max-width: 768px) {
	.wrap_mode03 .tab-content-box .item .right .img {
		width: 50.2%;
	}
}

@media screen and (max-width: 680px) {
	.wrap_mode01 .news-list .item {
		width: 100%;
		margin-bottom: 3rem;
	}

	.wrap_mode01 .cen-box .swiper-pagination {
		display: none;
	}

	.wrap_mode01 .cen-box .swiper-box .swiper-slide a .bottom {
		padding-right: 3rem;
	}


	.wrap_mode01 .cen-box .swiper-box .swiper-slide a::after {
		height: 10rem;
	}

	.wrap_mode01 .cen-box .swiper-button-next:after,
	.wrap_mode01 .cen-box .swiper-button-prev:after {
		display: block;
	}

	.wrap_mode03 .kdwh .top li {
		width: 50%;
		margin-bottom: 3rem;
	}
}

@media screen and (max-width: 480px) {
	.com-title {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.com-title .more {
		position: static;
		transform: translateY(0%);
		/* margin-top: 2rem; */
	}

	.com-title .title {
		margin: 0;
	}

	.com-title .more a {
		width: max-content;
	}

	.com-title .more a:hover {
		transform: translateX(15px);
	}

	.wrap_mode01 .cen-box .right a {
		flex-direction: column;
	}

	.wrap_mode01 .cen-box .right a .img {
		width: 100%;
		margin-right: 0rem;
		margin-bottom: 3rem;
	}

	.wrap_mode03 .tab-content-box .top .name {
		padding: 1rem 3rem 1rem 2rem;
	}

	.wrap_mode03 .tab-content-box .item .right .img {
		width: 66.2%;
	}

	.wrap_mode04 .item-box .right {
		flex-direction: column;
	}

	.wrap_mode04 .item-box .right li {
		width: 100%;
		margin-bottom: 5rem;
	}
}
