﻿/*初始化开始*/

body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td {
	margin: 0;
	padding: 0;
	word-wrap: break-word
}

li,
ul,
ol,
dl {
	list-style: none;
}

li,
select,
textarea,
input {
	vertical-align: middle;
}

a {
	color: #000000;
	text-decoration: none;
	outline: none;
}

a:-webkit-any-link {}

a:hover {
	text-decoration: none;
}

a:active {
	star: expression(this.onFocus=this.blur());
}

:focus {
	outline: 0;
}

em {
	font-style: italic;
}

img {
	border: 0px;
}

h1 {
	font-size: 24px;
}

h2 {
	font-size: 18px;
}

h3 {
	font-size: 16px;
}

h4 {
	font-size: 14px;
}

h5 {
	font-size: 12px;
}

table {
	border-collapse: collapse;
	border-spacing: 0
}

p {
	word-wrap: break-word
}

input,
label,
th {
	vertical-align: middle;
}



* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Inter', sans-serif;
}

body {
	min-height: 100vh;
	overflow-x: hidden;
	position: relative;
}

/* 动态颗粒背景 (增加复杂感) */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	background-image: 
		radial-gradient(circle at 20% 30%, rgba(255, 41, 112, 0.03) 0%, transparent 30%),
		radial-gradient(circle at 80% 70%, rgba(125, 74, 255, 0.03) 0%, transparent 35%),
		repeating-linear-gradient(45deg, rgba(255,255,255,0.01) 0px, rgba(255,255,255,0.01) 2px, transparent 2px, transparent 6px);
	pointer-events: none;
	z-index: 0;
}

/* ===== 左侧导航栏 ———— 复杂斜边 + 多重光效 + 纹理 ===== */
.sidebar {
	position: fixed;
	top: 0;
	left: 0;
	width: 300px;
	height: 100vh;
	background: linear-gradient(165deg, #121624 0%, #1b1f31 100%);
	color: #f0f3fc;
	z-index: 100;
	box-shadow: 20px 0 40px -10px rgba(0, 0, 0, 0.7), inset -2px 0 0 rgba(255, 41, 112, 0.3);
	/* 复杂切割: 斜边+内凹 */
	clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
	border-right: 2px solid rgba(255, 41, 112, 0.4);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	backdrop-filter: blur(6px);
}

/* 多层次背景纹理：磨砂+线条 */
.sidebar::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		linear-gradient(45deg, rgba(0,0,0,0.2) 1px, transparent 1px),
		linear-gradient(-45deg, rgba(255,255,255,0.02) 1px, transparent 1px);
	background-size: 20px 20px;
	pointer-events: none;
	z-index: 0;
}

/* 右侧装饰光带 */
.sidebar::before {
	content: '';
	position: absolute;
	top: 0;
	right: 6px;
	width: 3px;
	height: 100%;
	background: linear-gradient(180deg, #ff2970, #b42bff, #1fc7d4, #ff2970);
	background-size: 200% 200%;
	animation: borderGlow 6s ease infinite;
	opacity: 0.8;
	box-shadow: 0 0 20px #ff2970;
	z-index: 3;
}

@keyframes borderGlow {
	0% { background-position: 0% 0%; }
	50% { background-position: 100% 100%; }
	100% { background-position: 0% 0%; }
}

.logo-area {
	padding: 20px;
	border-bottom: 2px solid rgba(255, 41, 112, 0.2);
	margin-bottom: 30px;
	position: relative;
	z-index: 2;
}

.logo {
	font-size: 32px;
	font-weight: 800;
	letter-spacing: -0.5px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.logo i {
	font-size: 42px;
	color: #ff2970;
	filter: drop-shadow(0 0 12px #ff6685);
	transform: rotate(-5deg);
	transition: transform 0.3s;
}
.logo:hover i {
	transform: rotate(0deg) scale(1.05);
}
.logo span {
	background: linear-gradient(135deg, #fff, #b7c4ff, #ffb0c3);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 30px;
}
.live-tag .badge {
	background: linear-gradient(145deg, #ff2970, #b42bff);
	font-size: 13px;
	padding: 4px 12px;
	border-radius: 40px;
	color: white;
	margin-left: 8px;
	-webkit-text-fill-color: white;
	box-shadow: 0 5px 15px #ff2970;
	border: 1px solid rgba(255,255,255,0.3);
}

/* 导航菜单 — 每个菜单带有动态流光 */
.nav-menu {
	flex: 1;
	padding: 0 20px 0 24px;
	list-style: none;
	position: relative;
	z-index: 2;
}

.nav-item {
	margin: 12px 0;
	position: relative;
	border-radius: 24px 0 0 24px;
}

.nav-item a {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 16px 24px;
	color: #a6b0d3;
	text-decoration: none;
	font-weight: 500;
	font-size: 18px;
	border-radius: 24px 0 0 24px;
	transition: all ease-in-out 0.3s;
	position: relative;
	z-index: 2;
	border-left: 3px solid transparent;
	backdrop-filter: blur(4px);
}

/* 多层悬浮特效 */
.nav-item a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, #ff2970, #b42bff, #3f96ff);
	border-radius: 24px 0 0 24px;
	opacity: 0;
	transition: width 0.3s ease, opacity 0.3s;
	z-index: -1;
	box-shadow: 0 0 25px #ff2970;
}



.nav-item a i {
	font-size: 24px;
	width: 32px;
	text-align: center;
	color: #ff758f;
	transition: all 0.3s;
	filter: drop-shadow(0 0 4px rgba(255, 117, 143, 0.5));
}


.nav-item .active{
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 18px;
    border-radius: 40px;
    border: 1px solid rgba(255, 105, 180, 0.6);
    text-align: center;
    color: #ffcfd9;
    font-weight: 700;
    margin-top: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255, 41, 112, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;

	transition: all ease-in-out 0.3s;
}

.nav-item:hover a {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 18px;
    border-radius: 40px;
    border: 1px solid rgba(255, 105, 180, 0.6);
    text-align: center;
    color: #ffcfd9;
    font-weight: 700;
    margin-top: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255, 41, 112, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;

	transition: all ease-in-out 0.3s;
}

.nav-item.active a {
	color: white;
	background: linear-gradient(90deg, rgba(255, 41, 112, 0.25), transparent 90%);
	border-left: 8px solid #ff2970;
	box-shadow: -10px 0 30px rgba(255, 41, 112, 0.5);
}

.nav-item.active a i {
	color: #ffcfd9;
}

/* 侧边栏底部 — 更复杂的直播状态 */
.sidebar-footer {
	margin-top: auto;
	padding: 30px 24px 40px 28px;
	border-top: 2px solid rgba(255, 41, 112, 0.15);
	font-size: 14px;
	color: #8d95bb;
	position: relative;
	z-index: 2;
	background: rgba(0,0,0,0.1);
	backdrop-filter: blur(2px);
}
.contact-info {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.contact-item {
	display: flex;
	align-items: center;
	gap: 14px;
	transition: 0.2s;
}
.contact-item i {
	color: #ff6685;
	font-size: 20px;
	width: 28px;
	text-shadow: 0 0 8px #ffa7b9;
}
.live-tag {
	background: rgba(0,0,0,0.3);
	padding: 12px 18px;
	border-radius: 40px;
	border: 1px solid rgba(255,105,180,0.6);
	text-align: center;
	color: #ffcfd9;
	font-weight: 700;
	margin-top: 20px;
	backdrop-filter: blur(10px);
	box-shadow: 0 0 20px rgba(255, 41, 112, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 16px;
}
.live-tag i {
	font-size: 12px;
	color: #2aff9f;
	animation: pulse 1.5s infinite;
}
@keyframes pulse {
	0% { opacity: 1; text-shadow: 0 0 5px #2aff9f; }
	50% { opacity: 0.6; text-shadow: 0 0 15px #2aff9f; }
	100% { opacity: 1; text-shadow: 0 0 5px #2aff9f; }
}

/* ===== 右侧主内容 — 更丰富的层次 ===== */
.main-content {
	margin-left: 300px;
	padding: 30px 50px 40px 50px;
	background: 
		radial-gradient(circle at 10% 20%, rgba(255,41,112,0.03) 0%, transparent 30%),
		radial-gradient(circle at 90% 80%, rgba(180,43,255,0.03) 0%, transparent 40%),
		#f2f6ff;  /* 柔光基底 */
	min-height: 100vh;
	position: relative;
	z-index: 1;
	box-shadow: inset 0 0 100px rgba(255, 41, 112, 0.02);
}

/* 网格+斜线装饰 */
.main-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		linear-gradient(to right, rgba(255, 41, 112, 0.05) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(125, 74, 255, 0.05) 1px, transparent 1px);
	background-size: 40px 40px;
	pointer-events: none;
	z-index: 0;
}

/* 标题区 */
.welcome-block {
	margin-bottom: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 2;
	background: rgba(255,255,255,0.5);
	backdrop-filter: blur(10px);
	border-radius: 80px;
	padding: 12px 24px 12px 32px;
	border: 1px solid rgba(255,255,255,0.7);
	box-shadow: 0 15px 35px -10px rgba(0,0,0,0.1);
}
.welcome-block h1 {
	font-size: 30px;
	font-weight: 700;
	background: linear-gradient(145deg, #10152b, #2c2f55);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: flex;
	align-items: center;
	gap: 12px;
}
.welcome-block h1 i {
	background: linear-gradient(145deg, #ff2970, #b42bff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 36px;
}
.date-badge {
	background: white;
	padding: 10px 24px;
	border-radius: 60px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.02);
	font-weight: 600;
	border: 1px solid rgba(255,41,112,0.2);
	color: #2c2f55;
}
.date-badge i {
	color: #ff4d6d;
	margin-right: 8px;
}

/* 卡片区域 — 复杂玻璃态 + 悬浮3D */
.cards-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	margin-bottom: 60px;
	position: relative;
	z-index: 3;
}

.feature-card {
	background: rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(12px);
	border-radius: 36px;
	padding: 28px 26px 30px 26px;
	box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
	transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1), box-shadow 0.4s;
	border: 1px solid rgba(255, 255, 255, 0.9);
	position: relative;
	overflow: hidden;
	transform-style: preserve-3d;
	transform: perspective(800px) rotateX(0deg) rotateY(0deg);
}

.feature-card:hover {
	transform: perspective(800px) rotateX(2deg) rotateY(2deg) translateY(-10px);
	box-shadow: 0 40px 60px -15px #ff2970, 0 0 0 2px rgba(255,255,255,0.8);
}

/* 卡片内多层光效 */
.feature-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 36px;
	padding: 2px;
	background: linear-gradient(135deg, #ff2970, #b42bff, #1fc7d4);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0.3;
	transition: opacity 0.3s;
}
.feature-card:hover::before {
	opacity: 0.8;
}

.feature-card::after {
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at 30% 30%, rgba(255,41,112,0.08), transparent 60%);
	opacity: 0;
	transition: opacity 0.5s;
}
.feature-card:hover::after {
	opacity: 1;
}

.card-icon {
	font-size: 44px;
	margin-bottom: 24px;
	color: #ff2970;
	background: rgba(255, 77, 109, 0.15);
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 24px;
	box-shadow: 0 8px 16px rgba(255,41,112,0.2);
	transition: 0.3s;
}
.feature-card:hover .card-icon {
	transform: scale(1.1) rotate(5deg);
	background: #ff2970;
	color: white;
}

.feature-card h3 {
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 14px;
	color: #10152b;
	letter-spacing: -0.3px;
}

.feature-card p {
	color: #3a405b;
	line-height: 1.6;
	font-size: 15px;
	margin-bottom: 22px;
	font-weight: 400;
}

.card-link {
	color: #ff2970;
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	border-bottom: 2px solid transparent;
	transition: 0.2s;
}
.card-link:hover {
	border-bottom-color: #ff2970;
	gap: 12px;
}

/* 主播列表区域 — 更丰富的卡片 */
.anchor-section {
	margin-top: 50px;
	position: relative;
	z-index: 3;
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}
.section-header h2 {
	font-size: 28px;
	font-weight: 800;
	color: #10152b;
	display: flex;
	align-items: center;
	gap: 14px;
	background: rgba(255,255,255,0.5);
	backdrop-filter: blur(4px);
	padding: 8px 24px 8px 20px;
	border-radius: 60px;
	border: 1px solid white;
}
.section-header h2 i {
	color: #ff4d6d;
	font-size: 32px;
	background: rgba(255,77,109,0.2);
	padding: 10px;
	border-radius: 50%;
}
.view-all {
	background: linear-gradient(145deg, #ff2970, #b42bff);
	color: white;
	padding: 12px 30px;
	border-radius: 40px;
	text-decoration: none;
	font-weight: 700;
	box-shadow: 0 10px 20px -5px #ff2970;
	transition: 0.3s;
	border: 1px solid rgba(255,255,255,0.3);
	backdrop-filter: blur(4px);
}
.view-all:hover {
	transform: scale(1.05);
	box-shadow: 0 20px 30px -5px #ff2970;
}

.anchor-grid {
	display: grid;
	max-width: 1200px;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.anchor-card {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(16px);
	border-radius: 36px;
	padding: 30px 20px 24px;
	box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.2), inset 0 1px 2px white;
	transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
	text-align: center;
	border: 1px solid rgba(255,255,255,0.9);
	position: relative;
	overflow: hidden;
}

.anchor-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 0 30px 50px -10px #ff2970, 0 0 0 2px rgba(255, 255, 255, 0.8);
}

/* 主播卡背景光晕 */
.anchor-card::before {
	content: '';
	position: absolute;
	top: -20%;
	left: -20%;
	width: 140%;
	height: 140%;
	background: radial-gradient(circle, rgba(255,41,112,0.1) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.5s;
	z-index: 0;
}
.anchor-card:hover::before {
	opacity: 1;
}

.live-badge {
	position: absolute;
	top: 18px;
	right: 20px;
	background: linear-gradient(145deg, #ff3b5c, #ff1e4f);
	color: white;
	font-size: 13px;
	font-weight: 800;
	padding: 6px 18px;
	border-radius: 40px;
	letter-spacing: 0.5px;
	box-shadow: 0 0 25px #ff4d6d;
	border: 1px solid rgba(255,255,255,0.6);
	z-index: 2;
	backdrop-filter: blur(4px);
}
.offline-badge {
	background: linear-gradient(145deg, #5d688b, #3e4460);
	box-shadow: none;
	border-color: rgba(255,255,255,0.2);
}

.anchor-avatar {
	width: 110px;
	height: 110px;
	background: linear-gradient(145deg, #ffcdd9, #d9e2ff);
	border-radius: 40% 60% 40% 60% / 50% 45% 55% 50%;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 4px solid white;
	box-shadow: 0 15px 30px -8px #ffa7b9, inset 0 -5px 10px rgba(0,0,0,0.05);
	transition: 0.3s;
	position: relative;
	z-index: 2;
}
.anchor-card:hover .anchor-avatar {
	border-radius: 50% 50% 40% 60%;
	transform: rotate(4deg);
	border-color: #ffb6c9;
}

.anchor-avatar i {
	font-size: 56px;
	color: #ff4d6d;
	filter: drop-shadow(0 5px 5px rgba(0,0,0,0.1));
}

.anchor-card h4 {
	font-size: 22px;
	font-weight: 800;
	color: #10152b;
	margin-bottom: 8px;
	letter-spacing: -0.3px;
}

.anchor-category {
	background: linear-gradient(145deg, #ffebf0, #ffeef4);
	color: #ff3b5c;
	font-weight: 700;
	font-size: 14px;
	padding: 6px 18px;
	border-radius: 40px;
	display: inline-block;
	margin: 12px 0 14px;
	border: 1px solid rgba(255,41,112,0.2);
	box-shadow: 0 2px 8px rgba(255,41,112,0.1);
}

.meta-info {
	display: flex;
	justify-content: center;
	gap: 22px;
	color: #4f5580;
	font-size: 15px;
	font-weight: 500;
	margin: 14px 0 12px;
}
.meta-info i {
	color: #ffa7b9;
	margin-right: 6px;
	font-size: 14px;
}
.follow-btn {
	background: transparent;
	border: 2px solid #ffb6c9;
	color: #ff3b5c;
	padding: 10px 24px;
	border-radius: 60px;
	font-weight: 700;
	font-size: 15px;
	transition: 0.2s;
	cursor: default;
	margin-top: 8px;
	display: inline-block;
	backdrop-filter: blur(4px);
	box-shadow: 0 4px 10px rgba(255, 41, 112, 0.1);
}
.follow-btn:hover {
	background: #ff3b5c;
	color: white;
	border-color: #ff3b5c;
}

/* 装饰线 & 底部信息 */
.divider-cosmic {
	margin: 50px 0 30px;
	border: none;
	height: 2px;
	background: linear-gradient(90deg, transparent, #ffa7b9, #b42bff, #ffa7b9, transparent);
	opacity: 0.5;
}

.bottom-stats {
	display: flex;
	gap: 40px;
	justify-content: center;
	color: #3a405b;
	font-weight: 600;
	background: rgba(255,255,255,0.5);
	backdrop-filter: blur(8px);
	border-radius: 60px;
	padding: 16px 40px;
	width: fit-content;
	margin: 0 auto 30px;
	border: 1px solid white;
	box-shadow: 0 10px 20px -8px rgba(0,0,0,0.1);
}
.bottom-stats span i {
	color: #ff4d6d;
	margin-right: 8px;
	font-size: 18px;
}

/* 响应式微调 */
@media (max-width: 1400px) {
	.cards-grid { grid-template-columns: repeat(2, 1fr); }
	.anchor-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1100px) {
	.anchor-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 800px) {
	.sidebar { width: 100px; clip-path: none; }
	.sidebar .logo span, .sidebar .badge, .sidebar .nav-item span, .sidebar-footer .contact-item span, .live-tag span { display: none; }
	.main-content { margin-left: 100px; }
	.nav-item a { justify-content: center; }
	.cards-grid { grid-template-columns: 1fr; }
}

/* 平滑滚动 */
html {
	scroll-behavior: smooth;
}


.company-text div{
	line-height: 30px;
	font-size: 16px;
}

.company-content{
	max-width: 1200px;
	margin: 0 auto;
}

svg{
	width: 20px;
	height: 20px;
	vertical-align: middle;
}