﻿﻿* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	min-height: 100%;
	color: #333;
	background: #fff;
	font-family: "Microsoft YaHei", "PingFang SC", SimSun, sans-serif;
}

body {
	overflow-x: hidden;
}

html.custom-scrollbar::-webkit-scrollbar,
html.custom-scrollbar body::-webkit-scrollbar {
	width: 0;
	height: 0;
}

.app-scrollbar {
	position: fixed;
	top: 16px;
	right: 8px;
	bottom: 16px;
	width: 7px;
	padding: 1px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.15),
		0 8px 18px rgba(109, 20, 20, 0.12);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	opacity: 0;
	transform: translateX(8px);
	transition:
		opacity 0.24s ease,
		transform 0.24s ease;
	pointer-events: none;
	z-index: 9999;
}

.app-scrollbar.is-visible {
	opacity: 1;
	transform: translateX(0);
}

.app-scrollbar-thumb {
	width: 100%;
	border-radius: 999px;
	background: linear-gradient(180deg, #f06b6b 0%, #d40e0e 55%, #ae0505 100%);
	box-shadow:
		0 4px 12px rgba(193, 25, 25, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.app-scrollbar.is-hidden {
	display: none;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
}

.shell {
	width: 1360px;
	max-width: 92%;
	margin: 0 auto;
}

.site-header {
	height: 100px;
	background: #d90000;
	color: #fff;
}

.header-shell {
	width: 1360px;
	max-width: 92%;
	height: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
}

.header-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 0 0 auto;
	min-width: 0;
}

.brand-mark {
	width: 116px;
	height: 88px;
	object-fit: contain;
}

.brand-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	width: 360px;
	gap: 4px;
	color: #FFFBC3;
	line-height: 1;
	border-left: 2px solid rgba(255, 251, 195, 0.4);
	padding-left: 26px;
}

.brand-years {
	display: flex;
	align-items: center;
	width: 100%;
	color: #FFFBC3;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}

.brand-years span {
	flex: 1;
	height: 2px;
	background: #FFFBC3;
}

.brand-years em {
	padding: 0 4px;
	font-style: normal;
}

.brand-title-row {
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: center;
	width: 100%;
	white-space: nowrap;
}

.brand-logo {
	width: 198px;
	height: auto;
	flex: 0 0 auto;
}

.brand-site-title {
	color: #FFFBC3;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}

.brand-english {
	display: block;
	width: 100%;
	color: #FFFBC3;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.15;
	text-align: center;
	white-space: nowrap;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 44px;
	white-space: nowrap;
	font-size: 22px;
	font-weight: 700;
}

.site-nav a {
	transition: opacity 0.2s ease;
}

.site-nav a:hover {
	opacity: 0.78;
}

.home-page .site-header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	width: 100%;
	height: 80px;
	background: linear-gradient(180deg, #d70000 0%, #d80000 58%, rgba(216, 0, 0, 0.78) 100%);
	box-shadow: none;
}

.home-page .site-header::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: 58px;
	background: linear-gradient(180deg, rgba(216, 0, 0, 0.52) 0%, rgba(226, 31, 39, 0.28) 42%, rgba(226, 31, 39, 0) 100%);
	pointer-events: none;
}

.home-page .header-shell {
	justify-content: space-between;
	width: 1360px;
	gap: 36px;
}

.home-page .site-nav {
	gap: 62px;
	font-size: 22px;
	font-weight: 700;
}

.header-countdown {
	display: none;
}

.home-page .header-countdown {
	display: flex;
	align-items: baseline;
	gap: 12px;
	color: #ffcf25;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
}

.home-page .header-countdown span {
	font-size: 24px;
}

.home-page .header-countdown strong {
	font-size: 26px;
}

.hero-banner {
	position: relative;
	height: 720px;
	overflow: hidden;
}

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

.hero-overlay {
	position: absolute;
	left: 50%;
	right: auto;
	top: 0;
	bottom: 0;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	width: 1360px;
	max-width: 92%;
	color: #fff;
	transform: translateX(-50%);
	pointer-events: none;
}

.hero-countdown {
	margin-right: 18px;
	margin-bottom: 42px;
	display: flex;
	align-items: baseline;
	gap: 18px;
	color: #FFFBC3;
	background: transparent;
	border-radius: 0;
	box-shadow: none;
}

.hero-countdown span {
	font-size: 44px;
	font-weight: 800;
	line-height: 1;
}

.hero-countdown strong {
	font-size: 86px;
	font-weight: 800;
	line-height: 1;
}

.home-page .hero-banner {
	height: auto;
}

.home-page .hero-banner > img {
	height: auto;
	object-position: center top;
}

.section-grid {
	display: grid;
	grid-template-columns: 620px 520px;
	gap: 110px;
	align-items: start;
	justify-content: center;
}

.home-news {
	padding: 51px 0;
}

.home-main {
	background: url("../img/bottom.png") center bottom/100% auto no-repeat;
}

.section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 28px;
}

.center-head {
	justify-content: center;
	position: relative;
}

.section-title,
.page-title {
	margin: 0;
	font-size: 48px;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: #f02b31;
	background: linear-gradient(100deg, #E8323A 0%, #F45A34 18%, #FCE11F 34%, #F45A34 50%, #E8323A 66%, #FCE11F 84%, #E8323A 100%);
	background-size: 420% 100%;
	background-position: 0 50%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: title-gradient-flow 14s linear infinite;
}

@keyframes title-gradient-flow {
	0% {
		background-position: 0 50%;
	}

	100% {
		background-position: 420% 50%;
	}
}

.more-link {
	color: #e20000;
	font-size: 16px;
	margin-bottom: 6px;
}

.center-head .more-link {
	position: absolute;
	right: 0;
	bottom: 8px;
}

.main-news-card {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 0;
	box-shadow: 0 18px 34px rgba(180, 0, 0, 0.12);
}

.main-news-card img {
	width: 100%;
}

.main-news-title {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 18px 22px;
	color: #fff;
	font-size: 19px;
	line-height: 1.4;
	background: linear-gradient(180deg, rgba(193, 0, 0, 0.78), rgba(169, 0, 0, 0.92));
}

.news-list-card {
	margin-top: 16px;
	padding: 10px 22px;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 5px 18px rgba(0, 0, 0, 0.13);
}

.line-news {
	display: grid;
	grid-template-columns: 1fr 80px;
	align-items: center;
	gap: 16px;
	min-height: 48px;
	color: #4b4b4b;
	font-size: 18px;
	border-bottom: 1px solid #eee;
}

.line-news:last-child {
	border-bottom: 0;
}

.line-news span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.line-news time {
	text-align: right;
	color: #d6d6d6;
	font-size: 20px;
}

.countdown-card {
	position: relative;
	min-height: 260px;
	padding: 34px 42px 28px;
	color: #fff;
	background: #e50000;
	border-radius: 26px;
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.countdown-date {
	font-size: 20px;
	line-height: 1.5;
}

.countdown-name {
	margin-top: 14px;
	font-size: 28px;
}

.countdown-content {
	margin-top: 44px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.countdown-content img {
	width: 190px;
	opacity: 0.68;
}

.countdown-number {
	display: flex;
	align-items: baseline;
	gap: 12px;
	white-space: nowrap;
}

.countdown-number span {
	font-size: 24px;
}

.countdown-number strong {
	font-size: 64px;
	font-weight: 300;
	line-height: 1;
}

.countdown-school {
	position: absolute;
	right: 42px;
	bottom: 22px;
	width: 210px;
}

.notice-head {
	margin-top: 0;
}

.notice-list {
	display: grid;
	gap: 0;
}

.notice-item {
	display: grid;
	grid-template-columns: 72px 1fr;
	align-items: center;
	gap: 28px;
	color: #444;
	font-size: 17px;
	line-height: 1.45;
	min-height: 60px;
	border-bottom: 1px solid #bcbcbc;
}

.notice-item time {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #ef343c;
}

.notice-item strong {
	font-size: 21px;
	font-weight: 700;
	line-height: 1;
}

.notice-item time span {
	margin-top: 6px;
	padding-top: 0;
	text-align: center;
	font-size: 10px;
	line-height: 1;
	border-top: 0;
}

.image-section,
.alumni-section {
	padding: 20px 0;
}

.home-carousel {
	position: relative;
	margin-top: 58px;
}

.carousel-track {
	position: relative;
	min-height: 500px;
	overflow: hidden;
}

.image-slide {
	position: absolute;
	top: 78px;
	left: 50%;
	width: 560px;
	opacity: 0;
	transform: translateX(-50%) scale(0.82);
	transition: all 0.35s ease;
	overflow: hidden;
}

.image-slide.is-active {
	z-index: 2;
	top: 0;
	width: 820px;
	opacity: 1;
	transform: translateX(-50%) scale(1);
}

.image-slide.is-prev {
	opacity: 0.58;
	transform: translateX(-128%) scale(1);
}

.image-slide.is-next {
	opacity: 0.58;
	transform: translateX(28%) scale(1);
}

.image-slide img {
	width: 100%;
	height: 340px;
	object-fit: cover;
}

.image-slide.is-active img {
	height: 460px;
}

.image-slide h3 {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 18px;
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
	background: none;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.48);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.image-slide.is-active h3 {
	font-size: 20px;
}

.carousel-arrow {
	position: absolute;
	top: 220px;
	z-index: 4;
	width: 44px;
	height: 60px;
	border: 0;
	border-radius: 0;
	color: #fff;
	background: transparent;
	box-shadow: none;
	cursor: pointer;
	font-size: 44px;
	line-height: 1;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

.carousel-prev {
	left: 270px;
}

.carousel-next {
	right: 270px;
}

.alumni-grid {
	position: relative;
	display: block;
	min-height: 430px;
	margin-top: 98px;
	text-align: center;
}

.alumni-card {
	position: absolute;
	top: 54px;
	left: 50%;
	z-index: 1;
	width: 330px;
	min-width: 0;
	opacity: 0;
	transform: translateX(-50%) scale(0.82);
	transition:
		top 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
		left 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
		opacity 0.38s ease,
		transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
	pointer-events: none;
}

.alumni-card img {
	width: 230px;
	height: 230px;
	margin: 0 auto 32px;
	object-fit: cover;
	border-radius: 50%;
}

.alumni-card.is-prev {
	left: 14%;
	opacity: 1;
	transform: translateX(-50%) scale(1);
	pointer-events: auto;
}

.alumni-card.is-active {
	top: 0;
	left: 50%;
	z-index: 3;
	opacity: 1;
	transform: translateX(-50%) scale(1);
	pointer-events: auto;
}

.alumni-card.is-next {
	left: 86%;
	opacity: 1;
	transform: translateX(-50%) scale(1);
	pointer-events: auto;
}

.alumni-card-main {
	margin-top: -54px;
}

.alumni-card.is-active img,
.alumni-card-main img {
	width: 330px;
	height: 330px;
	margin-bottom: 28px;
}

.alumni-card h3 {
	width: 260px;
	max-width: 100%;
	margin: 0 auto;
	color: #777;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.62;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	word-break: break-all;
}

.alumni-card-main h3 {
	width: 300px;
}

.alumni-card.is-active h3 {
	width: 300px;
}

.alumni-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 26px;
}

.alumni-dots button {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #ddd;
	cursor: pointer;
}

.alumni-dots .is-active {
	background: #e60000;
}

.story-section {
	padding: 0;
}

.story-bg {
	padding: 76px 0;
	background: transparent;
}

.story-section .section-title {
	color: #f02b31;
	background: linear-gradient(100deg, #E8323A 0%, #F45A34 18%, #FCE11F 34%, #F45A34 50%, #E8323A 66%, #FCE11F 84%, #E8323A 100%);
	background-size: 420% 100%;
	background-position: 0 50%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: title-gradient-flow 14s linear infinite;
}

.story-list {
	display: grid;
	gap: 30px;
	margin-top: 30px;
	width: 100%;
	max-width: 100%;
}

.story-item {
	display: grid;
	grid-template-columns: 230px 1fr;
	align-items: center;
	gap: 34px;
	color: #999;
	background: transparent;
}

.story-thumb {
	display: block;
	height: 132px;
	border: 1px solid #aaa;
	background: #fff;
	overflow: hidden;
}

.story-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.story-copy {
	position: relative;
	display: block;
	min-width: 0;
}

.story-copy strong {
	display: block;
	color: #ef343c;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.04em;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.story-copy em {
	position: absolute;
	right: 0;
	top: 2px;
	color: #c7c7c7;
	font-size: 16px;
	font-style: normal;
}

.story-copy span {
	display: block;
	margin-top: 14px;
	color: #999;
	font-size: 17px;
	line-height: 1.82;
	letter-spacing: 0.035em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.site-footer {
	background: #d90000;
	color: #fff;
}

.footer-shell {
	min-height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 70px;
}

.footer-shell img {
	width: 116px;
}

.footer-info {
	font-size: 18px;
	line-height: 1.8;
}

.footer-info p {
	margin: 0;
}

.home-footer {
	min-height: 164px;
}

.home-footer-shell {
	min-height: 164px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 90px;
}

.home-footer-logo {
	width: 420px;
	height: auto;
}

.home-footer-info {
	color: #fff;
}

.home-footer-contact {
	font-size: 18px;
	line-height: 1.7;
}

.home-footer-record {
	margin-top: 16px;
	font-size: 10px;
	line-height: 1.45;
}

.home-footer-info p {
	margin: 0;
}

.image-page-footer {
	height: 138px;
}

.image-footer-shell {
	height: 138px;
	display: grid;
	grid-template-columns: 1fr 1.25fr;
	align-items: center;
	column-gap: 150px;
	color: #fff;
}

.image-footer-group {
	font-size: 19px;
	line-height: 1.22;
}

.image-footer-group p {
	margin: 0;
}

.sub-main,
.detail-main {
	min-height: 650px;
	padding: 50px 0 90px;
}

.news-main {
	padding-bottom: 30px;
}

.page-title {
	margin-bottom: 35px;
}

.news-page-layout {
	display: grid;
	grid-template-columns: 196px 1fr;
	gap: 54px;
	align-items: stretch;
}

.news-poster {
	width: 160px;
	padding: 20px;
	background: #e60000;
	border-radius: 10px;
	box-shadow: none;
	overflow: hidden;
}

.news-poster img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #e60000;
	border-radius: 0;
}

.news-page-list {
	padding-top: 0;
}

.news-page-list a {
	display: grid;
	grid-template-columns: 1fr 90px;
	align-items: center;
	gap: 20px;
	height: 58px;
	font-size: 23px;
	border-bottom: 1px dotted #ccc;
}

.news-page-list span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.news-page-list time {
	text-align: right;
	color: #d6d6d6;
	font-size: 28px;
	font-weight: 300;
}

.pagination {
	display: flex;
	justify-content: center;
	gap: 34px;
	margin-top: 48px;
	color: #d0d0d0;
	font-size: 18px;
}

.pagination .is-active {
	color: #e60000;
}

.image-page-layout {
	display: grid;
	grid-template-columns: 160px 1fr;
	gap: 52px;
	align-items: start;
	min-width: 0;
}

.image-tabs {
	display: grid;
	gap: 30px;
	padding: 30px 22px;
	text-align: center;
	background: #fde8e8;
	border-radius: 10px;
	font-size: 24px;
}

.image-tabs a {
	position: relative;
	display: block;
	padding: 6px 10px 8px;
	color: #777;
	border-radius: 8px;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.image-tabs .is-active {
	color: #e60000;
}

.image-tabs .is-active::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 82px;
	height: 2px;
	background: #e60000;
	transform: translateX(-50%);
}

.image-page-grid article.is-hidden {
	display: none;
}

.image-page-grid>div {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 58px 54px;
	min-width: 0;
	overflow: hidden;
}

.image-page-grid article {
	min-width: 0;
	overflow: hidden;
}

.image-page-grid img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.image-page-grid h2 {
	margin: 28px 0 0;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.45;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	max-height: 2.9em;
	word-break: break-all;
}

.detail-label {
	margin-bottom: 42px;
}

.article-wrap {
	text-align: center;
}

.article-wrap h2 {
	max-width: 1100px;
	margin: 0 auto;
	color: #444;
	font-size: 38px;
	font-weight: 400;
	line-height: 1.45;
	word-break: break-all;
}

.article-line {
	height: 8px;
	max-width: 1220px;
	margin: 28px auto 22px;
	background: #e00000;
}

.article-meta {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 42px;
	color: #b8b8b8;
	font-size: 16px;
}

.article-image {
	width: 980px;
	margin: 54px auto 0;
}

.article-audit {
	width: 980px;
	margin: 28px auto 0;
	text-align: right;
	color: #aaa;
	font-size: 15px;
	line-height: 2.2;
}

.article-audit p {
	margin: 0;
}

.notice-detail2-main {
	padding: 85px 0 0;
	background: #fff;
}

.notice-detail2-label {
	width: 1400px;
	max-width: 92%;
	margin: 0 auto 70px;
	font-size: 50px;
}

.notice-detail2-article {
	width: 1528px;
	max-width: 92%;
	margin: 0 auto;
	color: #555;
}

.notice-detail2-article h2 {
	margin: 0 auto 28px;
	text-align: center;
	color: #333;
	font-size: 42px;
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: 0;
}

.notice-detail2-line {
	height: 8px;
	background: #e00000;
}

.notice-detail2-meta {
	margin: 28px 0 0;
	text-align: center;
	color: #888;
	font-size: 18px;
	line-height: 1.6;
}

.notice-detail2-content {
	width: 1140px;
	max-width: 100%;
	margin: 58px auto 0;
	font-size: 24px;
	line-height: 1.55;
}

.notice-detail2-content p {
	margin: 0 0 24px;
}

.notice-detail2-content .notice-detail2-gap {
	margin-top: 114px;
}

.notice-detail2-content p + p.notice-detail2-image-placeholder {
	margin-top: 92px;
}

.notice-detail2-image-placeholder {
	width: 960px;
	height: 704px;
	margin-left: auto;
	margin-right: auto;
	border: 1px solid #888;
	color: #666;
	text-align: center;
	font-size: 24px;
	line-height: 704px;
}

.notice-detail2-content img,
.notice-detail2-content video {
	display: block;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 50px 0px;
}

.notice-detail2-note {
	float: left;
	width: 1120px;
	margin-top: 64px;
	margin-left: 0;
	color: #f3aa00;
	font-size: 46px;
	line-height: 1.25;
	white-space: nowrap;
	transform: translateX(-294px);
}

.notice-detail2-audit {
	float: right;
	clear: right;
	width: 270px;
	margin-right: -50px;
	color: #777;
	font-size: 20px;
	line-height: 1.25;
	transform: translateX(126px);
}

.notice-detail2-audit + .notice-detail2-audit {
	margin-top: 12px;
}

.notice-detail2-content::after {
	content: "";
	display: block;
	clear: both;
}

@media (max-width: 1440px) {
	.shell,
	.header-shell {
		width: 1180px;
	}

	.site-nav {
		gap: 28px;
		font-size: 20px;
	}

	.brand-logo {
		width: 178px;
	}

	.brand-mark {
		width: 92px;
		height: 70px;
	}

	.brand-copy {
		width: 310px;
	}

	.brand-years {
		font-size: 14px;
	}

	.brand-site-title {
		font-size: 15px;
	}

	.brand-english {
		font-size: 11px;
	}

	.hero-banner {
		height: 540px;
	}

	.home-page .site-header {
		height: 64px;
	}

	.home-page .header-shell {
		height: 64px;
	}

	.home-page .header-shell {
		width: 94%;
		gap: 18px;
	}

	.home-page .site-nav {
		gap: 18px;
		font-size: 16px;
	}

	.home-page .header-countdown {
		gap: 0.8333vw;
	}

	.home-page .header-countdown span,
	.home-page .header-countdown strong {
		font-size: 1.5vw;
	}
}

@media (max-width: 900px) {
	.app-scrollbar {
		top: 12px;
		right: 4px;
		bottom: 12px;
		width: 4px;
		padding: 0;
	}

	.shell,
	.header-shell {
		width: 92%;
		max-width: none;
	}

	.site-header,
	.header-shell {
		height: 70px;
	}

	.brand-copy,
	.brand-years {
		display: none;
	}

	.brand-mark {
		width: 46px;
		height: 36px;
	}

	.header-shell {
		gap: 14px;
	}

	.site-nav {
		flex: 1;
		justify-content: space-between;
		gap: 6px;
		font-size: 10px;
	}

	.hero-banner {
		height: auto;
	}

	.home-page .site-header,
	.home-page .header-shell {
		height: 42px;
	}

	.home-page .header-shell {
		width: 94%;
		gap: 10px;
	}

	.home-page .site-nav {
		gap: 7px;
		font-size: 10px;
	}

	.home-page .header-countdown {
		gap: 3px;
	}

	.home-page .header-countdown span,
	.home-page .header-countdown strong {
		font-size: 10px;
	}

	.hero-countdown {
		margin-right: 10px;
		margin-bottom: 14px;
		gap: 5px;
	}

	.hero-countdown span {
		font-size: 18px;
	}

	.hero-countdown strong {
		font-size: 34px;
	}

	.home-news,
	.image-section,
	.alumni-section,
	.story-section,
	.sub-main,
	.detail-main {
		padding: 22px 0;
	}

	.section-grid,
	.news-page-layout,
	.image-page-layout,
	.story-list,
	.alumni-grid {
		display: block;
	}

	.alumni-grid {
		position: static;
		min-height: 0;
	}

	.section-title,
	.page-title {
		font-size: 34px;
	}

	.main-news-card img {
		height: auto;
	}

	.main-news-title {
		padding: 14px 16px;
		font-size: 14px;
	}

	.news-list-card {
		padding: 14px 18px;
	}

	.line-news {
		grid-template-columns: 1fr 50px;
		min-height: 46px;
		font-size: 13px;
	}

	.line-news time {
		font-size: 13px;
	}

	.notice-panel {
		margin-top: 40px;
	}

	.countdown-card {
		min-height: 210px;
		padding: 20px 22px;
		border-radius: 18px;
	}

	.countdown-date {
		font-size: 14px;
	}

	.countdown-name {
		font-size: 20px;
	}

	.countdown-content {
		margin-top: 28px;
		gap: 12px;
	}

	.countdown-content img {
		width: 138px;
	}

	.countdown-number span {
		font-size: 14px;
	}

	.countdown-number strong {
		font-size: 42px;
	}

	.countdown-school {
		right: 22px;
		bottom: 18px;
		width: 128px;
	}

	.notice-head {
		margin-top: 0;
	}

	.notice-list {
		gap: 0;
	}

	.notice-item {
		grid-template-columns: 48px 1fr;
		gap: 16px;
		font-size: 14px;
		min-height: 52px;
	}

	.notice-item time {
		height: auto;
	}

	.notice-item strong {
		font-size: 17px;
	}

	.notice-item time span {
		font-size: 9px;
	}

	.home-carousel {
		margin-top: 30px;
	}

	.carousel-track {
		min-height: 280px;
	}

	.image-slide,
	.image-slide.is-active,
	.image-slide.is-prev,
	.image-slide.is-next {
		position: static;
		top: auto;
		left: auto;
		width: 100%;
		opacity: 1;
		transform: none;
		display: none;
	}

	.image-slide.is-active {
		position: relative;
		top: auto;
		left: auto;
		margin: 0 auto;
		display: block;
	}

	.image-slide img {
		height: 190px;
		object-fit: cover;
	}

	.image-slide.is-active img {
		height: 190px;
	}

	.image-slide h3 {
		left: 14px;
		right: 14px;
		bottom: 12px;
		padding: 12px 16px;
		font-size: 15px;
	}

	.carousel-arrow {
		top: 95px;
		width: 34px;
		height: 34px;
		font-size: 26px;
		transform: translateY(-50%);
	}

	.carousel-prev {
		left: 8px;
	}

	.carousel-next {
		right: 8px;
	}

	.alumni-grid article,
	.story-item,
	.story-list a {
		margin-top: 18px;
	}

	.alumni-card,
	.alumni-card.is-prev,
	.alumni-card.is-active,
	.alumni-card.is-next {
		position: static;
		width: auto;
		opacity: 1;
		transform: none;
		pointer-events: auto;
	}

	.alumni-card img,
	.alumni-card.is-active img,
	.alumni-card-main img {
		width: 170px;
		height: 170px;
		margin-bottom: 16px;
	}

	.alumni-card.is-active,
	.alumni-card-main {
		margin-top: 18px;
	}

	.alumni-card h3,
	.alumni-card.is-active h3,
	.alumni-card-main h3 {
		width: 260px;
		font-size: 15px;
	}

	.story-bg {
		padding: 42px 0;
	}

	.story-list {
		width: 100%;
	}

	.story-item {
		display: block;
		background: rgba(255, 255, 255, 0.8);
	}

	.story-thumb {
		height: 160px;
	}

	.story-copy {
		padding: 16px 0 0;
	}

	.story-copy strong {
		font-size: 16px;
		white-space: normal;
	}

	.story-copy em {
		position: static;
		display: block;
		margin-top: 6px;
		font-size: 12px;
	}

	.story-copy span {
		font-size: 13px;
		-webkit-line-clamp: 4;
	}

	.footer-shell {
		min-height: 170px;
		justify-content: flex-start;
		gap: 24px;
	}

	.footer-shell img {
		width: 78px;
	}

	.footer-info {
		font-size: 12px;
		line-height: 1.8;
	}

	.home-footer {
		min-height: auto;
	}

	.home-footer-shell {
		min-height: 170px;
		display: block;
		padding-top: 28px;
		padding-bottom: 28px;
	}

	.home-footer-logo {
		width: 260px;
		max-width: 100%;
	}

	.home-footer-info {
		margin-top: 20px;
	}

	.home-footer-contact {
		font-size: 12px;
		line-height: 1.8;
	}

	.home-footer-record {
		margin-top: 12px;
		font-size: 10px;
	}

	.image-page-footer {
		height: auto;
	}

	.image-footer-shell {
		height: auto;
		min-height: 128px;
		display: block;
		padding-top: 28px;
		padding-bottom: 28px;
	}

	.image-footer-group {
		font-size: 12px;
		line-height: 1.65;
	}

	.image-footer-group + .image-footer-group {
		margin-top: 12px;
	}

	.news-poster {
		width: 190px;
		margin: 0 auto 28px;
		padding: 20px;
	}

	.news-poster img {
		height: 320px;
	}

	.news-page-list a {
		grid-template-columns: 1fr 48px;
		height: 40px;
		font-size: 13px;
	}

	.news-page-list time {
		font-size: 14px;
	}

	.image-tabs {
		display: flex;
		justify-content: center;
		margin-bottom: 26px;
		font-size: 17px;
	}

	.image-page-grid>div {
		display: grid;
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.image-page-grid img {
		height: auto;
	}

	.image-page-grid h2 {
		font-size: 16px;
	}

	.article-wrap h2 {
		font-size: 24px;
	}

	.article-line {
		height: 5px;
	}

	.article-meta {
		gap: 12px;
		font-size: 12px;
	}

	.article-image,
	.article-audit {
		width: 100%;
	}

	.notice-detail2-main {
		min-height: 0;
		padding: 42px 0 0;
	}

	.notice-detail2-label {
		width: 92%;
		margin-bottom: 34px;
		font-size: 30px;
	}

	.notice-detail2-article {
		width: 92%;
	}

	.notice-detail2-article h2 {
		margin-bottom: 18px;
		font-size: 28px;
		line-height: 1.32;
	}

	.notice-detail2-line {
		height: 5px;
	}

	.notice-detail2-meta {
		margin-top: 20px;
		font-size: 13px;
		line-height: 1.75;
	}

	.notice-detail2-content {
		width: 100%;
		margin-top: 46px;
		font-size: 18px;
		line-height: 1.6;
	}

	.notice-detail2-content p {
		margin-bottom: 18px;
	}

	.notice-detail2-content .notice-detail2-gap {
		margin-top: 58px;
	}

	.notice-detail2-image-placeholder {
		width: 100%;
		height: 220px;
		line-height: 220px;
		font-size: 18px;
	}

	.notice-detail2-note,
	.notice-detail2-audit {
		float: none;
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		transform: none;
	}

	.notice-detail2-note {
		margin-top: 34px;
		font-size: 24px;
		white-space: normal;
	}

	.notice-detail2-audit {
		margin-top: 18px;
		font-size: 14px;
		line-height: 1.35;
		text-align: right;
	}

	.notice-detail2-audit + .notice-detail2-audit {
		margin-top: 8px;
	}
}

.detail-article-audit{
	width: 1140px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    line-height: 40px;
    align-items: flex-end;
    padding-bottom: 20px;
    margin: 0 auto;

}

.notice-detail2-content img, .notice-detail2-content video{
    display: block;
    margin: 0 auto;
    width: min(100%, 1068px);
    height: auto;
}



.notice-detail2-content #vjs_video_3 {
    display: block;
    margin: 0 auto;
    width: min(100%, 1068px);
}

section .hero-banner-image{
 margin-top:40px;
}


.pagination {
	margin-top: 37px;
	padding-bottom: 4px;
	display: flex;
    align-items: center;
    justify-content: center;
}
.pagination .page-info,.pagination #info{
	display:flex;
	align-items: center;
	flex-wrap:wrap;
}
.pagination #info .currentlinkspan{
	border-color:#e21717 !important;
}
.pagination #info .currentlinkspan,.pagination #info a{
	margin-right:17px;
	color:#e21717;
	width: 43.2px;
	height: 43.2px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1.2px solid rgba(226, 23, 23, 0.14);
	cursor: pointer;
	font-size: 12px;
	text-decoration: none;
	margin-bottom:10px;
}

