/* ============================================
   {SITE_TITLE} - 全局样式表
   虚拟现实(VR)电竞馆与沉浸式体验中心
   色彩体系：赛博霓虹蓝 + 全息紫
   ============================================ */

/* CSS变量定义 */
:root {
    --primary: #00d4ff;
    --primary-dark: #0099cc;
    --primary-glow: rgba(0, 212, 255, 0.3);
    --secondary: #a855f7;
    --secondary-dark: #7c3aed;
    --secondary-glow: rgba(168, 85, 247, 0.3);
    --bg-dark: #0a0e1a;
    --bg-darker: #050810;
    --bg-section: #0f1428;
    --bg-section-alt: #121832;
    --card-bg: rgba(15, 20, 40, 0.8);
    --card-border: rgba(0, 212, 255, 0.15);
    --card-hover: rgba(0, 212, 255, 0.08);
    --text-primary: #e8edf5;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --gradient-primary: linear-gradient(135deg, #00d4ff, #a855f7);
    --gradient-dark: linear-gradient(180deg, #0a0e1a, #0f1428);
    --shadow-neon: 0 0 20px rgba(0, 212, 255, 0.2);
    --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.4);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Orbitron', monospace;
}

/* 全局重置 */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* 品牌Logo过渡动画 */
.ce0c1ea2a {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.ce0c1ea2a.hidden {
    opacity: 0;
    visibility: hidden;
}

.c676e6849 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary);
    text-shadow: 0 0 30px var(--primary-glow);
    animation: pulse-glow 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { text-shadow: 0 0 20px var(--primary-glow); }
    50% { text-shadow: 0 0 40px var(--primary), 0 0 60px var(--secondary-glow); }
}

/* 导航栏 */
.c1715e317 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: var(--transition);
    backdrop-filter: blur(0px);
}

.c1715e317.ce6badca1 {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    padding: 0.7rem 2rem;
}

.c5e86a53d {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.c2a39d27e {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    text-shadow: 0 0 10px var(--primary-glow);
}

.cd6c47b84 {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.cd6c47b84 a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.cd6c47b84 a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

.cd6c47b84 a:hover::after {
    width: 100%;
}

.ce5a74ffe {
    background: var(--gradient-primary);
    color: #fff !important;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: var(--shadow-neon);
}

.ce5a74ffe:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--primary-glow);
}

.ce5a74ffe::after {
    display: none !important;
}

/* 移动端菜单按钮 */
.ca043a0af {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.ca043a0af span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

/* Hero Section */
.cbfab1e1c {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.c6a2a911a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.cbfab1e1c:hover .c6a2a911a {
    transform: scale(1);
}

.cb8d2e4e5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 8, 16, 0.4) 0%, rgba(10, 14, 26, 0.8) 100%);
}

.c70d18b28 {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.ce5a5b4b6 {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--card-border);
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.c3a5e7182 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.c90a589d7 {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.c6eb42c79 {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* 按钮样式 */
.c772806f3 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.cdadc439c {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: var(--shadow-neon);
}

.cdadc439c:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px var(--primary-glow);
}

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

.c28113512:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-3px);
}

/* 通用Section样式 */
.ce19f3789 {
    padding: 6rem 2rem;
    position: relative;
}

.c5eb2d285 {
    background: var(--bg-section-alt);
}

.c08527b21 {
    max-width: 1200px;
    margin: 0 auto;
}

.c2500c503 {
    text-align: center;
    margin-bottom: 4rem;
}

.c500867ed {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.cfc5f97f9 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.c874de83e {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* 信任背书模块 */
.c6d9158ec {
    padding: 3rem 2rem;
    background: var(--bg-section);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: var(--transition);
}

.trust-logos:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.trust-logos img {
    height: 40px;
    width: auto;
}

.cfaf7239f {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.cafd09c86 {
    text-align: center;
}

.ce1f11900 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

.cf7163211 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

/* 核心优势/服务模块 */
.c56bbdbdd {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.ccc232205 {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.ccc232205::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.ccc232205:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-neon);
}

.ccc232205:hover::before {
    opacity: 1;
}

.c11e115d7 {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(0, 212, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.ccc232205 h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.ccc232205 p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.ccc232205 .ce2fdf049 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.ccc232205 .ce2fdf049:hover {
    gap: 0.8rem;
}

/* 精选案例/作品展示 - 网格布局 */
.c744f260b {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.c31066afb {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    group: true;
}

.c31066afb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.c31066afb:hover img {
    transform: scale(1.1);
}

.c787280b7 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem;
    background: linear-gradient(transparent, rgba(5, 8, 16, 0.95));
    transform: translateY(30%);
    transition: transform 0.4s ease;
}

.c31066afb:hover .c787280b7 {
    transform: translateY(0);
}

.c787280b7 h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.c787280b7 p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.c50cbd6e1 {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

/* 案例筛选标签 */
.c061641aa {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.c236f0dd4 {
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    background: transparent;
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.c236f0dd4.c0ca3bf25,
.c236f0dd4:hover {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
}

/* 行业痛点与解决方案 */
.cde45aecb {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.c7894abab {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.c7894abab .c860e4c94 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.c7894abab h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #ff6b6b;
}

.c7894abab .c8b7b62a3 {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--card-border);
}

.c7894abab .c8b7b62a3 h5 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.c7894abab .c8b7b62a3 p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* 轮播图组件 */
.c72a105a2 {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.ce2fe7c7e {
    display: flex;
    transition: transform 0.5s ease;
}

.cfdfa27f5 {
    min-width: 100%;
    position: relative;
}

.cfdfa27f5 img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.c4e162ffb {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.cd2be6257 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.cd2be6257.c0ca3bf25 {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.c63d77dd7 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(10, 14, 26, 0.8);
    border: 1px solid var(--card-border);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.c63d77dd7:hover {
    background: var(--primary);
    color: #fff;
}

.c63d77dd7.c2a60634d { left: 1rem; }
.c63d77dd7.cae8afa95 { right: 1rem; }

/* 互动式服务流程体验模块 */
.cd7e8b330 {
    position: relative;
    padding: 2rem 0;
}

.cd7e8b330::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.3;
}

.c292ae32c {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.c292ae32c:nth-child(even) {
    flex-direction: row-reverse;
}

.cbf422131 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    box-shadow: var(--shadow-neon);
    position: relative;
    z-index: 2;
}

.cc6cac930 {
    flex: 1;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.cc6cac930 h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.cc6cac930 p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* 智能需求匹配/报价测算工具 */
.cd1d84a3b {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    backdrop-filter: blur(10px);
    max-width: 700px;
    margin: 0 auto;
}

.cb70c7cb8 {
    margin-bottom: 1.5rem;
}

.cb70c7cb8 label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cb70c7cb8 select,
.cb70c7cb8 input,
.cb70c7cb8 textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(15, 20, 40, 0.6);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-main);
}

.cb70c7cb8 select:focus,
.cb70c7cb8 input:focus,
.cb70c7cb8 textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.cb70c7cb8 textarea {
    resize: vertical;
    min-height: 100px;
}

.cf44ed536 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* 转化引导模块 */
.c01cdf542 {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(168, 85, 247, 0.05));
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    text-align: center;
    padding: 5rem 2rem;
}

.c45aa2b32 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.c5f7a2584 {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.c67210fed {
    background: var(--bg-darker);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--card-border);
}

.cc61dcb5d {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.cd9c33f04 .cc1d3864e {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.cd9c33f04 p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}

.ca1bc698e h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

.ca1bc698e ul {
    list-style: none;
}

.ca1bc698e ul li {
    margin-bottom: 0.6rem;
}

.ca1bc698e ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.ca1bc698e ul li a:hover {
    color: var(--primary);
}

.c120fac2b {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.c120fac2b p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* 动画效果 */
.cc0964284 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.cc0964284.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* 视差效果 */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* 页面内部Banner */
.cc38747d8 {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cc38747d8 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.cc38747d8 .c1d413d3f {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 8, 16, 0.3), rgba(10, 14, 26, 0.9));
}

.c55f60f97 {
    position: relative;
    z-index: 2;
    text-align: center;
}

.c55f60f97 h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.c55f60f97 .c1335dbcf {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.c55f60f97 .c1335dbcf a {
    color: var(--primary);
    text-decoration: none;
}

/* 列表页样式 */
.c045c9e05 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.c8cefbab9 {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.c8cefbab9:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-neon);
}

.cf91dfa54 {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.cc5e2d75a {
    padding: 1.5rem;
}

.cc5e2d75a h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cc5e2d75a h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

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

.cc5e2d75a p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.cc6891115 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--card-border);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* 分页 */
.c52ac83ab {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.c52ac83ab a, .c52ac83ab span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.c52ac83ab a:hover, .c52ac83ab .c0ca3bf25 {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
}

/* 详情页 */
.detail-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.detail-content h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.detail-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.detail-content img {
    width: 100%;
    border-radius: var(--radius);
    margin: 1.5rem 0;
}

.detail-content p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.detail-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* 表单成功提示 */
.cce87f429 {
    display: none;
    text-align: center;
    padding: 3rem;
}

.cce87f429.show {
    display: block;
}

.cce87f429 .c69bba9a6 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .cc61dcb5d {
        grid-template-columns: 1fr 1fr;
    }
    
    .c292ae32c {
        flex-direction: column !important;
        gap: 1.5rem;
    }
    
    .cd7e8b330::before {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .cd6c47b84 {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--bg-darker);
        flex-direction: column;
        padding: 5rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        border-left: 1px solid var(--card-border);
    }
    
    .cd6c47b84.c0ca3bf25 {
        right: 0;
    }
    
    .ca043a0af {
        display: flex;
    }
    
    .c3a5e7182 {
        font-size: 2.2rem;
    }
    
    .c90a589d7 {
        font-size: 1rem;
    }
    
    .c56bbdbdd {
        grid-template-columns: 1fr;
    }
    
    .c744f260b {
        grid-template-columns: 1fr;
    }
    
    .cde45aecb {
        grid-template-columns: 1fr;
    }
    
    .cf44ed536 {
        grid-template-columns: 1fr;
    }
    
    .cc61dcb5d {
        grid-template-columns: 1fr;
    }
    
    .c120fac2b {
        flex-direction: column;
        text-align: center;
    }
    
    .ce19f3789 {
        padding: 4rem 1.5rem;
    }
    
    .cfdfa27f5 img {
        height: 300px;
    }
    
    .ce1f11900 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .cbfab1e1c {
        min-height: 600px;
    }
    
    .c6eb42c79 {
        flex-direction: column;
        align-items: center;
    }
    
    .c772806f3 {
        width: 100%;
        justify-content: center;
    }
    
    .cc38747d8 {
        height: 300px;
    }
}

/* 滚动条美化 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}
