/* ============================================
   {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过渡动画 */
.c0d065f34 {
    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;
}

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

.c18671317 {
    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); }
}

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

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

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

.cd9474a5f {
    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);
}

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

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

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

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

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

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

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

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

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

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

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

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

.cda2f4cf5:hover .c8d0f7230 {
    transform: scale(1);
}

.c055b6dbc {
    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%);
}

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

.c67132e72 {
    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);
}

.c01c58ae9 {
    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;
}

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

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

/* 按钮样式 */
.ca78307f5 {
    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;
}

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

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

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

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

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

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

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

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

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

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

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

/* 信任背书模块 */
.c67c614af {
    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;
}

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

.c9008ccd5 {
    text-align: center;
}

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

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

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

.c9eade391 {
    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;
}

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

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

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

.c43b7081c {
    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;
}

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

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

.c9eade391 .cdccbb385 {
    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);
}

.c9eade391 .cdccbb385:hover {
    gap: 0.8rem;
}

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

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

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

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

.c942e4325 {
    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;
}

.c9f40073e:hover .c942e4325 {
    transform: translateY(0);
}

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

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

.cb2783514 {
    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;
}

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

.cf1ecf2c4 {
    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;
}

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

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

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

.c4439a2d9 .c02458ab7 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

.c5aaca26b {
    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;
}

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

.c5aaca26b.cbd88e4de { left: 1rem; }
.c5aaca26b.c4d5c9d9e { right: 1rem; }

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

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

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

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

.c0942335b {
    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;
}

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

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

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

/* 智能需求匹配/报价测算工具 */
.c8dc30ba3 {
    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;
}

.c2ce2f247 {
    margin-bottom: 1.5rem;
}

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

.c2ce2f247 select,
.c2ce2f247 input,
.c2ce2f247 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);
}

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

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

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

/* 转化引导模块 */
.c75d2e44e {
    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;
}

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

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

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

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

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

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

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

.c8c21990c ul {
    list-style: none;
}

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

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

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

.c4cd7c35f {
    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;
}

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

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

.ccef8b984.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 */
.cdc167336 {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.cdc167336 .c1fa795c7 {
    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));
}

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

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

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

.c71e7afae .c36897022 a {
    color: var(--primary);
    text-decoration: none;
}

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

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

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

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

.c5bf3e088 {
    padding: 1.5rem;
}

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

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

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

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

.c47f95545 {
    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);
}

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

.c933bc41f a, .c933bc41f 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);
}

.c933bc41f a:hover, .c933bc41f .c4999bc6e {
    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);
}

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

.c48103955.show {
    display: block;
}

.c48103955 .cb037cd81 {
    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) {
    .cc4040728 {
        grid-template-columns: 1fr 1fr;
    }
    
    .c00d1fe39 {
        flex-direction: column !important;
        gap: 1.5rem;
    }
    
    .cc8c426f8::before {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .cf146d7d2 {
        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);
    }
    
    .cf146d7d2.c4999bc6e {
        right: 0;
    }
    
    .c6d42c615 {
        display: flex;
    }
    
    .c01c58ae9 {
        font-size: 2.2rem;
    }
    
    .c131d8f8b {
        font-size: 1rem;
    }
    
    .c2c071bd1 {
        grid-template-columns: 1fr;
    }
    
    .c84c1b2f8 {
        grid-template-columns: 1fr;
    }
    
    .c53d092ba {
        grid-template-columns: 1fr;
    }
    
    .c769fb959 {
        grid-template-columns: 1fr;
    }
    
    .cc4040728 {
        grid-template-columns: 1fr;
    }
    
    .c4cd7c35f {
        flex-direction: column;
        text-align: center;
    }
    
    .c275a0b39 {
        padding: 4rem 1.5rem;
    }
    
    .c09d01ac3 img {
        height: 300px;
    }
    
    .cab2073de {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .cda2f4cf5 {
        min-height: 600px;
    }
    
    .ca16056c0 {
        flex-direction: column;
        align-items: center;
    }
    
    .ca78307f5 {
        width: 100%;
        justify-content: center;
    }
    
    .cdc167336 {
        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);
}
