﻿
@charset "utf-8";
/* Style Reset*/
body, div, dl, dt, dd, ul, ol, li, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, h2, font {
	margin: 0;
	padding: 0;
	border: 0;
}
input, button, textarea, select, optgroup, option {
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
}
ul, li, dl, dt, dd, ol {
	display: block;
	list-style: none;
}
img {
	border: 0;
}
.fl {
	float: left
}
.fr {
	float: right
}
.clear {
	clear: both;
	height: 0px;
	overflow: hidden
}
a {
	color: #000;
	text-decoration: none;
	outline: 0;
}
html {
	overflow-x: hidden;
}

body {
    background: #f5f6f8;
    min-width: 1340px;

	font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: #333;
    -webkit-font-smoothing: antialiased;
}


:root {
    --primary: #fdb621; /* 亮绿色主色调 */
    --primary-light: #6ee7b7;
    --secondary: #ec48bc; /* 亮粉色辅助色 */
    --accent: #8b5cf6; /* 紫色强调色 */
    --light: #f9fafb;
    --white: #ffffff;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 30px rgba(52, 211, 153, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

body {
    background-color: var(--light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* 创新竖排文字导航栏 */
.vertical-text-nav {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 0 3rem;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3rem;
    z-index: 1000;
}

/* 导航背景装饰 */
/* .vertical-text-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="100" viewBox="0 0 100 10"><circle cx="10" cy="5" r="2" fill="white" opacity="0.2"/><circle cx="30" cy="7" r="1.5" fill="white" opacity="0.2"/><circle cx="50" cy="3" r="2.5" fill="white" opacity="0.2"/><circle cx="70" cy="6" r="1.5" fill="white" opacity="0.2"/><circle cx="90" cy="4" r="2" fill="white" opacity="0.2"/></svg>') repeat-x;
    background-size: 100px 10px;
    z-index: 1;
} */

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 550px !important;
    height: 60px;

}

.nav-logo span {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    float: right;
    position: relative;
    z-index: 2;
}

.nav-link:hover::after{
    width: 100%;
}

/* .nav-link {
    position: relative;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    height: 80px;
    display: flex;
    align-items: center;
    transition: var(--transition);
    opacity: 0.9;
} */

/* 文字竖排核心样式 */
/* .nav-link span {
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 2px;
    display: block;
    transition: var(--transition);
    text-transform: uppercase;
}

.nav-link:hover {
    opacity: 1;
    transform: translateY(-3px);
} */



.nav-link {
    position: relative;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    width: 99px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    opacity: 0.9;
    overflow: hidden;
}

  .nav-link span {
    letter-spacing: 2px;
    text-orientation: upright;
    display: block;
    width: 100%;
    height: 100%;
    line-height: 80px;  
    text-align: center; 
    transition: var(--transition);
  }


.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link.active {
    opacity: 1;
}

.nav-link.active::after {
    width: 70%;
}

.nav-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.action-btn {
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.login-btn {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.login-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.register-btn {
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.3);
}

.register-btn:hover {
    background-color: #db2777;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4);
}

/* 好看的栏目标题样式 */
.section-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    line-height: 1.2;
    padding-bottom: 18px;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
}

.section-title span {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin-bottom: 0.5rem;
}

/* 按钮通用样式 */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2.2rem;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(52, 211, 153, 0.2);
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(52, 211, 153, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: rgba(52, 211, 153, 0.1);
}

.btn-accent {
    background: linear-gradient(90deg, var(--secondary), #f472b6);
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.2);
}

.btn-accent:hover {
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
}

/* 首页英雄区 */
.hero {
    padding: 150px 0;
    background: linear-gradient(135deg, #f0fdf4, #fef2f2);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="600" height="800" viewBox="0 0 100 100"><circle cx="15" cy="20" r="12" fill="%23FFE55C" opacity="0.05"/><circle cx="85" cy="25" r="18" fill="%23FFD700" opacity="0.05"/><circle cx="30" cy="75" r="20" fill="%23FEDC56" opacity="0.05"/><circle cx="70" cy="80" r="14" fill="%23FFC857" opacity="0.05"/><circle cx="45" cy="45" r="25" fill="%23FFFACD" opacity="0.05"/><circle cx="10" cy="60" r="16" fill="%23FADF80" opacity="0.05"/><circle cx="90" cy="65" r="22" fill="%23FBBF77" opacity="0.05"/><circle cx="55" cy="15" r="10" fill="%23FAE700" opacity="0.05"/></svg>') no-repeat right center;
    background-size: cover;
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero h1 span {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
}

/* 特色直播展示 */
.featured-live {
    background-color: var(--white);
}

.live-showcase {
    width: 1200px;
    display: flex;
    margin: 0 auto;
    background-color: var(--light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.main-live {
    width: 33%;
    position: relative;
    height: 385px;
    background-size: cover;
}

.main-live img{
    height: 100%;
}

.live-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    color: white;
}

.live-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    width: fit-content;
}

.live-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.main-live-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.main-live-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.live-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.side-lives {
    display: flex;
    flex-direction: column;
}

.side-live {
    flex: 1;
    position: relative;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(52, 211, 153, 0.1);
    transition: var(--transition);
}

.side-live:last-child {
    border-bottom: none;
}

.side-live:hover {
    background-color: rgba(52, 211, 153, 0.05);
    transform: translateX(5px);
}

.side-live::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="200" viewBox="0 0 100 50"><rect width="100" height="50" fill="%23f0fdf4"/><circle cx="20" cy="20" r="5" fill="%2334d399" opacity="0.1"/><circle cx="70" cy="30" r="8" fill="%23ec4899" opacity="0.1"/></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.5;
    z-index: 0;
}

.side-live-content {
    position: relative;
    z-index: 1;
}

.side-live-title {
    font-weight: 600;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.side-live-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* 主播列表 */
.streamers {
    background-color: var(--light);
}

.streamers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

.streamer-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow);
}

.streamer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.streamer-thumbnail {
    height: 430px;
    overflow: hidden;
    background-size: cover;
    position: relative;
}

.streamer-thumbnail img{
    width: 100%;
}

.streamer-live {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: var(--secondary);
    color: white;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.streamer-live::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.streamer-info {
    padding: 20px;
}

.streamer-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.streamer-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--white);
    border: 3px solid var(--white);
    margin-top: -50px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.streamer-avatar::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="35" r="20" fill="%2334d399" opacity="0.3"/><rect x="20" cy="60" width="60" height="40" rx="10" fill="%23f0fdf4"/></svg>') no-repeat center;
    background-size: cover;
}

.streamer-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.streamer-category {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.streamer-title {
    font-weight: 600;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.streamer-stats {
    display: flex;
    justify-content: space-between;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* 关于我们/公司介绍 */
.about {
    background-color: var(--white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="600" height="800" viewBox="0 0 100 100"><circle cx="15" cy="20" r="12" fill="%23FFE55C" opacity="0.05"/><circle cx="85" cy="25" r="18" fill="%23FFD700" opacity="0.05"/><circle cx="30" cy="75" r="20" fill="%23FEDC56" opacity="0.05"/><circle cx="70" cy="80" r="14" fill="%23FFC857" opacity="0.05"/><circle cx="45" cy="45" r="25" fill="%23FFFACD" opacity="0.05"/><circle cx="10" cy="60" r="16" fill="%23FADF80" opacity="0.05"/><circle cx="90" cy="65" r="22" fill="%23FBBF77" opacity="0.05"/><circle cx="55" cy="15" r="10" fill="%23FAE700" opacity="0.05"/></svg>') no-repeat right center;
    background-size: cover;
    z-index: 1;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image {
    height: 550px;
    background-color: var(--light);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="600" height="800" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f9fafb"/><rect x="10" y="10" width="40" height="40" rx="5" fill="%2334d399" opacity="0.1"/><rect x="50" y="30" width="40" height="40" rx="5" fill="%23ec4899" opacity="0.1"/><rect x="30" y="60" width="40" height="30" rx="5" fill="%238b5cf6" opacity="0.1"/></svg>') no-repeat center;
    background-size: cover;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-content p {
    margin-bottom: 1.8rem;
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.company-highlights {
    margin: 3rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(52, 211, 153, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* 联系我们 */
.contact {
    background-color: var(--light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--primary);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(52, 211, 153, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background-color: var(--primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.contact-details h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.contact-details p {
    color: var(--text-gray);
    margin-bottom: 10px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.social-link:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 8px 20px rgba(52, 211, 153, 0.3);
}

.contact-form {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    background-color: var(--light);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.1);
}

.form-group textarea {
    min-height: 200px;
    resize: vertical;
}

/* 协议中心 */
.agreements {
    background-color: var(--white);
}

.agreements-container {
    background-color: var(--light);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow);
}

.agreements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.agreement-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
}

.agreement-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--secondary);
}

.agreement-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(52, 211, 153, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.agreement-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.agreement-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.agreement-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.agreement-link svg {
    margin-left: 8px;
    transition: var(--transition);
}

.agreement-link:hover {
    color: var(--secondary);
}

.agreement-link:hover svg {
    transform: translateX(5px);
}

/* 页脚 */
footer {
    background: linear-gradient(90deg, var(--primary), #d46306);
    color: white;
    padding: 80px 0 40px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="400" viewBox="0 0 100 50"><circle cx="10" cy="10" r="3" fill="white" opacity="0.1"/><circle cx="30" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="50" cy="30" r="4" fill="white" opacity="0.1"/><circle cx="70" cy="15" r="2" fill="white" opacity="0.1"/><circle cx="90" cy="25" r="3" fill="white" opacity="0.1"/></svg>') repeat-x;
    background-size: 100px 50px;
    z-index: 1;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.3rem;
}

.footer-logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 300px;
    line-height: 1.7;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-policy {
    display: flex;
    gap: 1.8rem;
}

.footer-policy a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-policy a:hover {
    color: var(--secondary);
}

/* 动画效果 */
@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* 自定义图标 */
.icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    position: relative;
}

.icon-play {
    background-color: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2' d='M5 3l14 9-14 9V3z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2' d='M5 3l14 9-14 9V3z'/%3E%3C/svg%3E") no-repeat center;
}

.icon-user {
    background-color: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2' d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2' d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E") no-repeat center;
}

.icon-phone {
    background-color: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2' d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2' d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") no-repeat center;
}

.icon-envelope {
    background-color: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2' d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline fill='none' stroke='%23000' stroke-width='2' points='22,6 12,13 2,6'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2' d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline fill='none' stroke='%23000' stroke-width='2' points='22,6 12,13 2,6'/%3E%3C/svg%3E") no-repeat center;
}

.icon-map {
    background-color: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2' d='M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='2' d='M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2' d='M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='2' d='M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z'/%3E%3C/svg%3E") no-repeat center;
}

.icon-document {
    background-color: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2' d='M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2' d='M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z'/%3E%3C/svg%3E") no-repeat center;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .about-container,
    .contact-container {
        gap: 4rem;
    }
    
    .footer-container {
        gap: 3rem;
    }
    
    .live-showcase {
        grid-template-columns: 1.5fr 1fr;
    }
}

@media (max-width: 992px) {
    .vertical-text-nav {
        height: 100px;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .live-showcase {
        grid-template-columns: 1fr;
    }
    
    .main-live {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .vertical-text-nav {
        height: auto;
        padding: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .nav-actions {
        margin-left: auto;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .company-highlights {
        grid-template-columns: 1fr;
    }
    
    .agreements-grid {
        grid-template-columns: 1fr;
    }
    
    /* 竖排文字在小屏幕转为横排 */
    .nav-link span {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        letter-spacing: normal;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .streamers-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-policy {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .nav-actions {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .action-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}


@media (max-width: 2200px) {

}


@media (max-width: 1305px) {
.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.nav-actions{
    margin-left: 250px;
}

}

@media (max-width: 1165px) {
.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}
}