.internet-hospital-page {
	background: #f5f5f7;
}

.internet-hospital-hero {
	background: url("/images/page/internet_hospital_hero_bg.png") center / cover no-repeat;
}

.internet-hospital-hero .about-hero__overlay {
	background: linear-gradient(90.0056deg, rgba(0, 130, 108, 0.97) 12.422%, rgba(255, 255, 255, 0) 99.244%);
}

.internet-hospital-main {
	position: relative;
	min-height: 7.47rem;
	overflow: hidden;
}

.internet-hospital-main::before,
.internet-hospital-main::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.internet-hospital-main::before {
	background: url("/images/page/internet_hospital_main_bg.png") center top / cover no-repeat;
	opacity: 0.07;
}

.internet-hospital-main::after {
	background: linear-gradient(180deg, #f5f5f7 0%, rgba(245, 245, 247, 0) 100%);
}

.internet-hospital-main__inner {
	position: relative;
	z-index: 1;
	min-height: 7.47rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.internet-hospital-main__inner p {
	margin: 0;
	font-size: 0.3rem;
	line-height: 0.3rem;
	font-weight: 500;
	letter-spacing: 0.008rem;
	color: #2a2a2a;
}

@media (max-width: 900px) {
	.internet-hospital-main,
	.internet-hospital-main__inner {
		min-height: 4.4rem;
	}

	.internet-hospital-main__inner p {
		font-size: 24px;
		line-height: 1.25;
	}
}

.cooperation-page {
	background: #f5f5f7;
}

.cooperation-hero {
	background: url("/images/page/cooperation_hero_bg.png") center 41% / 100% 290% no-repeat;
}

.cooperation-hero .about-hero__overlay {
	background: linear-gradient(90.0056deg, rgba(0, 130, 108, 0.97) 12.422%, rgba(255, 255, 255, 0) 99.244%);
}

.cooperation-tabs {
	height: 0.8rem;
	width: 100%;
	max-width: 12.26rem;
	padding: 0 0.32rem;
	border-radius: 0 0.4rem 0 0;
	background: #f5f5f7;
	display: flex;
	align-items: center;
	gap: clamp(0.32rem, 6vw, 1.4rem);
}

.cooperation-tabs a {
	position: relative;
	display: inline-flex;
	align-items: center;
	height: 100%;
	font-size: 0.18rem;
	line-height: 1.3;
	letter-spacing: 0.01em;
	color: #2a2a2a;
	text-decoration: none;
	white-space: nowrap;
}

.cooperation-tabs a.is-active {
	color: #00826c;
	font-weight: 600;
}

.cooperation-tabs a.is-active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.02rem;
	height: 2px;
	background: #00826c;
}

.cooperation-news {
	padding: 0.44rem 0 0.42rem;
}

.cooperation-news-list {
	display: grid;
	gap: 0.16rem;
}

.cooperation-news-card {
	display: grid;
	grid-template-columns: 3.7rem minmax(0, 1fr);
	column-gap: 0.4rem;
	align-items: stretch;
	background: #fff;
	color: inherit;
	text-decoration: none;
	padding: 0.32rem 0.34rem;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.cooperation-news-card__figure {
	margin: 0;
	overflow: hidden;
	height: 1.8rem;
}

.cooperation-news-card__figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.cooperation-news-card__content h2 {
	margin: 0;
	font-size: 0.24rem;
	line-height: 1.3;
	font-weight: 600;
	letter-spacing: 0.01em;
	color: #2a2a2a;
	transition: color 0.2s ease;
}

.cooperation-news-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 0.08rem 0.2rem rgba(0, 0, 0, 0.08);
}

.cooperation-news-card:hover .cooperation-news-card__content h2 {
	color: #00826c;
}

.cooperation-news-card:hover .cooperation-news-card__figure img {
	transform: scale(1.02);
}

.cooperation-news-card__meta {
	margin-top: 0.12rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.34rem;
}

.cooperation-news-card__meta span {
	display: inline-flex;
	align-items: center;
	gap: 0.06rem;
	font-size: 0.16rem;
	line-height: 1.75;
	color: #9d9d9d;
}

.cooperation-news-card__meta img {
	width: 0.16rem;
	height: 0.16rem;
	flex: none;
}

.cooperation-news-card__content p {
	margin: 0.14rem 0 0;
	font-size: 0.16rem;
	line-height: 1.75;
	color: #5b5b5b;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.cooperation-pagination {
	margin: 0.4rem 0 0;
}

@media (max-width: 900px) {
	.cooperation-news {
		padding: 0.16rem 0 0.24rem;
	}

	.cooperation-news-list {
		gap: 0.5rem;
	}

	.cooperation-news-card {
		grid-template-columns: 1fr;
		row-gap: 0.12rem;
		padding: 0.12rem;
	}

	.cooperation-news-card__figure {
		aspect-ratio: 16 / 9;
	}

	.cooperation-news-card__content h2 {
		font-size: 16px;
		line-height: 1.5;
		margin: 10px 0;
	}

	.cooperation-news-card__meta {
		margin-top: 0.08rem;
		gap: 0.1rem 0.14rem;
	}

	.cooperation-news-card__meta span {
		font-size: 12px;
		line-height: 1.5;
	}

	.cooperation-news-card__meta img {
		width: 12px;
		height: 12px;
	}

	.cooperation-news-card__content p {
		margin-top: 0.08rem;
		font-size: 12px;
		line-height: 1.7;
		-webkit-line-clamp: 2;
	}

	.cooperation-pagination {
		margin-top: 0.24rem;
	}
}

.information-page {
	background: #f5f5f7;
}

.information-hero {
	background: url("/images/page/information_hero_bg.png") center / cover no-repeat;
}

.information-hero .about-hero__overlay {
	background: linear-gradient(90.0056deg, rgba(0, 130, 108, 0.97) 12.422%, rgba(255, 255, 255, 0) 99.244%);
}

.information-list-section {
	position: relative;
	padding: 0 0 0.72rem;
	margin-top: 0.2rem;
	overflow: hidden;
	min-height: 5rem;
}
.information-list-section::before,
.information-list-section::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.information-list-section::before {
	background: url("/images/page/expert_directory_bg.png") center top / cover no-repeat;
	opacity: 0.07;
}
.information-list-section::after {
	background: linear-gradient(180deg, #f5f5f7 0%, rgba(245, 245, 247, 0) 100%);
}

.information-list-wrap {
	position: relative;
	z-index: 1;
}

.information-list {
	display: grid;
	gap: 0.12rem;
}

.information-item {
	display: grid;
	column-gap: 0.2rem;
	grid-template-columns: 0.83rem minmax(0, 1fr);
	align-items: stretch;
	min-height: 0.9rem;
	text-decoration: none;
	color: #2a2a2a;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.information-item__date {
	background: #e2f4ed;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.02rem;
	color: #00826c;
	font-family: "DIN Condensed", "Arial Narrow", Arial, sans-serif;
	line-height: 1;
}

.information-item__date em {
	font-style: normal;
	font-size: 0.2rem;
	font-weight: 700;
}

.information-item__date strong {
	font-size: 0.18rem;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.information-item__title {
	display: flex;
	align-items: center;
	padding: 0 0.24rem;
	font-size: 0.18rem;
	line-height: 1.67;
	letter-spacing: 0.008rem;
	color: #2a2a2a;
	background: #fff;
}

.information-item:hover {
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 0.06rem 0.16rem rgba(0, 0, 0, 0.08);
}

.information-item:hover .information-item__date {
	background: #00826c;
	color: #fff;
}

.information-item:hover .information-item__title {
	background: #00826c;
	color: #fff;
}

.information-page .pagination {
	margin-top: 0.8rem;
}

@media (max-width: 900px) {
	.information-hero {
		background-position: 46% center;
	}

	.information-list-section {
		padding: 0.16rem 0 0.24rem;
	}

	.information-list {
		gap: 0.08rem;
	}

	.information-item {
		grid-template-columns: 0.62rem minmax(0, 1fr);
		min-height: 0.7rem;
	}

	.information-item__date em {
		font-size: 12px;
	}

	.information-item__date strong {
		font-size: 16px;
	}

	.information-item__title {
		padding: 0 0.1rem;
		font-size: 13px;
		line-height: 1.5;
	}

	.information-page .pagination {
		margin-top: 0.2rem;
	}
}

.topic-page {
	background: #f5f5f7;
}

.topic-hero {
	background: #00826c;
	min-height: 2.22rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.topic-hero__inner h1 {
	margin: 0;
	font-family: "Source Han Serif SC", "Songti SC", "STSong", serif;
	font-size: 0.48rem;
	line-height: 1.15;
	font-weight: 800;
	color: #fff;
	letter-spacing: 0.01em;
}

.topic-crumb-wrap {
	background: #f5f5f7;
	border-bottom: 1px solid #dfdfdf;
}

.topic-crumb-inner {
	padding: 0.18rem 0;
}

.topic-crumb {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 0.08rem;
	font-size: 0.14rem;
	line-height: 1.57;
	color: #2a2a2a;
}

.topic-crumb__home {
	width: 0.16rem;
	height: 0.16rem;
	flex: none;
}

.topic-crumb a {
	color: #2a2a2a;
	text-decoration: none;
}

.topic-crumb .sep {
	font-size: 0.1rem;
	color: #888;
}

.topic-crumb strong {
	font-weight: 400;
	color: #2a2a2a;
}

.topic-grid-section {
	position: relative;
	padding: 0.28rem 0 0.46rem;
	overflow: hidden;
}

.topic-grid-section::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 19.2rem;
	height: 8.33rem;
	transform: translateX(-50%);
	background:
		linear-gradient(180deg, #f5f5f7 0%, rgba(245, 245, 247, 0) 54.895%),
		url("/images/page/information_list_bg.png") center / cover no-repeat;
	opacity: 0.1;
	pointer-events: none;
}

.topic-grid-wrap {
	position: relative;
	z-index: 1;
	max-width: 13.98rem;
	margin: 0 auto;
}

.topic-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.1rem;
}

.topic-card {
	position: relative;
	display: block;
	background: #fff;
	overflow: hidden;
}

.topic-card img {
	display: block;
	width: 100%;
	aspect-ratio: 460 / 197;
	object-fit: fill;
	transition: transform 0.25s ease;
}

.topic-card__caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.16rem;
	line-height: 1.875;
	color: #fff;
	background: rgba(42, 42, 42, 0.8);
	opacity: 0;
	transform: translateY(100%);
	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
	pointer-events: none;
}

.topic-card:hover img {
	transform: scale(1.03);
}

.topic-card.has-caption:hover .topic-card__caption,
.topic-card.has-caption:focus-visible .topic-card__caption {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 900px) {
	.topic-hero {
		min-height: 1.5rem;
	}

	.topic-hero__inner h1 {
		font-size: 0.36rem;
	}

	.topic-crumb-inner {
		padding: 0.12rem 0;
	}

	.topic-crumb {
		font-size: 12px;
	}

	.topic-grid-section {
		padding: 0.16rem 0 0.28rem;
	}

	.topic-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.08rem;
	}

	.topic-card__caption {
		height: 0.38rem;
		font-size: 12px;
	}
}

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

.education-news-page {
	background: #f5f5f7;
}

.education-news-hero {
	background:
		linear-gradient(90deg, rgba(0, 130, 108, 0.97) 0%, rgba(0, 130, 108, 0.78) 34%, rgba(0, 130, 108, 0) 78%),
		url("/images/educ/figma/educ_banner_photo.png") center / cover no-repeat,
		url("/images/educ/figma/educ_banner_base.png") center / cover no-repeat;
}

.education-news-hero .about-hero__overlay {
	background: transparent;
}

.education-news-tabs-wrap {
	margin-bottom: -0.2rem;
}

.education-news-tabs {
	max-width: 12.2rem;
	gap: clamp(0.72rem, 10vw, 2rem);
}

@media (max-width: 900px) {
	.education-news-hero {
		background-position: center;
	}

	.education-news-tabs {
		gap: 0.46rem;
	}
}
