/* ============================================
   影视器材租赁与片场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%;
}

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

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

/* ============================================
   胶片倒计时加载动画
   ============================================ */
.c56a69ebf {
    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;
}

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

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

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

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

.cee929881::before,
.cee929881::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
    );
}

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

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

/* ============================================
   顶部导航
   ============================================ */
.c65057e7c {
    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);
}

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

.ce4ffb939 {
    flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cc1ca326a.open {
    visibility: visible;
}

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

.cc1ca326a.open .c9a228543 {
    opacity: 1;
}

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

.cc1ca326a.open .c74b1682f {
    transform: translateX(0);
}

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

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

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

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

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

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

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

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

.c8da4cf0a { top: 20px; left: 20px; }
.c66828808 { top: 20px; right: 20px; }
.c337cab0f { bottom: 20px; left: 20px; }
.cc51ca04e { bottom: 20px; right: 20px; }

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

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

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

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

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

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

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

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

/* 场记板按钮 */
.cf000dba1 {
    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);
}

.cf000dba1::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
    );
}

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

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

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

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

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

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

.c899ca8ec.cf2ddee89 {
    animation: blink-animation 1s step-end infinite;
}

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

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

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

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

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

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

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

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

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

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

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

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

.c5a35c513:hover .ce7884217 img {
    transform: scale(1.08);
}

.c3107bccc {
    padding: 16px 20px;
}

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

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

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

/* HUD面板 - 悬停显示 */
.c16e09d69 {
    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;
}

.c5a35c513:hover .c16e09d69 {
    opacity: 1;
    visibility: visible;
}

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

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

.c49c241f2 td {
    padding: 6px 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ce0f41030 {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

.cfaee764d {
    text-align: left;
}

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

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

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

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

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

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

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

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

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

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

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

.c2a59d465.c9d40cb73 {
    border-color: var(--timecode-green);
}

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

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

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

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

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

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

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

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

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

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

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

.c00d5cf10 {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ce2fee2c4 {
    min-width: 600px;
}

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

.ce2fee2c4 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cd92ecc3e {
    margin-bottom: 40px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c675ec19e {
    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下载页
   ============================================ */
.ce66ce785 {
    text-align: center;
    padding: 80px 20px;
}

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

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

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

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

/* ============================================
   响应式断点
   ============================================ */
@media (max-width: 1024px) {
    .c69b4141a {
        display: none;
    }
    
    .c96cf2731 {
        display: flex;
    }
    
    .c362132d0 {
        grid-template-columns: 1fr 1fr;
    }
    
    .ccf6ffe3f {
        flex-direction: column;
    }
    
    .cd5732af7 {
        border-right: none;
        border-bottom: 1px solid var(--border-gray);
    }
    
    .c093ec24c {
        padding: 16px;
    }
    
    .cf9da37dd {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }
    
    section {
        padding: 48px 0;
    }
    
    .c76633edb {
        min-height: 70vh;
    }
    
    .c38ff4ca1 {
        grid-template-columns: 1fr;
    }
    
    .cd0aa5d06 {
        grid-template-columns: 1fr;
    }
    
    .cbdfadde8 {
        grid-template-columns: 1fr;
    }
    
    .c82441679 {
        flex-direction: column;
        align-items: center;
    }
    
    .c761e1a6e {
        width: 100%;
        max-width: 300px;
    }
    
    .c8139ebfb {
        transform: rotate(90deg);
        padding: 8px 0;
    }
    
    .c362132d0 {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .c0bc0fd9b {
        display: none;
    }
    
    .c776d86a8 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .c1b38d187 {
        font-size: 24px;
    }
    
    .c9c76aeaf {
        flex-direction: column;
        align-items: center;
    }
    
    .c00b4a73e {
        font-size: 24px;
    }
    
    .c1a73f998 {
        margin: 0 -20px;
        border-radius: 0;
    }
}

/* ============================================
   打印样式
   ============================================ */
@media print {
    .c65057e7c,
    .c65d739fd,
    .c56a69ebf,
    .cc1ca326a {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
    
    .c76633edb {
        min-height: auto;
        margin-top: 0;
    }
}
