:root {
	--ink:#18352d;
	--muted:#6c7f78;
	--brand:#2e8b70;
	--brand-dark:#1d6652;
	--mint:#e8f5ef;
	--line:#dce9e3;
	--paper:#fff;
	--cream:#f7fbf8;
	--shadow:0 18px 50px rgba(35,91,70,.1);
}

* {
	box-sizing:border-box;
}

html {
	scroll-behavior:smooth;
}

body {
	margin:0;
	color:var(--ink);
	background:var(--paper);
	font:15px/1.8 -apple-system,BlinkMacSystemFont,"Segoe UI","Microsoft YaHei",sans-serif;
}

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

button {
	font:inherit;
}

.container {
	width:min(1160px,calc(100% - 48px));
	margin:0 auto;
}

.narrow {
	max-width:860px;
}

.site-header {
	height:78px;
	border-bottom:1px solid rgba(220,233,227,.8);
	background:#fff;
	position:relative;
	z-index:10;
}

.header-inner {
	height:100%;
	display:flex;
	align-items:center;
	justify-content:space-between;
}

.brand,.footer-brand {
	display:inline-flex;
	align-items:center;
	gap:10px;
}

.brand-logo {
	width:42px;
	height:42px;
	object-fit:contain;
}

.brand-copy {
	display:flex;
	flex-direction:column;
	line-height:1.2;
}

.brand-copy strong {
	font-size:19px;
	letter-spacing:.04em;
}

.brand-copy small {
	color:var(--muted);
	font-size:11px;
	margin-top:4px;
}

.site-nav ul {
	display:flex;
	gap:30px;
	list-style:none;
	margin:0;
	padding:0;
}

.site-nav a {
	color:#48635a;
	font-size:14px;
	transition:color .2s;
}

.site-nav a:hover,.site-nav a.is-active {
	color:var(--brand-dark);
}

.has-children {
	position:relative;
}

.nav-sub {
	display:none!important;
	position:absolute;
	left:-16px;
	top:28px;
	width:150px;
	padding:10px 0!important;
	background:#fff;
	border:1px solid var(--line);
	box-shadow:var(--shadow);
	flex-direction:column!important;
	gap:0!important;
}

.has-children:hover .nav-sub {
	display:flex!important;
}

.nav-sub a {
	display:block;
	padding:7px 16px;
}

.header-actions {
	display:flex;
	align-items:center;
	gap:14px;
}

.header-experience,.button-primary {
	background:var(--brand);
	color:#fff;
	padding:9px 18px;
	border-radius:6px;
	font-weight:600;
}

.menu-toggle {
	display:none;
	border:0;
	background:transparent;
	width:36px;
}

.menu-toggle i {
	display:block;
	height:2px;
	background:var(--ink);
	margin:5px;
}

.page-banner {
	padding:80px 0 66px;
	background:linear-gradient(120deg,#eff9f4,#fff);
}

.page-banner h1 {
	margin:10px 0 4px;
	font-size:42px;
	letter-spacing:-.03em;
}

.page-banner p:last-child {
	color:var(--muted);
	font-size:17px;
}

.eyebrow {
	margin:0;
	color:var(--brand);
	font-size:11px;
	font-weight:700;
	letter-spacing:.16em;
}

.button {
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:11px 22px;
	border-radius:6px;
	font-weight:600;
}

.button-light {
	border:1px solid var(--line);
	background:#fff;
	color:var(--ink);
}

.section {
	padding:92px 0;
}

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

.section-heading h2 {
	margin:8px 0 0;
	font-size:32px;
	letter-spacing:-.03em;
}

.text-link {
	color:var(--brand-dark);
	font-weight:600;
}

.text-link i {
	margin-left:7px;
}

.feature-strip {
	background:var(--ink);
	color:#fff;
}

.feature-grid {
	display:grid;
	grid-template-columns:repeat(4,1fr);
	padding:24px 0;
}

.feature-grid div {
	padding:0 25px;
	border-right:1px solid rgba(255,255,255,.14);
}

.feature-grid div:first-child {
	padding-left:0;
}

.feature-grid div:last-child {
	border:0;
}

.feature-grid b,.feature-grid span {
	display:block;
}

.feature-grid b {
	font-size:17px;
}

.feature-grid span {
	color:#b8cbc3;
	font-size:13px;
}

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

.program-card {
	border:1px solid var(--line);
	border-radius:10px;
	overflow:hidden;
	background:#fff;
	transition:transform .25s,box-shadow .25s;
}

.program-card:hover {
	transform:translateY(-5px);
	box-shadow:var(--shadow);
}

.cover {
	height:190px;
	display:flex;
	align-items:end;
	padding:20px;
	font-size:26px;
	font-weight:700;
	color:#fff;
}

.cover-rose {
	background:linear-gradient(135deg,#c78279,#eec6a8);
}

.cover-green {
	background:linear-gradient(135deg,#4c8f7a,#a9d3b7);
}

.cover-gold {
	background:linear-gradient(135deg,#b48945,#e9d69e);
}

.program-body {
	padding:20px;
}

.tag {
	color:var(--brand);
	font-size:12px;
}

.program-body h3 {
	margin:7px 0;
	font-size:20px;
}

.program-body p {
	color:var(--muted);
	margin:0 0 17px;
	font-size:14px;
}

.listen-link {
	color:var(--brand-dark);
	font-size:13px;
	font-weight:600;
}

.section-tint {
	background:var(--cream);
}

.split-section {
	display:grid;
	grid-template-columns:1.1fr .9fr;
	gap:80px;
	align-items:center;
}

.split-section h2 {
	font-size:34px;
	line-height:1.35;
	margin:12px 0;
}

.muted {
	color:var(--muted);
}

.reason-list {
	margin-top:28px;
}

.reason-list>div {
	display:flex;
	gap:18px;
	padding:17px 0;
	border-bottom:1px solid var(--line);
}

.reason-list span {
	color:var(--brand);
	font-weight:700;
}

.reason-list h3 {
	margin:0;
	font-size:16px;
}

.reason-list p {
	margin:3px 0 0;
	color:var(--muted);
	font-size:14px;
}

.quote-panel {
	padding:42px;
	background:#fff;
	border:1px solid var(--line);
	border-radius:10px;
	box-shadow:var(--shadow);
}

.quote-panel i {
	color:var(--brand);
	font-size:25px;
}

.quote-panel p {
	font-size:25px;
	line-height:1.5;
	margin:18px 0;
}

.quote-panel span {
	color:var(--muted);
	font-size:13px;
}

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

.review-grid blockquote {
	margin:0;
	padding:24px;
	border:1px solid var(--line);
	border-radius:8px;
}

.stars {
	color:#d3a64c;
	letter-spacing:4px;
}

.review-grid p {
	min-height:75px;
}

.review-grid footer {
	font-size:13px;
	font-weight:600;
}

.review-grid footer span {
	display:block;
	color:var(--muted);
	font-weight:400;
	margin-top:4px;
}

.faq-section {
	background:var(--cream);
}

.faq-item {
	border-bottom:1px solid var(--line);
}

.faq-question {
	width:100%;
	padding:20px 0;
	border:0;
	background:transparent;
	display:flex;
	justify-content:space-between;
	text-align:left;
	color:var(--ink);
	font-weight:600;
	cursor:pointer;
}

.faq-question i {
	color:var(--brand);
}

.faq-answer {
	display:none;
	color:var(--muted);
	padding:0 35px 20px 0;
}

.faq-item.is-open .faq-answer {
	display:block;
}

.faq-item.is-open .faq-question i {
	transform:rotate(45deg);
}

.more-link {
	display:inline-block;
	margin-left:12px;
	color:var(--brand);
}

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

.news-card {
	border-top:3px solid var(--brand);
	padding:22px 0;
}

.news-date,.article-list time {
	color:var(--brand);
	font-size:12px;
}

.news-card h3 {
	margin:10px 0;
	font-size:19px;
}

.news-card p,.article-list p {
	color:var(--muted);
}

.read-more {
	color:var(--brand-dark);
	font-size:13px;
	font-weight:600;
}

.site-footer {
	background:#15342b;
	color:#d5e4de;
	padding:52px 0 20px;
}

.footer-top {
	display:flex;
	justify-content:space-between;
	gap:30px;
}

.footer-brand {
	color:#fff;
}

.footer-brand img {
	width:38px;
	height:38px;
	object-fit:contain;
}

.footer-brand strong {
	font-size:18px;
}

.footer-top p {
	color:#9eb6ac;
}

.footer-links {
	display:flex;
	gap:22px;
	align-items:center;
	flex-wrap:wrap;
}

.footer-links a {
	color:#c4d5cf;
	font-size:13px;
}

.footer-bottom {
	border-top:1px solid rgba(255,255,255,.14);
	padding-top:18px;
	margin-top:35px;
	display:flex;
	justify-content:space-between;
	color:#8eaaa0;
	font-size:12px;
}

.breadcrumb {
	padding:22px 0;
	color:var(--muted);
	font-size:13px;
}

.breadcrumb span {
	padding:0 9px;
}

.content-layout {
	display:grid;
	grid-template-columns:minmax(0,1fr) 300px;
	gap:70px;
	padding-bottom:90px;
}

.filter-row {
	display:flex;
	gap:25px;
	border-bottom:1px solid var(--line);
	padding-bottom:16px;
	margin-bottom:12px;
	color:var(--muted);
	font-size:13px;
}

.list-item {
	display:grid;
	grid-template-columns:150px 1fr;
	gap:24px;
	padding:24px 0;
	border-bottom:1px solid var(--line);
}

.list-thumb {
	height:105px;
	background:var(--mint);
	overflow:hidden;
	border-radius:6px;
}

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

.list-item h2,.article-list h2 {
	margin:0 0 8px;
	font-size:21px;
}

.list-item p {
	margin:0 0 8px;
	color:var(--muted);
	font-size:14px;
}

.list-item time {
	color:var(--muted);
	font-size:12px;
}

.sidebar h3 {
	margin-top:0;
	padding-bottom:15px;
	border-bottom:2px solid var(--ink);
}

.like-item {
	padding:14px 0;
	border-bottom:1px solid var(--line);
}

.like-item a {
	display:block;
	font-size:14px;
}

.like-item span {
	display:block;
	color:var(--muted);
	font-size:11px;
	margin-top:4px;
}

.side-cta {
	background:var(--mint);
	padding:22px;
	margin-top:28px;
	border-radius:8px;
}

.side-cta b {
	font-size:17px;
}

.side-cta p {
	color:var(--muted);
	font-size:13px;
}

.side-cta a {
	display:inline-block;
	color:var(--brand-dark);
	font-weight:700;
	font-size:13px;
}

.article-list {
	padding:26px 0;
	border-bottom:1px solid var(--line);
}

.article-list h2 {
	margin-top:7px;
}

.article-detail {
	min-width:0;
}

.article-detail h1 {
	font-size:40px;
	line-height:1.3;
	margin:12px 0;
}

.article-meta {
	color:var(--muted);
	font-size:13px;
	border-bottom:1px solid var(--line);
	padding-bottom:18px;
}

.article-content {
	font-size:16px;
	line-height:2;
	margin-top:28px;
}

.article-content p {
	margin:0 0 22px;
}

.about-page {
	padding:30px 0 100px;
}

.policy-page .article-content {
	background:#fff;
	padding:44px 52px;
	border:1px solid var(--line);
	border-radius:16px;
	box-shadow:var(--shadow);
}

@media(max-width:800px) {
	.policy-page .article-content {
		padding:28px 24px;
	}
}

.about-intro {
	max-width:770px;
}

.about-intro h2 {
	font-size:34px;
}

.about-intro p {
	color:var(--muted);
	font-size:16px;
}

.about-values {
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:20px;
	margin-top:55px;
}

.about-values div {
	padding:26px;
	background:var(--cream);
	border-left:3px solid var(--brand);
}

.about-values b,.about-values span {
	display:block;
}

.about-values b {
	font-size:18px;
	margin-bottom:8px;
}

.about-values span {
	color:var(--muted);
	font-size:14px;
}

.mobile-experience {
	display:none;
}

@media(max-width:800px) {
	.container {
		width:min(100% - 32px,560px);
	}
	.site-header {
		height:68px;
	}
	.site-nav {
		display:none;
		position:absolute;
		left:0;
		right:0;
		top:68px;
		background:#fff;
		padding:12px 16px;
		border-bottom:1px solid var(--line);
		box-shadow:var(--shadow);
	}
	.site-nav.is-open {
		display:block;
	}
	.site-nav ul {
		display:block;
	}
	.site-nav li {
		border-bottom:1px solid var(--line);
	}
	.site-nav a {
		display:block;
		padding:9px 0;
	}
	.nav-sub {
		display:block!important;
		position:static;
		width:auto;
		padding:0 0 5px 15px!important;
		border:0;
		box-shadow:none;
	}
	.header-experience {
		display:none;
	}
	.menu-toggle {
		display:block;
	}
	.section {
		padding:62px 0;
	}
	.hero {
		padding:56px 0 60px;
		display:block;
	}
	.hero-art {
		display:none;
	}
	.feature-grid {
		grid-template-columns:repeat(2,1fr);
		gap:20px;
	}
	.feature-grid div {
		padding:0;
		border:0;
	}
	.program-grid,.review-grid,.news-grid,.about-values {
		grid-template-columns:1fr;
	}
	.section-heading {
		align-items:start;
		gap:16px;
		flex-direction:column;
	}
	.section-heading h2 {
		font-size:28px;
	}
	.split-section {
		grid-template-columns:1fr;
		gap:34px;
	}
	.quote-panel p {
		font-size:21px;
	}
	.page-banner {
		padding:54px 0 42px;
	}
	.page-banner h1 {
		font-size:34px;
	}
	.content-layout {
		grid-template-columns:1fr;
		gap:40px;
		padding-bottom:60px;
	}
	.list-item {
		grid-template-columns:95px 1fr;
		gap:15px;
	}
	.list-thumb {
		height:80px;
	}
	.article-detail h1 {
		font-size:30px;
	}
	.footer-top,.footer-bottom {
		display:block;
	}
	.footer-links {
		margin-top:24px;
		gap:13px;
	}
	.footer-bottom span {
		display:block;
		margin-top:7px;
	}
	.mobile-experience {
		display:block;
		position:fixed;
		left:16px;
		right:16px;
		bottom:15px;
		z-index:30;
	}
	.mobile-experience-trigger {
		display:block;
		width:100%;
		border:0;
		background:var(--brand);
		color:#fff;
		border-radius:8px;
		padding:13px;
		font-weight:700;
		box-shadow:0 8px 25px rgba(25,80,60,.22);
	}
	.mobile-experience-panel {
		display:none;
		background:#fff;
		border:1px solid var(--line);
		padding:10px;
		margin-bottom:8px;
		box-shadow:var(--shadow);
	}
	.mobile-experience-panel.is-visible {
		display:flex;
	}
	.mobile-experience-panel a {
		flex:1;
		text-align:center;
		padding:8px;
		border-right:1px solid var(--line);
		color:var(--brand-dark);
		font-weight:600;
	}
	.mobile-experience-panel a:last-child {
		border:0;
	}
	.mobile-mask {
		display:none;
		position:fixed;
		inset:0;
		background:rgba(16,38,31,.42);
		backdrop-filter:blur(4px);
		z-index:8;
	}
	.mobile-mask.is-visible {
		display:block;
	}
}

:root {
	--primary:var(--brand);
	--primary-dark:var(--brand-dark);
}

.cover-image {
	height:190px;
	overflow:hidden;
	background:var(--mint);
}

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

.news-link {
	display:block;
}

.news-img-wrap {
	height:150px;
	overflow:hidden;
	border-radius:8px;
	background:var(--mint);
	margin-bottom:14px;
}

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

.news-content {
	min-width:0;
}

.review-grid blockquote img {
	width:42px;
	height:42px;
	border-radius:50%;
	object-fit:cover;
	display:block;
	margin-bottom:12px;
}

.footer-cta {
	margin:0 0 34px;
	padding:24px 28px;
	background:#1f4e40;
	border:1px solid rgba(255,255,255,.16);
	border-radius:8px;
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:20px;
}

.footer-cta h2 {
	margin:0;
	color:#fff;
	font-size:22px;
}

.footer-cta p {
	margin:5px 0 0;
	color:#b8cec5;
	font-size:13px;
}

.footer-cta .button {
	background:#fff;
	color:var(--brand-dark);
	white-space:nowrap;
}

.back-to-top {
	position:fixed;
	right:22px;
	bottom:22px;
	width:42px;
	height:42px;
	border:1px solid var(--line);
	border-radius:50%;
	background:#fff;
	color:var(--brand-dark);
	box-shadow:var(--shadow);
	opacity:0;
	pointer-events:none;
	transition:opacity .2s,transform .2s;
	z-index:25;
}

.back-to-top.is-visible {
	opacity:1;
	pointer-events:auto;
}

.back-to-top:hover {
	transform:translateY(-3px);
}

.mobile-experience-panel {
	border-radius:8px;
}

@media(max-width:480px) {
	.container {
		width:calc(100% - 28px);
	}
	.page-banner h1 {
		font-size:30px;
	}
	.footer-cta {
		display:block;
		padding:20px;
	}
	.footer-cta .button {
		margin-top:15px;
	}
	.back-to-top {
		right:14px;
		bottom:78px;
	}
	.news-img-wrap {
		height:175px;
	}
}

:root {
	--ink:#2a211e;
	--muted:#766b65;
	--brand:#bd3b43;
	--brand-dark:#8f2932;
	--mint:#f8dfd8;
	--line:#eadbd3;
	--paper:#fffdf9;
	--cream:#fbf1e8;
	--shadow:0 18px 48px rgba(83,38,31,.12);
	--sun:#f1c26e;
	--berry:#bd3b43;
}

@font-face {
	font-family:FMIcon;
	src:url('/skin/webfonts/fa-solid-900.woff2') format('woff2');
	font-style:normal;
	font-weight:900;
	font-display:block;
}

.fa {
	font-family:FMIcon!important;
	font-style:normal;
	font-weight:900!important;
}

.fa:before {
	font-family:FMIcon;
}

.fa-arrow-right:before {
	content:"\f061";
}

.fa-arrow-up:before {
	content:"\f062";
}

.fa-angle-down:before {
	content:"\f107";
}

.fa-angle-right:before {
	content:"\f105";
}

.fa-clock-o:before {
	content:"\f017";
}

.fa-eye:before {
	content:"\f06e";
}

.fa-check-circle:before {
	content:"\f058";
}

.fa-quote-left:before {
	content:"\f10d";
}

.fa-plus:before {
	content:"\f067";
}

.fa-long-arrow-right:before {
	content:"\f178";
}

.fa-download:before {
	content:"\f019";
}

.fa-play:before {
	content:"\f04b";
}

.fa-play-circle:before {
	content:"\f144";
}

.fa-headphones:before {
	content:"\f025";
}

.fa-book:before {
	content:"\f02d";
}

.fa-microphone:before {
	content:"\f130";
}

.fa-mobile:before {
	content:"\f10b";
}

.fa-compass:before {
	content:"\f14e";
}

html {
	background:var(--cream);
}

body {
	background:var(--cream);
	color:var(--ink);
	font-family:"PingFang SC","Microsoft YaHei",sans-serif;
}

.site-header {
	height:78px;
	background:rgba(255,253,249,.94);
	border-bottom:1px solid rgba(189,59,67,.14);
	position:sticky;
	top:0;
	backdrop-filter:saturate(1.2) blur(12px);
}

.brand-logo {
	width:48px;
	height:48px;
	border-radius:13px;
}

.brand-copy strong {
	color:var(--ink);
	font-weight:800;
}

.brand-copy small {
	color:var(--muted);
}

.site-nav ul {
	gap:clamp(15px,2vw,30px);
}

.site-nav a {
	color:#5f514b;
	position:relative;
	font-weight:600;
}

.site-nav a:after {
	content:"";
	position:absolute;
	left:-5px;
	right:-5px;
	bottom:3px;
	height:8px;
	border-radius:6px 3px 7px 4px;
	background:var(--mint);
	opacity:0;
	transform:scaleX(.3) rotate(-2deg);
	z-index:-1;
	transition:opacity .2s,transform .3s;
}

.site-nav a:hover:after,.site-nav a.is-active:after {
	opacity:.95;
	transform:scaleX(1) rotate(-2deg);
}

.site-nav a.is-active {
	color:var(--ink);
}

.header-experience,.button-primary {
	background:var(--brand);
	border:2px solid var(--ink);
	box-shadow:3px 3px 0 var(--ink);
	border-radius:999px;
	color:#fff;
	padding:10px 20px;
	transition:transform .2s,box-shadow .2s;
}

.header-experience:hover,.button-primary:hover {
	transform:translate(-1px,-1px);
	box-shadow:5px 5px 0 var(--ink);
}

.hero {
	width:min(1200px,calc(100% - 40px));
	min-height:540px;
	margin:30px auto 0;
	padding:82px 60px 78px;
	display:grid;
	grid-template-columns:minmax(0,1fr) minmax(360px,.9fr);
	gap:28px;
	align-items:center;
	border:1px solid var(--line);
	border-radius:28px;
	background:#fffdf9 url('/skin/images/bg.jpg') center/cover no-repeat;
	box-shadow:0 18px 55px rgba(97,42,37,.10);
	overflow:hidden;
}

.hero-copy {
	max-width:570px;
}

.hero h1 {
	color:var(--ink);
	font-size:clamp(40px,4.7vw,64px);
	line-height:1.16;
	letter-spacing:-.04em;
}

.hero-text {
	color:#725f58;
	font-size:17px;
	line-height:1.9;
}

.hero-actions {
	margin:28px 0;
}

.hero-actions .button {
	border-radius:999px;
	margin-right: 12px;
}

.button-light {
	border:2px solid var(--ink);
	background:rgba(255,253,249,.8);
	color:var(--ink);
	box-shadow:3px 3px 0 rgba(42,33,30,.18);
}

.hero-note {
	color:#766b65;
}

.hero-note i {
	color:var(--brand);
}

.hero-art {
	min-height:350px;
}

.sound-orbit {
	width:280px;
	height:280px;
	border-color:rgba(189,59,67,.24);
	background:radial-gradient(circle,rgba(248,223,216,.85) 0 30%,transparent 31%),radial-gradient(circle,rgba(255,253,249,.72) 0 62%,transparent 63%);
}

.sound-orbit:before {
	border-color:rgba(189,59,67,.24);
}

.sound-orbit:after {
	border-color:rgba(189,59,67,.2);
}

.play-mark {
	background:var(--brand);
	box-shadow:0 12px 28px rgba(189,59,67,.32);
}

.floating-card {
	border:1.5px solid var(--ink);
	border-radius:12px;
	box-shadow:3px 4px 0 rgba(42,33,30,.12);
}

.floating-card b {
	color:var(--brand);
}

.feature-strip {
	background:transparent;
	margin-top:-34px;
	position:relative;
	z-index:2;
}

.feature-grid {
	grid-template-columns:repeat(6,minmax(0,1fr));
	gap:0;
	padding:14px 16px;
	background:#fffdf9;
	border:1px solid var(--line);
	border-radius:24px;
	box-shadow:0 12px 30px rgba(83,38,31,.12);
}

.feature-grid a {
	min-width:0;
	display:flex;
	align-items:center;
	gap:9px;
	padding:15px 14px;
	border-right:1px dashed var(--line);
	color:var(--ink);
	border-radius:14px;
	transition:background .2s,transform .2s;
}

.feature-grid a:last-child {
	border-right:0;
}

.feature-grid a:hover {
	background:#fae8e1;
	transform:translateY(-2px);
}

.feature-grid i {
	color:var(--brand);
	font-size:22px;
	flex:none;
}

.feature-grid b,.feature-grid span {
	display:block;
}

.feature-grid b {
	font-size:14px;
	white-space:nowrap;
}

.feature-grid span {
	color:var(--muted);
	font-size:11px;
	white-space:nowrap;
}

.section {
	padding:88px 0;
}

.section-heading h2 {
	color:var(--ink);
	font-size:34px;
}

.eyebrow {
	color:var(--brand);
	letter-spacing:.18em;
}

.text-link,.listen-link,.read-more {
	color:var(--brand-dark);
}

.section-tint {
	background:#f5ddd4;
	border-radius:28px;
	width:min(1200px,calc(100% - 40px));
	margin:20px auto;
	padding-left:40px;
	padding-right:40px;
}

.section-tint .container {
	width:100%;
}

.program-grid {
	gap:18px;
}

.program-card {
	border:1.5px solid var(--line);
	border-radius:18px;
	background:#fffdf9;
	padding:8px;
	box-shadow:0 7px 0 rgba(42,33,30,.06);
}

.program-card:hover {
	transform:translateY(-6px) rotate(-.4deg);
	box-shadow:0 14px 24px rgba(83,38,31,.14);
}

.cover-image {
	height:212px;
	border-radius:12px;
}

.program-body {
	padding:17px 14px 14px;
}

.program-body h3 {
	font-size:18px;
}

.tag {
	color:var(--brand);
}

.reason-list>div {
	border-bottom:1px dashed rgba(189,59,67,.22);
}

.reason-list span {
	color:var(--brand);
}

.quote-panel {
	border:1.5px solid var(--ink);
	border-radius:18px;
	box-shadow:5px 6px 0 rgba(42,33,30,.1);
	background:#fffdf9;
}

.quote-panel i {
	color:var(--brand);
}

.review-grid {
	gap:18px;
}

.review-grid blockquote {
	background:#fffdf9;
	border:1.5px solid var(--line);
	border-radius:18px;
	box-shadow:4px 5px 0 rgba(42,33,30,.07);
	padding:26px 24px;
	position:relative;
}

.review-grid blockquote:before {
	content:"\f10d";
	font-family:FMIcon;
	color:var(--mint);
	font-size:58px;
	line-height:1;
	position:absolute;
	right:18px;
	top:14px;
	z-index:0;
}

.review-grid blockquote>* {
	position:relative;
	z-index:1;
}

.review-grid blockquote img {
	border:2px solid var(--mint);
}

.stars {
	color:var(--brand);
	letter-spacing:3px;
}

.faq-section {
	background:#f5ddd4;
	border-radius:28px;
	width:min(1200px,calc(100% - 40px));
	margin:20px auto;
}

.faq-section .container {
	width:min(860px,calc(100% - 48px));
}

.faq-item {
	border-bottom:1px dashed rgba(189,59,67,.25);
}

.faq-question {
	font-size:15px;
}

.faq-question i {
	color:var(--brand);
}

.news-card {
	border-top:0;
	border:1.5px solid var(--line);
	border-radius:17px;
	background:#fffdf9;
	padding:8px;
	box-shadow:4px 5px 0 rgba(42,33,30,.06);
	overflow:hidden;
}

.news-img-wrap {
	height:155px;
	border-radius:11px;
}

.news-content {
	padding:8px 10px 10px;
}

.news-card h3 {
	font-size:17px;
}

.news-grid .news-content {
	display:grid;
	grid-template-areas:
		"title title"
		"desc desc"
		"date more";
	grid-template-columns:minmax(0,1fr) auto;
	align-content:start;
	column-gap:12px;
	row-gap:0;
	padding:6px 8px 8px;
}

.news-grid .news-content h3 {
	grid-area:title;
}

.news-grid .news-content h3 {
	margin:0 0 4px;
}

.news-grid .news-content p {
	grid-area:desc;
	margin:0 0 8px;
}

.news-grid .news-date {
	grid-area:date;
	align-self:center;
}

.news-grid .read-more {
	grid-area:more;
	align-self:center;
	justify-self:end;
}

.page-banner,.listen-hero,.download-hero,.guide-hero,.discover-hero {
	position:relative;
	width:min(1160px,calc(100% - 40px));
	max-width:none;
	height:320px;
	margin:30px auto 0;
	border:1px solid var(--line);
	border-radius:28px;
	overflow:hidden;
}

.page-banner {
	padding:68px 60px;
	background:#f4ddd3;
}

.page-banner h1 {
	color:var(--ink);
	font-size:clamp(36px,4vw,52px);
}

.page-banner p:last-child {
	color:#725f58;
}

/* 栏目页 hero 正文收窄，避免长句压到右侧插画（宽屏下 art 从约 800px 起）。
   注意不能给 .lanmu-hero-text 本身加 max-width——它同时是 .container，会触发 margin:0 auto 把整块居中。 */
.lanmu-hero-text > p:last-child {
	max-width:600px;
}

.page-banner .breadcrumb {
	position:absolute;
	top:18px;
	left:60px;
	margin:0;
	padding:0;
}

.breadcrumb {
	padding:22px 0;
	color:var(--muted);
}

.breadcrumb a:hover {
	color:var(--brand);
}

.content-layout {
	gap:26px;
}

.content-column,.article-detail,.sidebar {
	min-width:0;
}

.list-item,.article-list {
	background:#fffdf9;
	border:1.5px solid var(--line);
	border-radius:16px;
	margin:12px 0;
	padding:14px;
	box-shadow:3px 4px 0 rgba(42,33,30,.05);
}

.list-item {
	grid-template-columns:150px 1fr;
}

.list-thumb {
	border-radius:11px;
}

.article-list {
	padding:20px;
}

.article-list h2,.list-item h2 {
	font-size:20px;
}

.sidebar {
	background:transparent;
}

.sidebar h3 {
	border-color:var(--brand);
	color:var(--ink);
}

.like-item {
	background:#fffdf9;
	border-bottom:1px dashed var(--line);
	padding:14px 16px;
}

.side-cta {
	background:#f5ddd4;
	border:1px solid var(--line);
	border-radius:16px;
}

.article-detail {
	background:#fffdf9;
	border:1.5px solid var(--line);
	border-radius:20px;
	padding:30px;
	box-shadow:4px 5px 0 rgba(42,33,30,.05);
}

.article-detail h1 {
	color:var(--ink);
}

.article-content a {
	color:var(--brand-dark);
}

.about-page {
	padding-top:30px;
}

.about-intro,.about-values>div {
	background:#fffdf9;
	border:1.5px solid var(--line);
	border-radius:18px;
	box-shadow:3px 4px 0 rgba(42,33,30,.05);
}

.about-intro {
	padding:30px;
}

.about-values>div {
	border-left:4px solid var(--brand);
}

.site-footer {
	background:#2a211e;
	color:#f3e5dd;
	padding:52px 0 22px;
	margin-top:44px;
}

.site-footer .container.footer-cta {
	margin:0 auto 34px;
}

.pagebar {
	margin-top:36px;
}

.pagination {
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items:center;
	gap:6px;
}

.pagebar .page-item {
	min-width:36px;
	height:36px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:0 10px;
	border:1px solid var(--line);
	border-radius:8px;
	background:#fff;
	color:var(--muted);
	font-size:13px;
	font-weight:500;
	text-decoration:none;
	transition:background .2s,border-color .2s,color .2s;
}

.pagebar .page-item:hover {
	border-color:var(--brand);
	background:var(--mint);
	color:var(--brand-dark);
}

.pagebar .page-link {
	padding:0 12px;
	font-size:12px;
}

.pagebar .page-num-current {
	border-color:var(--brand);
	background:var(--brand);
	color:#fff;
	font-weight:700;
	pointer-events:none;
}

.faq-layout {
	display:grid;
	grid-template-columns:minmax(0,1fr) 270px;
	align-items:start;
	gap:30px;
	padding:38px 0 88px;
}

.faq-main,.faq-sidebar {
	min-width:0;
}

.faq-intro {
	margin-bottom:20px;
	padding:22px 24px;
	border:1px solid var(--line);
	border-left:4px solid var(--brand);
	border-radius:8px;
	background:#f6faf7;
}

.faq-intro .eyebrow,.faq-help-card .eyebrow {
	margin:0 0 5px;
	color:var(--brand-dark);
	font-size:11px;
	font-weight:800;
	letter-spacing:.08em;
}

.faq-intro h2,.faq-help-card h2,.faq-side-note h2 {
	margin:0 0 7px;
	color:var(--ink);
	font-size:20px;
}

.faq-intro>p:last-child,.faq-side-note p {
	margin:0;
	color:var(--muted);
	font-size:13px;
}

.faq-list {
	display:grid;
	gap:12px;
}

.faq-list .faq-item {
	border:1px solid var(--line);
	border-radius:8px;
	background:#fff;
	box-shadow:0 2px 8px rgba(24,53,45,.04);
	overflow:hidden;
	transition:border-color .2s,box-shadow .2s;
}

.faq-list .faq-item.is-open {
	border-color:#a9d4c2;
	box-shadow:0 5px 16px rgba(24,53,45,.08);
}

.faq-list .faq-question {
	min-height:62px;
	padding:17px 18px;
	gap:14px;
	color:var(--ink);
	font-size:15px;
	line-height:1.5;
	transition:background .2s,color .2s;
}

.faq-list .faq-question:hover,
.faq-list .faq-item.is-open .faq-question {
	background:#f3faf6;
	color:var(--brand-dark);
}

.faq-list .faq-question i {
	width:24px;
	height:24px;
	flex:0 0 24px;
	display:grid;
	place-items:center;
	border:1px solid var(--line);
	border-radius:50%;
	font-size:12px;
	transition:transform .2s,background .2s,color .2s;
}

.faq-list .faq-item.is-open .faq-question i {
	transform:rotate(45deg);
	border-color:var(--brand);
	background:var(--brand);
	color:#fff;
}

.faq-list .faq-answer {
	display:none;
	max-height:none;
	padding:0;
	color:var(--muted);
}

.faq-list .faq-item.is-open .faq-answer {
	display:block;
	max-height:none;
	padding:0 18px 17px;
	font-size:14px;
	line-height:1.8;
}

.faq-list .faq-content {
	min-height:0;
	overflow:hidden;
	padding:0;
}

.faq-list .faq-item.is-open .faq-content {
	padding:0;
}

.faq-list .faq-content p {
	margin:0;
	color:var(--muted);
	font-size:14px;
	line-height:1.8;
}

.faq-list .faq-content .more-link {
	margin:9px 0 0;
	font-size:13px;
	font-weight:700;
}

.faq-help-card,.faq-side-note {
	margin-bottom:16px;
	padding:20px;
	border:1px solid var(--line);
	border-radius:8px;
	background:#fff;
}

.faq-help-card {
	border-top:3px solid var(--brand);
}

.faq-help-card h2 {
	margin-bottom:12px;
	font-size:17px;
}

.faq-help-card>a {
	min-height:42px;
	display:grid;
	grid-template-columns:22px minmax(0,1fr) 16px;
	align-items:center;
	gap:9px;
	border-top:1px solid #edf3ef;
	color:var(--ink);
	font-size:13px;
}

.faq-help-card>a>i:first-child {
	color:var(--brand);
	text-align:center;
}

.faq-help-card>a>i:last-child {
	color:var(--muted);
	text-align:right;
}

.faq-help-card>a:hover,.faq-side-note>a:hover {
	color:var(--brand-dark);
}

.faq-side-note {
	background:#f7faf8;
}

.faq-side-note h2 {
	font-size:16px;
}

.faq-side-note>a {
	display:inline-block;
	margin-top:12px;
	color:var(--brand-dark);
	font-size:13px;
	font-weight:700;
}

.article-nav {
	margin-top:32px;
	padding-top:20px;
	border-top:1px solid var(--line);
}

.article-nav ul {
	margin:0;
	padding:0;
	list-style:none;
	display:flex;
	justify-content:space-between;
	gap:16px;
}

.article-nav li {
	min-width:0;
	flex:1;
	color:var(--muted);
	font-size:13px;
	line-height:1.5;
}

.article-nav li.l {
	text-align:left;
}

.article-nav li.r {
	text-align:right;
}

.article-nav li a {
	color:var(--brand-dark);
}

.article-nav li span {
	display:block;
	margin-top:3px;
	color:var(--ink);
	font-size:14px;
}

@media(max-width:800px) {
	.faq-layout {
		grid-template-columns:1fr;
		gap:18px;
		padding:24px 0 62px;
	}
	.faq-sidebar {
		display:grid;
		grid-template-columns:repeat(2,minmax(0,1fr));
		gap:12px;
	}
	.faq-help-card,.faq-side-note {
		margin:0;
	}
}

@media(max-width:480px) {
	.pagebar {
		margin-top:26px;
	}
	.pagination {
		gap:4px;
	}
	.pagebar .page-item {
		min-width:30px;
		height:32px;
		padding:0 7px;
		font-size:11px;
	}
	.pagebar .page-link {
		padding:0 8px;
		font-size:10px;
	}
	.faq-sidebar {
		grid-template-columns:1fr;
	}
	.faq-list .faq-question {
		padding:13px 14px;
		font-size:14px;
	}
	.faq-list .faq-item.is-open .faq-answer {
		padding:0 14px 14px;
	}
	.article-nav ul {
		flex-direction:column;
		gap:14px;
	}
	.article-nav li.r {
		text-align:left;
	}
}

.footer-cta {
	background:#f5ddd4;
	border:2px solid #2a211e;
	border-radius:20px;
	box-shadow:5px 6px 0 rgba(0,0,0,.18);
}

.about-page-rich .about-content {
	padding:38px 0 88px;
}

.about-page-rich .about-brand-intro {
	display:grid;
	grid-template-columns:220px minmax(0,1fr);
	align-items:center;
	gap:46px;
	padding:38px 34px 48px;
	border-bottom:1px solid var(--line);
}

.about-page-rich .about-brand-mark {
	width:200px;
	 aspect-ratio:1;
	display:grid;
	place-items:center;
	border:1px solid var(--line);
	border-radius:8px;
	background:#fff;
}

.about-page-rich .about-brand-mark img {
	width:160px;
	height:160px;
	object-fit:contain;
}

.about-page-rich .about-brand-copy {
	max-width:760px;
}

.about-page-rich .about-brand-copy .eyebrow,
.about-page-rich .about-contact .eyebrow {
	margin:0 0 8px;
	color:var(--brand-dark);
	font-size:11px;
	font-weight:800;
	letter-spacing:.1em;
}

.about-page-rich .about-brand-copy h2,
.about-page-rich .about-section-heading h2,
.about-page-rich .about-browse h2,
.about-page-rich .about-contact h2 {
	margin:0 0 12px;
	color:var(--ink);
	font-size:28px;
	line-height:1.4;
}

.about-page-rich .about-brand-copy p:not(.eyebrow),
.about-page-rich .about-browse-copy p:not(.eyebrow),
.about-page-rich .about-contact p:not(.eyebrow) {
	margin:0 0 12px;
	color:var(--muted);
	font-size:15px;
	line-height:1.9;
}

.about-page-rich .about-brand-copy p:last-child,
.about-page-rich .about-browse-copy p:last-child,
.about-page-rich .about-contact p:last-child {
	margin-bottom:0;
}

.about-page-rich .about-section {
	padding:54px 0;
	border-bottom:1px solid var(--line);
}

.about-page-rich .about-section-heading {
	max-width:760px;
	margin-bottom:24px;
}

.about-page-rich .about-section-index {
	display:block;
	margin-bottom:8px;
	color:var(--brand-dark);
	font-size:11px;
	font-weight:800;
	letter-spacing:.08em;
}

.about-page-rich .about-topic-grid {
	display:grid;
	grid-template-columns:repeat(3,minmax(0,1fr));
	gap:18px;
}

.about-page-rich .about-topic-grid article {
	min-width:0;
	padding:22px 20px;
	border:1px solid var(--line);
	border-radius:6px;
	background:#fff;
}

.about-page-rich .about-topic-grid article>span {
	color:var(--brand);
	font-size:12px;
	font-weight:800;
}

.about-page-rich .about-topic-grid h3 {
	margin:9px 0 7px;
	color:var(--ink);
	font-size:18px;
}

.about-page-rich .about-topic-grid p {
	min-height:76px;
	margin:0 0 14px;
	color:var(--muted);
	font-size:14px;
	line-height:1.8;
}

.about-page-rich .about-topic-grid a,
.about-page-rich .about-contact>a {
	color:var(--brand-dark);
	font-size:13px;
	font-weight:700;
}

.about-page-rich .about-topic-grid a:hover,
.about-page-rich .about-contact>a:hover {
	color:var(--brand);
}

.about-page-rich .about-browse {
	display:grid;
	grid-template-columns:minmax(0,1.3fr) minmax(240px,.7fr);
	align-items:center;
	gap:54px;
}

.about-page-rich .about-browse h2 {
	margin-top:7px;
}

.about-page-rich .about-quick-links {
	border-top:1px solid var(--line);
}

.about-page-rich .about-quick-links a {
	min-height:48px;
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:12px;
	border-bottom:1px solid var(--line);
	color:var(--ink);
	font-size:14px;
	font-weight:600;
}

.about-page-rich .about-quick-links a i {
	color:var(--brand);
}

.about-page-rich .about-principles-list {
	display:grid;
	grid-template-columns:repeat(3,minmax(0,1fr));
	gap:26px;
}

.about-page-rich .about-principles-list>div {
	padding-left:16px;
	border-left:3px solid var(--brand);
}

.about-page-rich .about-principles-list b {
	color:var(--ink);
	font-size:16px;
}

.about-page-rich .about-principles-list p {
	margin:7px 0 0;
	color:var(--muted);
	font-size:14px;
	line-height:1.8;
}

.about-page-rich .about-contact {
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:24px;
	margin-top:42px;
	padding:26px 28px;
	border-left:4px solid var(--brand);
	background:#f6faf7;
}

.about-page-rich .about-contact h2 {
	margin-bottom:6px;
	font-size:22px;
}

.about-page-rich .about-contact>a {
	flex:0 0 auto;
}

@media(max-width:800px) {
	.about-page-rich .about-content {
		padding:24px 0 60px;
	}
	.about-page-rich .about-brand-intro {
		grid-template-columns:150px minmax(0,1fr);
		gap:24px;
		padding:24px 20px 34px;
	}
	.about-page-rich .about-brand-mark {
		width:140px;
	}
	.about-page-rich .about-brand-mark img {
		width:112px;
		height:112px;
	}
	.about-page-rich .about-topic-grid,
	.about-page-rich .about-principles-list {
		grid-template-columns:1fr;
		gap:14px;
	}
	.about-page-rich .about-topic-grid p {
		min-height:0;
	}
	.about-page-rich .about-browse {
		grid-template-columns:1fr;
		gap:24px;
	}
}

@media(max-width:520px) {
	.about-page-rich .about-brand-intro {
		grid-template-columns:1fr;
		gap:20px;
		padding:22px 16px 30px;
	}
	.about-page-rich .about-brand-mark {
		width:116px;
	}
	.about-page-rich .about-brand-mark img {
		width:92px;
		height:92px;
	}
	.about-page-rich .about-brand-copy h2,
	.about-page-rich .about-section-heading h2,
	.about-page-rich .about-browse h2 {
		font-size:24px;
	}
	.about-page-rich .about-section {
		padding:38px 0;
	}
	.about-page-rich .about-topic-grid article {
		padding:18px 16px;
	}
	.about-page-rich .about-contact {
		align-items:flex-start;
		flex-direction:column;
		gap:14px;
		margin-top:28px;
		padding:20px;
	}
}

.footer-cta h2 {
	color:var(--ink);
}

.footer-cta p {
	color:#766b65;
}

.footer-cta .button {
	background:var(--brand);
	border:2px solid var(--ink);
	color:#fff;
	box-shadow:3px 3px 0 var(--ink);
}

.footer-brand strong {
	color:#fff;
}

.footer-links a {
	color:#eadbd3;
}

.footer-links a:hover {
	color:#fff;
}

.footer-bottom {
	border-color:rgba(255,255,255,.2);
	color:#bfaea6;
}

.mobile-experience-trigger {
	background:var(--brand);
	border:2px solid var(--ink);
	box-shadow:3px 3px 0 var(--ink);
}

.back-to-top {
	border:2px solid var(--ink);
	color:var(--brand);
	box-shadow:3px 4px 0 rgba(42,33,30,.12);
}

@media(max-width:1000px) {
	.feature-grid {
		grid-template-columns:repeat(3,minmax(0,1fr));
	}
	.feature-grid a:nth-child(3) {
		border-right:0;
	}
	.feature-grid a:nth-child(4),.feature-grid a:nth-child(5),.feature-grid a:nth-child(6) {
		border-top:1px dashed var(--line);
	}
	.hero {
		grid-template-columns:1fr;
		padding:70px 44px 190px;
		background-position:center right;
	}
	.hero-art {
		display:none;
	}
}

@media(max-width:800px) {
	.site-header {
		height:70px;
	}
	.site-nav {
		top:70px;
		background:#fffdf9;
	}
	.hero {
		width:calc(100% - 28px);
		min-height:560px;
		padding:58px 25px 180px;
		border-radius:22px;
		background-position:62% center;
	}
	.hero h1 {
		font-size:40px;
	}
	.feature-strip {
		margin-top:-100px;
	}
	.feature-grid {
		grid-template-columns:repeat(2,minmax(0,1fr));
		padding:10px;
	}
	.feature-grid a {
		border-right:0!important;
		border-top:0!important;
		padding:13px 8px;
	}
	.feature-grid a:nth-child(n+3) {
		border-top:1px dashed var(--line)!important;
	}
	.section-tint,.faq-section {
		width:calc(100% - 28px);
		padding-left:16px;
		padding-right:16px;
		border-radius:22px;
	}
	.page-banner {
		padding:56px 25px;
		background-position:65% center;
	}
	.content-layout {
		gap:22px;
	}
	.article-detail {
		padding:22px;
	}
	.about-intro {
		padding:22px;
	}
}

@media(max-width:480px) {
	.hero h1 {
		font-size:34px;
	}
	.hero-text {
		font-size:15px;
	}
	.feature-grid b {
		font-size:13px;
	}
	.feature-grid span {
		font-size:10px;
	}
	.section {
		padding:64px 0;
	}
	.page-banner h1 {
		font-size:34px;
	}
	.footer-cta {
		padding:20px;
	}
	.footer-cta .button {
		margin-top:15px;
	}
}

.footer-cta {
	justify-content:center;
	flex-direction:column;
	text-align:center;
}

.footer-cta>div {
	max-width:720px;
}

.footer-cta .button {
	margin-top:4px;
}

.skip-link {
	position:absolute;
	left:14px;
	top:-50px;
	z-index:100;
	border:2px solid var(--ink);
	border-radius:999px;
	background:var(--sun);
	color:var(--ink);
	padding:8px 14px;
	font-weight:700;
}

.skip-link:focus {
	top:12px;
}

.header-inner {
	gap:24px;
}

.site-nav {
	flex:1;
	min-width:0;
}

.site-nav ul {
	justify-content:flex-end;
	gap:clamp(10px,1.2vw,20px);
}

.site-nav a {
	font-size:15px;
}

.header-tools {
	display:flex;
	align-items:center;
	gap:12px;
	flex:none;
}

.site-search {
	width:220px;
	height:40px;
	display:flex;
	align-items:center;
	border:1px solid var(--line);
	border-radius:999px;
	background:#fffdf9;
	padding:0 10px 0 14px;
}

.site-search input {
	width:100%;
	min-width:0;
	border:0;
	outline:0;
	background:transparent;
	color:var(--ink);
	font:inherit;
	font-size:12px;
}

.site-search input::placeholder {
	color:#a39891;
}

.site-search button {
	width:28px;
	height:28px;
	border:0;
	border-radius:50%;
	background:transparent;
	color:var(--ink);
	cursor:pointer;
}

.site-search button:hover {
	color:var(--brand);
	background:var(--mint);
}

.header-login {
	display:inline-flex;
	align-items:center;
	justify-content:center;
	height:40px;
	padding:0 17px;
	border:2px solid var(--ink);
	border-radius:999px;
	background:var(--sun);
	color:var(--ink);
	font-size:13px;
	font-weight:800;
	white-space:nowrap;
	box-shadow:2px 3px 0 var(--ink);
}

.header-login:hover {
	transform:translateY(-1px);
	box-shadow:3px 4px 0 var(--ink);
}

.sr-only {
	position:absolute;
	width:1px;
	height:1px;
	padding:0;
	margin:-1px;
	overflow:hidden;
	clip:rect(0,0,0,0);
	white-space:nowrap;
	border:0;
}

@media(max-width:1120px) {
	.site-nav ul {
		gap:10px;
	}
	.site-nav a {
		font-size:14px;
	}
	.site-search {
		width:175px;
	}
	.header-login {
		padding:0 12px;
	}
}

@media(max-width:900px) {
	.header-tools {
		margin-left:auto;
	}
	.site-search,.header-login {
		display:none;
	}
	.site-nav {
		display:none;
	}
	.site-nav.is-open {
		display:block;
	}
	.menu-toggle {
		display:block;
	}
	.menu-toggle[aria-expanded="true"] {
		background:var(--mint);
		border-radius:8px;
	}
	.site-nav ul {
		display:block;
	}
	.site-nav li {
		border-bottom:1px dashed var(--line);
	}
	.site-nav a {
		font-size:14px;
	}
	.site-nav .nav-sub {
		display:block!important;
	}
}

.fa-search:before {
	content:"\f002";
}

.fa-history:before {
	content:"\f1da";
}

.fa-heart:before {
	content:"\f004";
}

.fa-comment:before {
	content:"\f075";
}

.fa-sliders:before {
	content:"\f1de";
}

.fa-leaf:before {
	content:"\f06c";
}

.fa-heart-o:before {
	content:"\f004";
}

.fa-comments-o:before {
	content:"\f075";
}

.catalog-toolbar {
	margin:0 auto 28px;
	padding:18px 22px;
	background:#fffdf9;
	border:1.5px solid var(--line);
	border-radius:18px;
	box-shadow:3px 4px 0 rgba(42,33,30,.05);
	display:flex;
	justify-content:space-between;
	gap:20px;
	flex-wrap:wrap;
	margin-top: 10px;
}

.catalog-toolbar>div {
	display:flex;
	align-items:center;
	gap:8px;
	flex-wrap:wrap;
}

.catalog-toolbar b {
	margin-right:8px;
	color:var(--ink);
}

.catalog-toolbar a {
	border:1px solid var(--line);
	border-radius:999px;
	padding:4px 12px;
	color:var(--muted);
	font-size:13px;
}

.catalog-toolbar a:hover,.catalog-toolbar a.is-active {
	background:var(--mint);
	border-color:var(--brand);
	color:var(--brand-dark);
}

.drama-grid {
	display:grid;
	grid-template-columns:repeat(4,minmax(0,1fr));
	gap:20px;
}

.drama-card {
	border:1.5px solid var(--line);
	border-radius:18px;
	background:#fffdf9;
	box-shadow:4px 5px 0 rgba(42,33,30,.06);
	overflow:hidden;
	transition:transform .25s,box-shadow .25s;
}

.drama-card:hover {
	transform:translateY(-5px) rotate(-.3deg);
	box-shadow:7px 10px 0 rgba(42,33,30,.08);
}

.drama-cover {
	display:block;
	aspect-ratio:5/6;
	position:relative;
	overflow:hidden;
	background:var(--mint);
}

.drama-cover img {
	display:block;
	width:100%;
	height:100%;
	object-fit:cover;
	transition:transform .45s;
}

.drama-card:hover .drama-cover img {
	transform:scale(1.04);
}

.drama-cover span {
	position:absolute;
	left:10px;
	top:10px;
	background:var(--brand);
	color:#fff;
	border:1px solid var(--ink);
	border-radius:6px;
	padding:3px 7px;
	font-size:11px;
	font-weight:700;
}

.drama-card-body {
	padding:15px 16px 17px;
}

.drama-card-body h2 {
	margin:0 0 6px;
	font-size:18px;
	line-height:1.4;
}

.drama-card-body p {
	height:45px;
	margin:0;
	color:var(--muted);
	font-size:13px;
	line-height:1.7;
	overflow:hidden;
	display:-webkit-box;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:2;
}

.drama-more {
	color:var(--brand-dark);
	font-size:13px;
	font-weight:700;
}

.catalog-pagination {
	padding:26px 0 10px;
}

.listen-hero,.download-hero,.guide-hero {
	padding:68px 60px 30px;
	background-color:#fffdf9;
	background-position:center right;
	background-size:cover;
}

.download-hero,.guide-hero {
	display:flex;
	flex-direction:column;
	justify-content:center;
}

.listen-hero .breadcrumb,.download-hero .breadcrumb,.guide-hero .breadcrumb {
	position:absolute;
	top:18px;
	left:60px;
	margin:0;
	padding:0;
}

.listen-hero-grid {
	display:grid;
	grid-template-columns:minmax(0,1fr) 360px;
	gap:40px;
	align-items:center;
}

.listen-hero h1,.download-title h1,.guide-hero h1 {
	margin:6px 0 8px;
	color:var(--ink);
	font-size:clamp(36px,3.5vw,46px);
	line-height:1.15;
}

.listen-hero p:not(.eyebrow),.download-title p:not(.eyebrow),.guide-hero p:not(.eyebrow) {
	color:#725f58;
	font-size:15px;
	line-height:1.6;
	max-width:610px;
}

.listen-hero .hero-actions {
	margin-top:12px;
}

.listen-hero .hero-actions .button {
	padding:9px 16px;
	font-size:14px;
}

.listen-visual {
	border:2px solid var(--ink);
	border-radius:20px;
	background:#fff;
	box-shadow:6px 7px 0 rgba(42,33,30,.12);
	overflow:hidden;
	transform:rotate(2deg);
}

.listen-visual img {
	display:block;
	width:100%;
	height:145px;
	object-fit:cover;
	object-position:center top;
}

.info-panel {
	margin-top:26px;
	padding:32px;
	background:#fffdf9;
	border:1.5px solid var(--line);
	border-radius:20px;
	box-shadow:4px 5px 0 rgba(42,33,30,.06);
}

.info-panel .section-heading {
	margin-bottom:20px;
}

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

.step-grid>div {
	padding:20px;
	border:1px dashed var(--line);
	border-radius:15px;
	background:#fff8f1;
}

.step-grid b,.guide-steps>article>span {
	color:var(--brand);
	font-size:22px;
	font-weight:800;
}

.step-grid h3 {
	margin:5px 0;
	font-size:17px;
}

.step-grid p {
	margin:0;
	color:var(--muted);
	font-size:13px;
}

.info-panel>.muted {
	margin:20px 0 0;
}

.feature-cards {
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:15px;
}

.feature-cards>div {
	padding:22px;
	background:#fffdf9;
	border:1.5px solid var(--line);
	border-radius:16px;
	box-shadow:3px 4px 0 rgba(42,33,30,.05);
}

.feature-cards i {
	color:var(--brand);
	font-size:24px;
}

.feature-cards h3 {
	margin:9px 0 4px;
}

.feature-cards p {
	margin:0;
	color:var(--muted);
	font-size:13px;
}

.guide-faq {
	padding:76px 0;
}

.guide-faq .section-heading {
	margin-bottom:22px;
}

.download-title {
	padding:15px 0 12px;
}

.download-grid {
	display:grid;
	grid-template-columns:repeat(2,1fr);
	gap:20px;
	margin-top:28px;
}

.download-card {
	position:relative;
	min-height:300px;
	padding:28px;
	background:#fffdf9;
	border:1.5px solid var(--line);
	border-radius:20px;
	box-shadow:4px 5px 0 rgba(42,33,30,.06);
	overflow:hidden;
}

.download-card h2 {
	margin:6px 0 10px;
	font-size:28px;
}

.download-card>p:not(.eyebrow) {
	max-width:410px;
	color:var(--muted);
}

.download-android {
	grid-column:1/-1;
	min-height:370px;
	background:#f5ddd4;
}

.download-card-copy {
	max-width:460px;
	position:relative;
	z-index:2;
}

.download-card dl {
	display:grid;
	grid-template-columns:80px 1fr;
	gap:4px 10px;
	margin-top:22px;
	font-size:13px;
}

.download-card dt {
	color:var(--muted);
}

.download-card dd {
	margin:0;
	color:var(--ink);
	font-weight:600;
}

.download-phone {
	position:absolute;
	right:170px;
	bottom:-65px;
	width:160px;
	height:280px;
	border:4px solid var(--ink);
	border-radius:26px;
	background:#fff;
	padding:8px;
	transform:rotate(8deg);
	box-shadow:7px 8px 0 rgba(42,33,30,.16);
}

.download-phone img {
	width:100%;
	height:100%;
	object-fit:cover;
	border-radius:17px;
}

.download-qr {
	position:absolute;
	right:28px;
	bottom:28px;
	width:110px;
	height:110px;
	border:7px solid #fff;
	border-radius:10px;
	box-shadow:3px 4px 0 rgba(42,33,30,.13);
}

.mini-steps {
	display:grid;
	gap:10px;
	margin-top:28px;
}

.mini-steps div {
	display:flex;
	align-items:center;
	gap:12px;
}

.mini-steps b {
	display:grid;
	place-items:center;
	width:27px;
	height:27px;
	border-radius:50%;
	background:var(--mint);
	color:var(--brand);
	font-size:12px;
}

.mini-steps span {
	color:var(--muted);
	font-size:13px;
}

.safety-panel {
	display:grid;
	grid-template-columns:.7fr 1.3fr;
	gap:34px;
	margin-top:28px;
	padding:30px;
	background:#2a211e;
	color:#fff;
	border-radius:20px;
}

.safety-panel h2 {
	margin:7px 0;
	font-size:28px;
}

.safety-list {
	display:grid;
	gap:9px;
}

.safety-list p {
	margin:0;
	color:#eadbd3;
}

.safety-list i {
	color:#f1c26e;
	margin-right:7px;
}

.guide-steps {
	display:grid;
	grid-template-columns:repeat(2,1fr);
	gap:18px;
	margin-top:28px;
}

.guide-steps>article {
	padding:25px 25px 22px;
	background:#fffdf9;
	border:1.5px solid var(--line);
	border-radius:18px;
	box-shadow:4px 5px 0 rgba(42,33,30,.05);
	position:relative;
}

.guide-steps>article:nth-child(even) {
	transform:rotate(.4deg);
}

.guide-steps>article:nth-child(odd) {
	transform:rotate(-.4deg);
}

.guide-steps>article>p:nth-of-type(1) {
	display:inline-block;
	margin:8px 0 0;
	color:var(--brand);
	font-size:12px;
	font-weight:800;
	letter-spacing:.12em;
}

.guide-steps h2 {
	margin:4px 0 8px;
	font-size:20px;
}

.guide-steps>article>p:nth-of-type(2) {
	min-height:42px;
	margin:0 0 14px;
	color:var(--muted);
	font-size:13px;
}

.guide-steps a {
	color:var(--brand-dark);
	font-size:13px;
	font-weight:700;
}

.guide-contact {
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:25px;
	margin-top:30px;
	padding:28px 30px;
	background:#f5ddd4;
	border:1.5px solid var(--line);
	border-radius:20px;
}

.guide-contact h2 {
	margin:5px 0;
	font-size:27px;
}

.guide-contact p:last-child {
	margin:0;
	color:var(--muted);
}

@media(max-width:1000px) {
	.drama-grid {
		grid-template-columns:repeat(3,minmax(0,1fr));
	}
	.listen-hero-grid {
		grid-template-columns:1fr 300px;
	}
	.download-phone {
		right:140px;
	}
	.site-nav ul {
		gap:9px;
	}
}

@media(max-width:800px) {
	.catalog-toolbar {
		display:block;
	}
	.catalog-toolbar>div+div {
		margin-top:12px;
	}
	.drama-grid {
		grid-template-columns:repeat(2,minmax(0,1fr));
		gap:14px;
	}
	.page-banner,.listen-hero,.download-hero,.guide-hero,.discover-hero {
		width:calc(100% - 28px);
		height:320px;
		border-radius:22px;
	}
	.listen-hero,.download-hero,.guide-hero {
		padding:62px 24px 24px;
	}
	.page-banner {
		padding:56px 25px;
	}
	.lanmu-hero-text {
		background:rgba(255,253,249,.86);
		padding:14px 16px;
		border-radius:16px;
	}
	.page-banner,.download-hero,.guide-hero,.discover-hero {
		height:auto;
		min-height:320px;
	}
	.page-banner .breadcrumb,
	.listen-hero .breadcrumb,.download-hero .breadcrumb,.guide-hero .breadcrumb,
	.drama-news-page .lanmu-section-header > .breadcrumb {
		top:18px;
		left:24px;
	}
	.listen-hero-grid {
		grid-template-columns:minmax(0,1fr) 110px;
		gap:14px;
	}
	.listen-visual {
		width:110px;
		margin:0;
	}
	.listen-visual img {
		height:110px;
	}
	.step-grid,.feature-cards {
		grid-template-columns:1fr;
	}
	.section-tint {
		padding-top:55px;
		padding-bottom:55px;
	}
	.download-grid {
		grid-template-columns:1fr;
	}
	.download-android {
		grid-column:auto;
	}
	.download-phone {
		right:110px;
		width:130px;
		height:228px;
	}
	.download-qr {
		width:85px;
		height:85px;
		right:16px;
	}
	.safety-panel {
		grid-template-columns:1fr;
		gap:16px;
	}
	.guide-steps {
		grid-template-columns:1fr;
	}
	.guide-contact {
		display:block;
	}
	.guide-contact .button {
		margin-top:16px;
	}
}

@media(max-width:480px) {
	.drama-grid {
		grid-template-columns:1fr;
	}
	.drama-card-body h2 {
		font-size:19px;
	}
	.download-phone {
		right:95px;
	}
	.download-qr {
		position:relative;
		right:auto;
		bottom:auto;
		margin:25px 0 0;
	}
	.download-android {
		padding-bottom:25px;
	}
	.listen-hero h1,.download-title h1,.guide-hero h1 {
		font-size:32px;
	}
	.listen-hero p:not(.eyebrow),.download-title p:not(.eyebrow),.guide-hero p:not(.eyebrow) {
		font-size:13px;
		line-height:1.45;
	}
	.listen-hero .hero-actions .button {
		padding:7px 10px;
		font-size:12px;
	}
}

.hot-drama {
	padding:80px 0;
}

.yanse {
	background:#fff;
}

.hot-drama h2 {
	text-align:center;
	font-size:30px;
	color:var(--ink);
	margin:0 0 10px;
}

.hot-drama h2:after {
	content:"";
	display:block;
	width:60px;
	height:3px;
	background:var(--brand);
	margin:12px auto 0;
	border-radius:2px;
}

.section-desc {
	text-align:center;
	color:var(--muted);
	margin:0 auto 50px;
}

.drama-list {
	display:grid;
	grid-template-columns:repeat(4,minmax(0,1fr));
	gap:25px;
}

.drama-item {
	background:#fff;
	border:1px solid var(--line);
	border-radius:10px;
	overflow:hidden;
	box-shadow:0 2px 10px rgba(35,91,70,.08);
	transition:transform .3s,box-shadow .3s;
}

.drama-item:hover {
	transform:translateY(-6px);
	box-shadow:0 8px 24px rgba(35,91,70,.14);
}

.drama-item img {
	width:100%;
	object-fit:cover;
	display:block;
}

.drama-item h3 {
	font-size:16px;
	color:var(--ink);
	padding:15px 15px 5px;
	text-align:center;
	font-weight:600;
	margin:0;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
}

.item-tip {
	text-align:center;
	color:var(--muted);
	font-size:13px;
	padding:0 15px 15px;
	margin:0;
}

.section-more {
	text-align:center;
	margin-top:28px;
}

.hot-drama .more-link {
	color:var(--brand-dark);
	font-weight:600;
}

.hot-drama .more-link i {
	margin-right:5px;
}

@media(max-width:1000px) {
	.drama-list {
		grid-template-columns:repeat(3,minmax(0,1fr));
	}
}

@media(max-width:800px) {
	.drama-list {
		grid-template-columns:repeat(2,minmax(0,1fr));
		gap:16px;
	}
	.hot-drama {
		padding:60px 0;
	}
	.drama-item img {
		height:190px;
	}
}

@media(max-width:480px) {
	.drama-list {
		grid-template-columns:1fr;
	}
	.drama-item img {
		height:220px;
	}
}

.update {
	padding:80px 0;
}

.update h2 {
	text-align:center;
	font-size:30px;
	color:var(--ink);
	margin:0 0 10px;
}

.update h2:after {
	content:"";
	display:block;
	width:60px;
	height:3px;
	background:var(--brand);
	margin:12px auto 0;
	border-radius:2px;
}

.update-list {
	max-width:800px;
	margin:0 auto;
}

.update-item {
	padding:20px;
	border-left:4px solid var(--brand);
	background:var(--cream);
	margin-bottom:20px;
	border-radius:0 8px 8px 0;
}

.update-item h3 {
	font-size:17px;
	color:var(--brand-dark);
	margin:0 0 10px;
}

.update-item h3 a {
	color:inherit;
}

.update-item p {
	font-size:14px;
	color:var(--muted);
	line-height:1.8;
	margin:0;
}

.update-time {
	display:inline-block;
	margin-top:12px;
	font-size:13px;
	color:var(--brand);
}

.about-home {
	padding:68px 0;
}

.about-home-heading {
	text-align:center;
	max-width:720px;
	margin:0 auto 32px;
}

.about-home-heading h2 {
	font-size:30px;
	margin:8px 0 10px;
}

.about-home-heading>p:last-child {
	color:var(--muted);
	margin:0;
}

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

.about-home-grid article {
	text-align:center;
	padding:28px 22px;
	background:#fff;
	border:1px solid var(--line);
	border-radius:10px;
	box-shadow:0 2px 10px rgba(35,91,70,.06);
}

.about-home-grid i {
	color:var(--brand);
	font-size:25px;
}

.about-home-grid h3 {
	margin:12px 0 6px;
	font-size:18px;
}

.about-home-grid p {
	margin:0;
	color:var(--muted);
	font-size:14px;
	line-height:1.8;
}

@media(max-width:800px) {
	.about-home {
		padding:56px 0;
	}
	.about-home-grid {
		grid-template-columns:1fr;
	}
}

.news-img-wrap {
	height:210px;
}

@media(max-width:800px) {
	.news-img-wrap {
		height:190px;
	}
}

@media(max-width:480px) {
	.news-img-wrap {
		height:205px;
	}
}

.hero.banner-reference {
	padding:0;
}

.hero .banner-inner {
	width:100%;
	min-height:500px;
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:48px;
}

.hero .banner-text {
	flex:1;
	max-width:560px;
	text-align:left;
}

.hero .banner-title {
	font-size:48px;
	font-weight:800;
	color:var(--ink);
	margin:0 0 12px;
	line-height:1.25;
}

.hero .banner-sub {
	font-size:22px;
	color:var(--brand-dark);
	margin:0 0 18px;
	line-height:1.4;
	font-weight:600;
}

.hero .banner-desc {
	font-size:17px;
	color:var(--muted);
	line-height:1.8;
	margin:0 0 28px;
}

.hero .banner-buttons {
	display:flex;
	gap:12px;
	flex-wrap:wrap;
}

.hero .banner-buttons a {
	padding:12px 24px;
	border-radius:8px;
	font-weight:600;
}

.button-outline {
	border:1px solid var(--line);
	color:var(--brand-dark);
	background:transparent;
}

.about-gallery-wrap {
	flex:0 0 470px;
	display:flex;
	justify-content:center;
}

.gallery-container {
	width:450px;
	height:360px;
	position:relative;
	display:flex;
	align-items:center;
	justify-content:center;
	overflow:hidden;
}

.gallery-track {
	display:flex;
	align-items:center;
	gap:10px;
	height:330px;
	padding:0 12px;
}

.gallery-item {
	flex:0 0 112px;
	height:300px;
	padding:5px;
	transition:transform .3s;
}

.gallery-item:nth-child(odd) {
	transform:translateY(12px) rotate(-2deg);
}

.gallery-item:nth-child(even) {
	transform:translateY(-12px) rotate(2deg);
}

.gallery-item img {
	width:100%;
	height:100%;
	object-fit:cover;
	border-radius:18px;
	display:block;
	border:2px solid var(--ink);
	box-shadow:5px 7px 0 rgba(42,33,30,.14);
}

.phone-shadow {
	position:absolute;
	left:50%;
	bottom:15px;
	transform:translateX(-50%);
	width:390px;
	height:28px;
	background:rgba(42,33,30,.18);
	border-radius:50%;
	filter:blur(14px);
	z-index:-1;
}

@media(max-width:900px) {
	.hero .banner-inner {
		min-height:0;
		display:block;
		padding:55px 0;
	}
	.hero .banner-text {
		text-align:center;
		margin:0 auto;
	}
	.hero .banner-buttons {
		justify-content:center;
	}
	.about-gallery-wrap {
		margin:34px auto 0;
		max-width:100%;
		overflow:hidden;
	}
	.gallery-container {
		width:100%;
		height:290px;
	}
	.gallery-track {
		height:270px;
	}
	.gallery-item {
		flex-basis:92px;
		height:250px;
	}
	.hero .banner-title {
		font-size:38px;
	}
}

.update-list {
	max-width:none;
	display:grid;
	grid-template-columns:repeat(3,minmax(0,1fr));
	gap:20px;
}

.update-item {
	padding:0 20px 22px;
	border:1.5px solid var(--line);
	border-top:4px solid var(--brand);
	border-radius:17px;
	background:#fffdf9;
	box-shadow:4px 5px 0 rgba(42,33,30,.06);
	margin:0;
	overflow:hidden;
}

.update-item .update-time {
	display:block;
	margin:0 -20px 16px;
	padding:8px 20px;
	background:var(--mint);
	color:var(--brand-dark);
	font-size:13px;
}

.update-item h3 {
	margin:0 0 10px;
	font-size:17px;
}

.update-item p {
	min-height:76px;
}

.update-item:hover {
	transform:translateY(-4px);
	box-shadow:6px 9px 0 rgba(42,33,30,.08);
}

@media(max-width:800px) {
	.update-list {
		grid-template-columns:1fr;
		gap:16px;
	}
}

.site-nav a.is-active:before {
	content:"";
	display:inline-block;
	width:19px;
	height:19px;
	margin:0 5px 0 0;
	vertical-align:-4px;
	background:url('/skin/images/logo.png') center/contain no-repeat;
}

.site-nav a.is-active {
	position:relative;
}

.drama-news-page .lanmu-section-header {
	position:relative;
	width:min(1160px,calc(100% - 40px));
	height:320px;
	margin:30px auto 0;
	padding:58px 60px;
	border:1px solid var(--line);
	border-radius:28px;
	background:#f4ddd3;
	display:flex;
	flex-direction:column;
	align-items:flex-start;
	justify-content:center;
	text-align:left;
	overflow:hidden;
}

.drama-news-page .news-eyebrow {
	margin:0 0 8px;
	color:var(--brand-dark);
	font-size:11px;
	font-weight:700;
	letter-spacing:.16em;
}

.drama-news-page .lanmu-section-header h1 {
	margin:8px 0 4px;
	color:var(--ink);
	font-size:42px;
	line-height:1.2;
}

.drama-news-page .lanmu-section-header p:last-child {
	max-width:680px;
	margin:0;
	color:#725f58;
	font-size:17px;
}

.drama-news-page .breadcrumb {
	position:absolute;
	top:18px;
	left:60px;
	width:auto;
	margin:0;
	padding:0;
	color:#725f58;
	font-size:13px;
}

.drama-news-page .breadcrumb a:hover {
	color:var(--brand-dark);
}

.drama-news-page .page-layout {
	width:min(1160px,calc(100% - 40px));
	margin:0 auto;
	padding:0 0 90px;
	display:grid;
	grid-template-columns:minmax(0,1fr) 300px;
	align-items:start;
	gap:26px;
	padding: 38px 0 88px;
}

.drama-news-page .news-intro {
	margin:0 0 22px;
}

.drama-news-page .page-main,
.drama-news-page .page-sidebar {
	min-width:0;
}

.drama-news-page .page-main {
	display:grid;
	grid-template-columns:repeat(2,minmax(0,1fr));
	align-content:start;
	gap:20px;
	padding:24px;
	border:1px solid var(--line);
	background:#fff;
}

.drama-news-page .news-intro,
.drama-news-page .page-main>.pagebar {
	grid-column:1/-1;
}

.drama-news-page .news-list-card {
	min-width:0;
	margin:0;
	border:1px solid var(--line);
	border-radius:6px;
	background:#fff;
	box-shadow:0 2px 8px rgba(24,53,45,.06);
	overflow:hidden;
	transition:transform .25s,box-shadow .25s;
}

.drama-news-page .news-list-card:hover {
	transform:translateY(-4px);
	box-shadow:0 8px 18px rgba(24,53,45,.12);
}

.drama-news-page .news-list-img {
	display:block;
	width:100%;
	height:200px;
	overflow:hidden;
	background:var(--mint);
}

.drama-news-page .news-list-img img {
	width:100%;
	height:100%;
	object-fit:cover;
	transition:transform .3s;
}

.drama-news-page .news-list-card:hover .news-list-img img {
	transform:scale(1.04);
}

.drama-news-page .news-list-body {
	min-width:0;
	display:flex;
	flex-direction:column;
	padding:16px;
}

.drama-news-page .news-list-title {
	margin:0 0 10px;
	font-size:18px;
	font-weight:700;
	line-height:1.4;
	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
	overflow:hidden;
}

.drama-news-page .news-list-title a:hover {
	color:var(--brand-dark);
}

.drama-news-page .news-list-desc {
	min-height:76px;
	margin:0 0 14px;
	color:var(--muted);
	font-size:14px;
	line-height:1.7;
	display:-webkit-box;
	-webkit-line-clamp:3;
	-webkit-box-orient:vertical;
	overflow:hidden;
}

.drama-news-page .news-list-meta {
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:12px;
	margin-top:auto;
	padding-top:10px;
	border-top:1px solid var(--line);
	color:var(--muted);
	font-size:12px;
}

.drama-news-page .news-list-meta time {
	white-space:nowrap;
}

.drama-news-page .news-list-actions {
	display:flex;
	align-items:center;
	justify-content:flex-end;
	gap:12px;
}

.drama-news-page .news-list-views {
	color:var(--muted);
	white-space:nowrap;
}

.drama-news-page .news-list-views i {
	margin-right:4px;
	color:var(--brand);
}

.drama-news-page .news-list-meta a {
	color:var(--brand-dark);
	font-weight:700;
	white-space:nowrap;
}

.drama-news-page .news-list-meta a:hover {
	color:var(--brand);
}

.drama-news-page .sidebar-card {
	margin:0 0 22px;
	padding:0;
	border:0;
	background:transparent;
}

.drama-news-page .sidebar-card h3 {
	margin:0 0 12px;
	padding:0 0 10px;
	border-bottom:2px solid var(--brand);
	color:var(--ink);
	font-size:15px;
}

.drama-news-page .like-item {
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:8px;
	padding:12px 14px;
	border-bottom:1px dashed var(--line);
	background:#fffdf9;
	font-size:13px;
}

.drama-news-page .like-item:last-child {
	border-bottom:0;
}

.drama-news-page .like-item a {
	min-width:0;
	flex:1;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}

.drama-news-page .like-item a:hover {
	color:var(--brand-dark);
}

.drama-news-page .like-item span {
	color:var(--muted);
	font-size:11px;
	white-space:nowrap;
}

.drama-news-page .news-about-card p {
	margin:0 0 14px;
	padding:16px;
	border:1.5px solid var(--line);
	border-radius:16px;
	background:#f5ddd4;
	color:#725f58;
	font-size:13px;
}

.drama-news-page .news-about-card>a {
	display:inline-block;
	color:var(--brand-dark);
	font-size:13px;
	font-weight:700;
}

@media(max-width:900px) {
	.drama-news-page .lanmu-section-header {
		padding:46px 38px;
	}
	.drama-news-page .page-layout {
		grid-template-columns:minmax(0,1fr) 250px;
		gap:18px;
	}
	.drama-news-page .page-main {
		grid-template-columns:1fr;
		gap:16px;
		padding:18px;
	}
}

@media(max-width:700px) {
	.drama-news-page .lanmu-section-header {
		width:calc(100% - 28px);
		height:auto;
		min-height:320px;
		margin-top:18px;
		padding:38px 24px;
		border-radius:22px;
		background-position:65% center;
	}
	.drama-news-page .lanmu-section-header h1 {
		font-size:34px;
	}
	.drama-news-page .lanmu-section-header p:last-child {
		font-size:15px;
	}
	.drama-news-page .page-layout {
		width:calc(100% - 28px);
		grid-template-columns:1fr;
		padding-bottom:60px;
	}
	.drama-news-page .news-list-card {
		border-radius:6px;
	}
	.drama-news-page .news-list-img {
		height:190px;
	}
	.drama-news-page .news-list-body {
		padding:14px;
	}
	.drama-news-page .news-list-title {
		font-size:16px;
		margin-bottom:6px;
	}
	.drama-news-page .news-list-desc {
		font-size:13px;
		min-height:0;
		-webkit-line-clamp:3;
		margin-bottom:12px;
	}
	.drama-news-page .news-list-meta {
		font-size:12px;
	}
}

.hero__art {
	background:#e5d6ea;
}

.hero__art img {
	object-fit:contain;
	padding:60px;
}

.hero__note {
	width:152px;
	color:var(--ink);
	white-space:nowrap;
	transform-origin:50% -30px;
	background:#f2c46d;
	margin:58px 0 0 -58px;
	padding:18px 14px 16px 16px;
	font-size:20px;
	line-height:1.3;
	animation:hero-note-swing 5s ease-in-out infinite;
	position:relative;
	transform:rotate(-9deg);
	box-shadow:0 10px 18px -10px rgba(42,33,30,.5);
}

.hero__note:after {
	content:"";
	background:linear-gradient(135deg,#dcae4d 50%,#f2c46d 50%);
	width:22px;
	height:22px;
	position:absolute;
	bottom:0;
	right:0;
}

.hero__note-tape {
	background:rgba(255,255,255,.62);
	border:1px solid rgba(31,30,27,.08);
	width:54px;
	height:18px;
	top:-10px;
	left:50%;
	transform:translateX(-50%) rotate(4deg);
	position:absolute;
}

.hero__note-string {
	background:var(--ink);
	width:2px;
	height:50px;
	top:-58px;
	left:50%;
	transform:rotate(6deg);
	position:absolute;
}

@keyframes hero-note-swing {
	0%,to {
		transform:rotate(-9deg);
	}
	50% {
		transform:rotate(-5deg);
	}
}

@media(max-width:1100px) {
	.hero__note {
		transform-origin:50% 0;
		margin:0;
	}
	.hero__note-string {
		display:none;
	}
}

.hero {
	grid-template-columns:minmax(0,470px) minmax(0,1fr) 84px;
	gap:0 18px;
	min-height:470px;
	padding-top:26px;
	display:grid;
	position:relative;
	background:transparent;
}

.hero__copy {
	z-index:2;
	padding-bottom:36px;
	position:relative;
}

.hero__title {
	color:var(--ink);
	align-items:flex-start;
	line-height:.92;
	display:inline-flex;
	position:relative;
}

.hero__brand {
	font-size:clamp(66px,8.6vw,112px);
	font-weight:800;
	letter-spacing:-.03em;
	transform:rotate(-2deg);
}

.hero__stamp {
	border:2px solid var(--ink);
	background:#f2c46d;
	box-shadow:2px 2px 0 var(--ink);
	border-radius:8px;
	align-self:flex-start;
	margin:4px 0 0 10px;
	padding:5px 10px 4px;
	font-size:15px;
	font-weight:800;
	line-height:1;
	transform:rotate(9deg);
}

.hero__slogan {
	color:var(--ink);
	justify-items:start;
	gap:2px;
	margin:22px 0 0;
	font-size:clamp(30px,3.3vw,41px);
	line-height:1.28;
	display:grid;
}

.hero__line {
	background-image:linear-gradient(100deg,color-mix(in srgb,var(--mint) 90%,transparent),color-mix(in srgb,var(--mint) 65%,transparent));
	background-position:0 88%;
	background-repeat:no-repeat;
	background-size:100% 42%;
	padding:0 6px;
}

.hero__line:nth-child(2) {
	margin-left:2px;
	transform:rotate(-1.2deg);
}

.hero__summary {
	color:var(--muted);
	margin-top:22px;
	font-size:15.5px;
	line-height:1.75;
}

.hero__actions {
	margin-top:24px;
}

.cta {
	border:2px solid var(--ink);
	border-radius:999px;
	background:#f2c46d;
	height:52px;
	color:var(--ink);
	box-shadow:4px 4px 0 var(--ink);
	align-items:center;
	gap:14px;
	padding:0 7px 0 26px;
	font-size:17px;
	font-weight:800;
	display:inline-flex;
}

.cta__arrow {
	background:var(--ink);
	width:36px;
	height:36px;
	color:#f2c46d;
	border-radius:50%;
	place-items:center;
	display:grid;
}

.hero__mood {
	letter-spacing:.12em;
	color:#a9b8b1;
	font-size:12.5px;
	font-weight:600;
	line-height:1.15;
	position:absolute;
	bottom:18px;
	left:min(248px,58%);
}

.hero__art {
	z-index:1;
	height:100%;
	min-height:420px;
	margin:0;
	border-radius:28px;
	position:relative;
	overflow:hidden;
	box-shadow:0 18px 38px rgba(35,91,70,.16);
}

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

.hero__art:after {
	content:"";
	pointer-events:none;
	background:linear-gradient(transparent,rgba(24,53,45,.6));
	position:absolute;
	inset:45% 0 0;
}

.hero__caption {
	z-index:1;
	color:#fff;
	text-shadow:0 2px 14px rgba(24,53,45,.45);
	font-size:clamp(24px,2.7vw,34px);
	line-height:1.3;
	position:absolute;
	bottom:9%;
	left:7%;
	transform:rotate(-3deg);
}

.hero__play {
	vertical-align:.1em;
	border-top:8px solid transparent;
	border-bottom:8px solid transparent;
	border-left:12px solid #fff;
	width:0;
	height:0;
	margin-right:10px;
	display:inline-block;
}

.hero__aside {
	z-index:2;
	flex-direction:column;
	align-items:flex-start;
	padding:26px 0 8px;
	display:flex;
	position:relative;
}

.hero__words {
	color:var(--ink);
	letter-spacing:.06em;
	gap:10px;
	margin:0;
	padding:0;
	list-style:none;
	font-size:18px;
	font-weight:600;
	display:grid;
}

.hero__words li {
	position:relative;
}

.hero__sign {
	color:var(--muted);
	margin-top:auto;
	font-size:13px;
	font-weight:600;
	line-height:1.25;
}

@media(max-width:1100px) {
	.hero {
		grid-template-columns:1fr;
		min-height:0;
	}
	.hero__copy {
		padding-bottom:22px;
	}
	.hero__art {
		aspect-ratio:16/9;
		min-height:0;
	}
	.hero__aside {
		flex-direction:row;
		justify-content:space-between;
		align-items:center;
		gap:20px;
		padding-top:18px;
	}
	.hero__words {
		gap:18px;
		display:flex;
	}
	.hero__sign {
		margin-top:0;
	}
}

@media(max-width:640px) {
	.hero {
		padding-top:8px;
	}
	.hero__copy {
		padding-top:18px;
	}
	.hero__art {
		aspect-ratio:4/3;
		border-radius:22px;
	}
	.hero__words {
		flex-wrap:wrap;
		gap:6px 14px;
		font-size:15px;
	}
	.hero__sign {
		display:none;
	}
	.hero__brand {
		font-size:64px;
	}
	.hero__slogan {
		font-size:30px;
	}
}

.discover-hero {
	display:flex;
	align-items:flex-start;
	justify-content:space-between;
	gap:28px;
	padding:66px 60px 42px;
	background:#f4ddd3;
}

.discover-hero-copy {
	position:relative;
	z-index:1;
	max-width:760px;
	margin-top:24px;
}

.discover-hero .breadcrumb {
	position:absolute;
	top:18px;
	left:60px;
	margin:0;
	font-size:13px;
	color:#725f58;
}

.discover-hero .eyebrow {
	margin:0 0 8px;
	color:var(--brand-dark);
	font-size:11px;
	font-weight:700;
	letter-spacing:.12em;
}

.discover-hero h1 {
	margin:0 0 8px;
	color:var(--ink);
	font-size:clamp(36px,4vw,48px);
	line-height:1.2;
}

.discover-hero-copy>p:not(.eyebrow) {
	max-width:720px;
	margin:0;
	color:#725f58;
	font-size:15px;
}

.discover-hero .hero-actions {
	margin-top:16px;
}

.discover-hero-mark {
	width:150px;
	height:150px;
	flex:0 0 150px;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	gap:8px;
	border:2px solid var(--ink);
	border-radius:50%;
	background:rgba(255,253,249,.7);
	color:var(--brand-dark);
	text-align:center;
}

.discover-hero-mark i {
	font-size:38px;
}

.discover-hero-mark span {
	font-size:9px;
	font-weight:800;
	line-height:1.35;
}

.discover-shell {
	width:min(1160px,calc(100% - 40px));
	margin:34px auto 80px;
}

.discover-shell>.discover-tabs {
	width:100%;
}

.discover-section {
	scroll-margin-top:30px;
	padding:62px 0;
	border-bottom:1px solid var(--line);
}

.discover-section-tint {
	width:1160px;
	padding:54px 24px;
	border:0;
	border-radius:10px;
	background:#f6faf7;
}

.discover-section-heading {
	max-width:850px;
	margin:0 0 26px;
}

.discover-index {
	color:var(--brand-dark);
	font-size:11px;
	font-weight:800;
	letter-spacing:.1em;
}

.discover-section-heading h2 {
	margin:7px 0 8px;
	color:var(--ink);
	font-size:30px;
	line-height:1.35;
}

.discover-section-heading>p,
.discover-heading-row>div>p {
	margin:0;
	color:var(--muted);
	font-size:15px;
}

.discover-step-grid {
	display:grid;
	grid-template-columns:repeat(3,minmax(0,1fr));
	gap:16px;
}

.discover-step-grid article {
	padding:20px 18px;
	border:1px solid var(--line);
	border-radius:8px;
	background:#fff;
}

.discover-step-grid b {
	color:var(--brand);
	font-size:20px;
}

.discover-step-grid h3,
.discover-genre-grid h3,
.discover-mood-list h3 {
	margin:5px 0 6px;
	color:var(--ink);
	font-size:17px;
}

.discover-step-grid p,
.discover-genre-grid p,
.discover-mood-list p {
	margin:0;
	color:var(--muted);
	font-size:14px;
}

.discover-genre-grid {
	display:grid;
	grid-template-columns:repeat(2,minmax(0,1fr));
	gap:12px 26px;
}

.discover-genre-grid article {
	display:flex;
	gap:14px;
	padding:16px 0;
	border-bottom:1px solid var(--line);
}

.genre-symbol {
	width:46px;
	height:46px;
	flex:0 0 46px;
	display:grid;
	place-items:center;
	border-radius:8px;
	background:#e8f5ef;
	color:var(--brand-dark);
}

.genre-symbol .fa {
	font-size:21px;
}

.discover-genre-grid h3 {
	margin:0 0 4px;
}

.discover-note {
	margin:22px 0 0;
	padding:14px 16px;
	border-left:3px solid var(--brand);
	background:#fff;
	color:var(--muted);
	font-size:14px;
}

.discover-note a {
	color:var(--brand-dark);
	font-weight:700;
}

.discover-mood-list {
	display:grid;
	gap:0;
}

.discover-mood-list article {
	display:grid;
	grid-template-columns:44px minmax(0,1fr) auto;
	align-items:center;
	gap:14px;
	padding:18px 0;
	border-bottom:1px solid var(--line);
}

.discover-mood-list article>span {
	color:var(--brand);
	font-size:18px;
	font-weight:800;
}

.discover-mood-list h3 {
	margin:0 0 4px;
}

.discover-mood-list article>a,
.discover-program-link {
	color:var(--brand-dark);
	font-size:13px;
	font-weight:700;
	white-space:nowrap;
}

.discover-heading-row {
	display:flex;
	align-items:end;
	justify-content:space-between;
	gap:24px;
	max-width:none;
}

.discover-heading-row .text-link {
	flex:0 0 auto;
}

.discover-latest-grid {
	display:grid;
	grid-template-columns:repeat(3,minmax(0,1fr));
	gap:18px;
}

.discover-program {
	min-width:0;
	border:1px solid var(--line);
	border-radius:8px;
	background:#fff;
	overflow:hidden;
}

.discover-program-cover {
	display:block;
	height:170px;
	background:var(--mint);
	overflow:hidden;
}

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

.discover-program-body {
	padding:14px;
}

.discover-program-label {
	margin:0 0 4px;
	color:var(--brand-dark);
	font-size:11px;
	font-weight:700;
}

.discover-program h3 {
	margin:0 0 6px;
	font-size:17px;
	line-height:1.45;
}

.discover-program h3 a:hover {
	color:var(--brand-dark);
}

.discover-program-body>p:not(.discover-program-label) {
	min-height:48px;
	margin:0 0 10px;
	color:var(--muted);
	font-size:13px;
}

.discover-faq {
	border-bottom:0;
}

@media(max-width:800px) {
	.discover-hero {
		padding:68px 28px 32px;
	}
	.discover-hero .breadcrumb {
		left:28px;
	}
	.discover-hero-mark {
		width:112px;
		height:112px;
		flex-basis:112px;
	}
	.discover-hero-mark i {
		font-size:28px;
	}
	.discover-shell {
		width:calc(100% - 32px);
		margin-top:22px;
	}
	.discover-section {
		scroll-margin-top:20px;
		padding:46px 0;
	}
	.discover-section-tint {
		width:calc(100% + 24px);
		margin-left:-12px;
		padding:42px 12px;
	}
	.discover-step-grid {
		grid-template-columns:1fr;
	}
	.discover-latest-grid {
		grid-template-columns:repeat(2,minmax(0,1fr));
	}
}

@media(max-width:560px) {
	.discover-hero {
		align-items:flex-start;
		padding:68px 22px 26px;
	}
	.discover-hero .breadcrumb {
		left:22px;
	}
	.discover-hero-mark {
		display:none;
	}
	.discover-hero h1 {
		font-size:34px;
	}
	.discover-hero-copy>p:not(.eyebrow) {
		font-size:14px;
	}
	.discover-shell {
		width:calc(100% - 28px);
	}
	.discover-section-heading h2 {
		font-size:24px;
	}
	.discover-genre-grid {
		grid-template-columns:1fr;
	}
	.discover-mood-list article {
		grid-template-columns:34px minmax(0,1fr);
		gap:10px;
	}
	.discover-mood-list article>a {
		grid-column:2;
	}
	.discover-heading-row {
		align-items:flex-start;
		flex-direction:column;
	}
	.discover-latest-grid {
		grid-template-columns:1fr;
	}
	.discover-program-cover {
		height:200px;
	}
}
