@charset "utf-8";
/*
    Theme Name: 水仙直播
    Theme URI: 
    Author: 阿叶
    Author URI: 
    Description:
    Version: 0.0.1
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Noto Sans SC', sans-serif;
    background-color: #0D0B10;
    color: #F5F0F2;
    line-height: 1.6;
    overflow-x: hidden;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0D0B10;
}
::-webkit-scrollbar-thumb {
    background: #9A2F48;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #C53C5A;
}
.sxzb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== 导航栏 ========== */
.sxzb-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: rgba(13, 11, 16, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(197, 60, 90, 0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
}
.sxzb-navbar .sxzb-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}
.sxzb-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}
.sxzb-logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.sxzb-logo-icon img {
    width: 100%;
    height: 100%;
}
.sxzb-logo-text {
    font-family: 'Noto Serif SC', serif;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #E8D0D6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sxzb-nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}
.sxzb-nav-links a {
    color: #A8A0A6;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}
.sxzb-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #C53C5A;
    transition: width 0.3s ease;
}
.sxzb-nav-links a:hover {
    color: #F5F0F2;
}
.sxzb-nav-links a:hover::after {
    width: 100%;
}
.sxzb-nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* ========== 按钮 ========== */
.sxzb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}
.sxzb-btn-primary {
    background: linear-gradient(135deg, #C53C5A 0%, #9A2F48 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(197, 60, 90, 0.4);
}
.sxzb-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(197, 60, 90, 0.5);
}
.sxzb-btn-outline {
    background: transparent;
    border: 1px solid #C53C5A;
    color: #E05A78;
}
.sxzb-btn-outline:hover {
    background: #C53C5A;
    color: white;
}
.sxzb-btn-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #F5F0F2;
}
.sxzb-btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
}
.sxzb-btn-white {
    background: white;
    color: #C53C5A;
}
.sxzb-btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}
.sxzb-btn-white-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}
.sxzb-btn-white-outline:hover {
    background: white;
    color: #C53C5A;
}

/* ========== 通用 Section ========== */
main {
    padding-top: 72px;
}
.sxzb-section-header {
    text-align: center;
    margin-bottom: 48px;
}
.sxzb-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(197, 60, 90, 0.12);
    border: 1px solid rgba(197, 60, 90, 0.25);
    border-radius: 20px;
    font-size: 13px;
    color: #E05A78;
    margin-bottom: 16px;
}
.sxzb-section-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}
.sxzb-section-subtitle {
    font-size: 16px;
    color: #A8A0A6;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== Hero 区域 - 全屏居中 ========== */
.sxzb-hero {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}
.sxzb-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(197, 60, 90, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(154, 47, 72, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(197, 60, 90, 0.15) 0%, transparent 50%),
        #0D0B10;
}
.sxzb-hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.sxzb-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #C53C5A;
    border-radius: 50%;
    opacity: 0.4;
}
.sxzb-hero-content {
    position: relative;
    text-align: center;
}
.sxzb-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(197, 60, 90, 0.15);
    border: 1px solid rgba(197, 60, 90, 0.3);
    border-radius: 20px;
    font-size: 13px;
    color: #E05A78;
    margin-bottom: 24px;
}
.sxzb-live-dot {
    width: 8px;
    height: 8px;
    background: #C53C5A;
    border-radius: 50%;
}
.sxzb-hero-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #E8D0D6 50%, #E05A78 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sxzb-hero-description {
    font-size: 18px;
    color: #A8A0A6;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.sxzb-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}
.sxzb-hero-buttons .sxzb-btn {
    padding: 14px 32px;
    font-size: 16px;
}
.sxzb-hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 600px;
    margin: 0 auto;
}
.sxzb-stat-item {
    text-align: center;
}
.sxzb-stat-value {
    font-family: 'Noto Serif SC', serif;
    font-size: 32px;
    font-weight: 700;
    color: #E05A78;
}
.sxzb-stat-label {
    font-size: 13px;
    color: #6B6369;
    margin-top: 4px;
}

/* ========== Hero 下方 - 热门直播预览条 ========== */
.sxzb-hero-preview {
    position: relative;
    padding: 0 0 80px 0;
}
.sxzb-hero-preview-title {
    text-align: center;
    font-family: 'Noto Serif SC', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #A8A0A6;
}
.sxzb-hero-preview-title i {
    color: #E05A78;
    margin-right: 8px;
}
.sxzb-preview-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    perspective: 1000px;
}
.sxzb-preview-card {
    width: 280px;
    height: 160px;
    background: linear-gradient(135deg, #1a1520 0%, #251a28 100%);
    border-radius: 16px;
    border: 1px solid rgba(197, 60, 90, 0.3);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    flex-shrink: 0;
}
.sxzb-preview-card:nth-child(1) {
    transform: rotateY(-3deg) rotateX(2deg);
}
.sxzb-preview-card:nth-child(2) {
    transform: rotateY(0deg) translateY(-8px);
    z-index: 2;
}
.sxzb-preview-card:nth-child(3) {
    transform: rotateY(3deg) rotateX(2deg);
}
.sxzb-preview-card:hover {
    transform: translateY(-8px) rotateY(0deg) rotateX(0deg);
    border-color: rgba(197, 60, 90, 0.6);
    box-shadow: 0 24px 70px rgba(197, 60, 90, 0.25);
}
.sxzb-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C53C5A, #E05A78, #C53C5A);
}
.sxzb-preview-card {
    position: relative;
}
.sxzb-preview-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.sxzb-preview-card-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C53C5A 0%, #9A2F48 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.sxzb-preview-card-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}
.sxzb-preview-card-info span {
    font-size: 11px;
    color: #6B6369;
}
.sxzb-preview-card-live {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #C53C5A;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    flex-shrink: 0;
}
.sxzb-preview-card-live::before {
    content: '';
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}
.sxzb-preview-card-content {
    padding: 12px 16px;
}
.sxzb-preview-card-title {
    font-size: 13px;
    color: #A8A0A6;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sxzb-preview-card-stats {
    display: flex;
    gap: 16px;
}
.sxzb-preview-card-stat {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #E05A78;
}

/* ========== 优势亮点 - 左右交替布局 ========== */
.sxzb-features {
    padding: 80px 0;
    background: linear-gradient(180deg, #0D0B10 0%, #0F0D12 100%);
}
.sxzb-features-list {
    max-width: 800px;
    margin: 0 auto;
}
.sxzb-feature-row {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.sxzb-feature-row:last-child {
    border-bottom: none;
}
.sxzb-feature-row:nth-child(odd) {
    flex-direction: row;
}
.sxzb-feature-row:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}
.sxzb-feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(197, 60, 90, 0.2) 0%, rgba(154, 47, 72, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #E05A78;
    flex-shrink: 0;
}
.sxzb-feature-text {
    flex: 1;
}
.sxzb-feature-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}
.sxzb-feature-desc {
    font-size: 14px;
    color: #A8A0A6;
    line-height: 1.7;
}

/* ========== 产品展示 - 上下结构卡片 ========== */
.sxzb-products {
    padding: 80px 0;
    background: #0F0D12;
}
.sxzb-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.sxzb-product-card {
    position: relative;
    background: #161420;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    cursor: pointer;
}
.sxzb-product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 60, 90, 0.4);
    box-shadow: 0 20px 50px rgba(197, 60, 90, 0.2);
}
.sxzb-product-visual {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.sxzb-product-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2) 0%, transparent 50%);
}
.sxzb-product-icon-large {
    font-size: 64px;
    color: white;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}
.sxzb-product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}
.sxzb-product-content {
    padding: 24px;
}
.sxzb-product-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.sxzb-product-desc {
    font-size: 14px;
    color: #A8A0A6;
    line-height: 1.6;
}

/* ========== 使用方法 - 横向时间线 ========== */
.sxzb-how-to-use {
    padding: 80px 0;
    background: linear-gradient(180deg, #0F0D12 0%, #0D0B10 100%);
}
.sxzb-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}
.sxzb-timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 200px;
    position: relative;
}
.sxzb-timeline-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #C53C5A 0%, #9A2F48 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 16px;
    box-shadow: 0 8px 30px rgba(197, 60, 90, 0.4);
    position: relative;
    z-index: 2;
}
.sxzb-timeline-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 18px;
    color: #C53C5A;
    font-size: 24px;
    flex-shrink: 0;
    opacity: 0.5;
}
.sxzb-timeline-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.sxzb-timeline-desc {
    font-size: 13px;
    color: #A8A0A6;
    line-height: 1.7;
}

/* ========== 主播招募 ========== */
.sxzb-recruit {
    padding: 80px 0;
    background: #0D0B10;
}

/* ========== 招募表单 ========== */
.sxzb-recruit-form {
    background: #161420;
    border-radius: 24px;
    padding: 48px;
    border: 1px solid rgba(197, 60, 90, 0.2);
    max-width: 600px;
    margin: 0 auto;
}
.sxzb-form-group {
    margin-bottom: 16px;
}
.sxzb-form-group label {
    display: block;
    font-size: 14px;
    color: #A8A0A6;
    margin-bottom: 8px;
}
.sxzb-form-group input,
.sxzb-form-group select,
.sxzb-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: #0D0B10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #F5F0F2;
    font-size: 14px;
    font-family: 'Noto Sans SC', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}
.sxzb-form-group input:focus,
.sxzb-form-group select:focus,
.sxzb-form-group textarea:focus {
    border-color: #C53C5A;
    box-shadow: 0 0 20px rgba(197, 60, 90, 0.2);
}
.sxzb-form-group textarea {
    resize: vertical;
    min-height: 80px;
}
.sxzb-form-group select {
    cursor: pointer;
}
.sxzb-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.sxzb-form-submit {
    width: 100%;
    margin-top: 24px;
}
.sxzb-form-submit .sxzb-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
}

/* ========== CTA 区域 - 带装饰线条 ========== */
.sxzb-cta-section {
    padding: 80px 0;
    background: #0D0B10;
    text-align: center;
}
.sxzb-cta-content {
    max-width: 700px;
    margin: 0 auto;
}
.sxzb-cta-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}
.sxzb-cta-description {
    font-size: 16px;
    color: #A8A0A6;
    line-height: 1.8;
    margin-bottom: 32px;
}
.sxzb-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}
.sxzb-cta-buttons .sxzb-btn {
    padding: 14px 32px;
    font-size: 16px;
}
.sxzb-cta-decor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}
.sxzb-cta-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C53C5A, transparent);
    opacity: 0.4;
}
.sxzb-cta-diamond {
    width: 10px;
    height: 10px;
    background: #C53C5A;
    transform: rotate(45deg);
    opacity: 0.6;
}

/* ========== Footer ========== */
.sxzb-footer {
    padding: 64px 0;
    background: #0D0B10;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sxzb-footer-bottom {
    display: flex;
    justify-content: space-between
}

/* ========== 响应式设计 ========== */
@media (max-width: 1200px) {
    .sxzb-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 992px) {
    .sxzb-footer-bottom {
        flex-wrap: wrap;
    }
    .sxzb-preview-card {
        width: 260px;
    }
}
@media (max-width: 768px) {
    .sxzb-navbar {
        height: 64px;
    }
    .sxzb-nav-links {
        display: none;
    }
    .sxzb-hero {
        padding: 48px 0;
    }
    .sxzb-hero-title {
        font-size: 32px;
    }
    .sxzb-hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
    .sxzb-hero-preview {
        padding: 0 0 48px 0;
    }
    .sxzb-preview-cards {
        flex-direction: column;
        align-items: center;
    }
    .sxzb-preview-card {
        width: 100%;
        max-width: 320px;
    }
    .sxzb-preview-card:nth-child(1),
    .sxzb-preview-card:nth-child(2),
    .sxzb-preview-card:nth-child(3) {
        transform: none;
    }
    .sxzb-features {
        padding: 48px 0;
    }
    .sxzb-feature-row:nth-child(odd),
    .sxzb-feature-row:nth-child(even) {
        flex-direction: row;
        text-align: left;
    }
    .sxzb-products {
        padding: 48px 0;
    }
    .sxzb-products-grid {
        grid-template-columns: 1fr 1fr;
    }
    .sxzb-how-to-use {
        padding: 48px 0;
    }
    .sxzb-timeline {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .sxzb-timeline-arrow {
        transform: rotate(90deg);
        padding: 8px 0;
    }
    .sxzb-timeline-step {
        max-width: 300px;
    }
    .sxzb-recruit {
        padding: 48px 0;
    }
    .sxzb-cta-section {
        padding: 48px 0;
    }
    .sxzb-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .sxzb-footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .sxzb-form-row {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .sxzb-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .sxzb-products-grid {
        grid-template-columns: 1fr;
    }
    .sxzb-product-visual {
        height: 140px;
    }
}