/* ============================================
   影视器材租赁与片场DIT数据管理服务平台
   视觉风格：片场监视器黑 + 时间码荧光绿
   ============================================ */

/* CSS变量定义 */
:root {
    --monitor-black: #1A1A1A;
    --timecode-green: #00FF41;
    --darkroom-black: #0D0D0D;
    --equipment-gray: #2A2A2A;
    --subtitle-white: #E0E0E0;
    --dim-green: #00cc34;
    --dark-green: #004d13;
    --border-gray: #3A3A3A;
    --text-muted: #999999;
    --danger-red: #FF3333;
    --warning-amber: #FFB800;
    --font-primary: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
    --font-mono: "JetBrains Mono", "SF Mono", "Fira Code", monospace;
    --container-max: 1280px;
    --header-height: 72px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.35s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    background-color: var(--darkroom-black);
    color: var(--subtitle-white);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--timecode-green);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: #66ff8c;
}

ul, ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    width: 100%;
}

.c91ec2d45 {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.c415eac2b {
    color: var(--timecode-green);
}

/* ============================================
   胶片倒计时加载动画
   ============================================ */
.c59ac21bc {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darkroom-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.c59ac21bc.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.c99cc0956 {
    width: 120px;
    height: 120px;
    border: 3px solid var(--timecode-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: countdown-pulse 1s ease-in-out infinite;
}

.c502f2017 {
    font-family: var(--font-mono);
    font-size: 48px;
    color: var(--timecode-green);
    font-weight: 700;
}

.c8718c061 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100%;
    pointer-events: none;
}

.c8718c061::before,
.c8718c061::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 20px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 15px,
        var(--equipment-gray) 15px,
        var(--equipment-gray) 25px
    );
}

.c8718c061::before { top: 20px; }
.c8718c061::after { bottom: 20px; }

@keyframes countdown-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ============================================
   顶部导航
   ============================================ */
.cdb02b1d3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-gray);
    z-index: 1000;
    transition: background var(--transition-normal);
}

.c7e8a6801 {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cbaa21b3a {
    flex-shrink: 0;
}

.c49459dd4 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cd06324a8 {
    height: 36px;
    width: auto;
}

.cc31f6ad8 {
    font-size: 18px;
    font-weight: 700;
    color: var(--subtitle-white);
    white-space: nowrap;
}

.c9d91bc4f {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ca818c3f7 {
    display: flex;
    gap: 4px;
}

.c0f0586dc a {
    display: block;
    padding: 8px 16px;
    color: var(--subtitle-white);
    font-size: 14px;
    border-radius: 4px;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.c0f0586dc a:hover,
.c0f0586dc.ce4c2a8e2 a {
    color: var(--timecode-green);
    background: rgba(0, 255, 65, 0.08);
}

.cdb8c8027 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.c05037304 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--subtitle-white);
    transition: all var(--transition-fast);
}

.c05037304:hover {
    background: rgba(0, 255, 65, 0.1);
    color: var(--timecode-green);
}

.c07bb7b18 {
    padding: 8px 16px;
    background: var(--timecode-green);
    color: var(--darkroom-black);
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.c07bb7b18:hover {
    background: #66ff8c;
    color: var(--darkroom-black);
}

/* 移动端菜单按钮 */
.ccdfde352 {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.c7a8a7f06 {
    width: 24px;
    height: 2px;
    background: var(--subtitle-white);
    transition: all var(--transition-fast);
}

/* 移动端侧边导航 */
.c9a750693 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    transition: visibility var(--transition-normal);
}

.c9a750693.open {
    visibility: visible;
}

.c4b713250 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.c9a750693.open .c4b713250 {
    opacity: 1;
}

.c8c7521c8 {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: var(--monitor-black);
    border-left: 1px solid var(--timecode-green);
    padding: 60px 24px 24px;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    overflow-y: auto;
}

.c9a750693.open .c8c7521c8 {
    transform: translateX(0);
}

.c1d05ce6f {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: none;
    border: 1px solid var(--border-gray);
    border-radius: 50%;
    color: var(--subtitle-white);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c72952c92 li {
    border-bottom: 1px solid var(--border-gray);
}

.c72952c92 a {
    display: block;
    padding: 14px 0;
    color: var(--subtitle-white);
    font-size: 15px;
}

.c72952c92 a:hover {
    color: var(--timecode-green);
}

/* ============================================
   Hero监视器区域
   ============================================ */
.c82264c45 {
    margin-top: var(--header-height);
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.c3f55c985 {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cb6629f7d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.c5f523608 {
    position: absolute;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--timecode-green);
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 65, 0.3);
    white-space: nowrap;
}

.c5619503d { top: 20px; left: 20px; }
.c3fe9a5ef { top: 20px; right: 20px; }
.cba945051 { bottom: 20px; left: 20px; }
.ce0bc38e2 { bottom: 20px; right: 20px; }

.c45b37331 {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    border: 1px dashed rgba(0, 255, 65, 0.2);
}

.c45b37331::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    border: 1px solid rgba(0, 255, 65, 0.1);
}

.c29d674fd {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.c89c0fdab {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) saturate(0.8);
}

.cca6690e0 {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
}

.ca04b3dad {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.cab45f77f {
    font-size: clamp(14px, 2vw, 18px);
    color: var(--subtitle-white);
    margin-bottom: 36px;
    font-family: var(--font-mono);
    letter-spacing: 0.5px;
}

.c04d23bab {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 场记板按钮 */
.c0c352766 {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: var(--timecode-green);
    color: var(--darkroom-black);
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.c0c352766::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: repeating-linear-gradient(
        -45deg,
        var(--darkroom-black),
        var(--darkroom-black) 6px,
        var(--timecode-green) 6px,
        var(--timecode-green) 12px
    );
}

.c0c352766:hover {
    background: #66ff8c;
    color: var(--darkroom-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 255, 65, 0.3);
}

.ceee5c74e {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border: 2px solid var(--timecode-green);
    color: var(--timecode-green);
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.ceee5c74e:hover {
    background: rgba(0, 255, 65, 0.1);
    color: #66ff8c;
    transform: translateY(-2px);
}

/* ============================================
   通用Section样式
   ============================================ */
section {
    padding: 80px 0;
}

.c179a81e0 {
    text-align: center;
    margin-bottom: 48px;
}

.c6f1f58af {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--timecode-green);
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.c6f1f58af.c9e10c7ea {
    animation: blink-animation 1s step-end infinite;
}

@keyframes blink-animation {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.c47fe9cd7 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.c1989ec24 {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
}

/* ============================================
   器材卡片网格
   ============================================ */
.cf8ad9065 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.cb9f9270d {
    position: relative;
    background: var(--equipment-gray);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.cb9f9270d:hover {
    border-color: var(--timecode-green);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 255, 65, 0.1);
}

.cd7245f01 {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    background: var(--timecode-green);
    color: var(--darkroom-black);
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-mono);
    border-radius: 3px;
    z-index: 2;
}

.c009c6f62 {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
    z-index: 2;
}

.c72e44909 {
    background: rgba(0, 255, 65, 0.15);
    color: var(--timecode-green);
    border: 1px solid rgba(0, 255, 65, 0.3);
}

.cb18a7da4 {
    background: rgba(255, 51, 51, 0.15);
    color: var(--danger-red);
    border: 1px solid rgba(255, 51, 51, 0.3);
}

.caaf77fa3 {
    padding: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.caaf77fa3 img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

.cb9f9270d:hover .caaf77fa3 img {
    transform: scale(1.08);
}

.c55126191 {
    padding: 16px 20px;
}

.cc4c3cb3e {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.c3f9a2450 {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-family: var(--font-mono);
}

.c3effd3d4 {
    font-size: 15px;
    color: var(--timecode-green);
    font-weight: 600;
}

/* HUD面板 - 悬停显示 */
.c27369211 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.95);
    border: 1px solid var(--timecode-green);
    padding: 20px;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 5;
}

.cb9f9270d:hover .c27369211 {
    opacity: 1;
    visibility: visible;
}

.c5bcb79fb {
    width: 100%;
    font-family: var(--font-mono);
    font-size: 12px;
}

.c5bcb79fb tr {
    border-bottom: 1px solid var(--border-gray);
}

.c5bcb79fb td {
    padding: 6px 0;
}

.c5bcb79fb td:first-child {
    color: var(--timecode-green);
    width: 40%;
}

.c5bcb79fb td:last-child {
    color: var(--subtitle-white);
    text-align: right;
}

.c005ba383 {
    display: block;
    padding: 12px 20px;
    text-align: center;
    background: var(--monitor-black);
    color: var(--timecode-green);
    font-size: 14px;
    font-weight: 600;
    border-top: 1px solid var(--border-gray);
    transition: all var(--transition-fast);
}

.c005ba383:hover {
    background: rgba(0, 255, 65, 0.1);
}

.cf922c202 {
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   DIT流程图
   ============================================ */
.c1a76bc65 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    padding: 40px 0;
}

.ceddc15bc {
    flex: 0 0 auto;
    width: 180px;
    text-align: center;
    padding: 20px 12px;
    background: var(--equipment-gray);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    transition: all var(--transition-normal);
}

.ceddc15bc:hover {
    border-color: var(--timecode-green);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.15);
}

.ce4b60276 img {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
}

.c0d0d69ff {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.cd8dbb8f7 {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 8px;
}

.c21f4c721 {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--timecode-green);
    padding: 4px 8px;
    background: rgba(0, 255, 65, 0.08);
    border-radius: 3px;
    display: inline-block;
}

.c92c55b1c {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    align-self: center;
}

.c5c12dcfd {
    font-size: 24px;
    color: var(--timecode-green);
}

.c751c3b65 {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
}

.cd754b269 {
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   项目案例
   ============================================ */
.c5a11bbd7 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.cfd364297 {
    background: var(--equipment-gray);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.cfd364297:hover {
    border-color: var(--timecode-green);
    transform: translateY(-4px);
}

.c6223c0a2 {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

.c69042f7c {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--timecode-green);
    color: var(--darkroom-black);
    font-size: 12px;
    font-weight: 700;
    border-radius: 3px;
}

.c4eb57e92 {
    padding: 20px;
}

.c89a33ae7 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.c4908cad4 {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.7;
}

.c8614cbcc {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--subtitle-white);
}

.c8614cbcc li {
    padding: 4px 0;
    border-bottom: 1px solid var(--border-gray);
}

.c8614cbcc li::before {
    content: '▸ ';
    color: var(--timecode-green);
}

/* ============================================
   PK擂台
   ============================================ */
.c19060c68 {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: var(--equipment-gray);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    overflow: hidden;
}

.c875f5ffc {
    flex: 1;
    padding: 32px 24px;
    text-align: center;
}

.c157793d1 {
    border-right: 1px solid var(--border-gray);
}

.c41494d41 {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 255, 65, 0.1);
    color: var(--timecode-green);
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
    margin-bottom: 16px;
}

.c875f5ffc img {
    width: 100%;
    max-width: 280px;
    height: 180px;
    object-fit: contain;
    margin: 0 auto 16px;
}

.c164a786e {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.c52fa954b {
    text-align: left;
}

.c52fa954b li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-gray);
    font-size: 14px;
}

.c1adbe618 {
    color: var(--text-muted);
}

.c2f7fcefa {
    color: var(--subtitle-white);
    font-weight: 600;
}

.cc8f829b7 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    background: var(--monitor-black);
}

.c92f27256 {
    font-size: 28px;
    font-weight: 900;
    color: var(--timecode-green);
    font-family: var(--font-mono);
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.c96027ac6 {
    text-align: center;
    margin-top: 24px;
    padding: 20px;
    background: var(--equipment-gray);
    border-radius: 8px;
}

.c96027ac6 p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

/* ============================================
   紧急服务区
   ============================================ */
.c80ed92f5 {
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.05) 0%, var(--darkroom-black) 100%);
}

.ce7c49277 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.c8e4065b5 {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cacff16a8 {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--equipment-gray);
    border: 1px solid var(--border-gray);
    border-radius: 6px;
}

.cacff16a8.ce4c2a8e2 {
    border-color: var(--timecode-green);
}

.c7576a614 {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--timecode-green);
    font-weight: 700;
    min-width: 80px;
}

.c123bfbf8 {
    font-size: 14px;
    color: var(--subtitle-white);
}

.cc3abde21 {
    width: 2px;
    height: 20px;
    background: var(--border-gray);
    margin-left: 48px;
}

.c4fb49a19 {
    text-align: center;
    padding: 40px;
    background: var(--equipment-gray);
    border: 2px solid var(--danger-red);
    border-radius: 8px;
}

.c107ffb40 {
    display: inline-block;
    padding: 6px 16px;
    background: var(--danger-red);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 3px;
    margin-bottom: 16px;
}

.c3ef4b320 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-mono);
    margin-bottom: 12px;
}

.c16135a5e {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ============================================
   专题卡片
   ============================================ */
.c47684c7b {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.c1826c7c4 {
    background: var(--equipment-gray);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.c1826c7c4:hover {
    border-color: var(--timecode-green);
    transform: translateY(-4px);
}

.c1826c7c4 img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.caafa8f5c {
    padding: 20px;
}

.caafa8f5c h3 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.caafa8f5c p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.caafa8f5c a {
    font-size: 14px;
    font-weight: 600;
}

/* ============================================
   栏目页/内页样式
   ============================================ */
.c3cab4e99 main,
.c90df29b6 main {
    margin-top: var(--header-height);
}

.c5ae9c322 {
    padding: 60px 0 40px;
    background: linear-gradient(180deg, rgba(0, 255, 65, 0.03) 0%, transparent 100%);
    border-bottom: 1px solid var(--border-gray);
}

.c137e4e03 {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.c0bdd6457 {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.9;
    max-width: 900px;
}

/* 面包屑 */
.c5581f87c {
    padding: 16px 0;
    background: var(--monitor-black);
    border-bottom: 1px solid var(--border-gray);
    margin-top: var(--header-height);
}

.cbc88fc88 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.cbc88fc88 li::after {
    content: ' / ';
    color: var(--text-muted);
    margin-left: 8px;
}

.cbc88fc88 li:last-child::after {
    display: none;
}

.cbc88fc88 a {
    color: var(--text-muted);
}

.cbc88fc88 a:hover {
    color: var(--timecode-green);
}

.cbc88fc88 li:last-child span {
    color: var(--subtitle-white);
}

/* 内容区 */
.c1445a93c {
    padding: 48px 0;
    border-bottom: 1px solid var(--border-gray);
}

.c3b4a543c {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.cd458a6e9 {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* 表格 */
.cf04a2642 {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid var(--border-gray);
}

.c34f62c2b {
    min-width: 600px;
}

.c34f62c2b thead {
    background: var(--monitor-black);
}

.c34f62c2b th {
    padding: 12px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: var(--timecode-green);
    border-bottom: 1px solid var(--border-gray);
    white-space: nowrap;
}

.c34f62c2b td {
    padding: 12px 16px;
    font-size: 14px;
    border-bottom: 1px solid var(--border-gray);
}

.c34f62c2b tbody tr:hover {
    background: rgba(0, 255, 65, 0.03);
}

/* 规则内容 */
.ccb98412c p {
    margin-bottom: 16px;
    line-height: 1.9;
    color: var(--subtitle-white);
}

/* 服务特性卡片 */
.cbe1e16a5 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.cd200542a {
    padding: 24px;
    background: var(--equipment-gray);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    transition: all var(--transition-normal);
}

.cd200542a:hover {
    border-color: var(--timecode-green);
}

.cd200542a h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--timecode-green);
    margin-bottom: 10px;
}

.cd200542a p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* FAQ */
.c9cce7d83 {
    max-width: 800px;
}

.cbba23111 {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-gray);
}

.ca56a0600 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    cursor: pointer;
}

.ca56a0600::before {
    content: 'Q. ';
    color: var(--timecode-green);
    font-family: var(--font-mono);
}

.cbba23111 p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    padding-left: 24px;
}

/* 相关链接 */
.cc55206a3 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.c6b67c3f6 {
    padding: 12px 20px;
    background: var(--equipment-gray);
    border: 1px solid var(--border-gray);
    border-radius: 6px;
    font-size: 14px;
    color: var(--subtitle-white);
    transition: all var(--transition-fast);
}

.c6b67c3f6:hover {
    border-color: var(--timecode-green);
    color: var(--timecode-green);
}

/* ============================================
   文章页
   ============================================ */
.ca46d8bf5 {
    padding: 60px 0 40px;
    border-bottom: 1px solid var(--border-gray);
}

.cef81bb45 {
    font-size: 14px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.cc6add1bd {
    padding: 48px 0;
    max-width: 860px;
}

.cb18fbea4 {
    margin-bottom: 40px;
}

.cb18fbea4 h2 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 3px solid var(--timecode-green);
}

.cb18fbea4 p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--subtitle-white);
    margin-bottom: 16px;
}

/* ============================================
   页脚
   ============================================ */
.c8c76a265 {
    background: var(--monitor-black);
    border-top: 1px solid var(--border-gray);
    padding: 60px 0 30px;
}

.ccbe66ad3 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.c298850e9 .c6b7f49b0 {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.7;
}

.cce47bcee h4 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.cce47bcee li {
    margin-bottom: 10px;
}

.cce47bcee a {
    font-size: 14px;
    color: var(--text-muted);
}

.cce47bcee a:hover {
    color: var(--timecode-green);
}

.c58aee180 {
    padding-top: 24px;
    border-top: 1px solid var(--border-gray);
    text-align: center;
}

.c58aee180 p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.c4d11b81d {
    font-size: 12px;
    color: #666;
}

/* ============================================
   404页面
   ============================================ */
.c2e16a8ad {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 40px 20px;
}

.c00d28bfe {
    font-size: 120px;
    font-weight: 900;
    font-family: var(--font-mono);
    color: var(--timecode-green);
    line-height: 1;
    text-shadow: 0 0 40px rgba(0, 255, 65, 0.3);
}

.c40268cc0 {
    font-size: 20px;
    color: var(--subtitle-white);
    margin: 20px 0;
}

/* ============================================
   搜索页
   ============================================ */
.c03f56302 {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px;
}

.c0953a2fa {
    position: relative;
    margin-bottom: 32px;
}

.c3a5b8cde {
    width: 100%;
    padding: 16px 20px;
    padding-right: 60px;
    background: var(--equipment-gray);
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    color: var(--subtitle-white);
    font-size: 16px;
    outline: none;
    transition: border-color var(--transition-fast);
}

.c3a5b8cde:focus {
    border-color: var(--timecode-green);
}

.c3a5b8cde::placeholder {
    color: var(--text-muted);
}

.c1574c097 {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--timecode-green);
    border: none;
    border-radius: 6px;
    color: var(--darkroom-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c1061035b {
    list-style: none;
}

.search-result-item {
    padding: 20px;
    background: var(--equipment-gray);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    margin-bottom: 12px;
    transition: border-color var(--transition-fast);
}

.search-result-item:hover {
    border-color: var(--timecode-green);
}

.search-result-item h3 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 6px;
}

.search-result-item p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================================
   APP下载页
   ============================================ */
.c0cf115ed {
    text-align: center;
    padding: 80px 20px;
}

.cd9b714be {
    max-width: 300px;
    margin: 0 auto 40px;
}

.c63b7cf4c {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.c319416a3 {
    padding: 14px 32px;
    background: var(--equipment-gray);
    border: 2px solid var(--timecode-green);
    border-radius: 8px;
    color: var(--timecode-green);
    font-size: 16px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.c319416a3:hover {
    background: var(--timecode-green);
    color: var(--darkroom-black);
}

/* ============================================
   响应式断点
   ============================================ */
@media (max-width: 1024px) {
    .c9d91bc4f {
        display: none;
    }
    
    .ccdfde352 {
        display: flex;
    }
    
    .ccbe66ad3 {
        grid-template-columns: 1fr 1fr;
    }
    
    .c19060c68 {
        flex-direction: column;
    }
    
    .c157793d1 {
        border-right: none;
        border-bottom: 1px solid var(--border-gray);
    }
    
    .cc8f829b7 {
        padding: 16px;
    }
    
    .ce7c49277 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }
    
    section {
        padding: 48px 0;
    }
    
    .c82264c45 {
        min-height: 70vh;
    }
    
    .cf8ad9065 {
        grid-template-columns: 1fr;
    }
    
    .c5a11bbd7 {
        grid-template-columns: 1fr;
    }
    
    .c47684c7b {
        grid-template-columns: 1fr;
    }
    
    .c1a76bc65 {
        flex-direction: column;
        align-items: center;
    }
    
    .ceddc15bc {
        width: 100%;
        max-width: 300px;
    }
    
    .c92c55b1c {
        transform: rotate(90deg);
        padding: 8px 0;
    }
    
    .ccbe66ad3 {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .c07bb7b18 {
        display: none;
    }
    
    .cbe1e16a5 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ca04b3dad {
        font-size: 24px;
    }
    
    .c04d23bab {
        flex-direction: column;
        align-items: center;
    }
    
    .c3ef4b320 {
        font-size: 24px;
    }
    
    .cf04a2642 {
        margin: 0 -20px;
        border-radius: 0;
    }
}

/* ============================================
   打印样式
   ============================================ */
@media print {
    .cdb02b1d3,
    .c8c76a265,
    .c59ac21bc,
    .c9a750693 {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
    
    .c82264c45 {
        min-height: auto;
        margin-top: 0;
    }
}
