.educ-page {
	overflow-x: hidden;
	overflow-y: auto;
	height: auto;
	min-height: 100%;
	background: #f6f8f8;
}

.educ-main {
	background: linear-gradient(180deg, #f8fbfb 0%, #edf3f2 100%);
}

.edu-hero {
	padding: 0.36rem 0 0.34rem;
	background: linear-gradient(180deg, rgba(139, 194, 204, 0.28), rgba(178, 208, 212, 0.12));
}

.site-wrap {
	width: min(12.8rem, 100% - 0.4rem);
	margin: 0 auto;
}

.hero-inner {
	display: grid;
	grid-template-columns: 1fr 1.08fr;
	align-items: stretch;
	overflow: hidden;
}

.hero-intro {
	background: linear-gradient(120deg, #008472, #0f9a88);
	color: #ecfffb;
	padding: 0.44rem;
}

.hero-intro h1 {
	font-size: 0.5rem;
	font-weight: 700;
	margin-bottom: 0.22rem;
}

.hero-intro p {
	font-size: 0.18rem;
	line-height: 2;
	opacity: 0.96;
}

.hero-building img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.edu-two-col {
	padding: 0.38rem 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.26rem;
}

.panel {
	padding: 0.2rem 0;
}

.panel-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 0.2rem;
}

.panel-head h2 {
	font-size: 0.44rem;
	font-weight: 700;
	color: #1e252b;
}

.panel-head p {
	margin-top: 0.06rem;
	font-size: 0.18rem;
	color: #48545f;
}

.panel-head a {
	min-width: 1.28rem;
	height: 0.4rem;
	padding: 0 0.16rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.16rem;
	font-weight: 700;
	line-height: 1;
	color: #1f8d86;
	background: url("/images/educ/more_bg.png") center/contain no-repeat;
	white-space: nowrap;
	flex: none;
}

.panel-feature {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	margin-bottom: 0.2rem;
	text-decoration: none;
	color: inherit;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.panel-feature img {
	width: 100%;
	height: 2rem;
	object-fit: cover;
}

.panel-feature:hover {
	transform: translateY(-0.02rem);
	box-shadow: 0 0.06rem 0.16rem rgba(18, 48, 53, 0.12);
}

.feature-meta {
	background: #b79860;
	color: #fff;
	padding: 0.12rem 0.18rem 0.16rem;
	display: flex;
	flex-direction: column;
}

.feature-meta-green {
	background: #0f8d79;
}

.feature-meta time {
	display: inline-flex;
	align-items: center;
	gap: 0.08rem;
	font-size: 0.16rem;
	line-height: 1;
	font-weight: 500;
	margin: 0.15rem 0;
}

.feature-meta time::before {
	content: "";
	width: 0.18rem;
	height: 0.18rem;
	flex: none;
	background: url("/images/educ/su.svg") center/contain no-repeat;
}

.feature-meta h3 {
	
	font-size: 0.2rem;
	line-height: 1.4;
}

.panel-list li {
	margin-top: 0.08rem;
	background: #f0f4f4;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
	animation: panelListIn 0.35s ease both;
}

.panel-list li > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.1rem;
	padding: 0.3rem 0.14rem;
	font-size: 0.16rem;
	color: #33404c;
	text-decoration: none;
	transition: color 0.2s ease;
}

.panel-list li > a span {
	display: inline-flex;
	align-items: center;
	gap: 0.08rem;
	min-width: 0;
}

.panel-list li > a span::before {
	content: "";
	width: 0.18rem;
	height: 0.18rem;
	flex: none;
	background: url("/images/educ/title_bg.png") center/contain no-repeat;
}

.panel-list li > a:hover span {
	color: #0d8f80;
}

.panel-list li > a:hover time {
	color: #6f878d;
}

.panel-list li:hover {
	transform: translateY(-0.02rem);
	box-shadow: 0 0.05rem 0.14rem rgba(16, 52, 50, 0.12);
	background: #eaf2f2;
}

.panel-list li:nth-child(1) {
	animation-delay: 0.03s;
}

.panel-list li:nth-child(2) {
	animation-delay: 0.07s;
}

.panel-list li:nth-child(3) {
	animation-delay: 0.11s;
}

.panel-list li:nth-child(4) {
	animation-delay: 0.15s;
}

@keyframes panelListIn {
	from {
		opacity: 0;
		transform: translateY(0.04rem);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.panel-list time {
	color: #8a969d;
	white-space: nowrap;
}

.news-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.1rem;
}

.news-grid article {
	background: #f5f9f8;
	border: 1px solid #e6eded;
	padding: 0.16rem;
}

.news-grid h3 {
	color: #198f84;
	font-size: 0.16rem;
	font-weight: 700;
	margin-bottom: 0.08rem;
}

.news-grid p {
	color: #3d4a57;
	font-size: 0.16rem;
	line-height: 1.7;
}

.notice-list li {
	display: grid;
	grid-template-columns: 0.86rem 1fr;
	gap: 0.12rem;
	align-items: stretch;
	margin-top: 0.08rem;
	background: #f6f8f8;
	padding: 0.08rem;
}

.badge {
	display: grid;
	place-items: center;
	background: var(--green);
	color: #fff;
	font-size: 0.16rem;
	font-weight: 700;
	line-height: 1.3;
}

.notice-list p {
	font-size: 0.16rem;
	color: #2f3e4b;
	line-height: 1.6;
}

.quick-access-wrap {
	margin-top: 0.12rem;

	background: url("/images/educ/Quick_bg.png") center/cover no-repeat;
}

.quick-inner {
	display: grid;
	grid-template-columns: 1fr 1fr 1.2fr 1fr 1fr;
	gap: 0.14rem;
	align-items: start;
	padding: 1rem 0;
}

.quick-col {
	display: flex;
	flex-direction: column;
	gap: 0.12rem;
}

.qa {
	min-height: 3rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.16rem;
	padding: 0.2rem 0.12rem;
	text-align: center;
	color: #fff;
	font-weight: 700;
	line-height: 1.2;
	position: relative;
	overflow: hidden;
	transition:
		transform 0.28s ease,
		box-shadow 0.28s ease,
		filter 0.28s ease;
	will-change: transform;
}

.qa-wow-in {
	opacity: 0;
	transform: translateY(0.14rem) scale(0.985);
}

.qa-wow-in.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition:
		opacity 0.56s cubic-bezier(0.2, 0.8, 0.2, 1),
		transform 0.56s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.qa::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
	opacity: 0;
	transition: opacity 0.28s ease;
	pointer-events: none;
}

.qa:hover {
	transform: translateY(-0.07rem);
	box-shadow: 0 16px 34px rgba(10, 42, 39, 0.26);
	filter: saturate(1.08);
}

.qa:hover::before {
	opacity: 1;
}

.qa:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.9);
	outline-offset: -2px;
}

.qa-cn,
.qa-en {
	position: relative;
	z-index: 1;
}

.qa-cn {
	font-size: 0.25rem;
}

.qa-en {
	font-size: 0.14rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	opacity: 0.82;
	transition:
		opacity 0.28s ease,
		transform 0.28s ease;
}

.qa:hover .qa-en {
	opacity: 0.96;
	transform: translateY(-0.01rem);
}

.qa-green {
	background: #0d8f7c;
}
.qa-teal {
	background: #1e9f8b;
}
.qa-deep {
	background: #0e6f65;
}
.qa-gold {
	background: #b89a63;
}
.qa-blue {
	background: #5d98a7;
}
.qa-mint {
	background: #1fc39f;
}

.qa-img-yjs {
	background:
		linear-gradient(rgba(12, 143, 124, 0.82), rgba(12, 143, 124, 0.82)),
		url("/images/educ/q_yjs.png") center/cover no-repeat;
}

.qa-img-bys {
	background:
		linear-gradient(rgba(13, 111, 101, 0.82), rgba(13, 111, 101, 0.82)),
		url("/images/educ/q_bys.png") center/cover no-repeat;
}

.qa-img-ss {
	background:
		linear-gradient(rgba(93, 152, 167, 0.82), rgba(93, 152, 167, 0.82)),
		url("/images/educ/q_ss.png") center/cover no-repeat;
}

.qa-img-zy {
	background:
		linear-gradient(rgba(184, 154, 99, 0.8), rgba(184, 154, 99, 0.8)),
		url("/images/educ/q_zy.png") center/cover no-repeat;
}

.quick-left,
.quick-right {
	margin-top: 0.92rem;
}

.quick-left-mid,
.quick-right-mid,
.quick-center {
	margin-top: 0.16rem;
}

.quick-left .qa,
.quick-right .qa {
	min-height: 3rem;
}

.quick-left-mid .qa:first-child,
.quick-right-mid .qa:first-child {
	min-height: 3rem;
}

.quick-right .qa:last-child {
	min-height: 3rem;
}

.quick-center {
	padding: 0.1rem 0.1rem 0.12rem;
	display: grid;
	grid-template-rows: auto 1fr;
	gap: 0.12rem;
}

.quick-center header {
	text-align: center;
	padding-top: 0.24rem;
	padding-bottom: 0.06rem;
}

.quick-center h2 {
	font-size: 0.5rem;
	font-weight: 700;
	color: #272f36;
}

.quick-center p {
	font-size: 0.18rem;
	color: #46535d;
	letter-spacing: 0.02em;
}

.quick-center img {
	width: 100%;
	height: 7.12rem;
	object-fit: cover;
}

/* ===== Second Row Refresh ===== */
.second-row {
	position: relative;
	z-index: 0;
	padding-top: 0.56rem;
	padding-bottom: 0.52rem;
	align-items: stretch;
}

.second-row::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 100vw;
	transform: translateX(-50%);
	background:
		linear-gradient(rgba(248, 248, 248, 0.5), rgba(248, 248, 248, 0.7)),
		url("/images/educ/second.png") center/cover no-repeat;
	z-index: 0;
}

.second-row > * {
	position: relative;
	z-index: 1;
}

.second-row .panel {
	background: transparent;
	box-shadow: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.second-row .panel-head {
	align-items: flex-end;
	margin-bottom: 0.16rem;
	padding-bottom: 0.1rem;
	border-bottom: 1px solid rgba(35, 45, 55, 0.12);
}

.second-row .panel-head > div {
	display: flex;
	flex-direction: column;
	gap: 0.05rem;
}

.second-row .panel-head h2 {
	font-size: 0.48rem;
	line-height: 1.08;
	letter-spacing: 0.01em;
}

.second-row .panel-head p {
	margin-top: 0;
	font-size: 0.18rem;
	color: #2d343b;
	display: inline-flex;
	align-items: center;
	gap: 0.08rem;
	letter-spacing: 0.04em;
}

.second-row .panel-head p::before {
	content: "";
	width: 0.24rem;
	height: 0.03rem;
	background: #2d343b;
}

.second-row .panel-head a {
	min-width: 1.38rem;
	height: 0.42rem;
	padding: 0 0.18rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: url("/images/educ/more_bg.png") center/contain no-repeat;
	color: #356d67;
	font-size: 0.16rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.02em;
	white-space: nowrap;
}

.second-row .news-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 0.12rem;
	align-content: stretch;
	flex: 1 1 auto;
}

.second-row .news-grid article {
	flex: 1 1 calc(50% - 0.06rem);
	background: rgba(236, 245, 245, 0.86);
	border: 1px solid rgba(220, 228, 228, 0.95);
	padding: 0;
	min-height: auto;
	display: flex;
}

.second-row .news-grid article > a {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	height: 100%;
	min-height: 0;
	padding: 0.1rem 0.16rem 0.14rem;
	transition:
		transform 0.22s ease,
		box-shadow 0.22s ease,
		background-color 0.22s ease;
	flex: 1 1 auto;
}

.second-row .news-time {
	display: inline-flex;
	align-items: center;
	gap: 0.08rem;
	margin: 0.3rem 0;
	color: #0f9487;
	font-size: 0.16rem;
	font-weight: 700;
	line-height: 1;
}

.second-row .news-time::before {
	content: "";
	width: 0.18rem;
	height: 0.18rem;
	background: url("/images/educ/time.svg") center/contain no-repeat;
}

.second-row .news-title {
	margin: 0;
	font-size: 0.17rem;
	line-height: 1.55;
	color: #303942;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.second-row .news-summary {
	margin-top: 0.12rem;
	font-size: 0.16rem;
	line-height: 1.65;
	color: #66727b;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.second-row .news-grid article > a:hover {
	transform: translateY(-0.03rem);
	box-shadow: 0 0.08rem 0.2rem rgba(18, 54, 52, 0.12);
	background: rgba(255, 255, 255, 0.44);
}

.second-row .news-grid article > a:hover .news-title {
	color: #0d8f80;
}

.second-row .notice-list li {
	display: block;
	margin-top: 0;
	padding: 0;
	background: transparent;
	border-bottom: 1px solid rgba(35, 45, 55, 0.12);
}

.second-row .notice-list li > a {
	display: flex;
	align-items: stretch;
	gap: 0.16rem;
	padding: 0.14rem 0;
	color: inherit;
	text-decoration: none;
	transition: background-color 0.2s ease;
	width: 100%;
	box-sizing: border-box;
}

.second-row .notice-list li:first-child > a {
	padding-top: 0.04rem;
}

.second-row .badge {
	background: #018a78;
	font-size: 0.16rem;
	font-family: monospace;
	line-height: 1.3;
	flex: 0 0 0.84rem;
	width: 0.84rem;
	min-height: 1rem;
}

.second-row .notice-list p {
	font-size: 0.16rem;
	line-height: 1.5;
	letter-spacing: 0.01em;
	color: #2f373f;
}

.second-row .notice-body {
	flex: 1 1 auto;
	min-width: 0;
	min-height: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 0.06rem;
	padding-top: 0.02rem;
	justify-content: center;
}

.second-row .notice-time {
	display: inline-flex;
	align-items: center;
	gap: 0.08rem;
	font-size: 0.16rem;
	line-height: 1;
	color: #9aa1a8;
	font-weight: 700;
}

.second-row .notice-time::before {
	content: "";
	width: 0.18rem;
	height: 0.18rem;
	background: url("/images/educ/time.svg") center/contain no-repeat;
}

.second-row .notice-title {
	font-size: 0.17rem;
	line-height: 1.55;
	color: #2f373f;
	display: block !important;
	width: 100%;
	max-width: 100%;
	margin: 0;
	white-space: normal;
	word-break: normal;
	overflow-wrap: anywhere;
	overflow: visible;
}

.second-row .notice-list li > a:hover {
	background: rgba(255, 255, 255, 0.45);
}

.second-row .notice-list li > a:hover .notice-title {
	color: #0d8f80;
}

.second-row .notice-list {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}

@media (max-width: 1280px) {
	.hero-inner {
		grid-template-columns: 1fr;
	}

	.hero-building {
		min-height: 3.6rem;
	}

	.edu-two-col {
		grid-template-columns: 1fr;
	}

	.quick-inner {
		grid-template-columns: 1fr 1fr;
	}

	.quick-left,
	.quick-right,
	.quick-left-mid,
	.quick-right-mid,
	.quick-center {
		margin-top: 0;
	}

	.quick-left .qa,
	.quick-right .qa,
	.qa {
		min-height: 2.2rem;
	}

	.qa-cn {
		font-size: 0.38rem;
	}

	.qa-en {
		font-size: 0.22rem;
	}

	.quick-center {
		grid-column: 1 / -1;
	}

	.quick-center img {
		height: 4.6rem;
	}

	.second-row {
		padding-top: 0.36rem;
		padding-bottom: 0.3rem;
	}

	.second-row .panel-head h2 {
		font-size: 0.4rem;
	}
}

@media (max-width: 900px) {


	.site-wrap {
		width: min(16.8rem, 100% - 0.24rem);
	}

	.hero-intro {
		padding: 0.24rem;
	}

	.panel {
		padding: 0.16rem;
	}

	.panel-feature {
		grid-template-columns: 1fr;
	}

	.panel-feature img {
		height: 2.4rem;
	}

	.news-grid {
		grid-template-columns: 1fr;
	}

	.quick-inner {
		grid-template-columns: 1fr;
		gap: 0.12rem;
	}

	.quick-left,
	.quick-right,
	.quick-left-mid,
	.quick-right-mid,
	.quick-center {
		margin-top: 0;
	}

	.quick-col {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0.12rem;
	}

	.quick-left .qa,
	.quick-right .qa,
	.qa {
		min-height: 1.6rem;
		gap: 0.1rem;
	}

	.qa:hover {
		transform: none;
		box-shadow: none;
		filter: none;
	}

	.qa-cn {
		font-size: 0.3rem;
	}

	.qa-en {
		font-size: 0.18rem;
	}

	.quick-center {
		padding: 0.08rem;
	}

	.quick-center img {
		height: 3.9rem;
	}

	.second-row .panel-head {
		margin-bottom: 0.16rem;
		padding-bottom: 0.1rem;
	}

	.second-row .panel-head h2 {
		font-size: 0.32rem;
	}

	.second-row .panel-head p {
		font-size: 0.15rem;
	}

	.second-row .panel-head a {
		min-width: 1.08rem;
		height: 0.36rem;
		padding: 0 0.12rem;
		font-size: 0.14rem;
	}
}

@media (max-width: 640px) {
	.quick-col {
		grid-template-columns: 1fr;
	}

	.quick-left .qa,
	.quick-right .qa,
	.qa {
		min-height: 1.35rem;
	}

	.qa-cn {
		font-size: 0.26rem;
	}

	.qa-en {
		font-size: 0.16rem;
	}

	.quick-center img {
		height: 3.2rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.qa {
		transition: none;
	}

	.qa-wow-in,
	.qa-wow-in.is-visible {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}
