/* Temp15 模板 - 侧边栏布局 + 紫橙配色 */
/* 类名前缀: 随机后缀 */

/* CSS变量 */
:root {
    --primary-color: #8b5cf6;
    --secondary-color: #7c3aed;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --text-white: #ffffff;
    
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-dark: #111827;
    --bg-gradient: linear-gradient(135deg, #8b5cf6 0%, #f59e0b 100%);
    --bg-hero: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #7c2d12 100%);
    
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    --sidebar-width: 280px;
    --mobile-header-height: 64px;
}

/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

/* 容器 */
.container-p2w9 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 侧边导航栏 */
.sidebar-nav-p2w9 {
    position: fixed;
    left: 0;
    top: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--bg-hero);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.sidebar-nav-p2w9.active {
    transform: translateX(0);
}

.sidebar-header-p2w9 {
    padding: 2rem 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-logo-p2w9 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-logo-img-p2w9 {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    object-fit: cover;
}

.sidebar-logo-text-p2w9 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
}

.sidebar-toggle-p2w9 {
    width: 2rem;
    height: 2rem;
    border: none;
    background: none;
    color: var(--text-white);
    cursor: pointer;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.sidebar-toggle-p2w9:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sidebar-menu-p2w9 {
    padding: 1rem 0;
}

.sidebar-link-p2w9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-link-p2w9:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border-left-color: var(--accent-color);
}

.sidebar-link-p2w9 i {
    width: 1.25rem;
    font-size: 1.125rem;
}

/* 主要内容包装器 */
.main-wrapper-p2w9 {
    min-height: 100vh;
    transition: margin-left 0.3s ease;
}

/* 移动端顶部导航 */
.mobile-header-p2w9 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--mobile-header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
    display: none;
}

.mobile-header-content-p2w9 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 1rem;
}

.mobile-nav-btn-p2w9 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-line-p2w9 {
    width: 1.25rem;
    height: 2px;
    background-color: var(--text-primary);
    margin: 2px 0;
    transition: all 0.3s ease;
}

.mobile-nav-btn-p2w9.active .nav-line-p2w9:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-nav-btn-p2w9.active .nav-line-p2w9:nth-child(2) {
    opacity: 0;
}

.mobile-nav-btn-p2w9.active .nav-line-p2w9:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-logo-p2w9 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-logo-img-p2w9 {
    width: 2rem;
    height: 2rem;
    border-radius: 0.25rem;
    object-fit: cover;
}

.mobile-logo-text-p2w9 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* 侧边栏遮罩 */
.sidebar-overlay-p2w9 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay-p2w9.active {
    opacity: 1;
    visibility: visible;
}

/* 英雄区域 */
.hero-section-p2w9 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background-p2w9 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img-p2w9 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px) brightness(0.4);
}

.hero-overlay-p2w9 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-hero);
    opacity: 0.9;
}

.hero-container-p2w9 {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
}

.hero-content-p2w9 {
    color: var(--text-white);
}

.hero-badge-p2w9 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.hero-title-p2w9 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-p2w9 {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-tags-p2w9 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.hero-tag-p2w9 {
    background: rgba(139, 92, 246, 0.2);
    color: #c4b5fd;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.hero-actions-p2w9 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary-p2w9 {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-gradient);
    color: var(--text-white);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
}

.btn-hero-primary-p2w9:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

.btn-hero-secondary-p2w9 {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-hero-secondary-p2w9:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-image-p2w9 {
    position: relative;
}

.hero-card-p2w9 {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.hero-card-p2w9:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-cover-img-p2w9 {
    width: 100%;
    height: auto;
    display: block;
}

.hero-card-glow-p2w9 {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--accent-color), transparent);
    opacity: 0;
    animation: glow-rotation 3s linear infinite;
    z-index: -1;
}

.hero-card-p2w9:hover .hero-card-glow-p2w9 {
    opacity: 0.3;
}

@keyframes glow-rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 主要内容 */
.content-main-p2w9 {
    background: var(--bg-primary);
}

/* 通用区域样式 */
.section-intro-p2w9,
.section-guide-p2w9,
.section-download-p2w9 {
    padding: 6rem 0;
}

.section-guide-p2w9 {
    background: var(--bg-secondary);
}

.section-header-p2w9 {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge-p2w9 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-gradient);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title-p2w9 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-line-p2w9 {
    width: 4rem;
    height: 4px;
    background: var(--bg-gradient);
    margin: 0 auto;
    border-radius: 2px;
}

/* 介绍内容 */
.intro-content-p2w9 {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text-p2w9 {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: justify;
}

/* 攻略内容 */
.guide-content-p2w9 {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.guide-content-p2w9 h1,
.guide-content-p2w9 h2,
.guide-content-p2w9 h3,
.guide-content-p2w9 h4,
.guide-content-p2w9 h5,
.guide-content-p2w9 h6 {
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.guide-content-p2w9 h1 {
    font-size: 2rem;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.guide-content-p2w9 h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.guide-content-p2w9 h3 {
    font-size: 1.25rem;
    color: var(--accent-color);
}

.guide-content-p2w9 p {
    margin-bottom: 1rem;
}

.guide-content-p2w9 ul,
.guide-content-p2w9 ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.guide-content-p2w9 li {
    margin-bottom: 0.5rem;
}

.guide-content-p2w9 blockquote {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(245, 158, 11, 0.1));
    border-left: 4px solid var(--primary-color);
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
}

.guide-content-p2w9 code {
    background: var(--bg-tertiary);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.875rem;
    color: var(--primary-color);
}

.guide-content-p2w9 pre {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.guide-content-p2w9 pre code {
    background: none;
    color: inherit;
    padding: 0;
}

.guide-content-p2w9 img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1rem 0;
    box-shadow: var(--shadow-lg);
}

/* 下载区域 */
.section-download-p2w9 {
    position: relative;
    background: var(--bg-hero);
    color: var(--text-white);
    overflow: hidden;
}

.download-bg-p2w9 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.download-pattern-p2w9 {
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    background-size: 200px 200px;
    animation: pattern-drift 20s linear infinite;
}

@keyframes pattern-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.download-content-p2w9 {
    position: relative;
    z-index: 2;
    text-align: center;
}

.download-header-p2w9 {
    margin-bottom: 3rem;
}

.download-icon-p2w9 {
    width: 4rem;
    height: 4rem;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    box-shadow: var(--shadow-xl);
}

.download-title-p2w9 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-subtitle-p2w9 {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
}

.download-actions-p2w9 {
    margin-bottom: 3rem;
}

.btn-download-main-p2w9 {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--text-white);
    color: var(--primary-color);
    text-decoration: none;
    padding: 1.25rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    box-shadow: var(--shadow-2xl);
    transition: all 0.3s ease;
}

.btn-download-main-p2w9:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.4);
}

.btn-content-p2w9 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-content-p2w9 strong {
    font-size: 1.125rem;
}

.btn-content-p2w9 small {
    font-size: 0.875rem;
    opacity: 0.8;
}

.download-features-p2w9 {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item-p2w9 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.feature-item-p2w9 i {
    color: var(--accent-color);
}

/* 页脚 */
.footer-section-p2w9 {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 3rem 0 1.5rem;
}

.footer-content-p2w9 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info-p2w9 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo-p2w9 {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-img-p2w9 {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    object-fit: cover;
}

.footer-logo-text-p2w9 {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc-p2w9 {
    color: var(--text-light);
    line-height: 1.6;
}

.footer-title-p2w9 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-links-p2w9 {
    list-style: none;
}

.footer-links-p2w9 li {
    margin-bottom: 0.5rem;
}

.footer-link-p2w9 {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link-p2w9:hover {
    color: var(--accent-color);
}

.friend-link-p2w9::before {
    content: "🔗";
    margin-right: 0.5rem;
}

.footer-bottom-p2w9 {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text-p2w9 {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .hero-container-p2w9 {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-image-p2w9 {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .sidebar-nav-p2w9 {
        width: 100%;
        max-width: 320px;
    }
    
    .mobile-header-p2w9 {
        display: block;
    }
    
    .main-wrapper-p2w9 {
        padding-top: var(--mobile-header-height);
    }
    
    .hero-section-p2w9 {
        min-height: calc(100vh - var(--mobile-header-height));
        padding: 2rem 0;
    }
    
    .hero-container-p2w9 {
        padding: 0 1rem;
    }
    
    .hero-title-p2w9 {
        font-size: 2.5rem;
    }
    
    .section-intro-p2w9,
    .section-guide-p2w9,
    .section-download-p2w9 {
        padding: 4rem 0;
    }
    
    .section-title-p2w9 {
        font-size: 2rem;
    }
    
    .guide-content-p2w9 {
        padding: 2rem;
    }
    
    .download-features-p2w9 {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content-p2w9 {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container-p2w9 {
        padding: 0 1rem;
    }
    
    .hero-title-p2w9 {
        font-size: 2rem;
    }
    
    .hero-subtitle-p2w9 {
        font-size: 1.125rem;
    }
    
    .hero-actions-p2w9 {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary-p2w9,
    .btn-hero-secondary-p2w9 {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .section-intro-p2w9,
    .section-guide-p2w9,
    .section-download-p2w9 {
        padding: 3rem 0;
    }
    
    .section-title-p2w9 {
        font-size: 1.75rem;
    }
    
    .download-title-p2w9 {
        font-size: 2rem;
    }
    
    .btn-download-main-p2w9 {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .guide-content-p2w9 {
        padding: 1.5rem;
        font-size: 1rem;
    }
}




