* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: #313131;
	background: #fff;
	font-size: 14px;
	line-height: 1.7;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
	outline: 2px solid #1078c9;
	outline-offset: 3px;
}

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

button,
input {
	color: inherit;
}

button {
	cursor: pointer;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1,
h2,
h3,
p {
	margin: 0;
}

.site {
	min-width: 320px;
	overflow: hidden;
}

.container {
	width: calc(100% - 32px);
	max-width: 1400px;
	margin: 0 auto;
}

.utility {
	min-height: 30px;
	color: rgba(255, 255, 255, 0.86);
	background: var(--brand-teal-dark);
	border-bottom: 0;
	font-size: 12px;
	position: relative;
}

.utility .container,
.brandline .container,
.primary-nav .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.primary-nav{
    position: relative;
	background-size: cover;
}
.primary-nav::before{
      content:"";
      position:absolute;
      inset:0;
      background:var(--brand-teal);
      opacity:0.68;
      pointer-events:none;
    }
    .primary-nav >*{
        position: relative;
        z-index: 2;
    }
.utility .container {
    position: relative;
    z-index: 9;
	min-height: 30px;
	background-size: cover;
}

.utility-links {
	display: flex;
	min-height: 30px;
}

.utility-links li {
	position: relative;
	display: flex;
	align-items: center;
	padding: 0 15px;
	border-left: 0;
}

.utility-links li:first-child {
	border-left: 0;
}

.utility-links li:hover .qr-popover {
	display: block;
}

.qr-popover {
	position: absolute;
	z-index: 5;
	top: 29px;
	left: 50%;
	display: none;
	width: 116px;
	padding: 10px;
	background: #fff;
	border: 1px solid #e4e4e4;
	transform: translateX(-50%);
}

.qr-popover img:first-child {
	display: none;
}

.qr-popover img:last-child {
	width: 100%;
}

.brandline {
	min-height: 94px;
	background: #fff;
}

.brandline .container {
	min-height: 94px;
}

.brand-mark img {
	width: 52px;
	height: 52px;
	object-fit: contain;
}

.hotline {
	display: flex;
	align-items: center;
	gap: 10px;
}

.hotline > img {
	width: 34px;
	animation: metrics-shadow-sway 4.8s ease-in-out infinite;
}

.hotline strong {
	display: block;
	color: #157fc8;
	font-size: 23px;
	line-height: 1.25;
	font-weight: 700;
	letter-spacing: 0.4px;
}

.hotline span {
	display: block;
	color: #7a7f84;
	font-size: 12px;
}

.primary-nav {
	color: #fff;
	background: #167ec5;
}

.primary-nav .container {
	width: 100%;
	max-width: none;
}

.nav-list {
	display: flex;
	width: 100%;
	min-height: 52px;
	align-items: stretch;
	justify-content: space-between;
}

.nav-list li {
	display: flex;
	flex: 1;
	justify-content: center;
}

.nav-list a {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	font-size: 16px;
	transition: background-color 0.2s ease;
}

.nav-list li.active a,
.nav-list a:hover {
	background: #0866ad;
}

.nav-trigger {
	display: none;
}

.hero {
	position: relative;
	aspect-ratio: 1920 / 500;
	min-height: 0;
	overflow: hidden;
	background: #e8f0f4;
}

.hero .swiper,
.hero .swiper-wrapper,
.hero .swiper-slide {
	height: 100%;
	min-height: 0;
}

.hero .swiper {
	overflow: hidden;
}

.hero .swiper-wrapper {
	display: flex;
	width: 100%;
	transition: transform 0.78s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-slide {
	position: relative;
	flex: 0 0 100%;
}

.hero-slide img {
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
	object-position: center 45%;
}

.hero-slide:nth-child(1) img {
	object-position: center 36%;
}

.hero-slide:nth-child(2) img {
	object-position: center 38%;
}

.hero-slide:nth-child(3) img {
	object-position: center 24%;
}

.slider-dots {
	position: absolute;
	z-index: 2;
	bottom: 20px;
	left: 50%;
	display: flex;
	gap: 10px;
	transform: translateX(-50%);
}

.slider-dots button {
	width: 11px;
	height: 11px;
	padding: 0;
	background: #fff;
	border: 1px solid #fff;
	border-radius: 50%;
	opacity: 0.8;
	transition:
		width 0.2s ease,
		border-radius 0.2s ease,
		background-color 0.2s ease;
}

.slider-dots button.is-current {
	width: 28px;
	background: #1c80c6;
	border-radius: 8px;
	opacity: 1;
}

.slider-arrow {
	position: absolute;
	z-index: 2;
	top: 50%;
	display: flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	padding: 10px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(19, 92, 139, 0.18);
	border-radius: 50%;
	transform: translateY(-50%);
	transition:
		background-color 0.2s ease,
		transform 0.2s ease;
}

.slider-arrow:hover {
	background: #fff;
	transform: translateY(-50%) scale(1.06);
}

.slider-arrow.previous {
	left: 20px;
}

.slider-arrow.next {
	right: 20px;
}

.slider-arrow img {
	width: 100%;
	height: 100%;
}

.metrics-wrap {
	position: relative;
	z-index: 3;
	margin-top: -25px;
}

.metrics-wrap .container {
	position: relative;
	padding: 26px 60px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(40, 61, 76, 0.13);
}

.metrics {
	display: grid;
	/* grid-template-columns: 1fr 1px 1fr 1px 1fr; */
	grid-template-columns: 1fr 1fr 1fr;
	align-items: center;
	text-align: center;
}

.metrics strong {
	display: block;
	color: #147bc1;
	font-size: 22px;
	line-height: 1.25;
}

.metrics b {
	font-size: 38px;
	font-weight: bold;
}

.metrics p {
	color: #717b83;
	font-size: 15px;
}

.metrics .divider {
	display: flex;
	justify-content: center;
}

.metrics .divider img {
	max-height: 50px;
}

.metrics-shadow {
	position: absolute;
	right: 16px;
	bottom: -17px;
	width: 160px;
	opacity: 0.55;
	transform-origin: right bottom;
	animation: metrics-shadow-sway 4.8s ease-in-out infinite;
}

@keyframes metrics-shadow-sway {
	0%,
	100% {
		transform: translate3d(0, 0, 0) rotate(0);
	}

	35% {
		transform: translate3d(-5px, -3px, 0) rotate(-1.2deg);
	}

	70% {
		transform: translate3d(3px, 2px, 0) rotate(0.9deg);
	}
}

.section {
	padding: 72px 0;
}

.section-heading {
	margin-bottom: 36px;
	text-align: center;
}

.section-heading h2 {
	color: #222;
	font-size: 27px;
	font-weight: 500;
	line-height: 1.35;
}

.section-heading h2 span {
	color: #147bc1;
}

.section-heading > img {
	width: 38px;
	margin: 12px auto 0;
	animation: metrics-shadow-sway 4.8s ease-in-out infinite;
}

.section-heading.left {
	text-align: left;
}

.section-heading.left > img {
	margin-left: 0;
}

.section-heading.right {
	text-align: right;
}

.section-heading.right > img {
	margin-right: 0;
}

.course-feature {
	padding-top: 76px;
}

.category-switch {
	display: flex;
	min-height: 42px;
	align-items: center;
	margin-bottom: 26px;
	border-bottom: 1px solid #e3e7e9;
}

.category-switch strong {
	color: #404447;
	font-size: 15px;
}

.category-switch ul {
	display: flex;
	height: 42px;
	margin-left: 14px;
}
.category-switch button,
.category-switch a {
	display: inline-block;
	height: 42px;
	padding: 0 20px;
	color: #626a70;
	background: transparent;
	border: 0;
	border-bottom: 2px solid transparent;
	font-size: 15px;
}
.category-switch button.current,
.category-switch button:hover,
.category-switch a.current,
.category-switch a:hover {
	color: #127ac1;
	border-bottom-color: #127ac1;
}

.category-switch > a {
	margin-left: auto;
	color: #7d858a;
}
.category-switch > button:hover,
.category-switch > a:hover {
	color: #147bc1;
}

.course-deck {
	display: none;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.course-deck.current,
.course-deck.is-visible {
	display: grid;
}

.feature-course {
	overflow: hidden;
	background: #fff;
	border: 1px solid #edf0f1;
	transition:
		box-shadow 0.25s ease,
		transform 0.25s ease;
}

.feature-course:hover {
	box-shadow: 0 12px 26px rgba(30, 53, 68, 0.14);
	transform: translateY(-4px);
}

.feature-course > a {
	display: block;
	overflow: hidden;
}

.feature-course > a img {
	width: 100%;
	aspect-ratio: 1.8;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.feature-course:hover > a img {
	transform: scale(1.04);
}

.course-deck[data-panel="foundation"] .feature-course:nth-child(3) > a,
.course-catalog > li:nth-child(3) .catalog-image {
	background: #e6f4f1 url("../images/course-chinese-cover.svg") center / cover
		no-repeat;
}

.course-deck[data-panel="foundation"] .feature-course:nth-child(3) > a img,
.course-catalog > li:nth-child(3) .catalog-image > img {
	/* opacity: 0; */
}

.feature-course > div {
	padding: 18px 20px 22px;
}

.feature-course h3 {
	overflow: hidden;
	height: 51px;
	margin-bottom: 10px;
	color: #333;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
}

.feature-course h3:hover {
	color: #137dc4;
}

.tag-row {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-bottom: 12px;
}

.tag-row span {
	padding: 1px 7px;
	color: #2585c6;
	background: #edf7fc;
	font-size: 12px;
	line-height: 1.75;
}

.feature-course p {
	min-height: 66px;
	color: #7b8286;
	font-size: 13px;
	line-height: 1.7;
}

.action-button {
	display: inline-flex;
	min-width: 100px;
	justify-content: center;
	margin-top: 13px;
	padding: 7px 14px;
	color: #fff;
	background: #147bc1;
	transition: background-color 0.2s ease;
}

.action-button:hover {
	background: #075e9e;
}

.team-feature {
	position: relative;
	overflow: hidden;
	padding: 70px 0 78px;
	color: #fff;
	background: #2180bd;
}

.team-feature .background-image,
.tool-strip .background-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.28;
}

.team-feature .container,
.tool-strip .container {
	position: relative;
}

.team-feature .section-heading h2 {
	color: #fff;
}

.team-feature .section-heading h2 span {
	color: #fff;
}

.team-feature .section-heading > img {
	filter: brightness(0) invert(1);
}

.team-carousel,
.news-carousel {
	position: relative;
}

.team-carousel .swiper {
	overflow: hidden;
}

.team-carousel .swiper-wrapper {
	display: flex;
	gap: 0px;
}

.team-carousel .swiper-slide {
	min-width: calc((100% - 40px) / 3);
}

.team-card {
	display: block;
	height: 100%;
	background: #fff;
	color: #333;
}

.team-card .portrait {
	position: relative;
	overflow: hidden;
}

.team-card .portrait > img {
	width: 100%;
	aspect-ratio: 2.24;
	object-fit: cover;
	object-position: center 30%;
}

.team-card .portrait p {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 7px 12px;
	color: #fff;
	background: rgba(0, 0, 0, 0.5);
	font-size: 13px;
	text-align: center;
}

.team-card .copy {
	min-height: 126px;
	padding: 18px 19px;
}

.team-card h3 {
	margin-bottom: 6px;
	color: #177dc0;
	font-size: 18px;
	font-weight: 500;
}

.team-card .copy p {
	color: #72787c;
	font-size: 13px;
	line-height: 1.75;
}

.carousel-control {
	position: absolute;
	z-index: 2;
	top: 50%;
	display: flex;
	width: 38px;
	height: 38px;
	align-items: center;
	justify-content: center;
	padding: 9px;
	background: #fff;
	border: 1px solid #d6e0e5;
	border-radius: 50%;
	transform: translateY(-50%);
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease;
}

.carousel-control.previous {
	left: -50px;
}

.carousel-control.next {
	right: -50px;
}

.carousel-control:hover {
	background: #147bc1;
	border-color: #147bc1;
	transform: translateY(-50%) scale(1.06);
}

.carousel-control img {
	width: 100%;
}

.case-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.case-grid li {
	position: relative;
	overflow: hidden;
	min-height: 174px;
}

.case-grid .photo > img {
	width: 100%;
	aspect-ratio: 1.25;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.case-grid li:hover .photo > img {
	transform: scale(1.05);
}

.case-grid .caption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 12px 14px;
	color: #fff;
	background: rgba(15, 119, 121, 0.9);
}

.case-grid .caption strong {
	display: block;
	font-size: 15px;
	font-weight: 500;
}

/* .case-grid .caption span,
.case-grid .summary {
	display: none;
} */
.case-grid .caption span {
	display: flex;
	margin: 4px 0px;
}
.case-grid .caption strong,
.case-grid .caption span {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
}
.case-grid .caption .summary {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}
.more-link {
	margin-top: 32px;
	text-align: center;
}

.more-link a {
	display: inline-flex;
	min-width: 128px;
	justify-content: center;
	padding: 9px 20px;
	color: #187dc0;
	border: 1px solid #187dc0;
	transition:
		color 0.2s ease,
		background-color 0.2s ease;
}

.more-link a:hover {
	color: #fff;
	background: #187dc0;
}

.environment-grid,
.partner-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 10px;
}

.environment-section {
	overflow: hidden;
}

.environment-section .section-heading {
	padding: 0 16px;
}

.environment-grid {
	width: 100%;
	grid-auto-flow: dense;
	grid-auto-rows: clamp(118px, 9.1vw, 174px);
	gap: 12px;
}

.environment-grid li {
	position: relative;
	overflow: hidden;
}

.environment-grid li:nth-child(1) {
	grid-column: span 2;
	grid-row: span 2;
}

.environment-grid li:nth-child(2),
.environment-grid li:nth-child(6),
.environment-grid li:nth-child(8) {
	grid-column: span 2;
}

.environment-grid li:nth-child(11) {
	grid-column: span 2;
	grid-row: span 2;
}

.environment-grid li:nth-child(12) {
	grid-column: span 4;
}

.environment-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.environment-grid li:hover img {
	transform: scale(1.04);
}

.environment-arrow {
	position: absolute;
	z-index: 1;
	right: 18px;
	bottom: 18px;
	display: flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	background: rgba(20, 123, 193, 0.92);
	border-radius: 50%;
	opacity: 0;
	transform: translate3d(-8px, 8px, 0);
	transition:
		opacity 0.25s ease,
		transform 0.25s ease,
		background-color 0.25s ease;
}

.environment-arrow img {
	width: 19px;
	height: 19px;
	filter: brightness(0) invert(1);
	transform: none;
}

.environment-grid li:hover .environment-arrow {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.environment-grid li:hover .environment-arrow:hover {
	background: #0c629c;
}

.callout {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	min-height: 152px;
	padding: 28px 20px;
	overflow: hidden;
	color: #fff;
	background: #0f5f97;
}

.callout::after {
	position: absolute;
	inset: 0;
	background: rgba(5, 45, 78, 0.63);
	content: "";
}

.callout .background-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 45%;
}

.callout-content,
.callout a {
	position: relative;
	z-index: 1;
}

.callout-content {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.callout-content strong {
	font-size: 22px;
	font-weight: 500;
}

.callout-content span {
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
}

.callout a {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 9px 18px;
	border: 1px solid rgba(255, 255, 255, 0.8);
}

.callout a img {
	width: 17px;
	height: 17px;
	filter: brightness(0) invert(1);
}

.news-carousel .swiper {
	overflow: hidden;
}

.news-carousel .swiper-wrapper {
	display: flex;
	gap: 0px;
}

.news-carousel .swiper-slide {
	min-width: calc((100% - 40px) / 3);
}

.news-card {
	height: 100%;
	border: 1px solid #e9edef;
	background: #fff;
	transition: box-shadow 0.25s ease;
}

.news-card:hover {
	box-shadow: 0 8px 22px rgba(30, 53, 68, 0.13);
}

.news-card > a > img {
	width: 100%;
	aspect-ratio: 1.68;
	object-fit: cover;
}

.news-card .copy {
	padding: 17px 17px 14px;
}

.news-card h3 {
	overflow: hidden;
	display: flex;
	align-items: flex-start;
	gap: 7px;
	height: 50px;
	color: #31363a;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
}

.news-card h3 em {
	padding: 1px 5px;
	color: #fff;
	background: #e2493f;
	font-size: 11px;
	font-style: normal;
	line-height: 1.7;
}

.news-card .excerpt {
	overflow: hidden;
	height: 44px;
	margin: 8px 0 13px;
	color: #777f84;
	font-size: 13px;
	line-height: 1.7;
}

.news-meta {
	display: flex;
	justify-content: space-between;
	padding-top: 10px;
	color: #9aa0a4;
	border-top: 1px solid #edf0f1;
	font-size: 12px;
}

.news-meta span {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.news-meta img {
	width: 14px;
	height: 14px;
	object-fit: contain;
}

.news-carousel .carousel-control {
	background: #fff;
}

.team-carousel .carousel-control:hover img,
.news-carousel .carousel-control:hover img {
	filter: brightness(0) invert(1);
}

.news-carousel .carousel-control.previous {
	left: -50px;
}

.news-carousel .carousel-control.next {
	right: -50px;
}

.partner-logo-loop {
	overflow: hidden;
	padding: 8px 0;
	border-top: 1px solid #edf0f1;
	border-bottom: 1px solid #edf0f1;
}

.partner-logo-track {
	display: flex;
	width: max-content;
	gap: 46px;
	will-change: transform;
}

.partner-logo-group {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 26px;
}

.partner-logo-group li {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
}

.partner-logo-group li + li::before {
	display: block;
	width: 1px;
	height: 21px;
	margin-right: 26px;
	background: #d9e0e4;
	content: "";
}

.partner-logo-group a {
	display: block;
	padding: 14px 2px;
	color: #6d7880;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 1px;
	line-height: 1.4;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.partner-logo-group a:hover {
	color: #147bc1;
}

.tool-strip {
	position: relative;
	overflow: hidden;
	padding: 34px 0;
	color: #fff;
	background: #145d8b url("../images/bg-tools-library.jpg") center / cover
		no-repeat;
}

.tool-strip::before {
	position: absolute;
	inset: 0;
	background: rgba(15, 119, 121, 0.84);
	content: "";
}

.tool-strip .background-image {
	display: none;
}

.tool-list {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 4px;
}

.tool-list a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 6px;
	font-size: 14px;
}

.tool-list i {
	display: flex;
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: center;
}

.tool-list i img {
	max-width: 24px;
	max-height: 24px;
	filter: brightness(0) invert(1);
}

.site-footer {
	color: #d7efec;
	background: var(--brand-teal-dark);
	border-top: 4px solid var(--brand-yellow);
}

.footer-main {
	padding: 33px 0 28px;
}

.footer-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	margin-bottom: 18px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-nav li {
	padding: 0 14px;
	border-left: 1px solid rgba(255, 255, 255, 0.35);
	line-height: 1;
}

.footer-nav li:first-child {
	padding-left: 0;
	border-left: 0;
}

.footer-nav a,
.footer-links a {
	color: #f1fbfa;
	transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-links a:hover {
	color: var(--brand-yellow);
}

.footer-contact {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-bottom: 10px;
}

.footer-contact span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.footer-contact img {
	width: 16px;
}

.footer-links {
	font-size: 13px;
}

.footer-links a {
	margin-left: 15px;
}

.copyright {
	padding: 13px 16px;
	color: #b9dfdc;
	background: #0a5d5f;
	font-size: 12px;
	text-align: center;
}

.floating-contact {
	position: fixed;
	z-index: 8;
	right: 20px;
	bottom: 88px;
	width: 116px;
	overflow: hidden;
	color: #fff;
	background: transparent;
	border: 1px solid rgba(15, 119, 121, 0.3);
	border-radius: 6px;
	text-align: center;
	box-shadow: 0 8px 22px rgba(12, 71, 73, 0.2);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.floating-contact:hover {
	transform: translateY(-3px);
	box-shadow: 0 11px 26px rgba(12, 71, 73, 0.28);
}

.service-shortcut {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 15px 10px 13px;
	background: var(--brand-teal);
	transition: background-color 0.2s ease;
}

.service-shortcut:hover {
	background: var(--brand-teal-dark);
}

.service-shortcut img {
	width: 30px;
	height: 30px;
	margin-bottom: 6px;
	object-fit: contain;
}

.service-shortcut strong {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.05em;
}

.service-shortcut small {
	color: rgba(255, 255, 255, 0.78);
	font-size: 8px;
	letter-spacing: 0.7px;
}

.contact-number {
	padding: 10px 7px 11px;
	color: #fff;
	background: #0a5d5f;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-number strong,
.contact-number span {
	display: block;
}

.contact-number strong {
	color: rgba(255, 255, 255, 0.78);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.08em;
}

.contact-number span {
	margin-top: 2px;
	color: var(--brand-yellow);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.3px;
}

.floating-contact .contact-number {
	display: none;
}

.page-content {
	min-height: 500px;
	padding: 26px 0 66px;
	background: #fff;
}

.page-gray {
	background: #f5f7f8;
}

.breadcrumb {
	margin-bottom: 23px;
	padding-bottom: 14px;
	color: #818a8f;
	border-bottom: 1px solid #edf0f1;
	font-size: 13px;
}

.breadcrumb a:hover {
	color: #147bc1;
}

.page-visual {
	position: relative;
	overflow: hidden;
	height: 270px;
	color: #fff;
}

.page-visual > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-visual > div {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: rgba(0, 86, 146, 0.3);
	text-align: center;
}

.page-visual h1 {
	font-size: 32px;
	font-weight: 500;
}

.page-visual i {
	width: 34px;
	height: 2px;
	margin: 12px 0;
	background: #fff;
}

.page-visual p {
	font-size: 15px;
	letter-spacing: 3px;
}

.profile-section,
.advantage-section,
.timeline-section {
	padding: 74px 0;
}

.profile-section {
	text-align: center;
}

.profile-section .container > p {
	max-width: 930px;
	margin: 0 auto;
	color: #61686c;
	font-size: 15px;
	text-align: left;
	line-height: 2;
}

.profile-title {
	margin-bottom: 30px;
}

.profile-title h2 {
	color: #9ba2a6;
	font-size: 17px;
	font-weight: 400;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.profile-title p {
	color: #333;
	font-size: 27px;
	letter-spacing: 7px;
}

.profile-title i {
	display: block;
	width: 36px;
	height: 2px;
	margin: 14px auto 0;
	background: #147bc1;
}

.advantage-section {
	background: #f5f8fa;
}

.blue-title {
	margin-bottom: 32px;
	color: #197fc1;
	font-size: 25px;
	font-weight: 500;
	text-align: center;
}

.advantages {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.advantages li {
	padding: 29px 24px;
	background: #fff;
	text-align: center;
}

.advantages .icon {
	display: flex;
	width: 54px;
	height: 54px;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}

.advantages .icon img {
	max-height: 51px;
}

.advantages h3 {
	margin-bottom: 8px;
	color: #34393c;
	font-size: 17px;
	font-weight: 500;
}

.advantages p {
	color: #7b8388;
	font-size: 13px;
	line-height: 1.85;
}

.timeline {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 13px;
}

.timeline li {
	position: relative;
	padding: 20px 17px 14px;
	border-top: 2px solid #1b80c1;
}

.timeline li::before {
	position: absolute;
	top: -7px;
	left: 0;
	width: 12px;
	height: 12px;
	background: #1b80c1;
	border-radius: 50%;
	content: "";
}

.timeline h3 {
	margin-bottom: 8px;
	color: #197fc1;
	font-size: 17px;
	font-weight: 500;
}

.timeline p {
	color: #727a7e;
	font-size: 12px;
	line-height: 1.8;
}

.course-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 260px;
	gap: 30px;
}

.course-layout .category-switch {
	grid-column: 1 / -1;
}

.course-catalog {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.catalog-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid #e9edef;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.catalog-card:hover {
	box-shadow: 0 8px 20px rgba(35, 55, 69, 0.13);
	transform: translateY(-3px);
}

.catalog-image {
	position: relative;
	overflow: hidden;
}

.catalog-image > img {
	width: 100%;
	aspect-ratio: 1.65;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.catalog-card:hover .catalog-image > img {
	transform: scale(1.04);
}

.catalog-image span {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 5px 9px;
	color: #fff;
	background: rgba(0, 0, 0, 0.52);
	font-size: 11px;
	white-space: nowrap;
}

.catalog-card h3 {
	overflow: hidden;
	height: 50px;
	margin: 11px 12px;
	color: #333;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.7;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.catalog-card p {
	display: flex;
	justify-content: space-between;
	padding: 10px 12px 12px;
	color: #93999c;
	font-size: 12px;
}

.catalog-card p span {
	color: #167dc2;
}

.recommendations {
	padding: 15px;
	align-self: start;
	background: #f4f7f9;
}

.recommendations h2 {
	margin-bottom: 14px;
	padding-bottom: 10px;
	color: #177dc0;
	border-bottom: 1px solid #dfe8ed;
	font-size: 18px;
	font-weight: 500;
}

.recommendations .catalog-card {
	margin-top: 13px;
}

.recommendations .catalog-card:first-of-type {
	margin-top: 0;
}

.pagination {
	display: flex;
	justify-content: center;
	gap: 7px;
	margin-top: 38px;
}

.pagination a {
	min-width: 31px;
	padding: 4px 8px;
	color: #6f787d;
	border: 1px solid #e1e5e7;
	text-align: center;
}

.pagination a.active,
.pagination a:hover {
	color: #fff;
	background: #147bc1;
	border-color: #147bc1;
}

.team-banner {
	position: relative;
	height: 230px;
	overflow: hidden;
}

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

.course-banner {
	height: 250px;
	margin: -26px 0 30px;
}

.course-banner img {
	object-position: center 46%;
}

.team-page {
	padding: 55px 0 70px;
}

.teacher-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.teacher-grid .team-card {
	border: 1px solid #e9edef;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.teacher-grid .team-card:hover {
	box-shadow: 0 10px 22px rgba(32, 54, 68, 0.13);
	transform: translateY(-4px);
}

.teacher-grid > li {
	overflow: hidden;
	border: 1px solid #e2e8eb;
	background: #fff;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.teacher-grid > li:hover {
	box-shadow: 0 10px 22px rgba(32, 54, 68, 0.13);
	transform: translateY(-4px);
}

.teacher-grid > li > a {
	display: block;
}

.teacher-grid .photo {
	position: relative;
	overflow: hidden;
}

.teacher-grid .photo > img {
	width: 100%;
	aspect-ratio: 1.12;
	object-fit: cover;
	object-position: center 22%;
	transition: transform 0.3s ease;
}

.teacher-grid > li:hover .photo > img {
	transform: scale(1.04);
}

.teacher-grid .label {
	display: none;
}

.teacher-grid .copy {
	padding: 16px 18px 18px;
}

.teacher-grid .copy h2 {
	margin-bottom: 5px;
	color: #177dc0;
	font-size: 18px;
	font-weight: 500;
}

.teacher-grid .copy p {
	color: #737c81;
	font-size: 13px;
}

.service-list > li {
	padding: 0;
	overflow: hidden;
	border: 1px solid #e2e8eb;
	background: #fff;
	text-align: left;
}

.service-list > li > img {
	width: 100%;
	aspect-ratio: 1.8;
	object-fit: cover;
}

.service-list .service-copy {
	padding: 22px 23px 24px;
}

.service-list .service-copy > strong,
.service-list .service-copy > i {
	display: none;
}

.service-list .service-copy h2 {
	margin-bottom: 9px;
	color: #343b3f;
	font-size: 18px;
	font-weight: 500;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
}

.service-list .service-copy p {
	color: #7b858a;
	font-size: 13px;
	line-height: 1.85;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.content-columns {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: 30px;
}

.article-list {
	border-top: 1px solid #e5eaed;
}

.article-list > article {
	display: grid;
	grid-template-columns: 190px minmax(0, 1fr);
	column-gap: 21px;
	padding: 19px 4px;
	border-bottom: 1px solid #e5eaed;
}

.article-list > article > img {
	grid-row: span 3;
	width: 190px;
	aspect-ratio: 1.65;
	object-fit: cover;
}

.article-list > article h2 {
	margin-bottom: 7px;
	color: #363b3e;
	font-size: 17px;
	font-weight: 500;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
}

.article-list > article h2 a:hover {
	color: #147bc1;
}

.article-list > article h2 em {
	margin-right: 7px;
	padding: 1px 5px;
	color: #fff;
	background: #e2493f;
	font-size: 11px;
	font-style: normal;
	font-weight: 400;
}

.article-list > article .article-excerpt {
	color: #81898d;
	font-size: 13px;
	line-height: 1.75;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.article-list > article .news-meta {
	justify-content: flex-start;
	gap: 25px;
	margin-top: 10px;
	border-top: 0;
}

.hot-list {
	align-self: start;
	padding: 18px;
	background: #f4f7f9;
}

.hot-list > h2 {
	margin-bottom: 12px;
	padding-bottom: 9px;
	color: #177dc0;
	border-bottom: 1px solid #dfe7eb;
	font-size: 18px;
	font-weight: 500;
}

.hot-list li + li {
	margin-top: 14px;
}

.hot-list li a {
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr);
	gap: 10px;
}

.hot-list figure {
	position: relative;
	margin: 0;
	overflow: hidden;
}

.hot-list figure img {
	width: 76px;
	height: 58px;
	object-fit: cover;
}

.hot-list figure span {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	width: 19px;
	height: 19px;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: #177dc0;
	font-size: 11px;
}

.hot-list h3 {
	overflow: hidden;
	height: 39px;
	color: #4f575b;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.55;
}

.hot-list a:hover h3 {
	color: #147bc1;
}

.hot-list p {
	margin-top: 2px;
	color: #9aa1a4;
	font-size: 11px;
}

.article-list {
	border-top: 1px solid #e7ebed;
}

.article-list > li {
	border-bottom: 1px solid #e7ebed;
}

.article-list > li > a {
	display: grid;
	grid-template-columns: 190px minmax(0, 1fr) 105px;
	gap: 21px;
	align-items: center;
	padding: 19px 5px;
}

.article-list .pic img {
	width: 190px;
	aspect-ratio: 1.65;
	object-fit: cover;
}

.article-list h2 {
	margin-bottom: 7px;
	color: #363b3e;
	font-size: 17px;
	font-weight: 500;
}

.article-list a:hover h2 {
	color: #147bc1;
}

.article-excerpt {
	color: #81898d;
	font-size: 13px;
	line-height: 1.75;
}

.article-list time {
	color: #9aa1a5;
	font-size: 13px;
	text-align: right;
}

.article-list time b {
	display: block;
	color: #177dc0;
	font-size: 23px;
	font-weight: 400;
	line-height: 1.2;
}

.case-grid.page-list {
	grid-template-columns: repeat(3, 1fr);
}

.case-grid.page-list li {
	min-height: 205px;
}

.service-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

.service-list li {
	padding: 30px 25px;
	border: 1px solid #e5eaed;
	text-align: center;
}

.service-list .icon {
	display: flex;
	height: 56px;
	align-items: center;
	justify-content: center;
	margin-bottom: 13px;
}

.service-list .icon img {
	max-height: 49px;
}

.service-list h2 {
	margin-bottom: 8px;
	color: #34393d;
	font-size: 18px;
	font-weight: 500;
}

.service-list p {
	color: #7c8589;
	font-size: 13px;
}

.signup-card {
	max-width: 780px;
	margin: 0 auto;
	padding: 44px 70px 50px;
	border: 1px solid #e4e9eb;
	box-shadow: 0 8px 22px rgba(40, 58, 68, 0.08);
}

.signup-card header {
	margin-bottom: 30px;
	text-align: center;
}

.signup-card h1 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: #177dc0;
	font-size: 24px;
	font-weight: 500;
}

.signup-card h1 img {
	width: 27px;
}

.signup-card header p {
	margin-top: 10px;
	color: #858d91;
	font-size: 13px;
}

.signup-open {
	min-width: 172px;
	margin-top: 26px;
	padding: 11px 24px;
	color: #fff;
	background: #147bc1;
	border: 1px solid #147bc1;
	font-size: 15px;
	transition:
		background-color 0.2s ease,
		transform 0.2s ease;
}

.signup-open:hover {
	background: #0966a8;
	transform: translateY(-2px);
}

.signup-modal {
	position: fixed;
	z-index: 30;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(20, 35, 44, 0);
	visibility: hidden;
	opacity: 0;
	transition:
		opacity 0.25s ease,
		visibility 0.25s ease,
		background-color 0.25s ease;
}

.signup-modal.is-open {
	background: rgba(20, 35, 44, 0.56);
	visibility: visible;
	opacity: 1;
}

.signup-dialog {
	position: relative;
	width: min(100%, 620px);
	max-height: min(790px, calc(100vh - 40px));
	padding: 34px 46px 38px;
	overflow-y: auto;
	background: #fff;
	box-shadow: 0 18px 58px rgba(0, 0, 0, 0.22);
	opacity: 0;
	transform: translateY(22px) scale(0.98);
	transition:
		opacity 0.3s ease,
		transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.signup-modal.is-open .signup-dialog {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.signup-close {
	position: absolute;
	top: 12px;
	right: 15px;
	width: 32px;
	height: 32px;
	padding: 0;
	color: #738089;
	background: transparent;
	border: 0;
	font-size: 26px;
	line-height: 1;
	transition:
		color 0.2s ease,
		transform 0.2s ease;
}

.signup-close:hover {
	color: #147bc1;
	transform: rotate(90deg);
}

.signup-dialog-head {
	padding-bottom: 20px;
	margin-bottom: 8px;
	border-bottom: 1px solid #e8edef;
	text-align: center;
}

.signup-dialog-head h2 {
	color: #1b78b9;
	font-size: 22px;
	font-weight: 500;
}

.signup-dialog-head p {
	margin-top: 5px;
	color: #7c858a;
	font-size: 13px;
}

.form-item {
	display: grid;
	grid-template-columns: 110px minmax(0, 1fr);
	align-items: center;
	min-height: 56px;
}

.form-item > label,
.field-label {
	color: #4e575c;
	text-align: right;
}

.form-item b {
	margin-right: 3px;
	color: #dc5149;
}

.form-item input[type="text"],
.form-item input[type="tel"],
.form-item input[type="number"],
.form-item textarea {
	width: 100%;
	height: 38px;
	padding: 0 11px;
	border: 1px solid #dfe5e8;
	background: #fff;
}

.form-item textarea {
	height: auto;
	min-height: 76px;
	padding: 8px 11px;
	resize: vertical;
}

.form-item input:focus,
.form-item textarea:focus {
	border-color: #177dc0;
	outline: 0;
}

.form-options {
	display: flex;
	gap: 18px;
}

.form-options label {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.subject-item {
	align-items: start;
	min-height: 68px;
	padding: 10px 0;
}

.field-label {
	padding-top: 3px;
}

.subject-control {
	min-width: 0;
}

.subject-options {
	flex-wrap: wrap;
	gap: 7px 16px;
	padding-top: 1px;
}

.subject-other-input {
	display: none;
	width: 100%;
	margin-top: 10px;
}

.subject-item.is-other .subject-other-input {
	display: block;
}

.remark-item {
	align-items: start;
	padding-top: 10px;
}

.remark-item > label {
	padding-top: 7px;
}

.submit-row {
	margin-top: 20px;
	padding-left: 110px;
}

.submit-row button {
	min-width: 150px;
	padding: 10px 20px;
	color: #fff;
	background: #147bc1;
	border: 0;
	font-size: 15px;
}

.submit-row button:hover {
	background: #0966a8;
}

.signup-card form.submitted .submit-row::after {
	margin-left: 12px;
	color: #17804e;
	content: "已收到，稍后将由工作人员联系您。";
}

.modal-open {
	overflow: hidden;
}

.signup-success {
	display: none;
	margin: 17px 0 0 110px;
	color: #17804e;
}

.signup-form.submitted .signup-success {
	display: block;
	animation: signup-success-in 0.35s ease both;
}

@keyframes signup-success-in {
	from {
		opacity: 0;
		transform: translateY(6px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.contact-map {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.85fr);
	overflow: hidden;
	border: 1px solid #e4e9eb;
	background: #f4f7f9;
}

.contact-location {
	position: relative;
	min-height: 360px;
	overflow: hidden;
	background: #dcebea;
}

.contact-location > img {
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
	filter: saturate(0.72) contrast(0.92);
}

.contact-location::after {
	position: absolute;
	inset: 0;
	background: rgba(9, 83, 85, 0.22);
	content: "";
	pointer-events: none;
}

.location-pin {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	display: flex;
	width: 58px;
	height: 58px;
	align-items: center;
	justify-content: center;
	background: var(--brand-yellow);
	border: 5px solid rgba(255, 255, 255, 0.82);
	border-radius: 50% 50% 50% 0;
	box-shadow: 0 7px 18px rgba(17, 72, 73, 0.32);
	transform: translate(-50%, -65%) rotate(-45deg);
}

.location-pin img {
	width: 29px;
	height: 29px;
	filter: brightness(0) invert(1);
	transform: rotate(45deg);
}

.location-label {
	position: absolute;
	z-index: 1;
	bottom: 21px;
	left: 24px;
	padding: 7px 12px;
	color: #fff;
	background: rgba(9, 83, 85, 0.82);
	font-size: 13px;
	letter-spacing: 0.04em;
}

.contact-map .contact-card {
	display: block;
	padding: 42px 38px;
	background: #fff;
}

.contact-card h1 {
	margin-bottom: 25px;
	padding-bottom: 17px;
	color: #177dc0;
	border-bottom: 1px solid #e4e9eb;
	font-size: 24px;
	font-weight: 500;
}

.contact-intro {
	margin-bottom: 21px;
	color: #6d797b;
	font-size: 14px;
	line-height: 1.8;
}

.contact-details {
	padding-bottom: 19px;
	border-bottom: 1px solid #e4e9eb;
}

.contact-card p {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 15px;
	color: #687277;
	font-size: 14px;
}

.contact-details p:first-child {
	margin-top: 0;
}

.contact-card p img {
	width: 21px;
	height: 21px;
	object-fit: contain;
}

.contact-hours {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 18px 0 20px;
	color: #687277;
	font-size: 13px;
}

.contact-hours strong {
	color: var(--brand-teal);
	font-size: 14px;
	font-weight: 600;
}

.contact-actions {
	display: flex;
	gap: 10px;
}

.contact-actions a {
	display: inline-flex;
	flex: 1;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 7px 10px;
	color: #fff;
	background: var(--brand-teal);
	font-size: 13px;
	transition:
		background-color 0.2s ease,
		transform 0.2s ease;
}

.contact-actions a + a {
	color: var(--brand-teal);
	background: var(--brand-yellow-soft);
	border: 1px solid rgba(242, 184, 75, 0.72);
}

.contact-actions a:hover {
	background: var(--brand-teal-dark);
	transform: translateY(-2px);
}

.contact-actions a + a:hover {
	color: #fff;
	background: var(--brand-yellow);
}

.campus-copy {
	margin-top: 25px;
	padding: 28px 34px;
	border: 1px solid #e4e9eb;
	background: #fff;
}

.campus-copy h2 {
	margin-bottom: 12px;
	color: #394247;
	font-size: 19px;
	font-weight: 500;
}

.campus-copy p {
	display: inline-block;
	margin: 5px 36px 5px 0;
	color: #737d82;
}

.article {
	max-width: 930px;
	margin: 0 auto;
}

.article .hd {
	padding: 10px 0 21px;
	border-bottom: 1px solid #e5e9eb;
	text-align: center;
}

.article .hd h1 {
	color: #303538;
	font-size: 25px;
	font-weight: 500;
	line-height: 1.5;
}

.article .hd p {
	margin-top: 7px;
	color: #969da1;
	font-size: 13px;
}

.article .body {
	padding: 34px 10px;
	color: #5e676c;
	font-size: 15px;
	line-height: 2;
}

.article .body p + p {
	margin-top: 18px;
}

.article .body img {
	max-width: 100%;
	margin: 20px auto;
}

.article .block-extra {
	display: flex;
	justify-content: space-between;
	padding: 16px 10px;
	border-top: 1px solid #e5e9eb;
	color: #788186;
}

.article .block-extra a:hover {
	color: #147bc1;
}

.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition:
		opacity 0.55s ease,
		transform 0.55s ease;
}

.reveal.left {
	transform: translateX(-22px);
}

.reveal.right {
	transform: translateX(22px);
}

.reveal.show {
	opacity: 1;
	transform: none;
}

@media (max-width: 1280px) {
	.carousel-control.previous {
		left: 8px;
	}

	.carousel-control.next {
		right: 8px;
	}
}

@media (max-width: 900px) {
	.course-deck,
	.teacher-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.case-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.environment-grid,
	.partner-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.environment-grid li:nth-child(12) {
		grid-column: span 2;
		grid-row: span 2;
	}

	.course-layout {
		grid-template-columns: 1fr;
	}

	.recommendations {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 14px;
	}

	.recommendations h2 {
		grid-column: 1 / -1;
		margin: 0;
	}

	.recommendations .catalog-card,
	.recommendations .catalog-card:first-of-type {
		margin: 0;
	}

	.timeline {
		grid-template-columns: repeat(3, 1fr);
		row-gap: 24px;
	}

	.tool-list {
		grid-template-columns: repeat(4, 1fr);
		row-gap: 13px;
	}
}

@media (max-width: 700px) {
	body {
		font-size: 13px;
	}

	.utility {
		display: none;
	}

	.brandline,
	.brandline .container {
		min-height: 68px;
	}

	.brandline .container {
		padding-right: 62px;
	}

	.brand-mark img {
		width: 43px;
		height: 43px;
	}

	.hotline > img {
		width: 26px;
		animation: metrics-shadow-sway 4.8s ease-in-out infinite;
	}

	.hotline strong {
		font-size: 17px;
	}

	.hotline span {
		display: none;
	}

	.nav-trigger {
		position: absolute;
		z-index: 12;
		top: 13px;
		right: 12px;
		display: flex;
		width: 42px;
		height: 42px;
		align-items: center;
		justify-content: center;
		padding: 10px;
		background: var(--brand-teal);
		border: 1px solid rgba(255, 255, 255, 0.65);
		border-radius: 4px;
		box-shadow: 0 4px 12px rgba(15, 119, 121, 0.22);
	}

	.nav-trigger img {
		width: 100%;
		height: 100%;
		object-fit: contain;
		filter: brightness(0) invert(1);
	}

	.nav-trigger[aria-expanded="true"] {
		background: var(--brand-teal-dark);
	}

	.primary-nav {
		position: absolute;
		z-index: 11;
		top: 68px;
		right: 0;
		left: 0;
		display: none;
		border-top: 2px solid var(--brand-yellow);
		box-shadow: 0 8px 18px rgba(13, 77, 78, 0.2);
	}

	.nav-open .primary-nav {
		display: block;
	}

	.nav-list {
		display: block;
		min-height: 0;
		padding: 6px 0 9px;
	}

	.nav-list li {
		display: block;
	}

	.nav-list a {
		justify-content: flex-start;
		min-height: 42px;
		padding: 0 24px;
		font-size: 15px;
	}

	.hero,
	.hero .swiper,
	.hero .swiper-wrapper,
	.hero .swiper-slide {
		min-height: 0;
	}

	.slider-arrow {
		width: 34px;
		height: 34px;
		padding: 8px;
	}

	.slider-arrow.previous {
		left: 10px;
	}

	.slider-arrow.next {
		right: 10px;
	}

	.metrics-wrap {
		margin-top: 20px;
	}

	.metrics-wrap .container {
		width: calc(100% - 24px);
		padding: 17px 6px;
	}

	.metrics b {
		font-size: 25px;
	}

	.metrics strong {
		font-size: 15px;
	}

	.metrics p {
		font-size: 12px;
	}

	.metrics-shadow {
		display: none;
	}

	.section {
		padding: 48px 0;
	}

	.section-heading {
		margin-bottom: 25px;
	}

	.section-heading h2 {
		font-size: 22px;
	}

	.category-switch {
		overflow-x: auto;
		margin-right: -16px;
		padding-right: 16px;
	}

	.category-switch strong {
		flex: 0 0 auto;
	}

	.category-switch ul {
		flex: 0 0 auto;
		margin-left: 4px;
	}

	.category-switch button {
		padding: 0 12px;
		font-size: 14px;
	}

	.category-switch > a {
		display: none;
	}

	.course-deck,
	.course-catalog,
	.case-grid,
	.case-grid.page-list,
	.service-list,
	.advantages {
		grid-template-columns: 1fr;
	}

	.feature-course > div {
		padding: 15px;
	}

	.feature-course p {
		min-height: 0;
	}

	.team-feature {
		padding: 48px 0;
	}

	.team-carousel .swiper-slide,
	.news-carousel .swiper-slide {
		min-width: 100%;
	}

	.team-carousel .swiper-wrapper,
	.news-carousel .swiper-wrapper {
		padding: 2px 4px 12px;
	}

	.team-carousel .carousel-control,
	.news-carousel .carousel-control {
		display: none;
	}

	.case-grid li {
		min-height: 0;
	}

	.environment-grid,
	.partner-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.environment-grid {
		grid-auto-rows: 112px;
		gap: 8px;
	}

	.environment-grid li:nth-child(n) {
		grid-column: auto;
		grid-row: auto;
	}

	.environment-grid li:nth-child(1),
	.environment-grid li:nth-child(6),
	.environment-grid li:nth-child(11) {
		grid-column: span 2;
		grid-row: span 2;
	}

	.environment-grid li:nth-child(12) {
		grid-column: span 2;
		grid-row: auto;
	}

	.callout {
		display: block;
		min-height: 175px;
		padding: 31px 23px;
		text-align: center;
	}

	.callout-content strong {
		font-size: 19px;
	}

	.callout-content span {
		font-size: 13px;
	}

	.callout a {
		margin-top: 14px;
	}

	.partner-logo-track {
		gap: 30px;
	}

	.partner-logo-group {
		gap: 20px;
	}

	.partner-logo-group li + li::before {
		height: 17px;
		margin-right: 20px;
	}

	.partner-logo-group a {
		padding: 12px 1px;
		font-size: 17px;
	}

	.tool-list {
		grid-template-columns: repeat(2, 1fr);
	}

	.tool-list a {
		justify-content: flex-start;
		padding-left: 14px;
	}

	.footer-main {
		padding: 28px 0;
	}

	.footer-nav {
		gap: 12px 0;
	}

	.footer-nav li {
		padding: 0 9px;
		font-size: 12px;
	}

	.footer-contact {
		display: block;
	}

	.footer-contact span {
		display: flex;
		margin-top: 7px;
	}

	.footer-links {
		display: none;
	}

	.floating-contact {
		right: 9px;
		bottom: 12px;
		width: 84px;
	}

	.service-shortcut {
		padding: 8px 4px 7px;
	}

	.service-shortcut img {
		width: 23px;
	}

	.service-shortcut small {
		display: none;
	}

	.contact-number {
		display: none;
	}

	.page-content {
		padding: 18px 0 45px;
	}

	.page-visual {
		height: 180px;
	}

	.page-visual h1 {
		font-size: 25px;
	}

	.profile-section,
	.advantage-section,
	.timeline-section {
		padding: 48px 0;
	}

	.profile-title p {
		font-size: 22px;
	}

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

	.course-layout .category-switch {
		grid-column: auto;
	}

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

	.team-banner {
		height: 150px;
	}

	.course-banner {
		height: 180px;
		margin: -26px 0 24px;
	}

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

	.teacher-grid .photo > img {
		aspect-ratio: 1.35;
	}

	.service-list > li > img {
		aspect-ratio: 1.65;
	}

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

	.hot-list {
		display: none;
	}

	.article-list > article {
		grid-template-columns: 112px minmax(0, 1fr);
		column-gap: 13px;
		padding: 16px 0;
	}

	.article-list > article > img {
		grid-row: span 3;
		width: 112px;
	}

	.article-list > article h2 {
		min-height: 49px;
		font-size: 16px;
	}

	.article-list > article .article-excerpt {
		overflow: hidden;
		height: 43px;
	}

	.article-list > article .news-meta {
		grid-column: 2;
		gap: 12px;
		margin-top: 6px;
		font-size: 11px;
	}

	.article-list > li > a {
		display: block;
		padding: 16px 0;
	}

	.article-list .pic {
		float: left;
		width: 112px;
		margin: 0 13px 6px 0;
	}

	.article-list .pic img {
		width: 112px;
	}

	.article-list h2 {
		min-height: 49px;
		font-size: 16px;
	}

	.article-list time {
		clear: both;
		padding-top: 8px;
		text-align: left;
	}

	.article-list time b {
		display: inline;
		font-size: 13px;
	}

	.signup-card {
		padding: 30px 19px;
	}

	.form-item {
		grid-template-columns: 88px minmax(0, 1fr);
	}

	.signup-dialog {
		padding: 30px 22px 28px;
	}

	.subject-item {
		grid-template-columns: 88px minmax(0, 1fr);
	}

	.signup-success {
		margin-left: 88px;
	}

	.submit-row {
		padding-left: 88px;
	}

	.contact-map {
		grid-template-columns: 1fr;
	}

	.contact-location {
		min-height: 210px;
		max-height: 250px;
	}

	.contact-location > img {
		min-height: 210px;
		max-height: 250px;
	}

	.contact-map .contact-card {
		padding: 27px 23px 30px;
	}

	.contact-card h1 {
		margin-bottom: 17px;
		padding-bottom: 13px;
		font-size: 21px;
	}

	.contact-card p {
		margin-top: 13px;
		font-size: 13px;
	}

	.campus-copy {
		margin-top: 16px;
		padding: 23px;
	}

	.campus-copy p {
		display: block;
		margin-right: 0;
	}

	.article .hd h1 {
		font-size: 21px;
	}

	.article .body {
		padding: 26px 0;
		font-size: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

:root {
	--brand-teal: #159a9c;
	--brand-teal-dark: #0f7779;
	--brand-yellow: #f2b84b;
	--brand-yellow-soft: #fff4dc;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
	outline-color: var(--brand-teal);
}
.category-switch button.current,
.category-switch button:hover,
.category-switch > button:hover,
.hotline strong,
.metrics strong,
.section-heading h2 span,
.category-switch a.current,
.category-switch a:hover,
.category-switch > a:hover,
.team-card h3,
.more-link a,
.breadcrumb a:hover,
.recommendations h2,
.teacher-grid .copy h2,
.article-list > article h2 a:hover,
.article-list a:hover h2,
.article-list time b,
.hot-list > h2,
.hot-list a:hover h3,
.contact-card h1,
.signup-card h1,
.signup-dialog-head h2 {
	color: var(--brand-teal);
}

.primary-nav,
.team-feature {
	background-color: var(--brand-teal);
}

.nav-list li.active a,
.nav-list a:hover {
	background-color: var(--brand-teal-dark);
}

.slider-dots button.is-current {
	background-color: var(--brand-yellow);
}

.metrics-wrap .container {
	border-top: 3px solid var(--brand-yellow);
}

.metrics strong {
	color: var(--brand-teal);
}
.category-switch button.current,
.category-switch button:hover,
.category-switch a.current,
.category-switch a:hover {
	border-bottom-color: var(--brand-yellow);
}

.tag-row span {
	color: var(--brand-teal);
	background: var(--brand-yellow-soft);
}

.action-button,
.pagination a.active,
.pagination a:hover,
.floating-contact,
.nav-trigger {
	background-color: var(--brand-teal);
}

.floating-contact {
	background-color: transparent;
}

.action-button:hover,
.signup-open:hover,
.submit-row button:hover {
	background-color: var(--brand-teal-dark);
}

.more-link a {
	border-color: var(--brand-teal);
}

.more-link a:hover {
	color: #fff;
	background-color: var(--brand-teal);
}

.team-feature {
	background-color: var(--brand-teal);
}

.carousel-control:hover,
.news-carousel .carousel-control:hover {
	background-color: var(--brand-teal);
	border-color: var(--brand-teal);
}

.environment-arrow,
.environment-grid li:hover .environment-arrow:hover {
	background-color: var(--brand-teal);
}

.callout {
	background-color: var(--brand-teal-dark);
}

.tool-strip {
	background-color: var(--brand-teal-dark);
}

.profile-title i,
.timeline li {
	border-top-color: var(--brand-teal);
}

.timeline li::before,
.profile-title i {
	background-color: var(--brand-teal);
}

.pagination a.active,
.pagination a:hover {
	border-color: var(--brand-teal);
}
/* 分页容器整体布局 */
.pagination.page {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	/* 按钮之间的间距 */
	list-style: none;
	padding: 0;
	margin: 0;
	font-family: sans-serif;
}

/* 所有按钮/页码通用样式 */
.pagination.page > * {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 3px 12px;
	border: 2px solid #ddd;
	border-radius: 8px;
	background-color: #fff;
	color: #333;
	font-size: var(--ft16);
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s ease;
	box-sizing: border-box;
}

/* 数字页码单独调整宽度 */
.pagination.page .page-number {
	padding: 3px 12px;
}

/* 当前激活页（蓝色背景、白色文字） */
.pagination.page .active.page-number {
	background-color: var(--brand-teal);
	border-color: var(--brand-teal);
	color: #fff;
}

/* 隐藏 SVG 箭头图标，替换为文字 */
.pagination.page .prev-page svg,
.pagination.page .next-page svg {
	display: none;
}

/* 给上一页/下一页加上文字 */
.pagination.page .prev-page::before {
	content: "上一页";
}

.pagination.page .next-page::after {
	content: "下一页";
}

/* 省略号样式（如果后续要加） */
.pagination.page .ellipsis {
	border: none;
	background: transparent;
	cursor: default;
}

/*  hover 交互效果 */
.pagination.page > *:hover:not(.active.page-number):not(.ellipsis) {
	background-color: var(--brand-teal);
	color: #fff;
}
.signup-open,
.submit-row button {
	background-color: var(--brand-teal);
	border-color: var(--brand-teal);
}

.signup-close:hover {
	color: var(--brand-teal);
}

.form-item input:focus,
.form-item textarea:focus {
	border-color: var(--brand-teal);
}

.signup-form.submitted .signup-success,
.signup-card form.submitted .submit-row::after {
	color: #2b8a65;
}
