/* 覆盖通用内容样式配色 */
:root {
    --content-primary: #0891b2;
    --content-primary-dark: #0e7490;
    --content-primary-light: #22d3ee;
}

/* 分站模板6 - 科技青蓝风 */
:root {
    --tpl6-primary: #0891b2;
    --tpl6-primary-dark: #0e7490;
    --tpl6-primary-light: #22d3ee;
    --tpl6-text: #e2e8f0;
    --tpl6-text-light: #94a3b8;
    --tpl6-bg: #0f172a;
    --tpl6-bg-card: #1e293b;
    --tpl6-footer-bg: #020617;
    --tpl6-border: #334155;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: "Courier New", "PingFang SC", "Microsoft YaHei", monospace;
    color: var(--tpl6-text);
    background: var(--tpl6-bg);
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.tpl6-container { max-width: 1400px; width: 95%; margin: 0 auto; }

/* 导航 */
.tpl6-header {
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid var(--tpl6-border);
    backdrop-filter: blur(10px);
    position: sticky; top: 0; z-index: 1000;
}
.tpl6-header .tpl6-container {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
}
.tpl6-logo { display: flex; align-items: center; gap: 10px; }
.tpl6-logo-icon {
    width: 40px; height: 40px;
    background: var(--tpl6-primary);
    border: 1px solid var(--tpl6-primary-light);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px; font-weight: 800;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
}
.tpl6-logo-text { font-size: 18px; font-weight: 700; letter-spacing: 1px; }
.tpl6-logo-text span { color: var(--tpl6-primary-light); }

.tpl6-nav { display: flex; align-items: center; gap: 0; }
.tpl6-nav > a, .tpl6-dropdown > a {
    padding: 24px 20px;
    color: var(--tpl6-text-light);
    font-size: 14px; font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}
.tpl6-nav > a:hover, .tpl6-dropdown > a:hover,
.tpl6-nav > a.active, .tpl6-dropdown > a.active {
    color: var(--tpl6-primary-light);
    border-bottom-color: var(--tpl6-primary);
    background: rgba(8, 145, 178, 0.05);
}
.tpl6-dropdown { position: relative; }
.tpl6-dropdown-menu {
    position: absolute; top: 100%; left: 0;
    background: var(--tpl6-bg-card);
    border: 1px solid var(--tpl6-border);
    min-width: 180px; padding: 8px;
    opacity: 0; visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s; z-index: 100;
}
.tpl6-dropdown:hover .tpl6-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.tpl6-dropdown-menu a {
    display: block; padding: 10px 14px;
    color: var(--tpl6-text-light); font-size: 13px;
    transition: all 0.2s;
    border-left: 2px solid transparent;
}
.tpl6-dropdown-menu a:hover { color: var(--tpl6-primary-light); background: rgba(8,145,178,0.1); border-left-color: var(--tpl6-primary); }

.tpl6-header-right { display: flex; align-items: center; gap: 16px; }
.tpl6-phone {
    color: var(--tpl6-primary-light);
    font-size: 14px; font-weight: 600;
    padding: 8px 16px;
    border: 1px solid var(--tpl6-primary);
    transition: all 0.3s;
}
.tpl6-phone:hover { background: var(--tpl6-primary); color: #fff; }
.tpl6-toggle { display: none; background: none; border: none; font-size: 22px; color: var(--tpl6-text); cursor: pointer; }

/* Banner */
.page-banner {
    background: linear-gradient(135deg, rgba(8,145,178,0.15), rgba(34,211,238,0.05));
    border-bottom: 1px solid var(--tpl6-border);
    padding: 50px 0;
}
.page-banner h1 { font-size: 32px; font-weight: 700; color: var(--tpl6-primary-light); margin-bottom: 10px; }
.page-banner p { color: var(--tpl6-text-light); }
.breadcrumb { font-size: 13px; color: var(--tpl6-text-light); margin-bottom: 12px; }
.breadcrumb a { color: var(--tpl6-primary); }

/* 通用 */
.section { padding: 70px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 30px; font-weight: 700; margin-bottom: 10px; color: var(--tpl6-text); }
.section-title p { color: var(--tpl6-text-light); }

/* CTA */
.tpl6-cta {
    background: linear-gradient(135deg, var(--tpl6-primary-dark), var(--tpl6-primary));
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--tpl6-border);
    border-bottom: 1px solid var(--tpl6-border);
}
.tpl6-cta h2 { font-size: 28px; margin-bottom: 8px; color: #fff; }
.tpl6-cta p { color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.tpl6-btn {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 14px 36px;
    border: 2px solid #fff;
    font-size: 16px; font-weight: 600;
    transition: all 0.3s;
}
.tpl6-btn:hover { background: #fff; color: var(--tpl6-primary); }

/* 页脚 */
.tpl6-footer { background: var(--tpl6-footer-bg); color: var(--tpl6-text-light); padding: 50px 0 0; }
.tpl6-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--tpl6-border);
}
.tpl6-footer-brand p { font-size: 14px; color: var(--tpl6-text-light); margin-top: 16px; line-height: 1.8; }
.tpl6-footer-col h4 { font-size: 15px; color: var(--tpl6-text); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid var(--tpl6-border); }
.tpl6-footer-col ul li { margin-bottom: 10px; }
.tpl6-footer-col ul li a { font-size: 14px; color: var(--tpl6-text-light); transition: color 0.2s; }
.tpl6-footer-col ul li a:hover { color: var(--tpl6-primary-light); }
.tpl6-footer-notice {
    background: var(--tpl6-bg-card);
    border: 1px solid var(--tpl6-border);
    border-left: 3px solid var(--tpl6-primary);
    padding: 16px 20px;
    margin: 30px 0;
    font-size: 13px; line-height: 1.8;
    color: var(--tpl6-text-light);
}
.tpl6-footer-notice strong { color: var(--tpl6-primary-light); }
.tpl6-footer-bottom {
    display: flex; justify-content: space-between;
    padding: 20px 0; font-size: 13px; color: var(--tpl6-text-light);
}
.tpl6-footer-bottom a { color: var(--tpl6-text-light); }
.tpl6-footer-bottom a:hover { color: var(--tpl6-primary-light); }

/* 响应式 */
@media (max-width: 1024px) { .tpl6-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
    .tpl6-nav {
        display: none;
        position: absolute; top: 68px; left: 0; right: 0;
        background: var(--tpl6-bg-card);
        flex-direction: column; padding: 10px 0;
        border-bottom: 1px solid var(--tpl6-border);
    }
    .tpl6-nav.show { display: flex; }
    .tpl6-nav > a, .tpl6-dropdown > a { padding: 14px 20px; border-bottom: none; }
    .tpl6-toggle { display: block; }
    .tpl6-phone { display: none; }
    .tpl6-footer-grid { grid-template-columns: 1fr; }
    .tpl6-footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}




/* Footer Logo 颜色修复（深色背景上使用浅色文字） */
.tpl6-footer .tpl6-logo-text { color: #fff; }
.tpl6-footer .tpl6-logo-text span { color: #22d3ee; }
.tpl6-footer .tpl6-logo-icon { background: rgba(255,255,255,0.15); color: #22d3ee; }


/* Page Banner 文字颜色修复（确保文字和背景对比度） */
.page-banner h1 { color: #22d3ee !important; }
.page-banner p { color: #67e8f9 !important; }
.page-banner .breadcrumb { color: #a5f3fc !important; }
.page-banner .breadcrumb a { color: #22d3ee !important; }
