.public-page {
	background: #f6f8fa;
	overflow-x: hidden;
	overflow-y: auto;
}

.public-banner {
	position: relative;
	width: 100%;
	height: clamp(4.8rem, 70vh, 40rem);
	overflow: hidden;
}

.public-banner-swiper,
.public-banner-swiper .swiper-wrapper,
.public-banner-swiper .swiper-slide {
	width: 100%;
	height: 100%;
}

.public-banner-slide {
	position: relative;
}

.public-banner-link {
	display: block;
	width: 100%;
	height: 100%;
}

.public-banner-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.public-banner-controls {
	position: absolute;
	right: 0.28rem;
	bottom: 0.2rem;
	display: inline-flex;
	align-items: center;
	gap: 0.08rem;
	z-index: 5;
	padding: 0.08rem 0.12rem;
}

.public-banner-prev,
.public-banner-next {
	width: 0.5rem;
	height: 0.22rem;
	border: 0;
	background: transparent;
	position: relative;
	cursor: pointer;
	padding: 0;
}

.public-banner-prev::before,
.public-banner-next::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 1px;
	background: rgba(255, 255, 255, 0.75);
	transform: translateY(-50%);
	transition: background-color 0.2s ease;
}

.public-banner-prev:hover::before,
.public-banner-next:hover::before {
	background: #fff;
}

.public-banner-counter {
	font-family: "Source Han Serif SC", "Noto Serif SC", "Songti SC", "STSong", "SimSun", serif;
	font-size: 14px;
	line-height: 1.1;
	letter-spacing: 0.01rem;
	color: #eaf4f7;
	min-width: 0.9rem;
	text-align: center;
	display: inline-flex;
	align-items: flex-end;
	justify-content: center;
	gap: 0.02rem;
}

.public-banner-current {
	font-size: clamp(12px, 2.2vw, 20px);
	font-weight: 600;
}

.public-banner-total {
	font-size: clamp(12px, 1.5vw, 14px);
}

@media (max-width: 900px) {
	.public-banner {
		height: clamp(3.4rem, 46vh, 5rem);
	}

	.public-banner-controls {
		right: 0.14rem;
		bottom: 0.14rem;
		padding: 0.06rem 0.08rem;
		gap: 0.06rem;
	}

	.public-banner-prev,
	.public-banner-next {
		width: 0.34rem;
		height: 0.2rem;
	}

	.public-banner-counter {
		font-size: 12px;
		min-width: 0.72rem;
	}
	.public-banner-slide img {
		object-fit: fill;
	}
}

.guide-home {
	position: relative;
	margin-top: 0.34rem;
	padding: 0.2rem 0 0;
	overflow: hidden;
}

.public-page .wow {
	visibility: hidden;
}

.public-page .wow.is-visible {
	visibility: visible;
}

.public-page .wow-guide-col.is-visible {
	animation: wowGuideColIn 0.65s ease both;
}

@keyframes wowGuideColIn {
	from {
		opacity: 0;
		transform: translate3d(0, 0.22rem, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.guide-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	column-gap: 0;
	align-items: end;
	justify-content: center;
}

.guide-col {
	display: flex;
	flex-direction: column;
	gap: 0;
	position: relative;
	z-index: 2;
}

.guide-col-left .guide-card-tall {
	height: 3.36rem;
}

.guide-col-left .guide-card-mid {
	height: 5.8rem;
	padding-bottom: 3.8rem;
}

.guide-col-mid {
	margin-bottom: 2.2rem;
}
.guide-col-mid2 {
	grid-column: 3 / span 2;
	align-self: start;
}
.guide-col-mid .guide-card-mid {
	height: 5.58rem;
	padding-bottom: 160px;
}

.guide-sky-panel {
	width: 3.52rem;
	height: 5.2rem;
	margin-top: -5.42rem;
	margin-left: 2.15rem;
	position: relative;
	z-index: 1;
}

.guide-sky-panel img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.guide-vertical-title {
	position: absolute;
	top: 20px;
    left: 90%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 0.86rem;
	height: 2.1rem;
	padding: 0.1rem;
	font-size: 0.3rem;
	line-height: 1.15;
	writing-mode: vertical-rl;
	letter-spacing: 0.02rem;
	font-weight: 700;
	color: #2b2f35;
	background: url("/images/public/title_bg.png") center / 100% 100% no-repeat;
	z-index: 4;
}

.guide-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0.9rem 0.2rem;
	color: #fff;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	transition:
		transform 0.28s ease,
		box-shadow 0.28s ease,
		filter 0.28s ease;
	will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
	.guide-card:hover {
		transform: translateY(-0.08rem);
		box-shadow: 0 0.16rem 0.32rem rgba(20, 38, 49, 0.2);
		filter: brightness(1.03);
	}
}

.guide-card-appointment {
	background-image: url("/images/public/gh_bg.png");
}

.guide-card-guide {
	background-image: url("/images/public/jzzn_bg.png");
}

.guide-card-campus {
	background-image: url("/images/public/dh_bg.png");
}

.guide-card-tech {
	background-image: url("/images/public/ts_bg.png");
	color: #8f7c66;
}

.guide-card-expert {
	background-image: url("/images/public/gh_bg.png");
}

.guide-card-icon {
	width: 0.56rem;
	height: 0.56rem;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.34rem;
	line-height: 1;
	margin-bottom: 0.2rem;
}

.guide-card h3 {
	margin: 0;
	font-size: 0.24rem;
	line-height: 1.5;
	font-weight: 600;
}

.guide-card p {
	margin: 0.1rem 0 0;
	font-size: 0.12rem;
	letter-spacing: 0.01rem;
	opacity: 0.95;
}

.guide-building-wrap {
	position: absolute;
	bottom: 0;
	width: 80%;
	z-index: 3;
	pointer-events: none;
}

.guide-building-wrap.wow.animate__animated {
	animation-play-state: paused;
}

.guide-building-wrap.wow.animate__animated.is-visible {
	animation-play-state: running;
}

.guide-building-wrap img {
	width: 100%;
	height: auto;
	display: block;
}

.dept-nav {
	position: relative;
	margin: 0 0 0.52rem;
	padding: 0.46rem 0 0.52rem;
}

.dept-nav::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 100vw;
	height: 90%;
	background: #edf6f5;
	z-index: 0;
}

.dept-nav-shell {
	position: relative;
	z-index: 1;
}

.dept-nav-head h2 {
	margin: 0;
	font-size: 0.3rem;
	font-weight: bold;
	line-height: 1.2;
	color: #21262c;
}

.dept-nav-head p {
	display: flex;
	align-items: center;
	gap: 5px;
	margin: 0.02rem 0 0;
	font-size: 0.18rem;
	letter-spacing: 0.01rem;
	color: #2e3238;
}

.dept-nav-line {
	width: 0.2rem;
	height: 2px;
	background: #23282f;
	display: inline-block;
}

.dept-nav-main {
	margin-top: 0.34rem;
	display: grid;
	grid-template-columns: 4.6rem 1fr;
	align-items: center;
}

.dept-nav-visual {
	position: relative;
	height: 7.34rem;
}

.dept-nav-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.dept-switches {
	position: absolute;
	right: -1.6rem;
	bottom: 0.36rem;
	display: flex;
	align-items: flex-end;
	z-index: 4;
}

.dept-switch-btn {
	border: 0;
	cursor: pointer;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 1.6rem;
	padding: 0;
	gap: 0.14rem;
	writing-mode: horizontal-tb;
	color: #fff;
	opacity: 0.9;
	transition:
		transform 0.24s ease,
		opacity 0.24s ease,
		filter 0.24s ease;
	position: relative;
	z-index: 2;
}

.dept-switch-btn:hover {
	opacity: 1;
	transform: translateY(-0.04rem);
}

.dept-switch-btn.is-active {
	opacity: 1;
	filter: saturate(1.08);
	transform: translateY(-0.05rem);
	box-shadow: 0 0.08rem 0.18rem rgba(6, 64, 54, 0.2);
}

.dept-switch-main {
	order: 0;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	font-size: 0.2rem;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: 0.01rem;
}

.dept-switch-icon {
	order: 0;
	width: 0.5rem;
	height: 0.5rem;
	display: inline-block;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	flex: 0 0 auto;
}

.dept-switch-text {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.06rem;
}

.dept-switch-en {
	order: 0;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	margin: 0;
	font-size: 0.14rem;
	line-height: 1.1;
	opacity: 0.9;
}

.dept-switch-internal {
	background: #008a73;
	height: 4.7rem;
}
.dept-switch-internal .dept-switch-icon {
	background-image: url("/images/public/internal_icon.svg");
}

.dept-switch-surgery {
	background: url(/images/public/surgery_bg.png) center / cover no-repeat;
	color: #fff;
	height: 4.7rem;
	top: 36px;
}
.dept-switch-surgery .dept-switch-icon {
	background-image: url("/images/public/surgery_icon.svg");
}

.dept-switch-tech {
	background: url(/images/public/tech_bg.png) center / cover no-repeat;
	height: 4.7rem;
	top: -64px;
}
.dept-switch-tech .dept-switch-icon {
	background-image: url("/images/public/tech_icon.svg");
}

.dept-nav-panel {
	background: #fff;
	padding: 0.42rem 0.32rem 0.34rem 2.16rem;
	box-shadow: 0 0.06rem 0.24rem rgba(22, 35, 44, 0.1);
	min-height: 5.98rem;
	position: relative;
}

.dept-nav-panel::after {
	content: "";
	position: absolute;
	right: 0;
	top: -0.64rem;
	width: 0.52rem;
	height: 0.52rem;
	background: #0b8b75;
}

.dept-current-title {
	margin: 0;
	font-size: 0.24rem;
	font-weight: bold;
	line-height: 1.2;
	color: #111519;
}

.dept-list-scroll {
	margin-top: 0.24rem;
	height: 4.95rem;
	overflow: hidden;
	position: relative;
	padding-right: 0.08rem;
}

.dept-list-scroll-content {
	min-height: 100%;
}

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

.dept-list-panel a {
	height: 0.62rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #d6e0e2;
	color: #293038;
	font-size: max(14px, 0.16rem);
	line-height: 1.25;
	text-decoration: none;
	transition:
		background-color 0.2s ease,
		color 0.2s ease;
}

.dept-list-panel a:hover {
	background: #008a73;
	color: #fff;
}

.dept-list-scroll .bscroll-vertical-scrollbar {
	width: 0.08rem !important;
	right: 0 !important;
}

.dept-list-scroll .bscroll-indicator {
	background: #0b8b75 !important;
	border-radius: 999px;
	opacity: 0.65;
}

.featured-platform {
	margin: 0.24rem 0 0.48rem;
}

.featured-platform-head {
	text-align: center;
}

.featured-platform-head p {
	justify-content: center;
}

.featured-grid {
	margin-top: 0.22rem;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0;
}

.featured-card {
	position: relative;
	min-height: 3rem;
	padding: 0.34rem 0.22rem 0.44rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	text-decoration: none;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease,
		filter 0.3s ease;
}

.featured-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(4, 122, 126, 0.56);
	transition: opacity 0.25s ease;
}

.featured-card h3,
.featured-more {
	position: relative;
	z-index: 1;
}

.featured-card h3 {
	margin: 0;
	font-size: 0.2rem;
	line-height: 1.55;
	font-weight: 700;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
	transition: transform 0.3s ease;
}

.featured-more {
	position: absolute;
	left: 50%;
	bottom: -0.28rem;
	transform: translateX(-50%);
	width: 0.9rem;
	height: 0.9rem;
	border-radius: 50%;
	border: 0.05rem solid rgba(255, 255, 255, 0.34);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.13rem;
	line-height: 1;
	color: rgba(255, 255, 255, 0.94);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(1px);
	transition:
		transform 0.3s ease,
		background-color 0.3s ease,
		border-color 0.3s ease;
}

.featured-card:hover::before {
	opacity: 0.72;
}

.featured-card:hover .featured-more {
	background: rgba(255, 255, 255, 0.2);
}

@media (hover: hover) and (pointer: fine) {
	.featured-card:hover {
		transform: translateY(-0.06rem) scale(1.015);
		box-shadow: 0 0.18rem 0.34rem rgba(9, 34, 36, 0.24);
		filter: saturate(1.08);
		z-index: 99;
	}

	.featured-card:hover h3 {
		transform: translateY(-0.04rem);
	}

	.featured-card:hover .featured-more {
		transform: translateX(-50%) translateY(-0.04rem);
		border-color: rgba(255, 255, 255, 0.6);
	}
}

.featured-card.fp-c1 {
	background-image: url("/images/public/ts_1.png");
}
.featured-card.fp-c2 {
	background-image: url("/images/public/ts_2.png");
}
.featured-card.fp-c3 {
	background-image: url("/images/public/ts_3.png");
}
.featured-card.fp-c4 {
	background-image: url("/images/public/ts_4.png");
}
.featured-card.fp-c5 {
	background-image: url("/images/public/ts_5.png");
}
.featured-card.fp-c6 {
	background-image: url("/images/public/ts_6.png");
}
.featured-card.fp-c7 {
	background-image: url("/images/public/ts_7.png");
}
.featured-card.fp-c8 {
	background-image: url("/images/public/ts_8.png");
}
.featured-card.fp-c9 {
	background-image: url("/images/public/ts_9.png");
}
.featured-card.fp-c10 {
	background-image: url("/images/public/ts_10.png");
}

.featured-card.fp-c1::before,
.featured-card.fp-c2::before,
.featured-card.fp-c9::before {
	background: rgba(4, 126, 120, 0.7);
}

.featured-card.fp-c3::before,
.featured-card.fp-c10::before {
	background: rgba(106, 173, 198, 0.68);
}

.featured-card.fp-c4::before,
.featured-card.fp-c6::before {
	background: rgba(210, 187, 132, 0.72);
}

.featured-card.fp-c5::before,
.featured-card.fp-c7::before,
.featured-card.fp-c8::before {
	background: rgba(26, 163, 136, 0.68);
}

.science-medical {
	margin: 0.32rem 0 0.52rem;
}

.science-medical-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.44rem;
}

.science-head-row {
	margin-top: 0.04rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.science-more-link {
	position: relative;
	font-size: max(12px, 0.14rem);
	line-height: 1;
	color: #1f2a33;
	text-decoration: none;
	padding: 0.02rem 0.15rem 0.04rem 0;
}

.science-more-link::before {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0.9rem;
	height: 0.4rem;
	background: url("/images/public/more_bg.png") center / 100% 100% no-repeat;
}

.science-feature {
	margin-top: 0.22rem;
	display: grid;
	grid-template-columns: 56% 1fr;
	gap: 0.16rem;
	align-items: center;
	text-decoration: none;
}

.science-feature-cover {
	overflow: hidden;
}

.science-feature-cover img {
	width: 100%;
	height: 1.5rem;
	object-fit: fill;
	display: block;
}

.science-feature-text {
	color: #2a2f35;
}

.science-feature-date {
	font-size: 0.18rem;
	line-height: 1.2;
	color: #a1a6ab;
}

.science-feature-text h3 {
	margin: 0.18rem 0 0;
	font-size: 0.2rem;
	line-height: 1.6;
	font-weight: 500;
	color: #2b3137;
}
.science-feature-text h3:hover {
	color: #008a73;
}
.medical-hero {
	display: block;
	margin-top: 0.22rem;
	text-decoration: none;
	background: url("/images/public/ts_2.png") center / cover no-repeat;
	position: relative;
	height: 2.2rem;
}

.medical-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url(/images/public/tsyl_bg.png) center / cover no-repeat;
}

.medical-hero-inner {
	position: relative;
	z-index: 1;
	padding: 0.24rem 0.24rem;
}

.medical-hero-inner h2 {
	margin: 0;
	font-size: 0.34rem;
	line-height: 1.2;
	font-weight: bold;
	color: #252b31;
}

.medical-hero-inner p {
	margin: 0.12rem 0 0;
	display: inline-flex;
	align-items: center;
	gap: 0.08rem;
	font-size: 0.24rem;
	color: #2f363d;
}

.science-list {
	list-style: none;
	margin: 0.14rem 0 0;
	padding: 0;
	border-top: 1px solid #d8dade;
}

.science-list li {
	border-bottom: 1px solid #d8dade;
}

.science-list li a {
	height: 0.92rem;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 0.12rem;
	align-items: center;
	text-decoration: none;
	color: #2b3138;
}
.science-list li a:hover {
	color: #008a73;
}
.science-dot {
	width: 0.2rem;
	height: 0.14rem;
	background: url("/images/public/list_bg.png") center / 100% 100% no-repeat;
	position: relative;
	margin-left: 0.06rem;
}

.science-dot::after {
	content: none;
}

.science-title {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-size: 0.18rem;
	line-height: 1.2;
}

.science-list time {
	font-size: 0.18rem;
	color: #9ba0a5;
	letter-spacing: 0.01rem;
	padding-right: 0.04rem;
}

.famous-experts {
	position: relative;
	margin: 0.22rem 0 0;
	padding: 0.44rem 0 0.54rem;
}

.famous-experts::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 100vw;
	height: 100%;
	background: url("/images/public/myzj_bg.png") center / cover no-repeat;
	z-index: 0;
}

.famous-experts-shell {
	max-width: 13.2rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.experts-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.experts-head h2,
.experts-head p {
	color: #fff;
}

.experts-head .dept-nav-line {
	background: #fff;
}

.experts-more {
	color: #e9fff8;
}

.experts-more::after {
	background: #8de0cf;
}

.experts-swiper {
	margin-top: 0.26rem;
}

.experts-swiper .swiper-slide {
	height: auto;
}

.experts-carousel {
	position: relative;
	margin-top: 0.26rem;
}

.experts-carousel .experts-swiper {
	margin-top: 0;
}

.experts-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 0.5rem;
	height: 0.5rem;
	border: 1px dashed rgba(255, 255, 255, 0.85);
	border-radius: 50%;
	background: transparent url("/images/public/arrow.svg") center / 0.22rem 0.22rem no-repeat;
	cursor: pointer;
	z-index: 5;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease;
}

.experts-nav-prev {
	left: -0.88rem;
	background-position: center;
	transform: translateY(-50%) scaleX(-1);
}

.experts-nav-next {
	right: -0.88rem;
}

@media (hover: hover) and (pointer: fine) {
	.experts-nav:hover {
		border-color: rgba(255, 255, 255, 0.72);
	}

	.experts-nav-prev:hover {
		transform: translateY(-50%) scaleX(-1) scale(1.04);
	}

	.experts-nav-next:hover {
		transform: translateY(-50%) scale(1.04);
	}
}

.expert-card {
	display: block;
	text-decoration: none;
	background: #fff;
	overflow: hidden;
	box-shadow: 0 0.06rem 0.2rem rgba(8, 39, 33, 0.16);
}

.expert-photo {
	height: 4rem;
	overflow: hidden;
}

.expert-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.expert-info {
	padding: 0.16rem 0.34rem 0.34rem 0.16rem;
	color: #2b3138;
	position: relative;
	z-index: 1;
	min-height: 1.5rem;
}

.expert-info::after {
	content: "";
	position: absolute;
	right: 0.1rem;
	bottom: 0.1rem;
	width: 0.34rem;
	height: 0.34rem;
	background: url("/images/public/myzj_h.png") center / 100% 100% no-repeat;
	pointer-events: none;
	z-index: 0;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.expert-info h3 {
	margin: 0;
	font-size: 0.24rem;
	line-height: 1.5;
	font-weight: 700;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.expert-info h3 span {
	font-size: 0.16rem;
	font-weight: 600;
}

.expert-info p {
	margin: 0.08rem 0 0;
	font-size: 0.15rem;
	line-height: 1.5;
}

.expert-info p:first-of-type {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.expert-info p:last-of-type {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

@media (hover: hover) and (pointer: fine) {
	.expert-card:hover {
		background: #057d6a;
	}

	.expert-card:hover .expert-info,
	.expert-card:hover .expert-info h3,
	.expert-card:hover .expert-info p,
	.expert-card:hover .expert-info h3 span {
		color: #fff;
	}

	.expert-card:hover .expert-info::after {
		opacity: 1;
	}
}

.join-us {
	position: relative;
	margin: 0 0 0.56rem;
	padding: 0.44rem 0 0.56rem;
	background: #f3f4f6;
}

.join-us::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 100vw;
	height: 100%;
	background: url(/images/public/jr_bg.png) no-repeat;
	background-position: top;
	z-index: 0;
	background-size: 100% 70%;
}

.join-us-shell {
	position: relative;
	z-index: 1;
}

.join-us-main {
	margin-top: 0.22rem;
	display: grid;
	grid-template-columns: 3.3rem 3.3rem 1fr;
	gap: 0;
	align-items: stretch;
	height: 6.64rem;
}

.join-us-left,
.join-us-mid {
	display: grid;
	grid-template-rows: repeat(2, minmax(0, 1fr));
	height: 100%;
}

.join-us-left {
	transform: translateY(1rem);
}

.join-card {
	position: relative;
	min-height: 0;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	overflow: hidden;
	transition:
		transform 0.28s ease,
		box-shadow 0.28s ease,
		filter 0.28s ease;
}

.join-card h3 {
	margin: 0;
	font-size: 0.24rem;
	line-height: 1.5;
	font-weight: 700;
	position: relative;
	z-index: 1;
}

.join-card .featured-more {
	bottom: -0.27rem;
	transition:
		transform 0.28s ease,
		background-color 0.28s ease,
		border-color 0.28s ease;
}

.join-card-dark {
	background:
		linear-gradient(rgba(3, 103, 86, 0.1), rgba(3, 103, 86, 0.5)),
		url("/images/public/ju_1.png") center / cover no-repeat;
}

.join-card-teal {
	background: #0b8f7b;
}

.join-card-gold {
	background: #d2b879;
}

.join-card-mint {
	background:
		linear-gradient(rgba(24, 220, 190, 0.1), rgba(24, 220, 190, 0.5)),
		url("/images/public/ju_2.png") center / cover no-repeat;
}

.join-us-hero {
	display: block;
	min-height: 0;
	height: 100%;
	overflow: hidden;
}

.join-us-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.special-topic {
	margin: 1rem 0 0.56rem;
}

.special-topic-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.special-topic-grid {
	margin-top: 0.22rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.2rem;
}

.special-topic-card {
	flex: 1;
	display: block;
	overflow: hidden;
	height: 2rem;
}

.special-topic-card img {
	width: 100%;
	height: 100%;
	object-fit: fill;
	display: block;
	transition: transform 0.3s ease;
}

.dept-news {
	padding: 0.38rem 0 0.46rem;
	position: relative;
}

.dept-news::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("/images/public/dapnews_bg.jpg") center / cover no-repeat;
	background-position: center bottom;
	pointer-events: none;
	width: 100vw;
	height: 100%;
	z-index: 0;
	left: 50%;
	transform: translateX(-50%);
}

.dept-news-shell {
	position: relative;
	z-index: 1;
}

.dept-news-main {
	display: grid;
	grid-template-columns: 68% 32%;
	gap: 0.24rem;
}

.dept-news-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.dept-news-feature {
	margin-top: 0.4rem;
	display: block;
	position: relative;
	height: 4.2rem;
	overflow: hidden;
}

.dept-news-feature img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.dept-news-feature-title {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0.12rem 0.22rem;
	font-size: 0.16rem;
	line-height: 1.35;
	color: #fff;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.62));
}

.dept-news-grid-list {
	margin-top: 0.2rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.02rem 0.24rem;
}
.dept-news-grid-col {
	min-width: 0;
}

.dept-news-grid-col h3 {
	position: relative;
	margin-bottom: 0.12rem;
	color: #1f2d35;
	font-size: 0.3rem;
	font-weight: 700;
	line-height: 1.3;
}

.dept-news-grid-col h3::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 0.04rem;
	height: 0.2rem;
	transform: translateY(-50%);
}

.dept-news-grid-list a {
	min-height: 0.8rem;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.08rem;
	align-items: start;
	padding: 0.12rem 0;
	border-bottom: 1px dashed #cfd5d9;
	color: #2d343b;
	font-size: 0.15rem;
	line-height: 1.5;
}

.dept-news-mark {
	width: 0.03rem;
	height: 0.26rem;
	background: #078f7b;
	margin-top: 0.06rem;
}

.dept-news-grid-list a span:last-child {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.dept-news-right {
	border-left: 1px solid #d6dde1;
	padding-left: 0.24rem;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.dept-news-side-block {
	display: flex;
	flex-direction: column;
}

.dept-news-list {
	margin-top: 0.08rem;
}

.dept-news-list li {
	border-bottom: 0;
}

.dept-news-list li a {
	height: 0.85rem;
	display: grid;
	align-content: center;
	row-gap: 0.04rem;
	padding: 0.08rem 0;
	box-sizing: border-box;
	color: #32383f;
}

.dept-news-list li a span {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	max-height: calc(1.35em * 2);
	white-space: normal;
	word-break: break-all;
	overflow-wrap: anywhere;
	font-size: 0.16rem;
	line-height: 1.35;
}

.dept-news-list li a time {
	font-size: 0.14rem;
	color: #b4b4b4;
	display: flex;
	align-items: center;
	width: 100%;
	line-height: 1;
}

.dept-news-list li a time::after {
	content: "";
	flex: 1;
	height: 1px;
	margin-left: 0.08rem;
	background-image: radial-gradient(circle, #b9c0c5 1px, transparent 1.5px), repeating-linear-gradient(to right, #b9c0c5 0 3px, transparent 3px 6px);
	background-position:
		right center,
		left center;
	background-size:
		4px 4px,
		auto 1px;
	background-repeat: no-repeat;
}

.dept-news a {
	transition:
		color 0.2s ease,
		font-weight 0.2s ease;
}

.dept-news-grid-list a:hover span:last-child,
.dept-news-list li a:hover span {
	color: #0a8e84;
	font-weight: 700;
}

.dept-news-list li a:hover time {
	color: #0a8e84;
	font-weight: 700;
}

@media (hover: hover) and (pointer: fine) {
	.special-topic-card:hover img {
		transform: scale(1.03);
	}
}

@media (hover: hover) and (pointer: fine) {
	.join-card:hover {
		transform: translateY(-0.06rem) scale(1.012);
		box-shadow: 0 0.16rem 0.3rem rgba(7, 39, 35, 0.22);
		filter: saturate(1.05);
		z-index: 2;
	}

	.join-card:hover .featured-more {
		transform: translateX(-50%) translateY(-0.04rem);
		border-color: rgba(255, 255, 255, 0.62);
		background-color: rgba(255, 255, 255, 0.2);
	}
}

@media (max-width: 900px) {
	.guide-home {
		--guide-card-h-m: 3.36rem;
	}

	.guide-home {
		min-height: auto;
		margin-top: 0.16rem;
		margin-bottom: 0.2rem;
		padding: 0.08rem 0 0.2rem;
	}

	.guide-grid {
		grid-template-columns: 1fr 1fr;
		gap: 0.08rem;
		align-items: stretch;
	}

	.guide-col-left,
	.guide-col-mid,
	.guide-col-right {
		margin-top: 0;
		margin-left: 0;
		margin-bottom: 0;
	}

	.guide-card {
		align-items: center;
		justify-content: center;
		padding: 0 0.2rem;
		gap: 0.1rem;
	}
	.guide-col-left .guide-card-mid {
		padding-bottom: 0;
		height: var(--guide-card-h-m);
	}

	.guide-col-left .guide-card-tall,
	.guide-col-right .guide-card-mid {
		height: var(--guide-card-h-m);
	}

	.guide-col-mid .guide-card-mid {
		height: calc(var(--guide-card-h-m) * 2);
		padding-bottom: 0;
	}

	.guide-col-mid {
		display: flex;
	}

	.guide-col-mid .guide-card-campus {
		flex: 1;
		height: 100%;
		justify-content: center;
		align-items: center;
	}
	.guide-sky-panel {
		display: none;
	}

	.guide-col-right {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0.08rem;
	}

	.guide-vertical-title {
		position: static;
		writing-mode: horizontal-tb;
		font-size: 0.34rem;
		letter-spacing: 0.02rem;
		text-align: center;
		grid-column: 1 / -1;
		margin-bottom: 0.06rem;
	}

	.guide-card-icon {
		width: 0.8rem;
		height: 0.8rem;
		font-size: 0.26rem;
		margin-bottom: 0;
	}

	.guide-card h3 {
		font-size: 0.32rem;
	}

	.guide-card p {
		font-size: 0.16rem;
		margin: 0;
	}
	.guide-vertical-title,
	.guide-building-wrap,
	.guide-col-mid2 {
		display: none;
	}

	.dept-nav {
		margin: 0.12rem 0 0.24rem;
		padding: 0.18rem 0 0.2rem;
	}

	.dept-nav::before {
		height: 100%;
	}

	.dept-nav-head h2 {
		font-size: 0.4rem;
	}

	.dept-nav-head p {
		font-size: 0.2rem;
	}

	.dept-nav-main {
		margin-top: 0.16rem;
		grid-template-columns: 1fr;
		gap: 0.14rem;
	}

	.dept-nav-visual {
		height: 5rem;
	}

	.dept-switches {
		right: 0;
		bottom: 0;
	}

	.dept-switch-btn {
		height: 1.8rem;
		padding: 0;
		gap: 0.06rem;
	}

	.dept-switch-internal {
		height: 4rem;
		top: auto;
	}

	.dept-switch-surgery {
		height: 4rem;
		top: auto;
	}

	.dept-switch-tech {
		height: 4rem;
		top: auto;
	}

	.dept-switch-main {
		font-size: 18px;
	}

	.dept-switch-icon {
		width: 0.6rem;
		height: 0.6rem;
	}

	.dept-switch-text {
		gap: 0.03rem;
	}

	.dept-switch-en {
		font-size: 12px;
	}

	.dept-nav-panel {
		padding: 0.14rem;
		min-height: auto;
	}

	.dept-nav-panel::after {
		display: none;
	}

	.dept-current-title {
		font-size: 0.34rem;
	}

	.dept-list-panel {
		grid-template-columns: 1fr 1fr;
		gap: 0.06rem;
	}

	.dept-list-scroll {
		margin-top: 0.14rem;
		height: 6rem;
		padding-right: 0.06rem;
	}

	.dept-list-panel a {
		height: 0.8rem;
	}

	.featured-platform {
		margin: 0.16rem 0 0.24rem;
	}

	.featured-grid {
		margin-top: 0.14rem;
		grid-template-columns: 1fr 1fr;
		gap: 0.08rem;
	}

	.featured-card {
		min-height: 2.2rem;
		padding: 0.2rem 0.14rem 0.32rem;
	}

	.featured-card h3 {
		font-size: 14px;
		line-height: 1.45;
	}

	.featured-more {
		display: none;
	}

	.science-medical {
		margin: 0.18rem 0 0.24rem;
	}

	.science-medical-grid {
		grid-template-columns: 1fr;
		gap: 0.22rem;
	}

	.science-feature {
		margin-top: 0.14rem;
		grid-template-columns: 1fr;
		gap: 0.08rem;
	}

	.science-feature-cover img,
	.medical-hero {
		min-height: 2.1rem;
		height: 2.1rem;
	}

	.science-feature-date,
	.science-list time {
		font-size: 12px;
	}

	.science-feature-text h3,
	.science-title {
		font-size: 12px;
	}

	.medical-hero-inner {
		padding: 0.24rem 0.2rem;
	}

	.medical-hero-inner h2 {
		font-size: 0.42rem;
	}

	.medical-hero-inner p {
		font-size: 0.2rem;
	}

	.science-list li a {
		height: 0.72rem;
		gap: 0.08rem;
	}

	.famous-experts {
		margin: 0.14rem 0 0.24rem;
		padding: 0.24rem 0 0.24rem;
	}

	.experts-head {
		align-items: center;
	}

	.experts-swiper {
		margin-top: 0;
	}

	.experts-carousel {
		margin-top: 0.14rem;
	}

	.experts-nav {
		width: 0.54rem;
		height: 0.54rem;
		left: 0.06rem;
	}

	.experts-nav-prev,
	.experts-nav-next {
		display: none;
	}

	.expert-photo {
		height: 5rem;
	}

	.expert-info h3 {
		font-size: 0.28rem;
	}

	.expert-info h3 span,
	.expert-info p {
		font-size: 12px;
	}

	.expert-info {
		padding-right: 0.28rem;
		padding-bottom: 0.28rem;
	}

	.expert-info::after {
		right: 0.08rem;
		bottom: 0.08rem;
		width: 0.26rem;
		height: 0.26rem;
	}

	.join-us {
		margin: 0.14rem 0 0.24rem;
		padding: 0.24rem 0;
	}

	.join-us-main {
		margin-top: 0.14rem;
		grid-template-columns: 1fr;
		gap: 0.08rem;
		height: auto;
	}

	.join-us-left,
	.join-us-mid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: none;
		gap: 0.08rem;
		transform: translateY(0);
	}

	.join-us-mid {
		transform: none;
	}

	.join-card,
	.join-us-hero {
		min-height: 2.2rem;
		height: auto;
	}

	.join-card h3 {
		font-size: 0.3rem;
	}

	.special-topic {
		margin: 0.14rem 0 0.24rem;
	}

	.special-topic-head {
		align-items: center;
	}

	.special-topic-grid {
		margin-top: 0.14rem;
		grid-template-columns: 1fr;
		gap: 0.08rem;
	}
	.special-topic-card {
		flex: auto;

		width: 100%;
	}
	.special-topic-card,
	.special-topic-card img {
		min-height: 2rem;
	}

	.dept-news {
		margin: 0.14rem 0 0.24rem;
		padding: 0.2rem 0;
	}

	.dept-news-main {
		grid-template-columns: 1fr;
		gap: 0.16rem;
	}

	.dept-news-feature {
		height: 4rem;
	}

	.dept-news-feature-title {
		font-size: 14px;
		padding: 0.1rem 0.14rem;
	}
	.dept-news-grid-list a{
		font-size: 14px;
		line-height: 1.8;
	}
	.dept-news-grid-list {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.dept-news-grid-col h3 {
		margin-bottom: 0.06rem;
		font-size: 18px;
	}
	.dept-news-list li a span{
		font-size: 14px;
	
	}
	.dept-news-list li a time{
		font-size: 14px;
		line-height: 1.8;
	}
	.dept-news-right {
		border-left: 0;
		border-top: 1px solid #d6dde1;
		padding-left: 0;
		padding-top: 0.14rem;
	}

	.dept-news-list li a {
		height: 1.5rem;
	}
}
