/* Static pages v2 — 婚恋主题通用样式（aboutus/announce/faq/friendlink/sitemap） */

.static-v2{
	max-width:1180px;
	margin:0 auto;
	padding:0 18px 46px;
}
.static-v2 a{color:inherit}
.static-v2 a:hover{text-decoration:none}

.static-v2-hero{
	margin:12px 0 20px;
	padding:22px 22px;
	border-radius:22px;
	background:linear-gradient(128deg, rgba(255,255,255,0.88) 0%, rgba(255,245,250,0.92) 52%, rgba(255,252,248,0.9) 100%);
	border:1px solid rgba(255,190,208,0.55);
	box-shadow:0 22px 60px rgba(193,70,120,0.11);
	backdrop-filter:blur(12px);
	-webkit-backdrop-filter:blur(12px);
	position:relative;
	overflow:hidden;
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:16px;
}
.static-v2-hero::before{
	content:"";
	position:absolute;
	inset:-30% auto auto -12%;
	width:260px;
	height:260px;
	border-radius:50%;
	background:radial-gradient(circle, rgba(255,182,193,0.35), transparent 65%);
	pointer-events:none;
}
.static-v2-hero__left{position:relative;z-index:1;min-width:0}
.static-v2-hero__title{
	margin:0;
	font-size:clamp(22px,2.8vw,30px);
	font-weight:900;
	color:#5c1f3d;
	letter-spacing:-0.02em;
}
.static-v2-hero__desc{
	margin:10px 0 0;
	font-size:14px;
	line-height:1.7;
	font-weight:600;
	color:rgba(84,32,54,0.78);
	max-width:52em;
}
.static-v2-hero__seal{
	position:relative;
	z-index:1;
	width:56px;
	height:56px;
	border-radius:50%;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:22px;
	font-weight:900;
	color:#c13f75;
	background:rgba(255,255,255,0.92);
	border:2px solid rgba(255,111,145,0.45);
	box-shadow:0 12px 36px rgba(255,111,145,0.18);
	flex:0 0 auto;
}

.static-v2-grid{
	display:grid;
	grid-template-columns: 320px minmax(0,1fr);
	gap:18px;
	align-items:start;
}
.static-v2-card{
	background:rgba(255,255,255,0.82);
	border:1px solid rgba(255,190,208,0.55);
	border-radius:22px;
	box-shadow:0 22px 70px rgba(193,70,120,0.10);
	backdrop-filter:blur(12px);
	-webkit-backdrop-filter:blur(12px);
}
.static-v2-card__pad{padding:18px 18px}
.static-v2-card__title{
	display:flex;
	align-items:center;
	gap:10px;
	margin:0 0 12px;
	font-size:15px;
	font-weight:900;
	color:#7b264a;
}
.static-v2-card__title i{color:#d64f84}

.static-v2-nav{
	display:flex;
	flex-wrap:wrap;
	gap:10px;
}
.static-v2-pill{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:8px;
	padding:10px 12px;
	border-radius:999px;
	font-size:13px;
	font-weight:800;
	color:rgba(84,32,54,0.78);
	background:rgba(255,111,145,0.08);
	border:1px solid rgba(255,185,204,0.55);
	transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.static-v2-pill:hover{
	transform:translateY(-1px);
	border-color:rgba(255,111,145,0.55);
	box-shadow:0 14px 36px rgba(255,111,145,0.14);
	background:rgba(255,111,145,0.12);
}
.static-v2-pill.is-active{
	color:#fff;
	background:linear-gradient(135deg,#ff6f91 0%,#ff9671 100%);
	border-color:transparent;
	box-shadow:0 18px 48px rgba(255,111,145,0.28);
}
.static-v2-pill.is-active i{color:#fff}

.static-v2-content{
	padding:22px 22px;
	text-align: left;
}
.static-v2-content h1,.static-v2-content h2,.static-v2-content h3{
	color:#5c1f3d;
}
.static-v2-content p, .static-v2-content li,.static-v2-content div{
	color:rgba(84,32,54,0.78);
	line-height:1.85;
	font-weight:600;
}
.static-v2-content img{max-width:100%;height:auto;border-radius:14px}

/* announce timeline */
.static-v2-timeline{display:flex;flex-direction:column;gap:14px}
.static-v2-announce{
	display:grid;
	grid-template-columns:160px minmax(0,1fr);
	gap:14px;
	padding:16px;
	border-radius:20px;
	background:rgba(255,255,255,0.62);
	border:1px solid rgba(255,190,208,0.45);
}
.static-v2-announce__meta{
	border-radius:16px;
	padding:12px 12px;
	background:rgba(255,111,145,0.08);
	border:1px dashed rgba(255,185,204,0.65);
}
.static-v2-announce__k{font-size:12px;font-weight:900;color:rgba(123,38,74,0.66)}
.static-v2-announce__v{margin-top:6px;font-weight:900;color:#7b264a;font-size:13px;line-height:1.4}
.static-v2-announce__title{margin:0 0 8px;font-size:18px;font-weight:900;color:#5c1f3d}

/* faq */
.static-v2-faq-title{margin:0 0 12px;font-size:20px;font-weight:900;color:#5c1f3d}
.static-v2-faq-links{display:flex;flex-direction:column;gap:8px}
.static-v2-faq-links a{padding:10px 12px;border-radius:14px;border:1px solid rgba(255,185,204,0.45);background:rgba(255,255,255,0.65);font-weight:800;color:rgba(84,32,54,0.78);text-decoration:none}
.static-v2-faq-links a:hover{border-color:rgba(255,111,145,0.55);background:rgba(255,111,145,0.08)}
.static-v2-faq-links a.is-active{background:linear-gradient(135deg,#ff6f91 0%,#ff9671 100%);border-color:transparent;color:#fff}

/* friendlink */
.static-v2-linkgrid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.static-v2-linkcard{
	border-radius:18px;
	padding:14px 14px;
	background:rgba(255,255,255,0.68);
	border:1px solid rgba(255,190,208,0.45);
	text-decoration:none;
	transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.static-v2-linkcard:hover{transform:translateY(-2px);border-color:rgba(255,111,145,0.55);box-shadow:0 18px 50px rgba(193,70,120,0.12)}
.static-v2-linkcard__name{font-weight:900;color:#5c1f3d}
.static-v2-linkcard__url{margin-top:6px;font-size:12px;font-weight:700;color:rgba(84,32,54,0.62);word-break:break-all}
.static-v2-form .row{display:flex;gap:12px;align-items:center;margin:12px 0;flex-wrap:wrap}
.static-v2-form label{min-width:92px;font-weight:900;color:rgba(84,32,54,0.82)}
.static-v2-form input,.static-v2-form select,.static-v2-form textarea{
	border-radius:14px;border:1px solid rgba(255,185,204,0.65);
	background:rgba(255,255,255,0.96);
	padding:12px 14px;
	font-size:14px;
	font-weight:600;
	box-sizing:border-box;
}
.static-v2-form input,.static-v2-form select{height:46px;min-width:min(420px,100%);flex:1}
.static-v2-form textarea{min-height:120px;width:100%;resize:vertical}
.static-v2-btn{
	display:inline-flex;align-items:center;justify-content:center;gap:8px;
	height:48px;padding:0 18px;border-radius:14px;text-decoration:none !important;
	font-weight:900;font-size:14px;border:1px solid transparent;
	background:linear-gradient(135deg,#ff6f91 0%,#ff9671 100%);
	color:#fff !important;box-shadow:0 16px 42px rgba(255,111,145,0.28);
	cursor:pointer;
}
.static-v2-btn:hover{transform:translateY(-1px);box-shadow:0 20px 50px rgba(239,95,130,0.32)}
.static-v2-captcha{border-radius:14px;border:1px solid rgba(255,185,204,0.55);background:rgba(255,255,255,0.96);padding:6px 10px;height:46px}

/* sitemap */
.static-v2-sitemap{
	display:grid;
	grid-template-columns:repeat(3,minmax(0,1fr));
	gap:14px;
}
.static-v2-sitemap__cat{
	padding:16px;
	border-radius:22px;
	background:rgba(255,255,255,0.78);
	border:1px solid rgba(255,190,208,0.55);
	box-shadow:0 18px 55px rgba(193,70,120,0.10);
}
.static-v2-sitemap__cat h3{margin:0 0 10px;font-size:16px;font-weight:900}
.static-v2-sitemap__cat h3 a{color:#5c1f3d;text-decoration:none}
.static-v2-sitemap__cat ul{margin:0;padding:0;list-style:none;display:flex;flex-wrap:wrap;gap:10px}
.static-v2-sitemap__cat li a{
	display:inline-flex;align-items:center;justify-content:center;
	padding:8px 10px;border-radius:999px;
	background:rgba(255,111,145,0.08);
	border:1px solid rgba(255,185,204,0.55);
	font-weight:800;font-size:12px;color:rgba(84,32,54,0.78);
	text-decoration:none;
}
.static-v2-sitemap__cat li a:hover{border-color:rgba(255,111,145,0.55);background:rgba(255,111,145,0.12)}

@media (max-width: 980px){
	.static-v2-grid{grid-template-columns:1fr}
	.static-v2-hero{flex-direction:column;align-items:flex-start}
	.static-v2-linkgrid{grid-template-columns:repeat(2,minmax(0,1fr))}
	.static-v2-sitemap{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 560px){
	.static-v2-linkgrid{grid-template-columns:1fr}
	.static-v2-sitemap{grid-template-columns:1fr}
	.static-v2-announce{grid-template-columns:1fr}
}

/* ===== About header (inc_head_about.html) ===== */
.aboutHeader{
	position:sticky;
	top:0;
	z-index:50;
	background:rgba(255,255,255,0.55);
	backdrop-filter:blur(14px);
	-webkit-backdrop-filter:blur(14px);
	border-bottom:1px solid rgba(255,190,208,0.45);
}
.aboutHeaderInner{
	max-width:1180px;
	margin:0 auto;
	padding:14px 18px;
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:14px;
}
.aboutLogo{
	display:flex;
	align-items:center;
	gap:12px;
	min-width:0;
}
.aboutLogoLink{
	display:flex;
	align-items:center;
	justify-content:center;
	width:44px;
	height:44px;
	border-radius:14px;
	background:rgba(255,255,255,0.85);
	border:1px solid rgba(255,185,204,0.55);
	box-shadow:0 12px 36px rgba(193,70,120,0.10);
	overflow:hidden;
}
.aboutLogoLink img{
	width:100%;
	height:100%;
	object-fit:contain;
	padding:6px;
	box-sizing:border-box;
}
.aboutLogoText{
	font-weight:900;
	color:#5c1f3d;
	letter-spacing:-0.01em;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	max-width:220px;
}
.aboutHeaderMeta{
	display:flex;
	flex-direction:column;
	gap:4px;
	min-width:0;
}
.aboutHeaderKicker{
	font-size:12px;
	font-weight:900;
	letter-spacing:0.14em;
	text-transform:uppercase;
	color:rgba(193,63,117,0.85);
}
.aboutHeaderTitle{
	font-size:14px;
	font-weight:900;
	color:rgba(84,32,54,0.78);
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	max-width:360px;
}
.aboutNav{
	display:flex;
	align-items:center;
	gap:10px;
	flex-wrap:wrap;
	justify-content:flex-end;
}
.aboutNavLink{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	height:38px;
	padding:0 14px;
	border-radius:999px;
	text-decoration:none !important;
	font-weight:900;
	font-size:13px;
	color:rgba(84,32,54,0.74);
	background:rgba(255,111,145,0.08);
	border:1px solid rgba(255,185,204,0.55);
	transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.aboutNavLink:hover{
	transform:translateY(-1px);
	border-color:rgba(255,111,145,0.55);
	box-shadow:0 14px 36px rgba(255,111,145,0.14);
	background:rgba(255,111,145,0.12);
}
.aboutNavLink.is-active{
	color:#fff;
	background:linear-gradient(135deg,#ff6f91 0%,#ff9671 100%);
	border-color:transparent;
	box-shadow:0 18px 48px rgba(255,111,145,0.28);
}
.aboutHeaderSpacer{
	height:0;
}

@media (max-width: 980px){
	.aboutHeaderInner{
		flex-wrap:wrap;
	}
	.aboutHeaderMeta{
		display:none;
	}
	.aboutNav{
		width:100%;
		justify-content:flex-start;
	}
}

@media (max-width: 560px){
	.aboutLogoText{max-width:160px}
	.aboutNavLink{
		height:36px;
		padding:0 12px;
		font-size:12px;
	}
}
