/* 全局重置与基础样式 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Microsoft Yahei", sans-serif;
}

:root {
	--primary: #044e3e;
	--light-green: #e8f5e9;
	--text-dark: #333;
	--text-light: #666;
	--white: #fff;
	--border: #eee;
	--light-primary: #044e3e;
}

html {
	font-size: 10px;
	scroll-behavior: smooth;
}

body {
	font-size: 1.6rem;
	color: var(--text-dark);
	line-height: 1.6;
	/* background: url("../img/allbg.png"); */
	/* background-color: #f8f8f8; */
}

a {
	text-decoration: none;
	color: inherit;
	transition: color 0.3s ease;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul,
ol {
	list-style: none;
}

/* 通用工具类 */
.cor333 {
	color: var(--text-dark);
}

/* 布局容器 */
.container {
	width: 80%;
	margin: 0 auto;
}

.section {
	margin: 5rem 0;
}

/* 标题区域样式 */
.section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 4rem;
	border-bottom: 1px solid #f8b63b;
	padding-bottom: 0.8rem;
	position: relative;
}

.section-title {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	font-size: 4rem;
	font-weight: 600;
	color: var(--primary);
}

.section-title::before {
	content: "";
	display: inline-block;
	width: 2.4rem;
	height: 2.8rem;
	background: url("../img/bg-icon.png") no-repeat center;
	background-size: contain;
}

.bgkuai {
	height: 4px;
	background-color: var(--primary);
	width: 154px;
	position: absolute;
	bottom: -1px;
	left: 0;
}

.english {
	color: #999;
	font-size: 3.0rem;
}

.view-more {
	font-size: 1.4rem;
	color: #999;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	transition: color 0.3s ease;
}


.more-white {
	color: #fff;
	margin-top: 20px;
}

/* 背景装饰图 */
.bg1 {
	position: absolute;
	right: -6%;
	bottom: -48px;
	z-index: -1;
}

.bg2 {
	position: absolute;
	bottom: -6rem;
	left: 0;
	right: 0;
	z-index: -3;
}

.bg3 {
	position: absolute;
	bottom: -36px;
	left: 0;
	right: 0;
	z-index: -1;
	opacity: 0.5;
}

/* ====================================== */
/* 顶部导航栏 */
/* ====================================== */
.top-bar {
	background: var(--light-primary);
	padding: 0.8rem 0;
}

.top-bar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.contact {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 1.4rem;
	color: var(--white)
}

.contact img {
	max-height: 1.5rem;
}

.flex-dir {
	display: flex;
	gap: 1rem;
}

.search-box {
	display: flex;
	align-items: center;
	border: 1px solid #ddd;
	border-radius: 20px;
	padding: 0.4rem 1.2rem;
}

.search-box input {
	border: none;
	outline: none;
	font-size: 1.2rem;
	width: 100px;
	background: none;
	color: #fff;
}

.search-box input::placeholder {
	color: rgba(255, 255, 255);
}

.search-box button {
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ====================================== */
/* 主导航 */
/* ====================================== */
.main-nav {
	background: var(--primary);
	color: var(--white);
	position: relative;
}

.main-nav .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 2rem;
	font-weight: bold;
	padding: 1rem 0;
}

.nav-menu {
	display: flex;
}

.nav-menu li {
	padding: 2.8rem 1.2rem;
	font-size: 1.6rem;
	text-align: center;
	position: relative;
	cursor: pointer;
	font-weight: bold;
	letter-spacing: 1px;
	transition: background 0.3s ease;
}

.nav-menu li .en {
	font-size: 1.2rem;
	opacity: 0.8;
	display: block;
	margin-top: 0.2rem;
}

.nav-menu li:hover {
	background: rgba(255, 255, 255, 0.1);
}

/* 二级菜单 */
.submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--white);
	color: var(--text-dark);
	min-width: 200px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	z-index: 9999;
	border-radius: 4px;
	padding: 0.8rem 0;
}

.submenu li {
	padding: 0.8rem 1.5rem;
	text-align: left;
	font-size: 1.4rem;
	white-space: nowrap;
	transition: background 0.3s ease, color 0.3s ease;
}

.submenu li:hover {
	background: var(--light-green);
	color: var(--primary);
}

.nav-menu li:hover .submenu {
	display: block;
}

.mobile-menu {
	display: none;
	background: none;
	border: none;
	color: var(--white);
	font-size: 2.4rem;
	padding: 0.5rem;
	cursor: pointer;
}

/* ====================================== */
/* 轮播图 */
/* ====================================== */
.banner {
	position: relative;
	height: 620px;
	overflow: hidden;
}

.banner-slides {
	width: 100%;
	height: 100%;
	display: flex;
	transition: transform 0.8s ease;
}

.banner-slide {
	width: 100%;
	height: 100%;
	flex-shrink: 0;
	position: relative;
}

.banner-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 轮播指示器 */
.banner-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.banner-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: background 0.3s ease;
}

.banner-dot.active {
	background: #fff;
}

/* 轮播文字 */
.banner-text {
	position: absolute;
	top: 50%;
	right: 10%;
	transform: translateY(-50%);
	color: var(--white);
	text-align: right;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	z-index: 5;
}

.banner-text h2 {
	font-size: 2.8rem;
	margin-bottom: 0.5rem;
}

.banner-text p {
	font-size: 2rem;
}

/* ====================================== */
/* 新闻动态 */
/* ====================================== */
.news-grid {
	display: grid;
	grid-template-columns: 1.5fr 1.5fr;
	gap: 3rem;
	align-items: stretch;
	position: relative;
}

.news-main {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	border-radius: 4px;
}

.news-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.news-main img:hover {
	transform: scale(1.08);
}

.datekd {
	display: flex;
	/* background-color: rgba(0, 0, 0, .5); */
	background-color: #fff;
	gap: 1rem;
	align-items: center;
	box-shadow: 0px 3px 7px 0px rgba(228, 226, 226, 0.35);
	padding: .4rem;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	cursor: pointer;
	border: solid 1px #efefef;
}

.news-date {
	background: var(--primary);
	color: var(--white);
	padding: 1rem;
	text-align: center;
	min-width: 60px;
	flex-shrink: 0;
}

.news-date .day {
	font-size: 2.6rem;
	font-weight: bold;
	line-height: 30px;

}

.news-date .ym {
	font-size: 1.6rem;
}

.news-main h3 {
	font-size: 1.8rem;
	color: #fff;
	overflow: hidden;
	display: block;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	font-weight: normal;
}

.news-main p {
	font-size: 1.4rem;
	color: #fff;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.news-list {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	height: 100%;
}

.news-item {
	display: flex;
	gap: 1rem;
	padding: 2rem 1.5rem;
	background: var(--white);
	align-items: center;
	box-shadow: 0px 3px 7px 0px rgba(228, 226, 226, 0.35);
	cursor: pointer;
	transition: box-shadow 0.3s ease;
	/* border-radius: 4px; */
	border-left:solid 3px var(--primary)
}

/* .news-item:hover {
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	background-color: var(--primary);
} */

.news-item .date {
	color: var(--primary);
	font-size: 1.4rem;
	font-weight: bold;
	min-width: 60px;
	text-align: center;
}

.news-item .date label {
	font-size: 2rem;
}

.news-item .content h4 {
	font-size: 1.8rem;
	margin-bottom: 0.4rem;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	font-weight: normal;
	transition: color 0.3s ease, font-weight 0.3s ease;
}

.news-item:hover h4 {
	font-weight: bold;
	color: var(--primary);
}

.news-item:hover .date {
	/* font-size: 2rem; */
	/* color:#fff */
}

.news-item .content p {
	font-size: 1.4rem;
	color: var(--text-light);
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.news-item .shu {
	height: 50px;
	width: 1px;
	background: var(--primary);
}

/* .news-item:hover .shu{
	background-color: #fff;
} */
.news-item:hover {
	box-shadow: 5px 5px 0 var(--primary);
}

/* ====================================== */
/* 通知公告 */
/* ====================================== */
.notice-section {
	padding: 2rem 0;
	margin: 3rem 0;
}

.tzggdw {
	position: absolute;
	bottom: 0rem;
	font-size: 6rem;
	font-weight: bold;
	color: rgba(255, 255, 255, .1);
}

.tzggbox {
	background: url("../img/tzgg.png") no-repeat;
	background-position: 0 0;
	background-size: 26% 100%;
	padding: 2.5rem 0;
}

.tzgg {
	display: flex;
	align-items: center;
	width: 80%;
}

.tzggleft {
	width: 17%;
	border: none;
	display: block;
}

.tzggright {
	width: 90%;
}

.tzggright a {
	flex: 1;
}

.notice-tag {
	color: var(--white);
	font-size: 4rem;
	font-weight: bold;
}

.notice-slider {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	padding: 0.5rem 0;
	scroll-snap-type: x mandatory;
}

.notice-slider::-webkit-scrollbar {
	height: 6px;
}

.notice-slider::-webkit-scrollbar-thumb {
	background: var(--primary);
	border-radius: 3px;
}

.notice-item {
	/* background: var(--white) url("../img/tzggbg.png") no-repeat left bottom; */
	border-radius: 8px;
	padding: 2.2rem 1.7rem;
	/* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); */
	height: 210px;
	flex: 0 0 280px;
	transition: background-color 0.3s ease;
	scroll-snap-align: start;
	border:solid 1px #ddd;
	background-color: #fff;
}

.notice-item:hover {
	background: #fcf4e4 url("../img/tzggbg.png") no-repeat left bottom;
	/* background-color: #fcf4e4; */
	/* border: solid 3px var(--primary); */
	/* box-shadow: 5px 5px  0px  var(--primary); */
}

.notice-date {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 1rem;
}

.notice-item h4 {
	font-size: 1.6rem;
	margin: 2rem 0;
	line-height: 1.5;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	height: 50px;
	cursor: pointer;
}

.notice-item p {
	font-size: 1.4rem;
	margin: 1rem 0;
	line-height: 1.5;
	overflow: hidden;
	color: #666;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.notice-detail {
	text-align: right;
	font-size: 1.4rem;
	color: #999;
	cursor: pointer;
	margin-top: 40px;
}

/* ====================================== */
/* 招生培养 */
/* ====================================== */
.enroll-cards {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1rem;
	margin: 7% auto 7% auto;
	position: relative;
}

.enroll-card {
	margin: 30px auto;
	text-align: center;
}

/* .enroll-card .icon {
	position: relative;
	margin: 0 auto 17px;
	box-sizing: border-box;
	border: 3px solid var(--primary);
	border-radius: 50%;
	width: 9vw;
	height: 9vw;
	box-shadow: inset 0 0px 10px 0 var(--primary);
	transition: all 0.5s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.enroll-card .icon:hover {
	box-shadow: none;
	background-color: var(--primary);
}

.enroll-card .icon img {
	height: 3.6vw;
	transition: opacity 0.3s ease;
	position: absolute;
}

.icon img:first-child {
	opacity: 1;
}

.icon img:last-child {
	opacity: 0;
}

.icon:hover img:first-child {
	opacity: 0;
}

.icon:hover img:last-child {
	opacity: 1;
} */
.enroll-card .icon {
	position: relative;
	margin: 0 auto 34px;
	box-sizing: border-box;
	border: 3px solid var(--primary);
	border-radius: 50%;
	width: 9vw;
	height: 9vw;
	box-shadow: inset 0 0px 10px 0 var(--primary);
	transition: all 0.5s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
}

/* 新增：最外层固定外环 */
.enroll-card .icon::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 120%;
	height: 120%;
	border-radius: 50%;
	border: 1px solid var(--primary);
	opacity: 1;
}

/* 第二层：呼吸波纹1 */
.enroll-card .icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 2px solid var(--primary);
	opacity: 0;
}

/* 第三层：呼吸波纹2 */
.enroll-card .icon {
	--ripple-color: var(--primary);
}

.enroll-card .icon:hover::after {
	animation: breath1 2s ease-out infinite;
}

.enroll-card .icon:hover::before {
	animation: breath2 2s ease-out 0.5s infinite;
}

.enroll-card .icon:hover {
	box-shadow: none;
	background-color: var(--primary);
}

.enroll-card .icon img {
	height: 3.6vw;
	transition: opacity 0.3s ease;
	position: absolute;
}

.icon img:first-child {
	opacity: 1;
}

.icon img:last-child {
	opacity: 0;
}

.icon:hover img:first-child {
	opacity: 0;
}

.icon:hover img:last-child {
	opacity: 1;
}

/* 呼吸波纹动画 */
@keyframes breath1 {
	0% {
		width: 100%;
		height: 100%;
		opacity: 0.7;
	}

	70% {
		width: 150%;
		height: 150%;
		opacity: 0;
	}

	100% {
		width: 100%;
		height: 100%;
		opacity: 0;
	}
}

@keyframes breath2 {
	0% {
		width: 112%;
		height: 112%;
		opacity: 0.7;
	}

	70% {
		width: 160%;
		height: 160%;
		opacity: 0;
	}

	100% {
		width: 112%;
		height: 112%;
		opacity: 0;
	}
}

.enroll-card .title {
	font-size: 1.6rem;
	color: #000;
	text-align: center;
}

hr {
	border: none;
	height: 1px;
	width: 80px;
	background-color: #ddd;
}

.enroll-card .btn {
	font-size: 1.6rem;
	padding: 1rem 2.5rem;
	border: 1px solid #dbcdb0;
	border-radius: 40px;
	color: #a46738;
	background: #f1e7d1;
	cursor: pointer;
	margin-top: 30px;
	transition: all 0.3s ease;
}

.enroll-card:hover .btn {
	border: 1px solid #dbcdb0;
	background: #fff;
	color: #a46738;
}

/* ====================================== */
/* 产教融合 */
/* ====================================== */
.industry-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-bottom: 1rem;
}

.industry-grid1 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.industry-item {
	text-align: center;
	position: relative;
	height: 380px;
	cursor: pointer;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	/* border-radius: 4px; */
}

.industry-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.industry-item img:hover {
	transform: scale(1.1);
}

.industry-item p {
	font-size: 1.4rem;
	position: absolute;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	text-align: left;
	padding: 4px 16px;
	color: #fff;
	box-sizing: border-box;
}

/* ====================================== */
/* 关于我们 */
/* ====================================== */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	margin-top: 9%;
}

.about-text h2 {
	font-size: 3.5rem;
	color: var(--primary);
	margin-top: 3rem;
	margin-bottom: 3rem;
	font-weight: normal;
}

.about-text p {
	font-size: 1.4rem;
	color: var(--text-light);
	margin-bottom: 2rem;
	line-height: 1.8;
	width: 85%;
	text-indent: 28px;
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 1rem;
	text-align: center;
	margin-top: 7rem;
	position: relative;
}

.stat-item .num {
	font-size: 3rem;
	font-weight: bold;
	color: var(--primary);
}

.stat-item .label {
	font-size: 1.6rem;
	color: var(--text-light);
}

.about-img {
	position: relative;
}

.about-img img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	/* border-radius: 4px; */
}

.squery {
	height: 80px;
	width: 80px;
	background-color: var(--primary);
	position: absolute;
	top: -14px;
	left: -14px;
	z-index: -1;
}

.squery2 {
	height: 80px;
	width: 80px;
	background-color: var(--primary);
	position: absolute;
	bottom: -14px;
	right: -14px;
	z-index: -1;
}

/* ====================================== */
/* 页脚 */
/* ====================================== */
footer {
	background: var(--primary);
	color: var(--white);
	padding: 3rem 0 1.5rem;
	/* margin-top: 4rem; */
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-logo {
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 1rem;
}

.footer-info p {
	font-size: 1.4rem;
	margin-bottom: 0.5rem;
	opacity: 0.9;
}

.footer-qrcode {
	text-align: center;
}

.footer-qrcode img {
	width: 80px;
	height: 80px;
	margin: 0 auto 1rem;
}

.footer-qrcode p {
	font-size: 1.2rem
}

.footer-bottom {
	text-align: center;
	font-size: 1.2rem;
	opacity: 0.8;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ====================================== */
/* 新闻内轮播 */
/* ====================================== */
.carousel-container {
	position: relative;
	width: 100%;
	height: inherit;
	overflow: hidden;
}

.carousel-list {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	transition: transform 0.5s ease;
}

.carousel-item {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	position: relative;
}

.news-content {
	flex: 1;
	min-width: 0;
}

.news-content h3 {
	font-size: 16px;
	margin: 0 0 6px 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #000;
}

.news-content p {
	font-size: 14px;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: #999;
	line-height: 1.4;
}

.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	background: rgba(0, 0, 0, 0.25);
	color: #fff;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	z-index: 10;
	font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease;
}

.carousel-btn:hover {
	background: rgba(0, 0, 0, 0.4);
}

.carousel-prev {
	left: 8px;
}

.carousel-next {
	right: 8px;
}

.carousel-indicator {
	position: absolute;
	bottom: 8px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 6px;
}

.indicator-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.6);
	cursor: pointer;
	transition: background 0.3s ease;
}

.indicator-dot.active {
	background: #fff;
}

/* ====================================== */
/* 响应式适配 - 移动端 */
/* ====================================== */
@media (max-width: 768px) {

	html {
		font-size: 9px;
	}

	.container {
		width: 95%;
	}

	.logo img {
		width: 60% !important;
		display: block;
	}

	.search-box {
		display: none;
	}

	/* 顶部栏 */
	.top-bar .contact span {
		display: none;
	}

	/* 移动端菜单 */
	.mobile-menu {
		display: block;
	}

	.nav-menu {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 60px;
		left: 0;
		right: 0;
		background: var(--primary);
		z-index: 999;
	}

	.nav-menu.active {
		display: flex;
	}

	/* 二级菜单 */
	.nav-menu li .submenu {
		position: static;
		background: rgba(255, 255, 255, 0.1);
		color: #fff;
		width: 100%;
		box-shadow: none;
	}

	.nav-menu li .submenu li {
		border-left: 2px solid #fff;
	}

	/* 轮播图手机端 */
	.banner {
		height: 180px;
	}

	/* 新闻 */
	.news-grid {
		grid-template-columns: 1fr;
	}

	.bg1 {
		display: none;
	}

	/* 通知公告 */
	.tzggbox {
		background-size: 47% 147px !important;
	}

	.tzgg {
		flex-direction: column;
	}

	.tzggleft,
	.tzggright {
		width: 100% !important;
	}

	.tzggleft {
		width: 80% !important;
	}

	.notice-slider {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 1.2rem !important;
		overflow-x: visible !important;
		margin-top: 1.5rem;
	}

	/* 招生培养 */
	.enroll-cards {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem 1.5rem;
	}

	.enroll-card .icon {
		width: 30vw;
		height: 30vw;
	}

	.enroll-card .icon img {
		height: 12vw;
	}

	/* 产教融合 */
	.industry-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* 关于我们 */
	.about-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.about-text h2 {
		font-size: 2.8rem;
		text-align: center;
	}

	.about-text p {
		width: 100%;
		font-size: 1.5rem;
		line-height: 1.9;
	}

	.about-stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem 1rem;
	}

	.stat-item .num {
		font-size: 2.4rem;
	}

	.stat-item .label {
		font-size: 1.4rem;
	}

	.about-img img {
		height: 260px;
	}

	.squery {
		height: 70px;
		width: 70px;
	}

	/* 页脚 */
	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 2.5rem;
	}

	/* 标题 */
	.section-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.news-main>div:first-child {
		height: 200px;
	}

	/* 新闻轮播移动端 */
	.carousel-container {
		height: 120px;
	}

	.news-date {
		padding: 6px 8px;
		min-width: 52px;
	}

	.news-date .day {
		font-size: 18px;
	}

	.news-date .ym {
		font-size: 12px;
	}

	.news-content h3 {
		font-size: 15px;
	}

	.news-content p {
		font-size: 13px;
	}
}

.container1 {
	/* width: 100%; */
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 50px;
	align-items: start;
}

.left-section {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.text-block h2 {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 20px;
	color: #111;
}

.text-block p {
	font-size: 17px;
	line-height: 1.8;
	color: #555;
}

.img-grid {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	width: 56%;
}

.img-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	border-radius: 10px;
}

.img-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 10px;
	transition: transform 0.3s ease;
}

.img-card img:hover {
	transform: scale(1.1);
}

.right-section {
	position: relative;
	height: 350px;
	box-shadow: -11px 11px 0 #044e3e;
}

.right-section img.right {
	width: 100%;
	height: 100%;
	border-radius: 0 8px 0 0;
	object-fit: cover;
	border-left: solid 1px #fff;
	border-bottom: solid 1px #fff;
	box-shadow: -11px 11px 0 #044e3e;
	transition: transform 0.3s ease;
}

.right-section img.right:hover {
	transform: scale(1.08);
}

.img-card1 {
	position: absolute;
	left: -57%;
	bottom: -20rem;
}

.img-card1 img {
	/* width: 88%; */
	height: 25rem;
	object-fit: cover;
	border-radius: 8px;
	transition: transform 0.3s ease;
}

.img-card1 img:hover {
	transform: scale(1.1);
}

.spansquery {
	position: absolute;
	bottom: -3rem;
	right: -3rem;
	height: 7rem;
	width: 7rem;
	background-color: #044e3e;
	z-index: -1;
}

/* 手机端：取消定位，顺序显示 */
@media (max-width: 750px) {
	/* body {
		padding: 30px 20px;
	} */

	.container {
		/* width: 90%; */
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.right-section {
		height: auto;
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.img-card1,
	.spansquery {
		position: static;
	}

	.img-card1 img {
		width: 100%;
		height: 200px;
	}

	.img-grid {
		width: 100%;
	}

	.spansquery {
		display: none;
	}
}
	.carousel-container1 {
	    position: relative;
	    width: 100%;
	    height: 100%;
	    overflow: hidden;
	    border-radius:0 8px 0 0;
	}
	
	.carousel-wrapper {
	    display: flex;
	    width: 100%;
	    height: 100%;
	    transition: transform 0.8s ease;
	}
	
	.carousel-item1 {
	    flex-shrink: 0;
	    width: 100%;
	    height: 100%;
	    object-fit: cover;
	}
	
	/* 指示器容器 */
	.carousel-indicators {
	    position: absolute;
	    bottom: 12px;
	    left: 0;
	    right: 0;
	    display: flex;
	    justify-content: center;
	    gap: 8px;
	    z-index: 10;
	}
	
	/* 指示器圆点 */
	.carousel-indicators .dot {
	    width: 8px;
	    height: 8px;
	    border-radius: 50%;
	    background: rgba(255, 255, 255, 0.5);
	    cursor: pointer;
	    transition: all 0.3s;
	}
	
	/* 激活状态圆点 */
	.carousel-indicators .dot.active {
	    background: #fff;
	    width: 16px;
	    border-radius: 4px;
	}