/* 首页头部 — HTML5 + 布局参考设计稿 */
*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: system-ui, -apple-system, "Segoe UI", "PingFang SC", "Hiragino Sans GB",
		"Microsoft YaHei", sans-serif;
	font-size: 14px;
	color: #333;
	background: #fff;
}
a {
	color: #333;
	text-decoration: none;
}
a:hover {
	color: #000;
	text-decoration: none;
}
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

/* ----- 顶栏 ----- */
.top-bar {
	background: #2c2c2c;
	color: #fff;
	font-size: 12px;
	line-height: 1.5;
}

.top-bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 36px;
	gap: 16px;
	flex-wrap: wrap;
}

.top-bar-slogan {
	margin: 0;
	color: rgba(255, 255, 255, 0.92);
	white-space: nowrap;
}

.top-bar-nav {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px 20px;
}

.top-bar-nav a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	white-space: nowrap;
}

.top-bar-nav a:hover {
	color: #fff;
	text-decoration: underline;
}

.top-bar-auth .sep {
	margin: 0 6px;
	opacity: 0.6;
}

/* ----- 主导航 ----- */
.main-nav-wrap {
	background: #fff;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.main-nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 64px;
	flex-wrap: wrap;
	padding-top: 8px;
	padding-bottom: 8px;
}

.logo {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: #1a1a1a;
	flex-shrink: 0;
}

.logo-img {
	display: block;
	max-height: 52px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.logo-text {
	font-size: 18px;
	font-weight: 600;
	color: #1a1a1a;
}

.header-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
	margin-right: 4px;
}

.pc-region-picker {
	position: relative;
	flex-shrink: 0;
	z-index: 30;
}

.pc-region-picker__trigger {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	max-width: 148px;
	padding: 6px 10px;
	font-size: 14px;
	line-height: 1.3;
	color: #333;
	background: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	cursor: pointer;
	transition: border-color 0.15s, background 0.15s;
}

.pc-region-picker__trigger:hover {
	border-color: #1677ff;
	background: #f7fbff;
	color: #1677ff;
}

.pc-region-picker.is-open .pc-region-picker__trigger {
	border-color: #1677ff;
	color: #1677ff;
}

.pc-region-picker__label {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pc-region-picker__caret {
	flex-shrink: 0;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #999;
	margin-top: 2px;
	transition: transform 0.15s;
}

.pc-region-picker.is-open .pc-region-picker__caret {
	transform: rotate(180deg);
}

.pc-region-picker__mask {
	position: fixed;
	inset: 0;
	z-index: 400;
	background: transparent;
}

.pc-region-picker__dropdown {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	z-index: 401;
	min-width: 400px;
	max-width: min(520px, 94vw);
	max-height: min(480px, 72vh);
	background: #fff;
	border: 1px solid #eee;
	border-radius: 3px;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
	overflow: hidden;
}

.pc-region-picker__cols {
	display: grid;
	grid-template-columns: minmax(120px, 140px) minmax(0, 1fr);
	width: 100%;
	height: min(420px, 55vh);
	max-height: min(420px, 55vh);
	min-height: 200px;
	overflow: hidden;
}

.pc-region-picker__col {
	min-height: 0;
	max-height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	scrollbar-gutter: stable;
}

.pc-region-picker__col--prov {
	border-right: 1px solid #f0f0f0;
	background: #fafafa;
}

.pc-region-picker__p-item {
	display: block;
	width: 100%;
	margin: 0;
	padding: 10px 12px;
	font-size: 14px;
	text-align: left;
	color: #444;
	background: transparent;
	border: 0;
	cursor: pointer;
	transition: background 0.12s, color 0.12s;
}

.pc-region-picker__p-item:hover {
	background: #f0f0f0;
}

.pc-region-picker__p-item.is-active {
	background: #e8f4ff;
	color: #1677ff;
	font-weight: 600;
}

.pc-region-picker__c-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
	margin: 0;
	padding: 10px 14px;
	font-size: 14px;
	text-align: left;
	color: #333;
	background: #fff;
	border: 0;
	border-bottom: 1px solid #f5f5f5;
	cursor: pointer;
	transition: background 0.12s, color 0.12s;
}

.pc-region-picker__c-item:last-child {
	border-bottom: 0;
}

.pc-region-picker__c-item:hover {
	background: #f7fbff;
	color: #1677ff;
}

.pc-region-picker__c-count {
	flex-shrink: 0;
	font-size: 12px;
	color: #999;
}

.main-nav {
	flex: 1;
	min-width: 0;
	display: flex;
	justify-content: flex-start;
    margin-left: 20px;
}

.main-nav-list {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-nav-list > li > a,
.main-nav-list > li > .dropdown-trigger {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 10px 14px;
	color: #333;
	text-decoration: none;
	font-size: 16px;
	white-space: nowrap;
	border-bottom: 3px solid transparent;
	margin-bottom: -1px;
	transition: color 0.15s, border-color 0.15s;
}

.main-nav-list > li > a:hover,
.main-nav-list > li > .dropdown-trigger:hover {
	color: #1e6bff;
}

.main-nav-list > li > a.is-active {
	color: #1e6bff;
	font-weight: 600;
	border-bottom-color: #1e6bff;
}

.nav-highlight {
	color: #2563eb !important;
}

.nav-highlight:hover {
	color: #1d4ed8 !important;
}

/* 下拉：留学工具 */
.has-dropdown {
	position: relative;
}

.dropdown-trigger {
	cursor: pointer;
	border: 0;
	background: none;
	font: inherit;
}

.caret {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 6px;
	vertical-align: middle;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid #666;
	transition: transform 0.2s;
}

.has-dropdown:hover .caret {
	transform: rotate(180deg);
	border-top-color: #1e6bff;
}

.dropdown-menu {
	position: absolute;
	left: 0;
	top: 100%;
	min-width: 160px;
	margin: 0;
	padding: 8px 0;
	list-style: none;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
	z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-menu a {
	display: block;
	padding: 10px 16px;
	color: #333;
	text-decoration: none;
	font-size: 14px;
	border-bottom: none;
	margin: 0;
}

.dropdown-menu a:hover {
	background: #f0f6ff;
	color: #1e6bff;
}

/* ----- 搜索 ----- */
.header-search {
	position: relative;
	flex-shrink: 0;
	width: 220px;
	max-width: 100%;
}

.header-search input {
	width: 100%;
	height: 38px;
	padding: 0 14px 0 38px;
	border: 1px solid #e8e8e8;
	border-radius: 20px;
	background: #f5f5f5;
	font-size: 13px;
	outline: none;
	transition: border-color 0.15s, background 0.15s;
}

.header-search input::placeholder {
	color: #aaa;
}

.header-search input:focus {
	border-color: #1e6bff;
	background: #fff;
}

.header-search-icon {
	position: absolute;
	left: 14px;
	top: 50%;
	width: 16px;
	height: 16px;
	margin-top: -8px;
	border: 2px solid #999;
	border-radius: 50%;
	pointer-events: none;
}

.header-search-icon::after {
	content: "";
	position: absolute;
	right: -5px;
	bottom: -4px;
	width: 6px;
	height: 2px;
	background: #999;
	transform: rotate(45deg);
	border-radius: 1px;
}

.header-search-icon::after {
	content: "";
	position: absolute;
	right: -5px;
	bottom: -4px;
	width: 6px;
	height: 2px;
	background: #999;
	transform: rotate(45deg);
	border-radius: 1px;
}

/* ----- 首页：焦点图 + 快捷入口 | 智能选校表单 ----- */
.home-hero {
	padding: 0 0 8px;
}

.home-hero-inner {
	padding-left: 20px;
	padding-right: 20px;
}

.home-hero-layout {
	display: grid;
	/* grid-template-columns: minmax(0, 1fr) 300px; */
	gap: 20px;
	align-items: start;
}

.home-hero-left {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* 首页焦点轮播（Swiper） */
.home-focus-swiper {
	width: 100%;
	overflow: hidden;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
	--swiper-theme-color: #1677ff;
	--swiper-pagination-bullet-size: 8px;
	--swiper-pagination-bottom: 12px;
}

.home-focus-swiper .swiper-slide {
	height: auto;
}

.home-focus-slide-link {
	display: block;
	height: 506px;
	line-height: 0;
	overflow: hidden;
}

.home-focus-swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.home-focus-swiper .swiper-pagination-bullet {
	opacity: 0.55;
}

.home-focus-swiper .swiper-pagination-bullet-active {
	opacity: 1;
}

.home-banner-empty {
	min-height: 280px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	text-align: center;
	color: #888;
	background: linear-gradient(145deg, #edf1f6 0%, #e2e8f0 100%);
	font-size: 14px;
	line-height: 1.6;
}

.home-focus {
	position: relative;
	display: block;
	text-decoration: none;
	color: inherit;
	border-radius: 8px 8px 0 0;
	overflow: hidden;
}

.home-focus-media {
	position: relative;
	min-height: 300px;
	background: #e8ecf2;
}

.home-focus-fallback {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(145deg, #dfe9f3 0%, #e8eef5 40%, #dce6f0 100%);
	background-image: radial-gradient(ellipse 80% 50% at 70% 20%, rgba(255, 255, 255, 0.5), transparent),
		linear-gradient(145deg, #dfe9f3 0%, #c9d8e8 100%);
}

.home-focus-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.home-focus-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 36px 24px 24px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.75) 35%, rgba(255, 255, 255, 0.96) 100%);
}

.home-focus-title {
	margin: 0 0 12px;
	font-size: 22px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.35;
	max-width: 92%;
}

.home-focus-sub {
	margin: 0;
	display: inline-block;
	padding: 8px 16px;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	background: linear-gradient(90deg, #1677ff 0%, #4096ff 100%);
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(22, 119, 255, 0.35);
}

.home-quick {
	display: flex;
	align-items: stretch;
	background: #fff;
	border: 1px solid #eee;
	border-top: none;
	border-radius: 0 0 8px 8px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.home-quick-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 18px 8px;
	text-decoration: none;
	color: #333;
	font-size: 13px;
	border-right: 1px solid #eee;
	transition: background 0.15s;
}

.home-quick-item:last-child {
	border-right: none;
}

.home-quick-item:hover {
	background: #f7fbff;
	color: #1677ff;
}

.home-quick-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #1677ff;
	color: #fff;
	flex-shrink: 0;
}

.home-quick-icon svg {
	display: block;
}

.home-quick-icon--badge {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.home-quick-label {
	text-align: center;
	line-height: 1.35;
	max-width: 100px;
}

.home-hero-side {
	min-width: 0;
}

.home-form-card {
	border: 1px solid #e8e8e8;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.home-form-card-head {
	margin: 0;
	padding: 14px 16px;
	font-size: 17px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	background: #1677ff;
}

.home-form-body {
	padding: 20px 16px 16px;
    height: 356px;
}

.home-form-select {
	width: 100%;
	height: 42px;
	margin-bottom: 12px;
	padding: 0 12px;
	font-size: 14px;
	color: #333;
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 12px center;
	appearance: none;
	cursor: pointer;
}

.home-form-select:focus {
	border-color: #1677ff;
	outline: none;
}

.home-form-submit {
	width: 100%;
	height: 44px;
	margin-top: 4px;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	background: #1677ff;
	cursor: pointer;
	transition: background 0.15s;
}

.home-form-submit:hover {
	background: #0958d9;
}

.home-form-note {
	margin: 14px 0 0;
	text-align: center;
	font-size: 12px;
	color: #888;
}

.home-form-num {
	color: #fa8c16;
	font-weight: 700;
}

/* ----- 首页：热门学校 | 世界大学排名 ----- */
.home-hot-rank {
	padding: 8px 0 2px;
}

.home-hot-rank-panel {
	background: #fff;
	padding: 22px 0px 1px;
}

.home-hot-rank-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: 28px;
	align-items: start;
}

.home-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 18px;
	padding-bottom: 12px;
	border-bottom: 1px solid #eee;
}

.home-section-head h2 {
	margin: 0;
	font-size: 22px;
	font-weight: normal;
	color:#1f2933;;
}

.home-section-more {
	font-size: 14px;
	color: #9da4ab;
	text-decoration: none;
	white-space: nowrap;
}

.home-section-more:hover {
	color: #1677ff;
}

/* ----- 首页：文章资讯（侧栏） ----- */
.home-article-news {
	min-width: 0;
}

.home-news-featured {
	margin: 0 0 14px;
	border-radius: 4px;
	overflow: hidden;
	background: #f0f0f0;
}

.home-news-featured-link {
	position: relative;
	display: block;
	color: #fff;
	text-decoration: none;
	overflow: hidden;
}

.home-news-featured-link:hover .home-news-featured-title {
	background: rgba(0, 0, 0, 0.78);
}

.home-news-featured-img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	vertical-align: top;
}

.home-news-featured-title {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 10px 12px;
	font-size: 14px;
	line-height: 1.35;
	background: rgba(0, 0, 0, 0.68);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.home-news-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.home-news-item {
	margin: 0 0 10px;
}

.home-news-item:last-child {
	margin-bottom: 0;
}

.home-news-item-link {
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: #222;
	font-size: 14px;
	line-height: 1.45;
	transition: color 0.15s;
}

.home-news-item-link:hover {
	color: #1677ff;
}

.home-news-dot {
	flex-shrink: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #ff7a45;
	box-shadow: 0 0 0 1px rgba(255, 122, 69, 0.25);
}

.home-news-item-title {
	flex: 1;
	min-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.home-news-empty {
	margin: 0;
	padding: 16px 8px;
	font-size: 13px;
	color: #999;
	text-align: center;
	line-height: 1.5;
}

/* ----- 首页：热门问答（侧栏） ----- */
.home-qa-hot-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.home-qa-hot-item {
	margin: 0 0 10px;
}

.home-qa-hot-item:last-child {
	margin-bottom: 0;
}

.home-qa-hot-item--empty {
	padding: 16px 8px;
	text-align: center;
	color: #999;
	font-size: 13px;
	line-height: 1.5;
}

.home-qa-hot-link {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	text-decoration: none;
	color: #222;
	transition: color 0.15s;
}

.home-qa-hot-link:hover {
	color: #1677ff;
}

.home-qa-hot-reads {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 40px;
	padding-top: 2px;
}

.home-qa-hot-reads-num {
	font-size: 15px;
	font-weight: 600;
	color: #ff7a45;
	line-height: 1;
}

.home-qa-hot-reads-label {
	font-size: 11px;
	color: #999;
	margin-top: 2px;
}

.home-qa-hot-title {
	flex: 1;
	min-width: 0;
	font-size: 14px;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.home-teacher-rec-panel {
	min-width: 0;
}

.home-teacher-rec-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.home-teacher-rec-cell {
	margin: 0;
	padding: 0;
	min-width: 0;
}

.home-teacher-rec-cell--empty {
	grid-column: 1 / -1;
	text-align: center;
	padding: 28px 12px;
	font-size: 13px;
	color: #999;
	line-height: 1.5;
}

.home-teacher-rec-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	text-decoration: none;
	color: #222;
	padding: 8px 4px;
	border-radius: 3px;
	transition: background 0.15s, color 0.15s;
	min-width: 0;
}

.home-teacher-rec-card:hover {
	background: #f7fbff;
	color: #1677ff;
}

.home-teacher-rec-card:hover .home-teacher-rec-en {
	color: #1677ff;
	opacity: 0.88;
}

.home-teacher-rec-avatar-wrap {
	height: 200px;
	margin: 0 auto 10px;
	border-radius: 5px;
	overflow: hidden;
	background: #f0f0f0;
	flex-shrink: 0;
	border: 1px solid #eee;
}

.home-teacher-rec-avatar-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	vertical-align: top;
}

.home-teacher-rec-avatar-ph {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 22px;
	font-weight: 600;
	color: #94a3b8;
	background: linear-gradient(160deg, #e8eef5, #cbd5e1);
}

.home-teacher-rec-name {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	word-break: break-word;
	max-width: 100%;
}

.home-teacher-rec-en {
	margin: 4px 0 0;
	font-size: 12px;
	color: #888;
	line-height: 1.35;
	word-break: break-word;
	max-width: 100%;
}

.home-teacher-rec-exp {
	margin: 4px 0 0;
	font-size: 12px;
	color: #666;
	line-height: 1.35;
	word-break: break-word;
	max-width: 100%;
}

@media (max-width: 1100px) {
	.home-teacher-rec-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.home-teacher-rec-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 576px) {
	.home-teacher-rec-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px 10px;
	}

	.home-teacher-rec-avatar-wrap {
		width: 64px;
		height: 64px;
	}
}

.home-region-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.home-region-col {
	overflow: hidden;
	background: #fafafa;
}

.home-region-banner {
	position: relative;
	min-height: 108px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
}

.home-region-banner::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.42);
}

.home-region-banner span {
	position: relative;
	z-index: 1;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.home-region-banner--us {
	background-image: url('../image/guojiyoueryuan.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
}

.home-region-banner--uk {
	background-image: url('../image/guojixiaoxue.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
}

.home-region-banner--hk {
	background-image: url('../image/guojichuzhong.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
}

.home-region-banner--au {
	background-image: url('../image/guojigongzhong.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
}

.home-school-list {
	list-style: none;
	margin: 0;
	padding: 4px 0px 8px;
	background: #fff;
}

.home-school-item {
	display: flex;
	align-items: stretch;
}

.home-school-item:last-child {
	border-bottom: none;
}

.home-school-item--empty {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 8px;
	font-size: 13px;
	color: #999;
	text-align: center;
}

.home-school-link {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
	min-width: 0;
	padding: 12px 0;
	text-decoration: none;
	color: inherit;
}

.home-school-link:hover .home-school-cn {
	color: #1677ff;
}

.home-school-logo {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
    padding: 5px;
	border-radius: 50%;
	border: 5px solid #e8e8e8;
	object-fit: cover;
	display: block;
}

.home-school-txt {
	min-width: 0;
}

.home-school-cn {
	font-size: 14px;
	font-weight: normal;
	color: #333;
	line-height: 1.35;
}

/* 民办国际化学校等：一行三列 */
.home-private-intl-panel {
	overflow: hidden;
	background: #fafafa;
}

.home-school-list--cols3 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: 10px;
	row-gap: 0;
	padding: 8px 0 14px;
	background: #fff;
}

.home-school-list--cols3 .home-school-item {
	min-width: 0;
}

.home-school-list--cols3 .home-school-item--empty {
	grid-column: 1 / -1;
	justify-content: center;
}

.home-school-list--cols3 .home-school-link {
	align-items: center;
	text-align: center;
	gap: 8px;
	padding: 14px 6px;
}

.home-school-list--cols3 .home-school-logo {
	width: 52px;
	height: 52px;
	padding: 4px;
	border-width: 4px;
}

.home-school-list--cols3 .home-school-cn {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	word-break: break-word;
    text-align: left;
}

.home-school-en {
	margin-top: 3px;
	font-size: 12px;
	color: #888;
	line-height: 1.35;
	word-break: break-word;
}

.home-world-rank {
	min-width: 0;
}

.home-hurun-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.home-hurun-item {
	border-bottom: 1px solid #f0f0f0;
}

.home-hurun-item:last-child {
	border-bottom: none;
}

.home-hurun-item--empty {
	padding: 20px 8px;
	font-size: 13px;
	color: #999;
	text-align: center;
	line-height: 1.5;
}

.home-hurun-link {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 52px;
	padding: 10px 4px;
	text-decoration: none;
	color: inherit;
	transition: background 0.15s;
	border-radius: 6px;
}

.home-hurun-link:hover {
	background: #f7fbff;
}

.home-hurun-link:hover .home-hurun-name {
	color: #1677ff;
}

.home-hurun-rank {
	flex-shrink: 0;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-hurun-rank-icon {
	display: block;
	width: 38px;
	height: auto;
	max-height: 42px;
	object-fit: contain;
}

.home-hurun-rank-num {
	font-size: 18px;
	font-weight: 700;
	color: #555;
	line-height: 1;
	min-width: 28px;
	text-align: center;
}

.home-hurun-name {
	flex: 1;
	min-width: 0;
	font-size: 14px;
	font-weight: 500;
	color: #222;
	line-height: 1.4;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.home-hurun-loc {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	max-width: 42%;
	font-size: 13px;
	color: #999;
	justify-content: flex-end;
	text-align: right;
}

.home-hurun-pin {
	flex-shrink: 0;
	width: 12px;
	height: 14px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 14'%3E%3Cpath fill='%23999' d='M6 0C3.8 0 2 1.9 2 4.2c0 3.1 4 8.5 4 8.5s4-5.4 4-8.5C10 1.9 8.2 0 6 0zm0 5.7c-.9 0-1.6-.7-1.6-1.6S5.1 2.5 6 2.5s1.6.7 1.6 1.6S6.9 5.7 6 5.7z'/%3E%3C/svg%3E") center / contain no-repeat;
	opacity: 0.85;
}

/* ----- 全站页脚 ----- */
.site-footer {
	background: #2e2e2e;
	color: #999;
	font-size: 13px;
	line-height: 1.65;
	padding: 28px 0 32px;
	margin-top: 0;
}

.site-footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

.site-footer a {
	color: #999;
	text-decoration: none;
	transition: color 0.15s;
}

.site-footer a:hover {
	color: #e6e6e6;
}

.site-footer-sep {
	margin: 0 6px;
	color: #666;
	font-weight: 300;
	user-select: none;
}

.site-footer-nav,
.site-footer-friends,
.site-footer-contact {
	margin: 0 0 14px;
}

.site-footer-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
}

.site-footer-friends {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.site-footer-friends-label {
	margin-right: 8px;
	color: #aaa;
}

.site-footer-contact {
	font-size: 13px;
	color: #999;
}

.site-footer-contact-gap {
	margin-left: 1.5em;
}

.site-footer-divider {
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin: 18px 0 16px;
}

.site-footer-legal {
	text-align: center;
	font-size: 12px;
	color: #888;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0;
	line-height: 1.8;
}

.site-footer-police {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.site-footer-police-icon {
	flex-shrink: 0;
	display: block;
	vertical-align: middle;
}

.site-footer-company {
	color: #888;
}

.site-main {
	min-height: 40vh;
	padding: 24px 20px;
}

@media (max-width: 992px) {
	.home-hot-rank-layout {
		grid-template-columns: 1fr;
	}

	.home-region-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-hero-layout {
		grid-template-columns: 1fr;
	}

	.home-quick-item {
		padding: 14px 6px;
	}

	.home-quick-label {
		max-width: none;
		font-size: 12px;
	}

	.main-nav {
		order: 3;
		width: 100%;
		justify-content: flex-start;
	}

	.main-nav-inner {
		flex-wrap: wrap;
	}

	.header-brand {
		width: 100%;
		justify-content: flex-start;
		margin-right: 0;
		margin-bottom: 4px;
	}

	.pc-region-picker__dropdown {
		left: 0;
		right: auto;
		min-width: min(100vw - 32px, 400px);
		max-width: calc(100vw - 24px);
		max-height: min(460px, 68vh);
	}

	.pc-region-picker__cols {
		height: min(360px, 48vh);
		max-height: min(360px, 48vh);
		min-height: 160px;
	}

	.header-search {
		width: 100%;
		order: 2;
		flex: 1;
		min-width: 160px;
	}

	.school-list-layout {
		grid-template-columns: 1fr;
	}

	.article-list-layout,
	.article-detail-layout,
	.qa-detail-layout {
		grid-template-columns: 1fr;
	}

	.article-school-sidebar,
	.qa-hot-sidebar {
		position: static;
	}

	.school-detail-layout {
		grid-template-columns: 1fr;
	}

	.school-detail-hero-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.school-detail-hero-right {
		justify-self: stretch;
	}

	.school-rank-sidebar {
		position: static;
	}
}

@media (max-width: 576px) {
	.home-region-grid {
		grid-template-columns: 1fr;
	}

	.top-bar-inner {
		flex-direction: column;
		align-items: flex-start;
		padding-top: 8px;
		padding-bottom: 8px;
	}

	.top-bar-slogan {
		white-space: normal;
	}

	.main-nav-list > li > a,
	.main-nav-list > li > .dropdown-trigger {
		padding: 8px 10px;
		font-size: 14px;
	}

	.school-result-card {
		flex-direction: column;
		align-items: stretch;
	}

	.rank-result-seq {
		width: 36px;
		padding-top: 4px;
	}

	.school-result-actions {
		justify-content: flex-start;
		width: 100%;
	}
}

/* ----- PC 学校列表页 ----- */
.school-list-page .school-list-breadcrumb {
	margin: 0 0 16px;
	font-size: 13px;
	color: #888;
}

.school-list-page .school-list-breadcrumb a {
	color: #1677ff;
	text-decoration: none;
}

.school-list-page .school-list-breadcrumb .sep {
	margin: 0 6px;
	color: #ccc;
}

.school-list-page .school-list-search-note {
	margin: -8px 0 16px;
	font-size: 13px;
	color: #555;
}

.school-list-page .school-list-search-note a {
	color: #1677ff;
	text-decoration: none;
}

.school-list-page .school-list-search-note a:hover {
	text-decoration: underline;
}

.school-list-page .school-list-region-note {
	margin: -8px 0 16px;
	font-size: 13px;
	color: #555;
}

.school-list-page .school-list-region-note strong {
	color: #222;
}

.school-list-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 28px;
	align-items: start;
}

.school-filter-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 3px;
	padding: 16px 18px 8px;
	margin-bottom: 18px;
}

.school-filter-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid #f0f0f0;
}

.school-filter-row:last-child {
	border-bottom: 0;
}

.school-filter-label {
	flex-shrink: 0;
	width: 88px;
	font-size: 14px;
	color: #666;
	line-height: 30px;
}

.school-filter-options {
	flex: 1;
	display: flex;
	flex-wrap: nowrap;
	gap: 8px;
	overflow-x: auto;
	padding-bottom: 4px;
	-webkit-overflow-scrolling: touch;
}

.school-filter-options--wrap {
	flex-wrap: wrap;
	overflow: visible;
}

.school-filter-chip {
	display: inline-block;
	padding: 5px 12px;
	font-size: 13px;
	color: #444;
	background: #f5f5f5;
	border-radius: 4px;
	text-decoration: none;
	white-space: nowrap;
	border: 1px solid transparent;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.school-filter-chip:hover {
	color: #1677ff;
	background: #f0f7ff;
}

.school-filter-chip.is-active {
	color: #fff;
	background: #1677ff;
	border-color: #1677ff;
}

.school-list-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
	font-size: 14px;
	color: #666;
	border-bottom: 1px solid #eee;
}

.school-list-count strong {
	color: #222;
	font-weight: 600;
}

.school-result-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.school-result-item {
	border-bottom: 1px solid #f0f0f0;
}

.school-result-item--empty {
	padding: 40px 16px;
	text-align: center;
	color: #999;
	font-size: 14px;
}

.school-result-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 4px;
	text-decoration: none;
	color: inherit;
	transition: background 0.15s;
	border-radius: 6px;
}

.school-result-card:hover {
	background: #fafbff;
}

.school-result-main {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	flex: 1;
	min-width: 0;
}

.school-result-actions {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	flex-shrink: 0;
}

.school-result-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 18px;
	font-size: 14px;
	line-height: 1.3;
	text-decoration: none;
	border-radius: 999px;
	white-space: nowrap;
	transition: opacity 0.15s, background 0.15s, border-color 0.15s, color 0.15s;
}

.school-result-btn--detail {
	color: #1677ff;
	background: #fff;
	border: 1px solid #1677ff;
}

.school-result-btn--detail:hover {
	background: #e8f4ff;
}

.school-result-btn--rate {
	color: #fff;
	background: #ff7a45;
	border: 1px solid #ff7a45;
	font-weight: 500;
}

.school-result-btn--rate:hover {
	opacity: 0.92;
}

.school-result-titlelink {
	font-size: 17px;
	font-weight: 600;
	color: #1a1a1a;
	text-decoration: none;
}

.school-result-titlelink:hover {
	color: #1677ff;
}

.school-result-logo {
	flex-shrink: 0;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: cover;
	border: 5px solid #eee;
	background: #fafafa;
	padding: 5px;
}

.school-result-body {
	flex: 1;
	min-width: 0;
}

.school-result-names {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px 12px;
	margin-bottom: 6px;
}

.school-result-en {
	font-size: 13px;
	color: #888;
}

.school-result-loc {
	margin: 0 0 10px;
	font-size: 13px;
	color: #666;
	display: flex;
	align-items: center;
	gap: 6px;
}

.school-result-pin {
	flex-shrink: 0;
	width: 12px;
	height: 14px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 14'%3E%3Cpath fill='%23999' d='M6 0C3.8 0 2 1.9 2 4.2c0 3.1 4 8.5 4 8.5s4-5.4 4-8.5C10 1.9 8.2 0 6 0zm0 5.7c-.9 0-1.6-.7-1.6-1.6S5.1 2.5 6 2.5s1.6.7 1.6 1.6S6.9 5.7 6 5.7z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.school-result-meta {
	margin: 0;
	font-size: 13px;
	color: #555;
}

.school-result-meta-row {
	display: flex;
	gap: 8px;
	margin-top: 4px;
}

.school-result-meta-row dt {
	margin: 0;
	flex-shrink: 0;
	color: #999;
	font-weight: normal;
}

.school-result-meta-row dd {
	margin: 0;
	flex: 1;
	min-width: 0;
}

.school-list-pager {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 24px;
	padding-bottom: 8px;
}

.school-pager-btn {
	display: inline-block;
	padding: 8px 20px;
	font-size: 14px;
	color: #1677ff;
	background: #fff;
	border: 1px solid #1677ff;
	border-radius: 4px;
	text-decoration: none;
}

.school-pager-btn:hover:not(.is-disabled) {
	background: #e8f4ff;
}

.school-pager-btn.is-disabled {
	color: #ccc;
	border-color: #e8e8e8;
	cursor: default;
}

.school-rank-sidebar {
	position: sticky;
	top: 16px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 3px;
	padding: 0 0 12px;
}

.school-rank-tabs {
	display: flex;
	border-bottom: 1px solid #eee;
}

.school-rank-tab {
	flex: 1;
	padding: 14px 8px;
	font-size: 15px;
	color: #666;
	background: none;
	border: 0;
	cursor: pointer;
	position: relative;
	transition: color 0.15s;
}

.school-rank-tab:hover {
	color: #1677ff;
}

.school-rank-tab.is-active {
	color: #1677ff;
	font-weight: 600;
}

.school-rank-tab.is-active::after {
	content: "";
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 0;
	height: 2px;
	background: #1677ff;
	border-radius: 1px;
}

.school-rank-panel {
	display: none;
	max-height: 70vh;
	overflow-y: auto;
}

.school-rank-panel.is-active {
	display: block;
}

.school-rank-list {
	list-style: none;
	margin: 0;
	padding: 8px 0 0;
}

.school-rank-item {
	border-bottom: 1px solid #f5f5f5;
}

.school-rank-item:last-child {
	border-bottom: 0;
}

.school-rank-link {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	font-size: 13px;
	color: #333;
	text-decoration: none;
	transition: background 0.15s;
}

.school-rank-link:hover {
	background: #f7fbff;
	color: #1677ff;
}

.school-rank-seq {
	flex-shrink: 0;
	width: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.school-rank-medal {
	display: block;
}

.school-rank-num {
	font-weight: 700;
	color: #888;
	font-size: 14px;
}

.school-rank-name {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.school-rank-city {
	flex-shrink: 0;
	max-width: 72px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #999;
	font-size: 12px;
}

.school-rank-chev {
	flex-shrink: 0;
	color: #ccc;
	font-size: 16px;
}

/* ----- PC 排行榜页 ----- */
.rank-page .rank-page-tabs-card {
	position: static;
	top: auto;
}

.rank-page-banner {
	margin: 0 0 16px;
	border-radius: 3px;
	overflow: hidden;
	border: 1px solid #eee;
	background: #f5f5f5;
}

.rank-page-banner img {
	display: block;
	width: 100%;
	height: auto;
	vertical-align: middle;
}

.rank-page-tabs-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 3px;
	padding: 0 0 8px;
}

.rank-page-toolbar {
	padding: 10px 16px 6px;
	border-bottom: 1px solid #f0f0f0;
}

.rank-page-count {
	margin: 0;
	font-size: 14px;
	color: #666;
}

.rank-page-result-list {
	border-top: 1px solid #f5f5f5;
}

.rank-result-card {
	align-items: flex-start;
	gap: 12px;
}

.rank-result-seq {
	flex-shrink: 0;
	width: 40px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 6px;
}

.rank-result-medal {
	display: block;
}

.rank-result-num {
	font-weight: 700;
	font-size: 15px;
	color: #1677ff;
	line-height: 1.2;
}

.rank-result-badge {
	margin: 6px 0 0;
	font-size: 13px;
	line-height: 1.4;
}

.rank-result-badge-inner {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 3px;
	background: #f0f7ff;
	color: #1677ff;
	font-weight: 500;
}

.rank-page-qa-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 3px;
	padding: 14px 0 12px;
}

.rank-page-qa-title {
	margin: 0 14px 10px;
	font-size: 16px;
	font-weight: 600;
	color: #1a1a1a;
}

.rank-page-qa-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.rank-page-qa-item {
	border-bottom: 1px solid #f5f5f5;
	padding: 10px 14px;
}

.rank-page-qa-item:last-child {
	border-bottom: 0;
}

.rank-page-qa-item--empty {
	font-size: 13px;
	color: #999;
	line-height: 1.5;
}

.rank-page-qa-item--empty a {
	color: #1677ff;
	text-decoration: none;
}

.rank-page-qa-item--empty a:hover {
	text-decoration: underline;
}

.rank-page-qa-link {
	display: block;
	font-size: 13px;
	color: #333;
	line-height: 1.45;
	text-decoration: none;
	transition: color 0.15s;
}

.rank-page-qa-link:hover {
	color: #1677ff;
}

.rank-page-qa-meta {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	color: #999;
}

.rank-page-qa-more {
	display: block;
	margin: 8px 14px 0;
	padding: 8px 12px;
	text-align: center;
	font-size: 13px;
	color: #1677ff;
	text-decoration: none;
	border: 1px solid #1677ff;
	border-radius: 3px;
	transition: background 0.15s, color 0.15s;
}

.rank-page-qa-more:hover {
	background: #e8f4ff;
}

/* ---------- PC 学校详情页 ---------- */
.school-detail-page {
	padding-bottom: 48px;
}

.school-detail-hero {
	position: relative;
	min-height: 260px;
	background-color: #1a2b45;
	background-size: cover;
	background-position: center;
	color: #fff;
}

.school-detail-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		105deg,
		rgba(12, 28, 52, 0.92) 0%,
		rgba(12, 28, 52, 0.72) 42%,
		rgba(12, 28, 52, 0.45) 100%
	);
	pointer-events: none;
}

.school-detail-hero-inner {
	position: relative;
	z-index: 1;
	padding: 18px 0 26px;
}

.school-detail-breadcrumb {
	font-size: 13px;
	opacity: 0.92;
	margin: 0 0 4px;
}

.school-detail-breadcrumb a {
	color: #fff;
	text-decoration: none;
}

.school-detail-breadcrumb a:hover {
	text-decoration: underline;
}

.school-detail-breadcrumb .sep {
	margin: 0 8px;
	opacity: 0.65;
}

.school-detail-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 28px 32px;
	align-items: start;
	margin-top: 44px;
}

.school-detail-hero-left {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	min-width: 0;
}

.school-detail-hero-logo {
	flex-shrink: 0;
	width: 88px;
	height: 88px;
	border-radius: 50%;
	object-fit: contain;
	background: #fff;
	border: 3px solid rgba(255, 255, 255, 0.45);
	padding: 6px;
	box-sizing: border-box;
}

.school-detail-hero-titles {
	min-width: 0;
}

.school-detail-hero-cn {
	margin: 0 0 4px;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.02em;
}

.school-detail-hero-en {
	margin: 0 0 10px;
	font-size: 16px;
	opacity: 0.92;
}

.school-detail-hero-meta {
	margin: 0 0 12px;
	font-size: 14px;
	line-height: 1.6;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
}

.school-detail-hero-loc,
.school-detail-hero-web {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-width: 0;
}

.school-detail-hero-web {
	color: #b8e0ff;
	word-break: break-all;
}

.school-detail-ico-pin,
.school-detail-ico-globe {
	display: inline-block;
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	opacity: 0.9;
	background: currentColor;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5z'/%3E%3C/svg%3E")
		center / contain no-repeat;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5z'/%3E%3C/svg%3E")
		center / contain no-repeat;
}

.school-detail-ico-globe {
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm7.93 9h-3.4a15.6 15.6 0 0 0-.32-3.2A8 8 0 0 1 19.93 11zM12 4.07a7.9 7.9 0 0 1 3.17 2.2 13.7 13.7 0 0 1 .35 3.73h-7a13.7 13.7 0 0 1 .35-3.73A7.9 7.9 0 0 1 12 4.07zM7.79 7.8a15.6 15.6 0 0 0-.32 3.2H4.07a8 8 0 0 1 3.72-3.2zM4.07 13h3.4a15.6 15.6 0 0 0 .32 3.2A8 8 0 0 1 4.07 13zm4.36 3.13A13.7 13.7 0 0 1 8.08 13h7a13.7 13.7 0 0 1-.35 3.73A7.9 7.9 0 0 1 8.43 16.13zM12 19.93a7.9 7.9 0 0 1-3.17-2.2 13.7 13.7 0 0 1-.35-3.73h7a13.7 13.7 0 0 1-.35 3.73A7.9 7.9 0 0 1 12 19.93zm4.21-3.8a15.6 15.6 0 0 0 .32-3.2h3.4a8 8 0 0 1-3.72 3.2z'/%3E%3C/svg%3E")
		center / contain no-repeat;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm7.93 9h-3.4a15.6 15.6 0 0 0-.32-3.2A8 8 0 0 1 19.93 11zM12 4.07a7.9 7.9 0 0 1 3.17 2.2 13.7 13.7 0 0 1 .35 3.73h-7a13.7 13.7 0 0 1 .35-3.73A7.9 7.9 0 0 1 12 4.07zM7.79 7.8a15.6 15.6 0 0 0-.32 3.2H4.07a8 8 0 0 1 3.72-3.2zM4.07 13h3.4a15.6 15.6 0 0 0 .32 3.2A8 8 0 0 1 4.07 13zm4.36 3.13A13.7 13.7 0 0 1 8.08 13h7a13.7 13.7 0 0 1-.35 3.73A7.9 7.9 0 0 1 8.43 16.13zM12 19.93a7.9 7.9 0 0 1-3.17-2.2 13.7 13.7 0 0 1-.35-3.73h7a13.7 13.7 0 0 1-.35 3.73A7.9 7.9 0 0 1 12 19.93zm4.21-3.8a15.6 15.6 0 0 0 .32-3.2h3.4a8 8 0 0 1-3.72 3.2z'/%3E%3C/svg%3E")
		center / contain no-repeat;
}

.school-detail-hero-actions {
	margin: 0;
}

.school-detail-pill {
	display: inline-block;
	padding: 7px 16px;
	font-size: 13px;
	border-radius: 4px;
	text-decoration: none;
	transition: background 0.15s, border-color 0.15s;
}

.school-detail-pill--ghost {
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.65);
	background: rgba(255, 255, 255, 0.08);
}

.school-detail-pill--ghost:hover {
	background: rgba(255, 255, 255, 0.18);
	border-color: #fff;
}

.school-detail-hero-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 14px;
}

.school-detail-rank-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: flex-end;
}

.school-detail-rank-card {
	background: rgba(255, 255, 255, 0.96);
	color: #333;
	border-radius: 4px;
	padding: 10px 14px 12px;
	min-width: 118px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.school-detail-rank-card-h {
	font-size: 12px;
	color: #888;
	margin-bottom: 4px;
}

.school-detail-rank-card-main {
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.school-detail-rank-big {
	font-size: 32px;
	font-weight: 800;
	line-height: 1;
	color: #1677ff;
}

.school-detail-rank-src {
	font-size: 12px;
	color: #666;
}

.school-detail-hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

.school-detail-cta {
	display: inline-block;
	padding: 11px 22px;
	font-size: 15px;
	font-weight: 600;
	border-radius: 24px;
	text-decoration: none;
	text-align: center;
	transition: filter 0.15s, opacity 0.15s;
}

.school-detail-cta:hover {
	filter: brightness(1.05);
}

.school-detail-cta--orange {
	background: #fa8c16;
	color: #fff;
	box-shadow: 0 4px 12px rgba(250, 140, 22, 0.35);
}

.school-detail-cta--blue {
	background: #1677ff;
	color: #fff;
	box-shadow: 0 4px 12px rgba(22, 119, 255, 0.3);
}

.school-detail-subnav-wrap {
	position: sticky;
	top: 0;
	z-index: 200;
	background: rgb(247, 249, 250);
	border-bottom: 1px solid #e8e8e8;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 6px 16px rgba(0, 0, 0, 0.06);
}

.school-detail-subnav {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 20px;
	padding: 0px 0 0px;
	margin: 0;
}

.school-detail-subnav a {
	display: inline-block;
	padding: 15px 22px 15px;
	font-size: 16px;
	color: #444;
	text-decoration: none;
}

.school-detail-subnav a:hover {
	color: #1677ff;
}

.school-detail-subnav a.active {
	color: #1677ff;
	background: #fff;
}

.school-detail-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 28px;
	align-items: start;
	padding-top: 22px;
}

.school-detail-main {
	min-width: 0;
}

.school-detail-block {
	scroll-margin-top: 72px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 3px;
	padding: 18px 20px 20px;
	margin-bottom: 18px;
}

.school-detail-block-title {
	margin: 0 0 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid #f0f0f0;
	font-size: 17px;
	font-weight: 600;
	color: #222;
}

.school-detail-dl {
	margin: 0;
}

.school-detail-dl-row {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	gap: 8px 16px;
	padding: 9px 0;
	border-bottom: 1px solid #fafafa;
	font-size: 14px;
	line-height: 1.55;
}

.school-detail-dl-row:last-child {
	border-bottom: 0;
}

.school-detail-dl-row dt {
	margin: 0;
	color: #888;
	font-weight: 400;
}

.school-detail-dl-row dd {
	margin: 0;
	color: #333;
	word-break: break-word;
}

.school-detail-stars {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	line-height: 1;
}

.school-detail-star {
	color: #ddd;
	font-size: 18px;
}

.school-detail-star.is-on {
	color: #f5a623;
}

.school-detail-subh {
	margin: 18px 0 10px;
	font-size: 15px;
	font-weight: 600;
	color: #333;
}

.school-detail-subh:first-child {
	margin-top: 0;
}

.school-detail-rich {
	margin-bottom: 8px;
}

.school-detail-html {
	font-size: 14px;
	line-height: 1.75;
	color: #444;
}

.school-detail-html p {
	margin: 0 0 0.75em;
}

.school-detail-html img {
	max-width: 100%;
	height: auto;
}

.school-detail-ul {
	margin: 0;
	padding-left: 1.2em;
	font-size: 14px;
	line-height: 1.7;
	color: #444;
}

.school-detail-signup {
	margin: 16px 0 0;
}

.school-detail-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
	gap: 10px;
	margin-top: 8px;
}

.school-detail-gallery-item {
	display: block;
	border-radius: 4px;
	overflow: hidden;
	border: 1px solid #eee;
	background: #f7f7f7;
}

.school-detail-gallery-item img {
	display: block;
	width: 100%;
	height: 110px;
	object-fit: cover;
}

@media (max-width: 576px) {
	.school-detail-hero-cn {
		font-size: 22px;
	}

	.school-detail-dl-row {
		grid-template-columns: 1fr;
		gap: 2px;
	}

	.school-detail-dl-row dt {
		color: #666;
		font-size: 13px;
	}

	.school-detail-rank-cards,
	.school-detail-hero-cta {
		justify-content: flex-start;
	}

	.school-detail-hero-right {
		align-items: stretch;
	}
}

/* ---------- PC 文章列表 / 文章详情 ---------- */
.article-breadcrumb,
.article-breadcrumb {
	margin: 0 0 18px;
	font-size: 13px;
	color: #888;
}

.article-breadcrumb a,
.article-breadcrumb a {
	color: #333;
	text-decoration: none;
}

.article-breadcrumb .sep,
.article-breadcrumb .sep {
	margin: 0 6px;
	color: #ccc;
}

.article-list-layout,
.article-detail-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 28px;
	align-items: start;
	padding-bottom: 40px;
}

.article-list-main {
	min-width: 0;
}

.article-filter-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 3px;
	padding: 12px 14px 10px;
	margin-bottom: 14px;
}

.article-filter-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.article-filter-label {
	flex-shrink: 0;
	width: 48px;
	font-size: 14px;
	color: #666;
	line-height: 30px;
}

.article-filter-options {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.article-filter-chip {
	display: inline-block;
	padding: 5px 12px;
	font-size: 13px;
	color: #444;
	background: #f5f5f5;
	border-radius: 3px;
	text-decoration: none;
	white-space: nowrap;
	border: 1px solid transparent;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.article-filter-chip:hover {
	color: #1e6bff;
	background: #fff5f5;
}

.article-filter-chip.is-active {
	color: #fff;
	background: #1e6bff;
	border-color: #1e6bff;
}

.article-list-toolbar {
	margin: 0 0 14px;
	font-size: 14px;
	color: #666;
}

.article-mediakit-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.article-mediakit-item {
	border-bottom: 1px solid #eee;
}

.article-mediakit-item:first-child {
	border-top: 1px solid #eee;
}

.article-mediakit-item--empty {
	padding: 32px 16px;
	text-align: center;
	color: #999;
	font-size: 14px;
}

.article-mediakit-link {
	display: flex;
	align-items: stretch;
	gap: 24px;
	padding: 22px 4px 22px 0;
	text-decoration: none;
	color: inherit;
	transition: background 0.15s;
	border-radius: 4px;
}

.article-mediakit-link:hover {
	background: #fafcff;
}

.article-mediakit-text {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.article-mediakit-title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.45;
	color: #1a1a1a;
}

.article-mediakit-link:hover .article-mediakit-title {
	color: #1677ff;
}

.article-mediakit-summary {
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
	color: #666;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.article-mediakit-sumlabel {
	color: #888;
	font-weight: 500;
}

.article-mediakit-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 28px;
	margin-top: auto;
	padding-top: 4px;
	font-size: 13px;
	color: #999;
}

.article-mediakit-cat {
	color: #13c2c2;
}

.article-mediakit-date {
	color: #999;
}

.article-mediakit-views {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: #999;
}

.article-mediakit-eye {
	display: inline-block;
	width: 15px;
	height: 11px;
	flex-shrink: 0;
	background: currentColor;
	opacity: 0.75;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'%3E%3Cpath fill='%23000' d='M12 3C6 3 1.5 8 1.5 8S6 13 12 13 22.5 8 22.5 8 18 3 12 3zm0 9a4 4 0 1 1 0-8 4 4 0 0 1 0 8zm0-2a2 2 0 1 0 0-4 2 2 0 0 0 0 4z'/%3E%3C/svg%3E")
		center / contain no-repeat;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'%3E%3Cpath fill='%23000' d='M12 3C6 3 1.5 8 1.5 8S6 13 12 13 22.5 8 22.5 8 18 3 12 3zm0 9a4 4 0 1 1 0-8 4 4 0 0 1 0 8zm0-2a2 2 0 1 0 0-4 2 2 0 0 0 0 4z'/%3E%3C/svg%3E")
		center / contain no-repeat;
}

.article-mediakit-thumb {
	flex-shrink: 0;
	width: 200px;
	max-width: 38%;
	border-radius: 4px;
	overflow: hidden;
	background: #f0f0f0;
	align-self: center;
}

.article-mediakit-thumb img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.article-list-pager {
	margin-top: 20px;
}

.article-school-sidebar {
	position: sticky;
	top: 16px;
}

.article-sidebar-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 3px;
	padding: 0 0 10px;
}

.article-sidebar-title {
	margin: 0;
	padding: 14px 16px;
	font-size: 16px;
	font-weight: 600;
	color: #333;
	border-bottom: 1px solid #f0f0f0;
	text-align: center;
}

.article-school-list {
	list-style: none;
	margin: 0;
	padding: 6px 0 0;
}

.article-school-item {
	border-bottom: 1px solid #f5f5f5;
}

.article-school-item:last-child {
	border-bottom: 0;
}

.article-school-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	font-size: 13px;
	color: #333;
	text-decoration: none;
	transition: background 0.15s;
}

.article-school-link:hover {
	background: #f7fbff;
	color: #1677ff;
}

.article-school-logo {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: contain;
	background: #fff;
	border: 1px solid #eee;
}

.article-school-body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.article-school-name {
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.article-school-loc {
	font-size: 12px;
	color: #999;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.article-school-chev {
	flex-shrink: 0;
	color: #ccc;
}

.article-detail-main {
	min-width: 0;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 3px;
	padding: 24px 28px 32px;
}

.article-detail-h1 {
	margin: 0 0 16px;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.4;
	color: #1a1a1a;
}

.article-detail-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 24px;
	margin-bottom: 20px;
	font-size: 14px;
	color: #999;
}

.article-detail-cat {
	color: #13c2c2;
}

.article-detail-summarybox {
	background: #f7f8fa;
	border: 1px solid #eee;
	border-radius: 3px;
	padding: 14px 18px;
	margin-bottom: 22px;
}

.article-detail-summarytext {
	margin: 0;
	font-size: 14px;
	line-height: 1.75;
	color: #555;
}

.article-detail-body {
	font-size: 15px;
	line-height: 1.85;
	color: #333;
	word-break: break-word;
}

.article-detail-body img {
	max-width: 100%;
	height: auto;
}

.article-detail-prevnext {
	margin-top: 32px;
	padding-top: 20px;
	border-top: 1px solid #eee;
	display: flex;
	flex-direction: column;
	gap: 12px;
	font-size: 14px;
}

.article-detail-pnlink {
	text-decoration: none;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.article-detail-pnlink:hover {
	text-decoration: underline;
}

.article-detail-pnmuted {
	color: #bbb;
}

@media (max-width: 576px) {
	.article-mediakit-link {
		flex-direction: column-reverse;
		gap: 14px;
		padding-right: 0;
	}

	.article-mediakit-thumb {
		width: 100%;
		max-width: none;
		align-self: stretch;
	}
}

/* ---------- PC 留学问问（列表 + 详情） ---------- */
.qa-list-page .qa-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 12px;
	margin-bottom: 16px;
}

.qa-search-form {
	flex: 1;
	min-width: 200px;
	display: flex;
	align-items: stretch;
	gap: 8px;
}

.qa-search-inner {
	flex: 1;
	position: relative;
	display: flex;
	align-items: center;
}

.qa-search-input {
	width: 100%;
	height: 42px;
	padding: 0 40px 0 14px;
	border: 1px solid #ddd;
	border-radius: 3px;
	font-size: 14px;
	box-sizing: border-box;
}

.qa-search-input:focus {
	outline: none;
	border-color: #1677ff;
	box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.12);
}

.qa-search-ico {
	position: absolute;
	right: 12px;
	top: 50%;
	margin-top: -8px;
	width: 16px;
	height: 16px;
	opacity: 0.45;
	background: #666;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E")
		center / contain no-repeat;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E")
		center / contain no-repeat;
	pointer-events: none;
}

.qa-search-submit {
	display: none;
}

@media (min-width: 577px) {
	.qa-search-submit {
		display: inline-block;
		padding: 0 16px;
		height: 42px;
		border: 1px solid #1677ff;
		background: #fff;
		color: #1677ff;
		border-radius: 3px;
		font-size: 14px;
		cursor: pointer;
	}

	.qa-search-submit:hover {
		background: #e8f4ff;
	}
}

.qa-ask-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 42px;
	padding: 0 22px;
	background: #fa8c16;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 3px;
	white-space: nowrap;
	transition: filter 0.15s;
	border: 0px;
}

.qa-ask-btn:hover {
	filter: brightness(1.05);
	color: #fff;
}

.qa-ask-btn--inline {
	margin-top: 8px;
}

.qa-tabs {
	display: flex;
	gap: 8px 28px;
	border-bottom: 1px solid #eee;
	margin-bottom: 0;
	padding: 0 2px;
}

.qa-tab {
	padding: 12px 2px 14px;
	font-size: 15px;
	color: #555;
	text-decoration: none;
	border-bottom: 3px solid transparent;
	margin-bottom: -1px;
}

.qa-tab:hover {
	color: #1677ff;
}

.qa-tab.is-active {
	color: #1677ff;
	font-weight: 600;
	border-bottom-color: #1677ff;
}

.qa-thread-list {
	list-style: none;
	margin: 18px 0 0;
	padding: 0;
}

.qa-thread-item {
	border-bottom: 1px dashed #e8e8e8;
}

.qa-thread-item:first-child {
	border-top: 1px dashed #e8e8e8;
}

.qa-thread-item--empty {
	padding: 36px 16px;
	text-align: center;
	color: #999;
	font-size: 14px;
}

.qa-thread-link {
	display: flex;
	gap: 20px;
	padding: 20px 4px 20px 0;
	text-decoration: none;
	color: inherit;
	align-items: stretch;
	transition: background 0.15s;
}

.qa-thread-link:hover {
	background: #fafcff;
}

.qa-thread-reads {
	flex-shrink: 0;
	width: 72px;
	text-align: center;
	border: 1px solid #eee;
	border-radius: 4px;
	padding: 10px 6px;
	align-self: flex-start;
	background: #fafafa;
}

.qa-thread-reads-num {
	display: block;
	font-size: 20px;
	font-weight: 700;
	color: #1677ff;
	line-height: 1.2;
}

.qa-thread-reads-label {
	display: block;
	font-size: 12px;
	color: #999;
	margin-top: 4px;
}

.qa-thread-body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.qa-thread-title {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.45;
	color: #1a1a1a;
}

.qa-thread-link:hover .qa-thread-title {
	color: #1677ff;
}

.qa-thread-preview {
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
	color: #777;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.qa-thread-foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 16px;
	margin-top: 4px;
	font-size: 13px;
}

.qa-thread-author {
	color: #1677ff;
	font-weight: 500;
}

.qa-thread-answered {
	color: #999;
}

.qa-thread-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-left: auto;
}

.qa-tag {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 2px;
	font-size: 12px;
	line-height: 1.4;
}

.qa-tag--school {
	background: #e6f7ff;
	color: #1677ff;
}

.qa-tag--type {
	background: #fff0f0;
	color: #cf1322;
}

.qa-teacher-pc-list {
	list-style: none;
	margin: 18px 0 0;
	padding: 0;
}

.qa-teacher-pc-item {
	border-bottom: 1px solid #f0f0f0;
}

.qa-teacher-pc-item--empty {
	padding: 36px 16px;
	text-align: center;
	color: #999;
}

.qa-teacher-pc-link {
	display: flex;
	gap: 16px;
	padding: 18px 4px 18px 0;
	text-decoration: none;
	color: inherit;
	transition: background 0.15s;
}

.qa-teacher-pc-link:hover {
	background: #fafcff;
}

.qa-teacher-pc-avatar {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	border: 1px solid #eee;
}

.qa-teacher-pc-avatar--ph {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e6f4ff;
	color: #1677ff;
	font-size: 22px;
	font-weight: 700;
}

.qa-teacher-pc-body {
	flex: 1;
	min-width: 0;
}

.qa-teacher-pc-head {
	display: flex;
	align-items: baseline;
	gap: 12px;
	flex-wrap: wrap;
}

.qa-teacher-pc-name {
	font-size: 17px;
	font-weight: 700;
	color: #1a1a1a;
}

.qa-teacher-pc-city {
	font-size: 13px;
	color: #999;
}

.qa-teacher-pc-en {
	margin: 4px 0 0;
	font-size: 13px;
	color: #888;
}

.qa-teacher-pc-title {
	margin: 6px 0 0;
	font-size: 14px;
	color: #333;
}

.qa-teacher-pc-exp {
	margin: 6px 0 0;
	font-size: 13px;
	color: #666;
	line-height: 1.55;
}

.qa-teacher-pc-spec {
	margin: 8px 0 0;
	font-size: 13px;
	color: #555;
	line-height: 1.55;
}

.qa-teacher-pc-slabel {
	color: #888;
}

.qa-mine-login-tip {
	margin: 24px 0;
	padding: 16px 18px;
	background: #fffbe6;
	border: 1px solid #ffe58f;
	border-radius: 3px;
	color: #876800;
	font-size: 14px;
	line-height: 1.65;
}

.qa-mine-list {
	list-style: none;
	margin: 18px 0 0;
	padding: 0;
}

.qa-mine-item {
	border-bottom: 1px dashed #e8e8e8;
}

.qa-mine-item--empty {
	padding: 36px 16px;
	text-align: center;
	color: #999;
}

.qa-mine-link {
	display: block;
	padding: 18px 4px 18px 0;
	text-decoration: none;
	color: inherit;
}

.qa-mine-link:hover .qa-mine-title {
	color: #1677ff;
}

.qa-mine-title {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 600;
	color: #1a1a1a;
}

.qa-mine-status {
	margin: 0;
	font-size: 13px;
	color: #52c41a;
}

.qa-mine-status.is-pending {
	color: #fa8c16;
}

.qa-detail-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 28px;
	align-items: start;
	padding-bottom: 40px;
}

.qa-detail-main {
	min-width: 0;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 3px;
	padding: 22px 24px 28px;
}

.qa-detail-h1 {
	margin: 0 0 16px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.45;
	color: #1a1a1a;
}

.qa-detail-userrow {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 16px;
	margin-bottom: 16px;
	font-size: 13px;
	color: #888;
}

.qa-detail-uavatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.qa-detail-uname {
	color: #333;
	font-weight: 500;
}

.qa-detail-utime {
	color: #999;
}

.qa-detail-uviews {
	margin-left: auto;
	color: #999;
}

.qa-detail-qtext {
	font-size: 15px;
	line-height: 1.75;
	color: #333;
	white-space: pre-wrap;
	word-break: break-word;
}

.qa-detail-tagrow {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 16px 0 20px;
}

.qa-detail-answers {
	margin-top: 28px;
	
}

.qa-detail-ansh {
	margin: 0 0 24px;
	font-size: 16px;
	font-weight: 600;
	color: #333;
	
}

.qa-detail-reply {
	margin-bottom: 20px;
	padding-bottom: 18px;
	border-bottom: 1px solid #f5f5f5;
}

.qa-detail-reply:last-of-type {
	border-bottom: 0;
}

.qa-detail-reply--user {
	padding-left: 12px;
	border-left: 3px solid #fa8c16;
}

.qa-detail-replyhead {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.qa-detail-reply-av {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.qa-detail-reply-av--ph {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #e6f4ff;
	color: #1677ff;
	font-size: 14px;
	font-weight: 700;
}

.qa-detail-reply-meta {
	display: flex;
	align-items: center;
	gap: 6px;
	flex: 1;
	min-width: 0;
}

.qa-detail-reply-name {
	font-weight: 600;
	color: #333;
}

.qa-detail-reply-v {
	font-size: 11px;
	color: #fff;
	background: #1677ff;
	border-radius: 2px;
	padding: 0 4px;
	line-height: 1.4;
}

.qa-detail-reply-tag {
	font-size: 12px;
	color: #fa8c16;
}

.qa-detail-reply-time {
	font-size: 12px;
	color: #bbb;
	margin-left: auto;
}

.qa-detail-reply-body {
	font-size: 14px;
	line-height: 1.75;
	color: #444;
	white-space: pre-wrap;
	word-break: break-word;
}

.qa-detail-ans-empty {
	margin: 0;
	padding: 16px;
	background: #fafafa;
	border-radius: 3px;
	color: #999;
	font-size: 14px;
}

.qa-detail-cta-wrap {
	margin: 24px 0 0;
}

.qa-hot-sidebar {
	position: sticky;
	top: 16px;
}

.qa-hot-list {
	list-style: none;
	margin: 0;
	padding: 6px 0 0;
}

.qa-hot-item {
	border-bottom: 1px solid #f5f5f5;
}

.qa-hot-item:last-child {
	border-bottom: 0;
}

.qa-hot-link {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 12px 14px;
	text-decoration: none;
	font-size: 13px;
	color: #333;
	transition: background 0.15s;
}

.qa-hot-link:hover {
	background: #f7fbff;
	color: #1677ff;
}

.qa-hot-title {
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.qa-hot-reads {
	font-size: 12px;
	color: #999;
}

/* PC 名师详情（与问答详情同宽双栏：左介绍、右热门问答） */
.qa-teacher-detail-main {
	padding-top: 20px;
}

.qa-teacher-detail-hero {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 8px;
	padding-bottom: 22px;
	border-bottom: 1px solid #f0f0f0;
}

.qa-teacher-detail-avatar {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	border: 1px solid #eee;
}

.qa-teacher-detail-avatar--ph {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #eef1f6;
	color: #bbb;
	font-size: 32px;
	font-weight: 600;
}

.qa-teacher-detail-hero-text {
	min-width: 0;
	flex: 1;
}

.qa-teacher-detail-h1 {
	margin: 0 0 12px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.35;
	color: #1a1a1a;
}

.qa-teacher-h-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.qa-teacher-h-tag {
	display: inline-block;
	padding: 4px 10px;
	font-size: 12px;
	line-height: 1.35;
	border-radius: 3px;
	border: 1px solid #e8e8e8;
	color: #555;
	background: #fafafa;
}

.qa-teacher-h-tag--lite {
	border-color: #e8e8e8;
	color: #555;
	background: #fafafa;
}

.qa-teacher-h-tag--honor_purple {
	border-color: #d3adf7;
	color: #531dab;
	background: #f9f0ff;
}

.qa-teacher-h-tag--honor_gold {
	border-color: #ffe58f;
	color: #ad6800;
	background: #fffbe6;
}

.qa-teacher-detail-section {
	margin-top: 26px;
}

.qa-teacher-detail-section-title {
	margin: 0 0 14px;
	font-size: 16px;
	font-weight: 600;
	color: #333;
}

.qa-teacher-detail-body {
	font-size: 15px;
	line-height: 1.75;
	color: #333;
	word-break: break-word;
}

.qa-teacher-detail-dl {
	margin: 0;
}

.qa-teacher-detail-dl-row {
	display: grid;
	grid-template-columns: 100px minmax(0, 1fr);
	gap: 10px 16px;
	padding: 10px 0;
	border-bottom: 1px solid #f5f5f5;
	font-size: 14px;
	align-items: start;
}

.qa-teacher-detail-dl-row:last-child {
	border-bottom: 0;
}

.qa-teacher-detail-dl-row--block {
	grid-template-columns: 1fr;
}

.qa-teacher-detail-dl-row--block dt {
	margin-bottom: 2px;
}

.qa-teacher-detail-dl dt {
	margin: 0;
	color: #888;
	font-weight: 400;
}

.qa-teacher-detail-dl dd {
	margin: 0;
	color: #333;
}

.qa-teacher-detail-dd-multiline {
	white-space: pre-wrap;
	word-break: break-word;
	line-height: 1.65;
}

.qa-teacher-detail-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.qa-teacher-detail-chip {
	display: inline-block;
	padding: 4px 10px;
	font-size: 13px;
	color: #1e6bff;
	background: #f0f6ff;
	border-radius: 3px;
	border: 1px solid #d6e4ff;
}

@media (max-width: 576px) {
	.qa-toolbar {
		flex-direction: column;
	}

	.qa-ask-btn {
		width: 100%;
		justify-content: center;
	}

	.qa-thread-link {
		flex-direction: column;
		gap: 12px;
	}

	.qa-thread-reads {
		align-self: flex-start;
	}

	.qa-thread-tags {
		margin-left: 0;
	}

	.qa-teacher-detail-hero {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.qa-teacher-detail-hero-text {
		width: 100%;
	}

	.qa-teacher-h-tags {
		justify-content: center;
	}
}

/* ---------- PC 会员登录 / 注册 / 找回密码 ---------- */
.member-auth-page {
	padding: 32px 0 48px;
}

.member-auth-breadcrumb {
	font-size: 14px;
	color: #666;
	margin-bottom: 20px;
}

.member-auth-breadcrumb .sep {
	margin: 0 8px;
	color: #ccc;
}

.member-auth-card {
	max-width: 420px;
	margin: 0 auto;
	background: #fff;
	border-radius: 0;
	box-shadow: none;
	padding: 28px 32px 32px;
	border: 1px solid #ddd;
}

.member-auth-title {
	font-size: 22px;
	font-weight: 600;
	margin: 0 0 8px;
	color: #1a1a1a;
	text-align: center;
}

.member-auth-hint {
	text-align: center;
	font-size: 13px;
	color: #888;
	margin: 0 0 16px;
}

.member-auth-tabs {
	display: flex;
	gap: 0;
	margin-bottom: 20px;
	border-radius: 0;
	overflow: visible;
	border: 1px solid #ccc;
}

.member-auth-tab {
	flex: 1;
	padding: 10px 12px;
	font-size: 14px;
	border: none;
	border-right: 1px solid #ccc;
	border-bottom: 2px solid transparent;
	box-sizing: border-box;
	background: #f0f0f0;
	color: #555;
	cursor: pointer;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.member-auth-tab:last-child {
	border-right: none;
}

.member-auth-tab.is-active {
	background: #fff;
	color: #c41e3a;
	font-weight: 600;
	border-bottom-color: #c41e3a;
}

.member-auth-msg {
	font-size: 13px;
	padding: 8px 12px;
	border-radius: 0;
	margin: 0 0 14px;
	border: 1px solid transparent;
}

.member-auth-msg.is-err {
	background: #fff2f0;
	color: #cf1322;
	border-color: #ffccc7;
}

.member-auth-msg.is-ok {
	background: #f6ffed;
	color: #389e0d;
	border-color: #b7eb8f;
}

.member-auth-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.member-auth-label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 13px;
	color: #444;
}

.member-auth-label--grow {
	flex: 1;
	min-width: 0;
}

.member-auth-input {
	height: 42px;
	padding: 0 12px;
	border: 1px solid #ccc;
	border-radius: 0;
	font-size: 15px;
	outline: none;
	transition: border-color 0.15s, box-shadow 0.15s;
	background: #fff;
}

.member-auth-input:focus {
	border-color: #c41e3a;
	box-shadow: none;
}

.member-auth-row {
	display: flex;
	align-items: flex-end;
	gap: 10px;
}

.member-auth-send {
	flex-shrink: 0;
	height: 42px;
	padding: 0 14px;
	border: 1px solid #c41e3a;
	background: #fff;
	color: #c41e3a;
	border-radius: 0;
	font-size: 13px;
	cursor: pointer;
	white-space: nowrap;
}

.member-auth-send:hover:not(:disabled) {
	background: #c41e3a;
	color: #fff;
}

.member-auth-send:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

.member-auth-submit {
	height: 44px;
	border: 1px solid #a01830;
	border-radius: 0;
	background: #c41e3a;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	margin-top: 6px;
}

.member-auth-submit:hover {
	background: #a01830;
	border-color: #8a1428;
	filter: none;
}

.member-auth-links {
	margin-top: 18px;
	text-align: center;
	font-size: 14px;
	color: #666;
}

.member-auth-links a {
	color: #c41e3a;
	text-decoration: none;
}

.member-auth-links a:hover {
	text-decoration: underline;
}

.member-auth-links .sep {
	margin: 0 8px;
	color: #ccc;
}

.top-bar-user {
	margin-right: 4px;
}

/* ---------- PC 会员中心（扁平 + 3px 圆角） ---------- */
.member-center-page {
	padding: 28px 0 48px;
	background: #f7f7f7;
}

.member-center-breadcrumb {
	font-size: 14px;
	color: #666;
	margin-bottom: 18px;
}

.member-center-breadcrumb .sep {
	margin: 0 8px;
	color: #ccc;
}

.member-center-layout {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	flex-wrap: wrap;
}

.member-center-nav {
	flex: 0 0 200px;
	display: flex;
	flex-direction: column;
	gap: 0;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 3px;
	overflow: hidden;
}

.member-center-nav-item {
	display: block;
	padding: 12px 14px;
	font-size: 14px;
	color: #333;
	text-decoration: none;
	border-bottom: 1px solid #eee;
	transition: background 0.15s, color 0.15s;
}

.member-center-nav-item:last-child {
	border-bottom: none;
}

.member-center-nav-item:hover {
	background: #fafafa;
	color: #c41e3a;
}

.member-center-nav-item.is-active {
	background: #fff5f5;
	color: #c41e3a;
	font-weight: 600;
	border-left: 3px solid #c41e3a;
}

.member-center-main {
	flex: 1;
	min-width: 0;
}

.member-center-panel {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 3px;
	padding: 22px 24px 26px;
}

.member-center-panel-title {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 14px;
	color: #1a1a1a;
}

.member-center-hint {
	font-size: 13px;
	color: #888;
	margin: 0 0 16px;
	line-height: 1.5;
}

.member-center-msg {
	font-size: 13px;
	padding: 8px 10px;
	margin: 0 0 14px;
	border-radius: 3px;
	border: 1px solid transparent;
}

.member-center-msg.is-err {
	background: #fff2f0;
	color: #cf1322;
	border-color: #ffccc7;
}

.member-center-msg.is-ok {
	background: #f6ffed;
	color: #389e0d;
	border-color: #b7eb8f;
}

.member-center-empty {
	margin: 12px 0 0;
	font-size: 14px;
	color: #999;
}

.member-center-form {
	max-width: 420px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.member-center-field--row {
	display: flex;
	align-items: flex-end;
	gap: 10px;
	flex-wrap: wrap;
}

.member-center-field-grow {
	flex: 1;
	min-width: 120px;
}

.member-center-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.member-center-label {
	font-size: 13px;
	color: #444;
}

.member-center-input {
	height: 40px;
	padding: 0 10px;
	border: 1px solid #ccc;
	border-radius: 3px;
	font-size: 14px;
	outline: none;
	background: #fff;
}

.member-center-input:focus {
	border-color: #c41e3a;
}

.member-center-input--readonly {
	background: #f5f5f5;
	color: #666;
}

.member-center-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 16px;
	font-size: 14px;
	border-radius: 3px;
	cursor: pointer;
	border: 1px solid #ccc;
	background: #fff;
	color: #333;
}

.member-center-btn--primary {
	background: #c41e3a;
	border-color: #a01830;
	color: #fff;
	font-weight: 600;
}

.member-center-btn--primary:hover {
	background: #a01830;
}

.member-center-btn--ghost {
	border-color: #c41e3a;
	color: #c41e3a;
	background: #fff;
}

.member-center-btn--ghost:hover:not(:disabled) {
	background: #c41e3a;
	color: #fff;
}

.member-center-btn--sm {
	min-height: 32px;
	padding: 0 10px;
	font-size: 13px;
}

.member-center-btn:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

.member-center-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.member-center-list-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid #eee;
}

.member-center-list-item:last-child {
	border-bottom: none;
}

.member-center-list-link {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
	min-width: 0;
	text-decoration: none;
	color: inherit;
}

.member-center-list-link--block {
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
}

.member-center-list-logo {
	width: 48px;
	height: 48px;
	object-fit: contain;
	border: 1px solid #eee;
	border-radius: 3px;
	background: #fafafa;
}

.member-center-list-title {
	font-size: 15px;
	font-weight: 500;
	color: #222;
}

.member-center-list-meta {
	font-size: 12px;
	color: #999;
}

.school-detail-hero-actions {
	margin: 12px 0 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.school-detail-pill--fav {
	cursor: pointer;
	border-radius: 3px;
	border: 1px solid #c41e3a;
	background: #fff;
	color: #c41e3a;
	font-size: 14px;
	padding: 8px 14px;
}

.school-detail-pill--fav.is-on,
.school-detail-pill--fav:hover {
	background: #c41e3a;
	color: #fff;
}

.school-detail-pill--ask {
	text-decoration: none;
	cursor: pointer;
	border-radius: 3px;
	border: 1px solid #333;
	background: #fff;
	color: #333;
	font-size: 14px;
	padding: 8px 14px;
	display: inline-block;
}

.school-detail-pill--ask:hover {
	background: #333;
	color: #fff;
}

.qa-detail-fav {
	margin-left: auto;
	flex-shrink: 0;
	cursor: pointer;
	font-size: 13px;
	padding: 4px 10px;
	border-radius: 3px;
	border: 1px solid #c41e3a;
	background: #fff;
	color: #c41e3a;
}

.qa-detail-fav.is-on,
.qa-detail-fav:hover {
	background: #c41e3a;
	color: #fff;
}

.qa-detail-append {
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.qa-detail-append-hint {
	font-size: 13px;
	color: #888;
	line-height: 1.55;
	margin: 0 0 12px;
}

.qa-detail-append-msg {
	font-size: 13px;
	padding: 8px 10px;
	margin: 0 0 10px;
	border-radius: 3px;
	border: 1px solid transparent;
}

.qa-detail-append-msg.is-ok {
	background: #f6ffed;
	color: #389e0d;
	border-color: #b7eb8f;
}

.qa-detail-append-msg.is-err {
	background: #fff2f0;
	color: #cf1322;
	border-color: #ffccc7;
}

.qa-detail-append-textarea {
	width: 100%;
	box-sizing: border-box;
	min-height: 120px;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 3px;
	font-size: 14px;
	line-height: 1.55;
	resize: vertical;
	background: #fafafa;
}

.qa-detail-append-textarea:focus {
	outline: none;
	border-color: #c41e3a;
	background: #fff;
}

.qa-detail-append-actions {
	margin-top: 12px;
}

.member-ask-panel .member-ask-tip {
	font-size: 13px;
	color: #888;
	line-height: 1.55;
	margin: 0 0 16px;
}

.member-ask-form {
	max-width: 640px;
}

.member-ask-block {
	margin-bottom: 20px;
}

.member-ask-label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
}

.member-ask-req {
	color: #c41e3a;
	font-weight: 600;
}

.member-ask-sub {
	font-weight: 400;
	color: #999;
	font-size: 13px;
	margin-left: 6px;
}

.member-ask-textarea {
	width: 100%;
	box-sizing: border-box;
	min-height: 200px;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 3px;
	font-size: 14px;
	line-height: 1.55;
	resize: vertical;
	background: #fafafa;
}

.member-ask-textarea:focus {
	outline: none;
	border-color: #c41e3a;
	background: #fff;
}

.member-ask-school-row {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
}

.member-ask-school-row .member-ask-school-search {
	flex: 1;
	min-width: 200px;
}

.member-ask-school-results {
	list-style: none;
	margin: 8px 0 0;
	padding: 0;
	border: 1px solid #ddd;
	border-radius: 3px;
	max-height: 220px;
	overflow-y: auto;
	background: #fff;
}

.member-ask-school-item {
	padding: 10px 12px;
	font-size: 14px;
	cursor: pointer;
	border-bottom: 1px solid #eee;
}

.member-ask-school-item:last-child {
	border-bottom: none;
}

.member-ask-school-item:hover {
	background: #fff5f5;
}

.member-ask-types {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 12px;
	max-height: 280px;
	overflow-y: auto;
	padding: 4px 0;
}

.member-ask-type-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	border: 1px solid #ccc;
	border-radius: 3px;
	font-size: 13px;
	color: #444;
	cursor: pointer;
	background: #fafafa;
}

.member-ask-type-chip input:checked + span {
	font-weight: 600;
	color: #c41e3a;
}

.member-ask-type-chip.is-on {
	border-color: #c41e3a;
	background: #fff5f5;
}

.member-ask-type-chip input {
	margin: 0;
	cursor: pointer;
	accent-color: #c41e3a;
}

.member-ask-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 8px;
}

@media (max-width: 768px) {
	.member-center-layout {
		flex-direction: column;
	}
	.member-center-nav {
		flex: none;
		width: 100%;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.member-center-nav-item {
		flex: 1 1 42%;
		border-bottom: 1px solid #eee;
		text-align: center;
	}
}
