/* 全局样式 */
:root {
    --primary-color: #fa7ea1;
    --secondary-color: #fa8eac;
    --accent-color: #fcb5c8;
    --light-accent: #fcc5d5;
    --background-color: #F8F9FA;
    --dark-background: #1F1F2F;
    --text-color: #333333;
    --light-text: #FFFFFF;
    --border-radius: 7px;
    --box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --soft-gradient: linear-gradient(135deg, var(--accent-color), var(--light-accent));
    --hero-gradient: linear-gradient(135deg, #fa7ea1 0%, #fa8eac 50%, #fcb5c8 100%);
    --card-shadow: 0 5px 22px rgba(250, 126, 161, 0.15);
    --hover-shadow: 0 8px 28px rgba(250, 126, 161, 0.25);
    /* 紧凑30%的间距变量 */
    --section-padding: 56px 0; /* 原80px减少30% */
    --card-padding: 21px; /* 原30px减少30% */
    --gap-large: 21px; /* 原30px减少30% */
    --gap-medium: 14px; /* 原20px减少30% */
    --gap-small: 7px; /* 原10px减少30% */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px; /* 减少30% */
}

/* 通用样式 */
a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.section-header i {
    color: var(--primary-color);
    font-size: 24px;
    margin-right: 10px;
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
}

section {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: var(--card-padding);
    margin-bottom: var(--gap-large);
}

/* 头部样式 */
header {
    text-align: center;
    padding: 28px 0; /* 减少30% */
    margin-bottom: var(--gap-large);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.logo {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    border-radius: 12px;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

header h1 span {
    color: var(--secondary-color);
}

.slogan {
    font-size: 1.2rem;
    color: #777;
}

/* 新头部样式 */
.new-header {
    background: var(--gradient);
    padding: 0;
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.new-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('announcement-bg.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    position: relative;
    z-index: 1;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-branding .logo {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
    border-radius: 12px;
}

.site-branding:hover .logo {
    transform: scale(1.05);
}

.site-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-title h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.site-title h1 span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.site-title .slogan {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

.header-nav {
    display: flex;
    gap: 5px;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.nav-btn i {
    font-size: 0.85rem;
}

.nav-btn.primary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

.nav-btn.primary:hover {
    background: white;
    color: var(--secondary-color);
}

.header-bottom {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-menu {
    display: flex;
    gap: 25px;
}

.header-menu a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: all 0.2s ease;
}

.header-menu a:hover {
    color: white;
}

.header-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.2s ease;
}

.header-menu a:hover::after,
.header-menu a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.header-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.mobile-menu-trigger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 992px) {
    .header-container {
        padding: 15px 20px;
    }
    
    .site-branding .logo {
        width: 50px;
        height: 50px;
    }
    
    .site-title h1 {
        font-size: 1.6rem;
    }
    
    .header-menu {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-bottom {
        display: none;
    }
    
    .mobile-menu-trigger {
        display: block;
    }
    
    .site-title h1 {
        font-size: 1.4rem;
    }
    
    .site-title .slogan {
        font-size: 0.85rem;
    }
    
    .nav-btn {
        padding: 6px 15px;
        font-size: 0.85rem;
    }
    
    .header-nav {
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .site-branding .logo {
        width: 45px;
        height: 45px;
        border-radius: 10px;
    }
    
    .site-title h1 {
        font-size: 1.2rem;
    }
    
    .header-container {
        padding: 12px 15px;
    }
    
    .nav-btn span {
        display: none;
    }
    
    .nav-btn {
        width: 36px;
        height: 36px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
    
    .nav-btn i {
        margin: 0;
        font-size: 1rem;
    }
}

/* 公告栏样式 */
.announcement {
    /* 这不再需要 */
}

/* 滚动公告样式 */
.scrolling-notices {
    display: flex;
    flex-wrap: wrap;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    background: white;
    margin-bottom: 30px;
}

.scroll-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-color);
    padding: 10px 15px;
    color: white;
}

.scroll-title {
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.scroll-title i {
    margin-right: 6px;
    font-size: 0.9rem;
}

.scroll-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.scroll-btn {
    border: none;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.scroll-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.scroll-btn.active {
    background-color: white;
    color: var(--primary-color);
}

.scroll-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: 50px;
    min-width: 0;
    border-right: 1px solid #f0f0f0;
}

.scroll-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 0.5s ease;
}

.scroll-item {
    display: flex;
    align-items: center;
    padding: 0 15px;
    height: 50px;
    box-sizing: border-box;
}

.scroll-item .notice-date {
    color: #999;
    font-size: 0.85rem;
    margin-right: 10px;
    white-space: nowrap;
}

.scroll-item .notice-text {
    flex: 1;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.scroll-item .notice-text:hover {
    color: var(--primary-color);
}

.scroll-item .notice-badge {
    background-color: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    padding: 2px 5px;
    border-radius: 2px;
    margin-right: 8px;
    font-weight: 600;
}

.scroll-item .notice-badge.new {
    background-color: #ff3b3b;
}

/* 收藏按钮新样式 */
.bookmark-btn {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
    margin-left: 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bookmark-btn:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.bookmark-btn i {
    margin-right: 5px;
}

/* 移除旧的收藏区域样式 */
.bookmark-section {
    /* 这不再需要 */
}

.bookmark-section p {
    /* 这不再需要 */
}

.bookmark-section strong {
    /* 这不再需要 */
}

@media (max-width: 768px) {
    .scrolling-notices {
        flex-direction: column;
    }
    
    .scroll-container {
        width: 100%;
        border-right: none;
    }
    
    .scroll-title {
        font-size: 0.9rem;
    }
    
    .scroll-btn {
        width: 26px;
        height: 26px;
    }
    
    .bookmark-btn {
        padding: 4px 10px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .scrolling-notices {
        display: none; /* 隐藏移动端的滚动公告模块 */
    }
    
    .scroll-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }
    
    .scroll-controls {
        width: 100%;
        justify-content: flex-end;
        margin-top: 8px;
    }
    
    .bookmark-btn {
        margin-left: auto;
    }
}

/* 移除旧的响应式样式 */
@media (max-width: 480px) {
    .bookmark-section {
        /* 这不再需要 */
    }
    
    .bookmark-section p {
        /* 这不再需要 */
    }
}

/* 网址卡片样式 */
.url-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.url-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.url-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.url-card.primary {
    border: 2px solid var(--primary-color);
}

.card-header {
    padding: 15px;
    background: #f5f5f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    font-size: 1.2rem;
    color: var(--text-color);
}

.status {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status.active {
    background-color: rgba(250, 126, 161, 0.3);
    color: #7c3845;
}

.status.inactive {
    background-color: #f8d7da;
    color: #721c24;
}

.card-content {
    padding: 20px;
    text-align: center;
}

.url {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.description {
    color: #777;
    margin-bottom: 15px;
}

.visit-btn {
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.9rem;
    display: block;
    text-align: center;
    box-shadow: 0 4px 12px rgba(250, 126, 161, 0.3);
}

.visit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(250, 126, 161, 0.4);
}

/* APP下载区域样式 */
.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.app-info ul {
    list-style: none;
    margin: 20px 0;
}

.app-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.app-info li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.app-download-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.download-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: var(--dark-background);
    color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: var(--primary-color);
    color: white;
}

.download-btn i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.qr-code {
    text-align: center;
    margin-top: 20px;
}

.qr-code img {
    max-width: 150px;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* 网站介绍样式 - 新设计 */
.intro-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 30px;
}

.intro-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.intro-banner {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fcf2f4 0%, #f6e6f0 100%);
    border-radius: 15px;
    padding: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(247, 123, 139, 0.1);
}

.intro-slogan {
    flex: 1;
    padding-right: 20px;
    z-index: 1;
}

.intro-slogan h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.intro-slogan h3 span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.intro-slogan h3 span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(250, 126, 161, 0.3);
    z-index: -1;
}

.intro-slogan p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.intro-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.intro-btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.primary-btn {
    background: var(--gradient);
    color: white;
    box-shadow: 0 5px 15px rgba(250, 126, 161, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(250, 126, 161, 0.5);
    color: white;
}

.outline-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.outline-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.intro-mascot {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mascot-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
}

.mascot-icon {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #f77b8b 0%, #f7bacc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 10px 25px rgba(247, 123, 139, 0.4);
}

.mascot-icon i {
    color: white;
    font-size: 2.5rem;
    position: absolute;
}

.mascot-icon i:nth-child(1) {
    transform: translate(-25px, -15px);
    font-size: 2.2rem;
}

.mascot-icon i:nth-child(2) {
    transform: translate(25px, -15px);
    font-size: 1.8rem;
}

.mascot-icon i:nth-child(3) {
    transform: translateY(30px);
    font-size: 2rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    display: flex;
    gap: 15px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(250, 126, 161, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 1.4rem;
    color: var(--primary-color);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.feature-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
}

.feature-content h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.intro-stats {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.stats-header {
    margin-bottom: 20px;
    text-align: center;
}

.stats-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.stats-header h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.stat-card {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #fcf2f4 0%, #f6e6f0 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(247, 123, 139, 0.2);
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(250, 126, 161, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
}

.testimonial {
    background: linear-gradient(135deg, #f77b8b 0%, #f6b2b6 100%);
    padding: 20px;
    border-radius: 10px;
    color: white;
    position: relative;
    margin-top: auto;
}

.quote-icon {
    font-size: 1.8rem;
    opacity: 0.2;
    margin-bottom: 10px;
}

.quote-text {
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 15px;
}

.quote-author {
    text-align: right;
    font-weight: 600;
    font-size: 0.9rem;
}

/* 新的响应式设计 */
@media (max-width: 992px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .intro-banner {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .intro-slogan {
        padding-right: 0;
        padding-bottom: 20px;
    }
    
    .intro-actions {
        justify-content: center;
    }
    
    .intro-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feature-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
    }
    
    .feature-icon {
        margin-bottom: 10px;
    }
    
    .feature-content h3 {
        font-size: 1.1rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card {
        padding: 12px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .url-cards, .vip-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .url-card .card-content, .vip-card {
        padding: 15px;
    }
    
    .url-card .url, .vip-card .vip-level {
        font-size: 1.2rem;
    }
    
    .url-card .description, .vip-card .benefits li {
        font-size: 0.9rem;
    }
    
    .url-card .visit-btn, .vip-card .vip-btn {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
    
    .features {
        grid-template-columns: 1fr 1fr;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .app-download-btns {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    section {
        padding: 20px;
    }
    
    .url-cards, .vip-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .url-card .card-content, .vip-card {
        padding: 12px;
    }
    
    .url-card .url, .vip-card .vip-level {
        font-size: 1.1rem;
    }
    
    .url-card .description, .vip-card .benefits li {
        font-size: 0.85rem;
    }
    
    .url-card .visit-btn, .vip-card .vip-btn {
        padding: 5px 10px;
        font-size: 0.85rem;
    }
    
    .card-header {
        padding: 10px;
    }
    
    .card-header h3 {
        font-size: 1rem;
    }
    
    .features, .stats {
        grid-template-columns: 1fr;
    }
    
    .intro-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .feature-card {
        padding: 10px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .intro-stats {
        padding: 15px;
    }
    
    .stats-header h3 {
        font-size: 1.3rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .subscribe-form input {
        border-radius: 25px;
        margin-bottom: 10px;
    }
    
    .subscribe-form button {
        border-radius: 25px;
    }
}

/* 返回顶部按钮样式 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(247, 123, 139, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #f87485, #f77b8b);
    box-shadow: 0 8px 20px rgba(247, 123, 139, 0.6);
    transform: translateY(-3px);
}

@media (max-width: 576px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
}

/* VIP会员信息样式 */
.vip-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.vip-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background: white;
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease;
}

.vip-card:hover {
    transform: translateY(-10px);
}

.vip-card.premium {
    box-shadow: 0 10px 25px rgba(247, 123, 139, 0.3);
    border: 2px solid var(--secondary-color);
}

.vip-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    border-bottom-left-radius: 10px;
}

.vip-level {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
    text-align: center;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.benefits {
    list-style: none;
    margin-bottom: 25px;
}

.benefits li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.benefits li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.vip-btn {
    display: block;
    text-align: center;
    padding: 10px;
    background: var(--gradient);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.vip-btn:hover {
    transform: scale(1.05);
    color: white;
    box-shadow: 0 5px 15px rgba(247, 123, 139, 0.3);
}

/* FAQ样式 */
.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 15px;
    background: #f5f5f5;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
}

.faq-question i {
    margin-right: 15px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.4;
    flex: 1;
}

.faq-answer {
    padding: 15px;
    background: white;
    display: none;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.faq-answer p {
    line-height: 1.6;
    margin-bottom: 10px;
}

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

.faq-item.active .faq-answer {
    display: block;
}

@media (max-width: 576px) {
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .faq-question {
        padding: 12px;
    }
}

/* 联系我们样式 */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.contact-method {
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    background: #f5f5f5;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.subscription {
    background: linear-gradient(135deg, #f77b8b 0%, #f6b2b6 100%);
    padding: 25px;
    border-radius: 10px;
    color: white;
    text-align: center;
}

.subscription h3 {
    margin-bottom: 10px;
}

.subscribe-form {
    display: flex;
    margin-top: 15px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.subscribe-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px 0 0 25px;
    outline: none;
}

.subscribe-form button {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(250, 126, 161, 0.3);
}

.subscribe-form button:hover {
    box-shadow: 0 6px 15px rgba(250, 126, 161, 0.4);
}

/* 页脚样式 */
footer {
    padding: 40px 0 20px;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
    margin-top: 30px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.footer-section h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #666;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.friend-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}

.friend-links a {
    color: #777;
    padding: 5px 12px;
    border-radius: 15px;
    background-color: #f2f2f2;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-block;
}

.friend-links a:hover {
    background: rgba(250, 126, 161, 0.1);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    padding: 15px 20px 0;
    border-top: 1px solid #eee;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .friend-links {
        gap: 8px;
        justify-content: flex-start;
    }
    
    .friend-links a {
        padding: 4px 10px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .footer-main {
        gap: 25px;
    }
    
    .friend-links {
        gap: 6px;
    }
    
    .friend-links a {
        font-size: 0.8rem;
        padding: 3px 8px;
    }
    
    .copyright {
        padding-top: 15px;
        font-size: 0.85rem;
    }
}

/* 响应式设计 */
@media (max-width: 992px) {
    .app-content, .intro-content {
        grid-template-columns: 1fr;
    }
    
    .stats {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .url-cards, .vip-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .url-card .card-content, .vip-card {
        padding: 15px;
    }
    
    .url-card .url, .vip-card .vip-level {
        font-size: 1.2rem;
    }
    
    .url-card .description, .vip-card .benefits li {
        font-size: 0.9rem;
    }
    
    .url-card .visit-btn, .vip-card .vip-btn {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
    
    .features {
        grid-template-columns: 1fr 1fr;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .app-download-btns {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    section {
        padding: 20px;
    }
    
    .features, .stats {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .subscribe-form input {
        border-radius: 25px;
        margin-bottom: 10px;
    }
    
    .subscribe-form button {
        border-radius: 25px;
    }
}

/* 返回顶部按钮样式 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(247, 123, 139, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #f87485, #f77b8b);
    box-shadow: 0 8px 20px rgba(247, 123, 139, 0.6);
    transform: translateY(-3px);
}

@media (max-width: 576px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
}

/* 关于页面功能图标 */
.feature-item .feature-icon {
    background: rgba(250, 126, 161, 0.15);
    color: var(--primary-color);
}

/* 关于页面使命列表图标 */
.mission-text li i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* 隐私政策页面样式 */
.privacy-page .section-header i,
.terms-page .section-header i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.privacy-date,
.terms-date {
    text-align: right;
    color: #777;
    font-style: italic;
    margin-bottom: 20px;
}

.privacy-intro,
.terms-intro {
    margin-bottom: 30px;
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
    background-color: rgba(250, 126, 161, 0.05);
    padding: 15px;
    border-radius: 5px;
}

.privacy-section h3,
.terms-section h3 {
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.privacy-section h4 {
    color: #555;
    margin: 15px 0 10px 0;
    font-size: 1.1rem;
}

.privacy-list,
.terms-list {
    list-style: none;
    padding-left: 0;
}

.privacy-list li,
.terms-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.privacy-list li::marker,
.terms-list li::marker {
    display: none;
}

.privacy-list li:before,
.terms-list li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.privacy-footer,
.terms-footer {
    margin-top: 30px;
    padding: 15px;
    background-color: rgba(250, 126, 161, 0.05);
    border-radius: 5px;
    text-align: center;
    font-style: italic;
}

/* 关于我们页面样式 */
.about-us .section-header i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.about-intro {
    margin-bottom: 30px;
}

.about-intro h3,
.about-mission h3,
.about-features h3,
.team-section h3,
.contact-section h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.mission-image {
    flex: 0 0 150px;
}

.mission-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mission-text ul {
    list-style-type: none;
    padding: 0;
    margin: 15px 0;
}

.contact-list {
    list-style-type: none;
    padding: 0;
    margin: 15px 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .mission-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .mission-image {
        flex: 0 0 auto;
        width: 120px;
    }
}

.footer-section.site-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-section.site-links ul li {
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .footer-section.site-links ul {
        gap: 15px;
    }
}

/* 关于我们页面 - 平台特色新样式 */
.features-container {
    margin: 25px 0;
}

.feature-row {
    display: flex;
    margin-bottom: 25px;
    gap: 30px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-item {
    flex: 1;
    display: flex;
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(250, 126, 161, 0.15);
}

.feature-item:hover::before {
    width: 7px;
}

.feature-item .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(250, 126, 161, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.feature-item .feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
}

.feature-item:hover .feature-icon i {
    transform: scale(1.2);
}

.feature-detail h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-detail h4 {
    color: var(--primary-color);
}

.feature-detail p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .feature-row {
        gap: 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.3rem;
    }
    
    .feature-detail h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .feature-row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .feature-item {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-icon i {
        font-size: 1.1rem;
    }
    
    .feature-detail h4 {
        font-size: 1rem;
    }
    
    .feature-detail p {
        font-size: 0.9rem;
    }
}

/* 统一处理所有列表，删除默认marker */
.mission-text ul,
.contact-list,
.benefits,
.app-info ul,
.footer-section ul {
    list-style: none;
    padding-left: 0;
}

.mission-text li::marker,
.contact-list li::marker,
.benefits li::marker,
.app-info li::marker,
.footer-section ul li::marker {
    display: none;
}

/* ==================== 新增样式 ==================== */

/* 现代化导航栏 */
.modern-header {
    background: var(--hero-gradient);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.modern-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('announcement-bg.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 21px; /* 减少30% */
    position: relative;
    z-index: 1;
}

.brand-section {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand-link:hover .brand-logo {
    transform: scale(1.05) rotate(5deg);
}

.brand-logo {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: 12px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
}

.brand-text h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.brand-text h1 span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.brand-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions .cta-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.nav-actions .cta-button:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 英雄区域 */
.hero-section {
    background: linear-gradient(135deg, #fcf8f9 0%, #f8f0f4 50%, #f4e8ef 100%);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
    margin-bottom: var(--gap-large);
    border-radius: var(--border-radius);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(250, 126, 161, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px; /* 减少30% */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 14px; /* 减少30% */
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: var(--gap-large);
    margin-bottom: 28px; /* 减少30% */
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3px; /* 减少30% */
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: #777;
}

.hero-actions {
    display: flex;
    gap: var(--gap-medium);
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--card-shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
}

.phone-mockup .screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 30px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.app-showcase {
    background: linear-gradient(135deg, #fa7ea1, #fcb5c8);
    height: 100%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.showcase-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.showcase-item:nth-child(2) {
    animation-delay: 1s;
}

.showcase-item:nth-child(3) {
    animation-delay: 2s;
}

.showcase-item i {
    font-size: 1.5rem;
}

/* 动态公告栏 */
.news-ticker {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    margin-bottom: var(--gap-large);
    overflow: hidden;
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    padding: var(--gap-small) var(--gap-medium);
}

.ticker-label {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
    margin-right: 20px;
}

.ticker-content {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    animation: tickerScroll 15s linear infinite;
}

.ticker-item .badge {
    background: var(--primary-color);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.bookmark-link {
    background: rgba(250, 126, 161, 0.1);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.bookmark-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

@keyframes tickerScroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* 产品展示区域 */
.product-showcase {
    padding: 80px 0;
    background: white;
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.showcase-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.showcase-header p {
    font-size: 1.2rem;
    color: #666;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.showcase-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

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

.showcase-card .card-header {
    text-align: center;
    margin-bottom: 25px;
}

.showcase-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(250, 126, 161, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.showcase-card .icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.showcase-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.showcase-card .card-subtitle {
    color: #666;
    font-size: 1rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 25px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #555;
}

.feature-list i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.showcase-card .card-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.showcase-card .stat-item {
    text-align: center;
}

.showcase-card .stat-item .number {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.showcase-card .stat-item .label {
    font-size: 0.85rem;
    color: #777;
}

/* 核心功能特色 */
.features-section {
    padding: 80px 0;
    background: #f8f9fa;
    margin-bottom: 30px;
    border-radius: var(--border-radius);
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.features-header p {
    font-size: 1.2rem;
    color: #666;
}

.features-container {
    display: grid;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

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

.feature-item.primary {
    background: linear-gradient(135deg, #fcf8f9 0%, #f8f0f4 100%);
    border: 2px solid var(--accent-color);
}

.feature-visual .icon-circle {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--card-shadow);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.feature-visual .icon-circle i {
    font-size: 2.5rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
}

.feature-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.feature-info p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-highlight {
    display: flex;
    gap: 10px;
}

.feature-highlight .badge {
    background: var(--gradient);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* 用户评价见证 */
.testimonials-section {
    padding: 80px 0;
    background: white;
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.testimonials-header p {
    font-size: 1.2rem;
    color: #666;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card.featured {
    background: linear-gradient(135deg, #fcf8f9 0%, #f8f0f4 100%);
    border: 2px solid var(--accent-color);
}

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

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.user-details h4 {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2px;
}

.user-tag {
    font-size: 0.85rem;
    color: #777;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.rating-text {
    font-weight: 600;
    color: var(--primary-color);
    margin-left: 5px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #777;
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-stats .stat-item {
    text-align: center;
}

.testimonials-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonials-stats .stat-label {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.testimonials-stats .stars {
    display: flex;
    justify-content: center;
    gap: 2px;
}

.testimonials-stats .stars i {
    color: #ffc107;
    font-size: 1.2rem;
}

/* 平台数据统计 */
.stats-showcase {
    margin-bottom: 30px;
}

.stats-bg {
    background: var(--hero-gradient);
    padding: 80px 0;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.stats-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('announcement-bg.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
}

.stats-content {
    position: relative;
    z-index: 1;
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
}

.stats-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stats-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-grid .stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stats-grid .stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stats-grid .stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.stats-grid .stat-icon i {
    font-size: 2rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
}

.stats-grid .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stats-grid .stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
    font-weight: 600;
}

.stats-grid .stat-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* 下载体验区域 */
.download-section {
    margin-bottom: 30px;
}

.download-container {
    background: linear-gradient(135deg, #fcf8f9 0%, #f8f0f4 100%);
    border-radius: var(--border-radius);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.download-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.download-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.download-features {
    margin-bottom: 40px;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #555;
}

.feature-point i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.download-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
}

.download-btn.primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--card-shadow);
}

.download-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
    color: white;
}

.download-btn.secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.download-btn.secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.download-btn i {
    font-size: 1.5rem;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-title {
    font-weight: 600;
    font-size: 1rem;
}

.btn-subtitle {
    font-size: 0.85rem;
    opacity: 0.8;
}

.download-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #777;
}

.phone-preview {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: #000;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fa7ea1, #fcb5c8);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    padding: 30px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    text-align: center;
    margin-bottom: 40px;
}

.app-name {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.content-tab {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.content-tab.active {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: floatAround 8s ease-in-out infinite;
}

.float-icon.game {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.float-icon.manga {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.float-icon.anime {
    bottom: 20%;
    right: 15%;
    animation-delay: 4s;
}

@keyframes floatAround {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(5deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(10px) rotate(-5deg); }
}

/* 常见问题解答 */
.faq-section {
    padding: 80px 0;
    background: white;
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.faq-header p {
    font-size: 1.2rem;
    color: #666;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-section .faq-item {
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.faq-section .faq-item.featured {
    background: linear-gradient(135deg, #fcf8f9 0%, #f8f0f4 100%);
    border: 2px solid var(--accent-color);
}

.faq-section .faq-item:hover {
    box-shadow: var(--card-shadow);
}

.faq-section .faq-question {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease;
}

.faq-section .question-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.faq-section .question-icon i {
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
}

.faq-section .faq-question h3 {
    flex: 1;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}

.faq-section .toggle-icon {
    width: 30px;
    height: 30px;
    background: rgba(250, 126, 161, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.faq-section .toggle-icon i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
}

.faq-section .faq-item.active .toggle-icon i {
    transform: rotate(45deg);
}

.faq-section .faq-answer {
    display: none;
    padding: 0 30px 30px;
}

.faq-section .faq-item.active .faq-answer {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.answer-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.answer-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.answer-list li {
    margin-bottom: 10px;
    color: #555;
}

.answer-steps {
    padding-left: 20px;
    margin: 15px 0;
}

.answer-steps li {
    margin-bottom: 8px;
    color: #555;
}

.answer-note {
    background: rgba(250, 126, 161, 0.1);
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.answer-note i {
    color: var(--primary-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 15px 0;
}

.feature-grid .feature-item {
    text-align: center;
    padding: 15px;
    background: rgba(250, 126, 161, 0.05);
    border-radius: 10px;
}

.feature-grid .feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
}

.feature-grid .feature-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text-color);
}

.tech-features {
    display: grid;
    gap: 12px;
    margin: 15px 0;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: rgba(250, 126, 161, 0.05);
    border-radius: 8px;
}

.tech-label {
    background: var(--gradient);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
}

.tech-desc {
    color: #555;
}

.update-schedule {
    display: grid;
    gap: 12px;
    margin: 15px 0;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: rgba(250, 126, 161, 0.05);
    border-radius: 8px;
}

.schedule-item .time {
    background: var(--gradient);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 60px;
    text-align: center;
}

.schedule-item .content {
    color: #555;
}

.compatibility-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 15px 0;
}

.platform {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(250, 126, 161, 0.05);
    border-radius: 10px;
}

.platform i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.platform strong {
    display: block;
    color: var(--text-color);
    margin-bottom: 3px;
}

.platform span {
    font-size: 0.9rem;
    color: #666;
}

.system-note {
    margin-top: 15px;
    padding: 12px 15px;
    background: rgba(250, 126, 161, 0.05);
    border-radius: 8px;
}

.system-note p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 现代化页脚 */
.modern-footer {
    background: linear-gradient(135deg, #fcf8f9 0%, #f8f0f4 50%, #f4e8ef 100%);
    color: var(--text-color);
    margin-top: 0;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    border-top: 3px solid var(--gradient);
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('announcement-bg.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.03;
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 42px; /* 减少30% */
    max-width: 1200px;
    margin: 0 auto;
    padding: 42px 14px 28px; /* 减少30% */
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--gap-large);
}

.brand-info {
    display: flex;
    gap: var(--gap-medium);
}

/* 内页页头品牌信息样式 */
.modern-header .brand-info .brand-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.modern-header .brand-info .brand-title .brand-accent {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.modern-header .brand-info .brand-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 2px 0 0 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    flex-shrink: 0;
}

.brand-description h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--gap-small);
}

.brand-description p {
    color: #666;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: var(--gap-small);
}

.social-link {
    width: 42px; /* 减少一点 */
    height: 42px;
    background: rgba(250, 126, 161, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(250, 126, 161, 0.2);
}

.social-link:hover {
    background: var(--gradient);
    transform: translateY(-2px);
    color: white;
    border-color: transparent;
    box-shadow: var(--card-shadow);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px; /* 减少30% */
}

.link-group h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--gap-medium);
    position: relative;
}

.link-group h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient);
    border-radius: 1px;
}

.link-group ul {
    list-style: none;
    padding: 0;
}

.link-group ul li {
    margin-bottom: 8px; /* 减少30% */
}

.link-group ul li a {
    color: #777;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.link-group ul li a:hover {
    color: var(--primary-color);
    padding-left: 3px; /* 减少30% */
    transform: translateX(2px);
}

.partner-links {
    display: flex;
    flex-direction: column;
    gap: 8px; /* 减少30% */
}

.partner-links a {
    color: #777;
    text-decoration: none;
    padding: 6px 10px; /* 减少30% */
    background: rgba(250, 126, 161, 0.08);
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9rem;
    border: 1px solid rgba(250, 126, 161, 0.15);
}

.partner-links a:hover {
    background: rgba(250, 126, 161, 0.15);
    color: var(--primary-color);
    transform: translateX(3px); /* 减少30% */
    border-color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(250, 126, 161, 0.2);
    padding: var(--gap-large) var(--gap-medium);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--gap-medium);
}

.copyright p {
    margin: 0;
    color: #888;
    font-size: 0.9rem;
}

.copyright .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-stats {
    display: flex;
    gap: var(--gap-large);
}

.footer-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 6px; /* 减少30% */
    color: #777;
    font-size: 0.85rem;
    background: rgba(250, 126, 161, 0.05);
    padding: 4px 8px;
    border-radius: 12px;
}

.footer-stats .stat-item i {
    color: var(--primary-color);
}

.footer-note {
    text-align: center;
    padding-top: var(--gap-medium);
    border-top: 1px solid rgba(250, 126, 161, 0.15);
}

.footer-note p {
    margin: 0;
    color: #999;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px; /* 减少30% */
    background: rgba(250, 126, 161, 0.03);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(250, 126, 161, 0.1);
}

.footer-note i {
    color: var(--primary-color);
}

/* 内页样式 - 兼容现有样式系统 */
/* 通用按钮样式 */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-primary, .btn.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--card-shadow);
}

.btn-primary:hover, .btn.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
    color: white;
}

.btn-outline, .btn.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover, .btn.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* 页面英雄区域 - 继承hero-section样式 */
.page-hero {
    background: linear-gradient(135deg, #fcf8f9 0%, #f8f0f4 50%, #f4e8ef 100%);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
    margin-bottom: var(--gap-large);
    border-radius: var(--border-radius);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(250, 126, 161, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.page-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 14px;
}

.page-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.page-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(250, 126, 161, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: var(--gap-medium);
}

.page-hero .hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero .hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-hero .hero-stats {
    display: flex;
    gap: var(--gap-large);
    margin-bottom: 28px;
}

.page-hero .hero-stats .stat-item {
    text-align: center;
}

.page-hero .hero-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.page-hero .hero-stats .stat-label {
    font-size: 0.9rem;
    color: #777;
}

.policy-meta {
    display: flex;
    gap: var(--gap-medium);
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    color: #666;
    box-shadow: 0 2px 8px rgba(250, 126, 161, 0.1);
}

.meta-item i {
    color: var(--primary-color);
}

/* 内页视觉元素 */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-bg {
    width: 300px;
    height: 300px;
    background: var(--gradient);
    border-radius: 50%;
    opacity: 0.1;
    position: absolute;
}

.floating-elements {
    position: relative;
    z-index: 1;
}

.floating-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--card-shadow);
    animation: float 3s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

.floating-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.floating-item:nth-child(1) { top: -50px; left: 50px; }
.floating-item:nth-child(2) { top: 50px; right: -20px; }
.floating-item:nth-child(3) { bottom: -30px; left: -30px; }
.floating-item:nth-child(4) { bottom: 20px; right: 60px; }

/* 品牌故事时间线 */
.brand-story {
    padding: var(--section-padding);
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: var(--gap-large);
}

.story-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 15px;
    top: 10px;
    width: 30px;
    height: 30px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.timeline-marker i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.timeline-content {
    background: #fafafa;
    padding: var(--gap-medium);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
}

.timeline-year {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--gap-small);
}

.timeline-content h3 {
    color: var(--text-color);
    margin-bottom: var(--gap-small);
    font-size: 1.2rem;
}

/* 404错误页面 - 优化设计 */
.error-page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--background-color);
}

.error-section {
    padding: var(--card-padding);
    text-align: center;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    margin: var(--gap-large);
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-visual {
    margin-bottom: var(--gap-large);
    position: relative;
}

.error-number {
    font-size: 6rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--gap-medium);
    position: relative;
    z-index: 2;
}

.error-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--gap-medium);
    background: rgba(250, 126, 161, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--gap-medium);
}

.error-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: var(--gap-medium);
}

.error-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: var(--gap-large);
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: var(--gap-medium);
    justify-content: center;
    flex-wrap: wrap;
}

/* 导航卡片 - 优化设计 */
.navigation-section {
    padding: var(--card-padding);
}

.nav-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--gap-medium);
    margin-top: var(--gap-large);
}

.nav-card {
    background: white;
    padding: var(--gap-medium);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(250, 126, 161, 0.1);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-card:hover {
    box-shadow: var(--card-shadow);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.nav-card:hover::before {
    transform: scaleX(1);
}

.nav-card .card-icon {
    width: 60px;
    height: 60px;
    background: rgba(250, 126, 161, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: var(--gap-medium);
}

.nav-card .card-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.nav-card h3 {
    color: var(--text-color);
    margin-bottom: var(--gap-small);
    font-size: 1.2rem;
    font-weight: 600;
}

.nav-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 隐私政策和用户协议页面样式 */
.policy-overview, .agreement-overview {
    padding: var(--card-padding);
    margin-bottom: var(--gap-large);
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--gap-large);
    align-items: start;
}

.overview-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: var(--gap-medium);
}

.overview-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: var(--gap-medium);
}

.protection-features, .agreement-principles {
    display: grid;
    gap: var(--gap-medium);
}

.feature-item, .principle-item {
    display: flex;
    gap: var(--gap-small);
    padding: var(--gap-medium);
    background: white;
    border-radius: var(--border-radius);
    border: 1px solid rgba(250, 126, 161, 0.1);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.feature-item:hover, .principle-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow);
    border-color: var(--primary-color);
}

.feature-icon, .principle-icon {
    width: 40px;
    height: 40px;
    background: rgba(250, 126, 161, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.feature-icon i, .principle-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
    color: var(--primary-color);
    font-size: 1rem;
}

.feature-item h4, .principle-item h4 {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-item p, .principle-item p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* 政策章节样式 */
.policy-section, .service-section, .rights-obligations-section, 
.behavior-section, .ip-section, .disclaimer-section {
    padding: var(--card-padding);
    margin-bottom: var(--gap-large);
}

.policy-section .section-header {
    text-align: center;
    margin-bottom: var(--gap-large);
    border-bottom: none;
    padding-bottom: 0;
}

.policy-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(250, 126, 161, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--gap-medium);
}

.policy-section .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: var(--gap-medium);
}

.policy-section .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* 信息分类卡片 */
.info-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--gap-large);
    margin-top: var(--gap-large);
}

.category-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.category-header {
    background: linear-gradient(135deg, #fcf8f9 0%, #f8f0f4 100%);
    padding: var(--gap-medium);
    border-bottom: 2px solid rgba(250, 126, 161, 0.1);
}

.category-icon {
    width: 50px;
    height: 50px;
    background: rgba(250, 126, 161, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: var(--gap-small);
}

.category-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.category-header h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.category-header p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.category-content {
    padding: var(--gap-medium);
}

.info-list {
    display: grid;
    gap: var(--gap-medium);
}

.info-item {
    display: flex;
    gap: var(--gap-small);
    align-items: flex-start;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-item strong {
    color: var(--text-color);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.info-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* 用户权利网格 */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--gap-medium);
    margin-top: var(--gap-large);
}

.right-card {
    background: white;
    padding: var(--gap-medium);
    border-radius: var(--border-radius);
    border: 1px solid rgba(250, 126, 161, 0.1);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.right-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow);
    border-color: var(--primary-color);
}

.right-icon {
    width: 60px;
    height: 60px;
    background: rgba(250, 126, 161, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin: 0 auto var(--gap-medium);
}

.right-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.right-card h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--gap-small);
}

.right-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: var(--gap-medium);
}

.right-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.right-action:hover {
    color: var(--secondary-color);
    transform: translateX(3px);
}

/* 联系信息样式 */
.contact-section {
    padding: var(--card-padding);
    margin-bottom: var(--gap-large);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-large);
    align-items: center;
}

.contact-info h2 {
    color: var(--text-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--gap-medium);
}

.contact-info p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: var(--gap-large);
}

.contact-methods {
    display: grid;
    gap: var(--gap-medium);
}

.contact-method {
    display: flex;
    gap: var(--gap-medium);
    padding: var(--gap-medium);
    background: white;
    border-radius: var(--border-radius);
    border: 1px solid rgba(250, 126, 161, 0.1);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow);
    border-color: var(--primary-color);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: rgba(250, 126, 161, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.method-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.method-info h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.method-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.response-time {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 500;
}

.contact-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-illustration {
    width: 150px;
    height: 150px;
    background: rgba(250, 126, 161, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.support-illustration i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
    color: var(--primary-color);
    font-size: 4rem;
}

/* 用户协议特殊样式 */
.usage-section {
    padding: var(--card-padding);
    margin-bottom: var(--gap-large);
}

/* 服务内容网格 */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--gap-medium);
    margin-top: var(--gap-large);
}

.service-card {
    background: white;
    padding: var(--gap-medium);
    border-radius: var(--border-radius);
    border: 1px solid rgba(250, 126, 161, 0.1);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow);
    border-color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(250, 126, 161, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin: 0 auto var(--gap-medium);
}

.service-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.service-card h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--gap-small);
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: var(--gap-medium);
}

.service-features {
    display: flex;
    gap: var(--gap-small);
    justify-content: center;
    flex-wrap: wrap;
}

.service-features .feature {
    padding: 4px 12px;
    background: rgba(250, 126, 161, 0.1);
    color: var(--primary-color);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* 服务注意事项 */
.service-notice {
    margin-top: var(--gap-large);
    padding: var(--gap-medium);
    background: linear-gradient(135deg, #fcf8f9 0%, #f8f0f4 100%);
    border-radius: var(--border-radius);
    border: 1px solid rgba(250, 126, 161, 0.1);
    display: flex;
    gap: var(--gap-medium);
    align-items: flex-start;
}

.notice-icon {
    width: 40px;
    height: 40px;
    background: rgba(250, 126, 161, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.notice-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
    color: var(--primary-color);
    font-size: 1rem;
}

.notice-content h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.notice-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--gap-medium);
    margin-top: var(--gap-large);
}

.usage-card {
    background: white;
    padding: var(--gap-medium);
    border-radius: var(--border-radius);
    border: 1px solid rgba(250, 126, 161, 0.1);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.usage-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow);
    border-color: var(--primary-color);
}

.usage-icon {
    width: 60px;
    height: 60px;
    background: rgba(250, 126, 161, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin: 0 auto var(--gap-medium);
}

.usage-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.usage-card h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--gap-small);
}

.usage-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 知识产权保护样式 */
.ip-content {
    margin-top: var(--gap-large);
}

.ip-protection {
    display: grid;
    gap: var(--gap-large);
}

.protection-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--gap-large);
    align-items: start;
    padding: var(--gap-medium);
    background: white;
    border-radius: var(--border-radius);
    border: 1px solid rgba(250, 126, 161, 0.1);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.protection-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow);
    border-color: var(--primary-color);
}

.protection-icon {
    width: 70px;
    height: 70px;
    background: rgba(250, 126, 161, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.protection-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.protection-item h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: var(--gap-small);
}

.protection-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--gap-medium);
}

.protection-details {
    display: flex;
    gap: var(--gap-small);
    flex-wrap: wrap;
}

.detail-tag {
    padding: 4px 12px;
    background: rgba(250, 126, 161, 0.1);
    color: var(--primary-color);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* 免责声明样式 */
.disclaimer-content {
    margin-top: var(--gap-large);
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--gap-medium);
}

.disclaimer-item {
    background: white;
    padding: var(--gap-medium);
    border-radius: var(--border-radius);
    border: 1px solid rgba(250, 126, 161, 0.1);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.disclaimer-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow);
    border-color: var(--primary-color);
}

.disclaimer-icon {
    width: 60px;
    height: 60px;
    background: rgba(250, 126, 161, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin: 0 auto var(--gap-medium);
}

.disclaimer-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.disclaimer-item h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--gap-small);
}

.disclaimer-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 权利义务样式 */
.rights-obligations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-large);
    margin-top: var(--gap-large);
}

.rights-section h3, .obligations-section h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--gap-medium);
    display: flex;
    align-items: center;
    gap: var(--gap-small);
}

.rights-list, .obligations-list {
    display: grid;
    gap: var(--gap-medium);
}

.right-item, .obligation-item {
    display: flex;
    gap: var(--gap-medium);
    padding: var(--gap-medium);
    background: white;
    border-radius: var(--border-radius);
    border: 1px solid rgba(250, 126, 161, 0.1);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.right-item:hover, .obligation-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow);
    border-color: var(--primary-color);
}

.right-icon, .obligation-icon {
    width: 45px;
    height: 45px;
    background: rgba(250, 126, 161, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.right-icon i, .obligation-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
    color: var(--primary-color);
    font-size: 1rem;
}

.right-content h4, .obligation-content h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.right-content p, .obligation-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* 行为规范样式 */
.behavior-content {
    margin-top: var(--gap-large);
}

.allowed-section, .prohibited-section {
    margin-bottom: var(--gap-large);
}

.allowed-section h3, .prohibited-section h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--gap-medium);
    display: flex;
    align-items: center;
    gap: var(--gap-small);
}

.text-success {
    color: #28a745;
}

.text-danger {
    color: #dc3545;
}

.behavior-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--gap-small);
    margin-bottom: var(--gap-large);
}

.behavior-item {
    display: flex;
    align-items: center;
    gap: var(--gap-small);
    padding: var(--gap-small);
    background: rgba(40, 167, 69, 0.1);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    color: #28a745;
}

.behavior-item.allowed i {
    color: #28a745;
}

.prohibited-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--gap-medium);
}

.prohibited-category {
    background: white;
    padding: var(--gap-medium);
    border-radius: var(--border-radius);
    border: 1px solid rgba(220, 53, 69, 0.2);
    box-shadow: var(--box-shadow);
}

.prohibited-category h4 {
    color: #dc3545;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--gap-small);
    display: flex;
    align-items: center;
    gap: var(--gap-small);
}

.prohibited-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.prohibited-category li {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 6px;
    padding-left: 16px;
    position: relative;
}

.prohibited-category li::before {
    content: '•';
    color: #dc3545;
    position: absolute;
    left: 0;
    top: 0;
}

/* 违规处理样式 */
.violation-consequences {
    margin-top: var(--gap-large);
    padding: var(--gap-medium);
    background: linear-gradient(135deg, #fcf8f9 0%, #f8f0f4 100%);
    border-radius: var(--border-radius);
    border: 1px solid rgba(250, 126, 161, 0.1);
}

.consequences-header {
    display: flex;
    align-items: center;
    gap: var(--gap-small);
    margin-bottom: var(--gap-medium);
}

.consequences-header h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.consequences-list {
    display: grid;
    gap: var(--gap-small);
}

.consequence-item {
    display: flex;
    align-items: center;
    gap: var(--gap-medium);
    padding: var(--gap-small);
    background: white;
    border-radius: var(--border-radius);
    border: 1px solid rgba(250, 126, 161, 0.1);
}

.severity-level {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
    min-width: 80px;
    text-align: center;
}

.level-1 {
    background: #ffc107;
}

.level-2 {
    background: #fd7e14;
}

.level-3 {
    background: #dc3545;
}

.consequence-action {
    color: #666;
    font-size: 0.9rem;
}

/* 内页响应式设计 */
@media (max-width: 992px) {
    .page-hero .hero-content,
    .mission-content,
    .team-content,
    .overview-content,
    .contact-content,
    .rights-obligations-content {
        grid-template-columns: 1fr;
        gap: var(--gap-medium);
        text-align: center;
    }
    
    .page-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .info-categories {
        grid-template-columns: 1fr;
    }
    
    .usage-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .rights-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .prohibited-list {
        grid-template-columns: 1fr;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .disclaimer-grid {
        grid-template-columns: 1fr;
    }
    
    .protection-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--gap-medium);
    }
    
    .protection-icon {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-hero .hero-title {
        font-size: 2rem;
    }
    
    .main-content .section-title {
        font-size: 2rem;
    }
    
    .error-number {
        font-size: 4rem;
    }
    
    .error-title {
        font-size: 1.5rem;
    }
    
    .btn, .btn-large {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .nav-cards {
        grid-template-columns: 1fr;
    }
}

/* 隐私政策特殊样式 */
.protection-section {
    padding: var(--card-padding);
    margin-bottom: var(--gap-large);
}

.protection-measures {
    display: grid;
    gap: var(--gap-large);
    margin-top: var(--gap-large);
}

.measure-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--gap-large);
    align-items: start;
    padding: var(--gap-medium);
    background: white;
    border-radius: var(--border-radius);
    border: 1px solid rgba(250, 126, 161, 0.1);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.measure-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow);
    border-color: var(--primary-color);
}

.measure-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-icon {
    width: 80px;
    height: 80px;
    background: rgba(250, 126, 161, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.visual-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
    color: var(--primary-color);
    font-size: 2rem;
}

.measure-content h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: var(--gap-small);
}

.measure-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--gap-medium);
}

.measure-features {
    display: flex;
    gap: var(--gap-small);
    flex-wrap: wrap;
}

.feature-tag {
    padding: 4px 12px;
    background: rgba(250, 126, 161, 0.1);
    color: var(--primary-color);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* 隐私政策的rights-section样式 */
.rights-section {
    padding: var(--card-padding);
    margin-bottom: var(--gap-large);
}

/* 针对隐私政策页面的特殊视觉元素 */
.security-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.security-shield {
    width: 100px;
    height: 100px;
    background: rgba(250, 126, 161, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.security-shield i {
    color: var(--primary-color);
    font-size: 2.5rem;
}

.security-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 2px solid rgba(250, 126, 161, 0.3);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.ring-1 {
    width: 140px;
    height: 140px;
    top: -70px;
    left: -70px;
    animation-delay: 0s;
}

.ring-2 {
    width: 180px;
    height: 180px;
    top: -90px;
    left: -90px;
    animation-delay: 0.7s;
}

.ring-3 {
    width: 220px;
    height: 220px;
    top: -110px;
    left: -110px;
    animation-delay: 1.4s;
}

/* 用户协议页面特殊视觉元素 */
.contract-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.contract-document {
    width: 100px;
    height: 100px;
    background: rgba(250, 126, 161, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.contract-document i {
    color: var(--primary-color);
    font-size: 2.5rem;
}

.legal-symbols {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.symbol {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow);
    animation: float 3s ease-in-out infinite;
}

.symbol i {
    color: var(--primary-color);
    font-size: 1rem;
}

.symbol-1 {
    top: -80px;
    left: 40px;
    animation-delay: 0s;
}

.symbol-2 {
    top: 40px;
    right: -80px;
    animation-delay: 1s;
}

.symbol-3 {
    bottom: -40px;
    left: -60px;
    animation-delay: 2s;
}

/* 更新响应式设计 */
@media (max-width: 992px) {
    .measure-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--gap-medium);
    }
    
    .visual-icon {
        margin: 0 auto;
    }
    
    .security-visual,
    .contract-visual {
        width: 150px;
        height: 150px;
    }
}

/* 浮动动画 */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* 内页特定样式 - 与现有样式系统兼容 */
.main-content {
    background: var(--background-color);
    min-height: calc(100vh - 200px);
    padding: 0;
}

/* 重写section-header以适配内页 */
.main-content .section-header {
    text-align: center;
    margin-bottom: var(--gap-large);
    border-bottom: none;
    padding-bottom: 0;
    display: block;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(250, 126, 161, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--gap-medium);
}

.main-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: var(--gap-medium);
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* 通用内页section样式 */
.main-content section {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: var(--card-padding);
    margin-bottom: var(--gap-large);
}

/* 特色展示网格 - 使用现有样式系统 */
.features-showcase {
    padding: var(--card-padding);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--gap-large);
    margin-top: var(--gap-large);
}

/* 继承并扩展现有的feature-card样式 */
.features-grid .feature-card {
    background: white;
    border-radius: var(--border-radius);
    padding: var(--card-padding);
    border: 1px solid rgba(250, 126, 161, 0.1);
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
}

.features-grid .feature-card:hover {
    box-shadow: var(--card-shadow);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-visual {
    display: flex;
    align-items: center;
    gap: var(--gap-medium);
    margin-bottom: var(--gap-medium);
}

.feature-visual .icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(250, 126, 161, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.feature-visual .icon-circle i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-badge {
    background: var(--gradient);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.feature-stats {
    display: flex;
    gap: var(--gap-small);
    margin-top: var(--gap-medium);
    flex-wrap: wrap;
}

.feature-stats .stat {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: #666;
    background: rgba(250, 126, 161, 0.1);
    padding: 4px 8px;
    border-radius: 10px;
}

.feature-stats .stat i {
    color: var(--primary-color);
}

/* 使命价值观 - 优化样式 */
.mission-section {
    padding: var(--card-padding);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-large);
    align-items: center;
}

.mission-text {
    position: relative;
}

.mission-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: var(--gap-large);
}

.mission-values {
    display: grid;
    gap: var(--gap-medium);
    margin-top: var(--gap-large);
}

.value-item {
    display: flex;
    gap: var(--gap-medium);
    padding: var(--gap-medium);
    background: white;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: rgba(250, 126, 161, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.value-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.value-content h4 {
    color: var(--text-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.value-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 使命视觉区域 */
.mission-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: 5px solid white;
    box-shadow: var(--card-shadow);
}

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

.visual-effects {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.effect-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(250, 126, 161, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.circle-2 {
    width: 240px;
    height: 240px;
    top: -120px;
    left: -120px;
    animation-delay: 1s;
}

.circle-3 {
    width: 180px;
    height: 180px;
    top: -90px;
    left: -90px;
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

/* 团队展示 - 优化样式 */
.team-section {
    padding: var(--card-padding);
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--gap-large);
    margin-top: var(--gap-large);
}

.team-stats {
    display: grid;
    gap: var(--gap-medium);
}

.team-stat {
    text-align: center;
    background: white;
    padding: var(--gap-medium);
    border-radius: var(--border-radius);
    border: 1px solid rgba(250, 126, 161, 0.1);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.team-stat:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow);
    border-color: var(--primary-color);
}

.team-stat .stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(250, 126, 161, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin: 0 auto var(--gap-small);
}

.team-stat .stat-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.team-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 4px;
}

.team-stat .stat-label {
    color: #666;
    font-size: 0.9rem;
}

.team-description {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--gap-medium);
}

.description-card {
    background: #fafafa;
    padding: var(--gap-medium);
    border-radius: var(--border-radius);
    border: 1px solid rgba(250, 126, 161, 0.1);
}

.description-card .card-icon {
    width: 50px;
    height: 50px;
    background: rgba(250, 126, 161, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--gap-medium);
}

.description-card .card-icon i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.description-card h3 {
    color: var(--text-color);
    margin-bottom: var(--gap-small);
    font-size: 1.1rem;
}

.description-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CTA区域 */
.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #fcf8f9 0%, #f8f0f4 50%, #f4e8ef 100%);
    border-radius: var(--border-radius);
    margin-bottom: var(--gap-large);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: var(--gap-medium);
}

.cta-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: var(--gap-large);
}

.cta-actions {
    display: flex;
    gap: var(--gap-medium);
    justify-content: center;
    flex-wrap: wrap;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .hero-content,
    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .feature-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .testimonials-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .download-actions {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-stats {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .brand-logo {
        width: 50px;
        height: 50px;
    }
    
    .brand-text h1,
    .brand-info .brand-title {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .showcase-header h2,
    .features-header h2,
    .testimonials-header h2,
    .stats-header h2,
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .compatibility-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

