/* ========================================
   赛博科技风格 - 星屿星城科技前端样式
   霓虹青 #00fff7 / 霓虹紫 #b300ff / 霓虹粉 #ff00aa
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* ========================================
   赛博科技风 — CSS 自定义属性
   ======================================== */
:root {
    --cyber-cyan: #00fff7;
    --cyber-purple: #b300ff;
    --cyber-pink: #ff0055;
    --cyber-bg: #050510;
    --cyber-bg-card: #0a0a1a;
    --cyber-bg-surface: rgba(10, 10, 26, 0.9);
    --cyber-text-primary: #e0e8f0;
    --cyber-text-secondary: #8090b0;
    --cyber-text-muted: #8aa0c0;
    --cyber-border: rgba(0, 255, 247, 0.15);
    --cyber-glow-cyan: 0 0 15px rgba(0, 255, 247, 0.3);
    --cyber-glow-purple: 0 0 15px rgba(179, 0, 255, 0.3);
    --font-display: 'Orbitron', 'Noto Sans SC', 'Source Han Sans SC', 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', 'WenQuanYi Micro Hei', sans-serif;
    --font-body: 'Noto Sans SC', 'Source Han Sans SC', 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', 'WenQuanYi Micro Hei', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'Courier New', monospace;
}

/* ========================================
   赛博电竟 — 通用工具类
   ======================================== */

/* 赛博卡片 — 适合新闻列表项、卡片式内容 */
.cyber-card {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0033 100%);
    border: 1px solid var(--cyber-border);
    border-radius: 8px;
    padding: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.cyber-card:hover {
    border-color: var(--cyber-cyan);
    box-shadow: var(--cyber-glow-cyan), 0 0 30px rgba(179, 0, 255, 0.1);
    transform: translateY(-3px);
}

/* 赛博卡片 — 亮色气泡卡片（带内阴影） */
.cyber-card-light {
    background: rgba(10, 10, 26, 0.8);
    border: 1px solid var(--cyber-border);
    border-radius: 8px;
    padding: 16px;
    transition: all 0.3s ease;
}
.cyber-card-light:hover {
    border-color: var(--cyber-cyan);
    box-shadow: var(--cyber-glow-cyan);
    transform: translateX(4px);
}

/* 赛博标签页激活态 */
.cyber-tab-active {
    background: linear-gradient(135deg, var(--cyber-cyan) 0%, var(--cyber-purple) 100%) !important;
    border-color: var(--cyber-cyan) !important;
    color: var(--cyber-bg) !important;
    box-shadow: 0 0 25px rgba(0, 255, 247, 0.3), 0 0 50px rgba(179, 0, 255, 0.15) !important;
}

/* 赛博分割线（霓虹渐变） */
.cyber-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyber-cyan), var(--cyber-purple), var(--cyber-pink), transparent);
    border: none;
    margin: 10px 0;
}

/* 赛博发光文字 */
.cyber-glow-text {
    color: var(--cyber-cyan);
    text-shadow: 0 0 15px rgba(0, 255, 247, 0.4);
}

/* 赛博区块标题 */
.cyber-section-title {
    font-family: var(--font-display);
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 4px;
    text-align: center;
    text-shadow: 0 0 20px rgba(0, 255, 247, 0.3);
}
.cyber-section-sub {
    font-family: var(--font-display);
    color: var(--cyber-purple);
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 0 8px rgba(179, 0, 255, 0.3);
}

/* 赛博按钮（渐变） */
.cyber-btn {
    display: inline-block;
    background: transparent;
    color: var(--cyber-cyan);
    border: 1px solid var(--cyber-cyan);
    border-radius: 2px;
    padding: 10px 30px;
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 247, 0.15);
    cursor: pointer;
    text-decoration: none;
}
.cyber-btn:hover {
    background: linear-gradient(135deg, var(--cyber-cyan) 0%, var(--cyber-purple) 100%);
    color: var(--cyber-bg);
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 255, 247, 0.4), 0 0 60px rgba(179, 0, 255, 0.2);
    transform: translateY(-2px);
    text-decoration: none;
}

/* 新闻列表 — 赛博风格覆盖 */
.cyber-news-section {
    background: linear-gradient(135deg, #050510 0%, #0a0a1a 100%);
    padding: 60px 0;
    border-top: 1px solid var(--cyber-border);
    border-bottom: 1px solid var(--cyber-border);
}
.cyber-news-section .newstext {
    color: var(--cyber-text-secondary);
    font-size: 16px;
}
.cyber-news-section .newslist li {
    background: rgba(10, 10, 26, 0.8);
    border: 1px solid var(--cyber-border);
    border-radius: 8px;
    margin-bottom: 12px;
    padding: 16px;
    transition: all 0.3s ease;
}
.cyber-news-section .newslist li:hover {
    border-color: var(--cyber-cyan);
    box-shadow: var(--cyber-glow-cyan);
    transform: translateX(4px);
}
.cyber-news-section .newslist li a i {
    display: block;
    color: var(--cyber-text-primary);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    font-style: normal;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}
.cyber-news-section .newslist li:hover a i {
    color: var(--cyber-cyan);
}
.cyber-news-section .newslist li a span {
    font-size: 15px;
    color: var(--cyber-purple);
    display: flex;
    align-items: center;
    gap: 5px;
}

body {
    color: var(--cyber-text-primary);
    padding: 110px 0 0 0 !important;
    margin: 0px !important;
    font-size: 24px;
    font-family: var(--font-body);
    background: var(--cyber-bg);
    line-height: 2.0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

/* 扫描线效果 */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 247, 0.015) 2px,
        rgba(0, 255, 247, 0.015) 4px
    );
}

a, a:hover, a:focus {
    text-decoration: none;
    outline: none;
}

::selection {
    background: #00fff7;
    color: #050510;
}

::-moz-selection {
    background: #00fff7;
    color: #050510;
}

h1, h2, h3, h4, h5, h6, p, ul, li {
    padding: 0;
    margin: 0;
}

li {
    list-style-type: none;
}

a {
    color: #00fff7;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff00aa;
    text-shadow: 0 0 8px rgba(255, 0, 170, 0.4);
}

p {
    line-height: 1.8;
}

.iconfont {
    font-size: 50px;
    font-style: normal;
    color: #00fff7;
    text-shadow: 0 0 10px rgba(0, 255, 247, 0.4);
}

/* ========================================
   功能卡片 - 项目管理及实施
   ======================================== */
.f-box {
    text-align: center;
    padding: 45px 30px 40px;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0033 100%);
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 255, 247, 0.1), inset 0 0 30px rgba(179, 0, 255, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 255, 247, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
}

/* 业务板块行 - 等高卡片 */
.f-box-row {
    display: flex;
    flex-wrap: wrap;
}
.f-box-row > [class*='col-'] {
    display: flex;
    flex-direction: column;
}
.f-box-row > [class*='col-'] > section {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.f-box-row > [class*='col-'] > section > a {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-decoration: none;
}

.f-box::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 4px;
    background: linear-gradient(135deg, #00fff7, #b300ff, #ff00aa);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.f-box:hover::before {
    opacity: 1;
}

.f-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(0, 255, 247, 0.2), 0 0 60px rgba(179, 0, 255, 0.15);
    border-color: transparent;
    background: linear-gradient(135deg, #0d0d25 0%, #2a004d 100%);
}

.f-box:active {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 255, 247, 0.3);
    background: linear-gradient(135deg, #080818 0%, #150028 100%);
}

.f-box i {
    display: block;
    margin-bottom: 24px;
    color: #00fff7;
    text-shadow: 0 0 15px rgba(0, 255, 247, 0.5);
    font-size: 56px;
}

.f-box h2 {
    font-size: 30px;
    margin-bottom: 14px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: var(--font-display);
    text-shadow: 0 0 10px rgba(0, 255, 247, 0.3);
}

.f-box .yw {
    font-size: 20px;
    color: var(--cyber-purple);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
    font-family: var(--font-display);
    text-shadow: 0 0 8px rgba(179, 0, 255, 0.4);
}

.f-box .f-text {
    font-size: 18px;
    color: #9ab0d0;
    line-height: 2.2;
    flex: 1;
}

.f-box u {
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #00fff7, #b300ff);
    margin: 0 auto 15px;
    border-radius: 1px;
    box-shadow: 0 0 10px rgba(0, 255, 247, 0.3);
}

/* ========================================
   顶部栏
   ======================================== */
.top {
    background: #050510;
    color: #00fff7;
    height: 34px;
    line-height: 34px;
    font-size: 16px;
    display: none;
    border-bottom: 1px solid rgba(0, 255, 247, 0.15);
    text-shadow: 0 0 5px rgba(0, 255, 247, 0.2);
}

.top .top-fl {
    float: left;
    font-weight: 300;
}

.top .top-fr {
    float: right;
    font-weight: 300;
}

.top .top-fl .fa {
    font-weight: 300;
}

/* 页脚固定在底部 */
#footer-wrap {
    margin-top: auto;
    flex-shrink: 0;
}

.scd {
    flex: 1 0 auto;
    max-width: 1400px;
    margin: 10px auto;
    padding: 0 20px;
}
   ======================================== */
.header-frontend .navbar {
    margin-bottom: 0;
}

.navbar-default {
    border: none;
}

.navbar-brand {
    color: #00fff7;
    font-size: 30px;
    font-weight: 100;
    line-height: 30px;
    padding: 0 0 0 60px;
    display: flex;
    align-items: center;
    text-shadow: 0 0 15px rgba(0, 255, 247, 0.4);
}

.navbar-brand span {
    color: #b300ff;
    text-shadow: 0 0 10px rgba(179, 0, 255, 0.4);
}

.header-frontend .navbar-collapse ul.navbar-nav {
    display: flex !important;
    justify-content: flex-end !important;
    float: none !important;
    margin-right: 0;
    width: 100%;
}

.header-frontend .navbar .container {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-frontend .navbar-header {
    float: none !important;
    flex-shrink: 0;
}

.header-frontend .navbar-collapse {
    flex: 1;
    display: flex !important;
    justify-content: flex-end;
}

.header-frontend .navbar-default {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    background: rgba(5, 5, 16, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 255, 247, 0.2);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 255, 247, 0.05);
}

.header-frontend .nav li a,
.header-frontend .nav li.active ul.dropdown-menu li a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    background: none;
    font-family: var(--font-display);
    letter-spacing: 2px;
}

.header-frontend .nav li a:hover,
.header-frontend .nav li a:focus,
.header-frontend .nav li.active a,
.header-frontend .nav li.active a:hover,
.header-frontend .nav li a.dropdown-toggle:hover,
.header-frontend .nav li a.dropdown-toggle:focus,
.header-frontend .nav li.active ul.dropdown-menu li a:hover,
.header-frontend .nav li.active ul.dropdown-menu li.active a {
    color: #00fff7 !important;
    background-color: rgba(0, 255, 247, 0.05);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    text-shadow: 0 0 12px rgba(0, 255, 247, 0.4);
}

.header-frontend .navbar-default .navbar-nav > .open > a,
.header-frontend .navbar-default .navbar-nav > .open > a:hover,
.header-frontend .navbar-default .navbar-nav > .open > a:focus {
    color: #00fff7 !important;
    background-color: rgba(0, 255, 247, 0.05);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.header-frontend .navbar-nav > li > a {
    line-height: 1.4;
    padding: 15px 40px;
    color: #ffffff;
    border: none;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 3px;
    font-family: var(--font-display);
    white-space: nowrap;
}

.header-frontend .navbar-nav > li > a:hover {
    border: none;
}

.dropdown-menu li a:hover {
    color: #00fff7 !important;
}

.header-frontend .nav .caret {
    border-bottom-color: #00fff7;
    border-top-color: #00fff7;
}

.dropdown-menu {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(179, 0, 255, 0.1);
    border-radius: 0 0 4px 4px;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 247, 0.15);
}

.header-frontend .nav li .dropdown-menu {
    padding: 0;
}

.header-frontend .nav li .dropdown-menu li a {
    line-height: 32px;
    padding: 10px 20px;
    color: #8090b0 !important;
    border-bottom: 1px solid rgba(0, 255, 247, 0.05);
    font-size: 18px;
}

.header-frontend .nav li .dropdown-menu li a:hover {
    background: rgba(0, 255, 247, 0.08) !important;
    color: #00fff7 !important;
}

.theme-dropdown .dropdown-menu {
    display: block;
    position: static;
    margin-bottom: 20px;
}

.theme-showcase > p > .btn {
    margin: 5px 0;
}

/* ========================================
   TAB 横向导航（替代面包屑 + 侧边栏）
   ======================================== */
.tab-nav-wrap {
    background: rgba(5, 5, 16, 0.6);
    border-bottom: 1px solid rgba(0, 255, 247, 0.15);
    margin-bottom: 30px;
}

.tab-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tab-nav li {
    display: inline-block;
    margin: 0;
}

.tab-nav li a {
    display: block;
    padding: 20px 44px;
    color: #c0d0e0;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    font-family: var(--font-display);
}

.tab-nav li a:hover {
    color: #00fff7;
    background: rgba(0, 255, 247, 0.05);
    text-shadow: 0 0 12px rgba(0, 255, 247, 0.3);
}

.tab-nav li a.now,
.tab-nav li.active a {
    color: #00fff7;
    border-bottom-color: #00fff7;
    background: rgba(0, 255, 247, 0.08);
    text-shadow: 0 0 12px rgba(0, 255, 247, 0.4);
    box-shadow: 0 2px 15px rgba(0, 255, 247, 0.1);
}

/* TAB 页面标题（替代 .r_name） */
.tab-page-title {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 255, 247, 0.15);
    text-shadow: 0 0 20px rgba(0, 255, 247, 0.2);
    letter-spacing: 6px;
}

/* 隐藏旧的侧边栏和面包屑 */
.scd_l {
    display: none;
}

.pst_bg {
    display: none;
}

.scd_r {
    width: 100% !important;
    float: none !important;
    padding: 10px 30px 30px 30px !important;
}

@media (max-width: 768px) {
    .tab-nav li a {
        padding: 12px 20px;
        font-size: 15px;
    }
}

/* ========================================
   竖向 TAB 导航（关于我们系列页面）
   ======================================== */
.about-layout {
    display: flex;
    gap: 50px;
    max-width: 1500px;
    margin: 40px auto;
    padding: 40px 30px;
    min-height: 60vh;
}

.about-sidebar {
    width: 320px;
    flex-shrink: 0;
}

.tab-nav-vertical {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(10,10,26,0.9);
    border: 1px solid rgba(0,255,247,0.15);
    border-radius: 8px;
    overflow: hidden;
}

.tab-nav-vertical li {
    margin: 0;
    border-bottom: 1px solid rgba(0,255,247,0.08);
}

.tab-nav-vertical li:last-child {
    border-bottom: none;
}

.tab-nav-vertical li a {
    display: block;
    padding: 24px 36px;
    color: #8090b0;
    text-decoration: none;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    font-family: var(--font-display);
    border-left: 3px solid transparent;
}

.tab-nav-vertical li a:hover {
    color: #00fff7;
    background: rgba(0,255,247,0.05);
    border-left-color: rgba(0,255,247,0.3);
}

.tab-nav-vertical li.active a,
.tab-nav-vertical li a.now {
    color: #00fff7;
    background: rgba(0,255,247,0.08);
    border-left-color: #00fff7;
    text-shadow: 0 0 10px rgba(0,255,247,0.3);
}

.about-content-area {
    flex: 1;
    min-width: 0;
}

@media (max-width: 768px) {
    .about-layout {
        flex-direction: column;
        padding: 20px 15px;
    }
    .about-sidebar {
        width: 100%;
    }
    .tab-nav-vertical {
        display: flex;
        flex-wrap: wrap;
        border: none;
        background: none;
        gap: 5px;
    }
    .tab-nav-vertical li {
        border: 1px solid rgba(0,255,247,0.15);
        border-radius: 6px;
        flex: 1;
        min-width: 100px;
    }
    .tab-nav-vertical li a {
        padding: 12px 16px;
        font-size: 14px;
        border-left: none;
        text-align: center;
    }
    .tab-nav-vertical li.active a {
        border-left: none;
    }
}

/* ========================================
   标题样式
   ======================================== */
.biaoti {
    margin-top: 20px;
}

.biaoti h2,
.biaoti p,
.biaoti span {
    text-align: center;
}

.biaoti h2 {
    color: #ffffff;
    font-weight: 700;
    font-size: 42px;
    letter-spacing: 4px;
    font-family: var(--font-display);
    text-shadow: 0 0 20px rgba(0, 255, 247, 0.3);
}

.biaoti p {
    color: #8090b0;
    line-height: 50px;
    font-size: 20px;
}

.biaoti span {
    border-bottom: 2px solid #00fff7;
    color: #00fff7;
    font-weight: bold;
    font-size: 22px;
    padding-bottom: 6px;
    text-shadow: 0 0 10px rgba(0, 255, 247, 0.3);
    box-shadow: 0 2px 10px rgba(0, 255, 247, 0.1);
}

.english {
    text-align: center;
    color: var(--cyber-purple);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: var(--font-display);
    text-shadow: 0 0 8px rgba(179, 0, 255, 0.3);
}

.line {
    border-bottom: 1px solid rgba(0, 255, 247, 0.1);
    margin-top: -1px;
}

.mt {
    margin-top: 20px;
}

/* ========================================
   作品展示
   ======================================== */
.recent-work-wrap img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 4px 4px 0 0;
}

.recent-work-wrap {
    border: 1px solid rgba(0, 255, 247, 0.15);
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
    background: #0a0a1a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 255, 247, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.recent-work-wrap:hover {
    box-shadow: 0 8px 30px rgba(0, 255, 247, 0.15), 0 0 30px rgba(179, 0, 255, 0.1);
    border-color: rgba(0, 255, 247, 0.4);
}

.recent-work-wrap img:hover {
    opacity: .85;
}

/* ========================================
   更多按钮
   ======================================== */
.more {
    margin: 0 auto;
    display: block;
    width: 180px;
    height: 44px;
    text-align: center;
    line-height: 40px;
    color: #00fff7;
    background: transparent;
    border: 1px solid #00fff7;
    border-radius: 2px;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 2px;
    box-shadow: 0 0 10px rgba(0, 255, 247, 0.2);
    font-family: var(--font-display);
    position: relative;
    text-transform: uppercase;
    font-size: 13px;
}

.more:hover {
    background: linear-gradient(135deg, #00fff7 0%, #b300ff 100%);
    color: #050510;
    box-shadow: 0 0 30px rgba(0, 255, 247, 0.5), 0 0 60px rgba(179, 0, 255, 0.3);
    transform: translateY(-2px);
    border-color: transparent;
}

/* ========================================
   新闻区域
   ======================================== */
.news {
    background: linear-gradient(135deg, #050510 0%, #0a0a1a 100%);
    padding: 50px 0 50px 0;
    overflow: hidden;
    border-top: 1px solid rgba(0, 255, 247, 0.1);
    border-bottom: 1px solid rgba(0, 255, 247, 0.1);
}

.newtit {
    width: auto;
    height: auto;
    border: none;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.newtit::before {
    display: none;
}

.newtit h2 {
    line-height: 1.2;
    font-size: 36px;
    color: #00fff7;
    text-align: center;
    font-weight: 700;
    font-family: var(--font-display);
    text-shadow: 0 0 15px rgba(0, 255, 247, 0.4);
    margin: 0 0 6px 0;
}

.newtit span {
    display: block;
    font-size: 14px;
    color: #b300ff;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 5px;
    font-weight: 400;
    font-family: var(--font-display);
    text-shadow: 0 0 8px rgba(179, 0, 255, 0.4);
    background: none;
    width: auto;
    padding: 0;
    border-radius: 0;
    margin: 0 auto;
}

/* ========================================
   标签页导航
   ======================================== */
.nav-tabs {
    border: 0;
}

.nav > li > a {
    background: transparent;
    border: 1px solid rgba(0, 255, 247, 0.25);
    color: #8090b0;
    border-radius: 2px;
    padding: 5px 30px;
    transition: all 0.3s ease;
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.nav > li > a:hover {
    background: rgba(0, 255, 247, 0.08);
    border: 1px solid #00fff7;
    color: #00fff7;
    box-shadow: 0 0 15px rgba(0, 255, 247, 0.15);
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
    background: linear-gradient(135deg, #00fff7 0%, #b300ff 100%);
    border: 1px solid #00fff7;
    color: #050510;
    box-shadow: 0 0 25px rgba(0, 255, 247, 0.3), 0 0 50px rgba(179, 0, 255, 0.15);
}

/* 新闻中心标签页样式 - 更具体的选择器 */
.newsul li a {
    background: transparent !important;
    border: 1px solid rgba(0, 255, 247, 0.25) !important;
    color: #8090b0 !important;
    border-radius: 2px;
    padding: 5px 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.newsul li a:hover {
    background: rgba(0, 255, 247, 0.08) !important;
    border: 1px solid #00fff7 !important;
    color: #00fff7 !important;
    box-shadow: 0 0 15px rgba(0, 255, 247, 0.15) !important;
}

.newsul li.active a,
.newsul li.active a:focus,
.newsul li.active a:hover,
.newsul li a.active-tab {
    background: linear-gradient(135deg, #00fff7 0%, #b300ff 100%) !important;
    border: 1px solid #00fff7 !important;
    color: #050510 !important;
    box-shadow: 0 0 25px rgba(0, 255, 247, 0.3) !important;
}

.tab-content {
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.tab-content > .tab-pane {
    display: none;
    position: relative;
}

.tab-content > .active {
    display: block;
}

.newstext {
    text-align: center;
    color: #9ab0d0;
    margin: 0 0 50px 0;
    font-size: 18px;
    line-height: 1.8;
}

/* 新闻区块（首页竖排双栏） */
.news-block {
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(10,10,26,0.6);
    border: 1px solid rgba(0, 255, 247, 0.08);
    border-radius: 12px;
}

.news-block:last-of-type {
    margin-bottom: 0;
}

.news-block-title {
    text-align: center;
    margin: 0 0 35px 0;
    font-size: 28px;
    font-weight: 700;
    color: #00fff7;
    letter-spacing: 3px;
    font-family: var(--font-display);
    text-shadow: 0 0 12px rgba(0, 255, 247, 0.3);
}

.news-block-title span {
    display: inline-block;
    padding: 8px 30px;
    border-bottom: 2px solid #00fff7;
}

.news-empty {
    padding: 50px 20px;
    text-align: center;
    color: var(--cyber-text-muted);
    background: rgba(10,10,26,0.5);
    border-radius: 12px;
    border: 1px solid rgba(0,255,247,0.08);
    font-size: 18px;
}

.news-empty .fa-inbox {
    font-size: 52px;
    margin-bottom: 18px;
    display: block;
    color: rgba(0,255,247,0.12);
}

.newslist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.newslist li {
    line-height: 30px;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 255, 247, 0.06);
    padding: 5px 0;
}

.newslist li a {
    display: flex !important;
    align-items: baseline;
    gap: 12px;
}

.newslist i {
    font-style: normal;
    color: #d0d8e8;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.newslist span {
    color: #b300ff;
    font-size: 15px;
    font-family: var(--font-display);
    white-space: nowrap;
    flex-shrink: 0;
}

.newsul {
    margin: 0;
    width: auto;
    text-align: center;
}

.newsul li {
    display: inline-block;
    margin-right: 0 !important;
    float: unset;
}

.newsul li + li {
    margin-left: 15px;
}

/* ========================================
   合作伙伴
   ======================================== */
.partner img {
    width: 100%;
    border: 1px solid rgba(0, 255, 247, 0.12);
    margin: 10px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
    filter: grayscale(0.5) brightness(0.8);
}

.partner img:hover {
    border-color: #00fff7;
    filter: grayscale(0) brightness(1);
    box-shadow: 0 0 25px rgba(0, 255, 247, 0.2), 0 0 50px rgba(179, 0, 255, 0.1);
}

/* ========================================
   关于我们区域
   ======================================== */
.add {
    background: rgba(10, 10, 26, 0.6);
    padding: 20px 0;
    border-top: 1px solid rgba(0, 255, 247, 0.08);
    border-bottom: 1px solid rgba(0, 255, 247, 0.08);
}

.add img {
    width: 100%;
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 247, 0.1);
}

.add h2 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #ffffff;
    font-weight: 700;
    font-family: var(--font-display);
    text-shadow: 0 0 10px rgba(0, 255, 247, 0.3);
}

.add p {
    font-size: 19px;
    line-height: 2.2;
    font-weight: 300;
    color: var(--cyber-text-muted);
}

.add .btn-default {
    background: transparent;
    color: #00fff7;
    border: 1px solid #00fff7;
    margin-top: 15px;
    transition: all 0.3s ease;
    border-radius: 2px;
    padding: 8px 30px;
    box-shadow: 0 0 10px rgba(0, 255, 247, 0.15);
    font-family: var(--font-display);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
}

.add .btn-default:hover {
    background: linear-gradient(135deg, #00fff7 0%, #b300ff 100%);
    border: 1px solid transparent;
    color: #050510;
    box-shadow: 0 0 30px rgba(0, 255, 247, 0.4), 0 0 60px rgba(179, 0, 255, 0.2);
    transform: translateY(-2px);
}

.contact {
    margin-top: 60px;
}

/* ========================================
   页脚 / Footer
   ======================================== */
.copyright {
    padding: 55px 15px;
    background: linear-gradient(180deg, #0a0a1a 0%, #050510 100%);
    border-top: 1px solid rgba(0, 255, 247, 0.15);
    position: relative;
}

.copyright::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00fff7, #b300ff, #ff00aa, transparent);
}

.copy-left {
    color: #00fff7;
    font-size: 30px;
    float: left;
    margin-top: 15px;
}

.copy-left .iconfont {
    font-size: 32px;
    color: #00fff7;
    text-shadow: 0 0 15px rgba(0, 255, 247, 0.5);
}

.copy-left p {
    margin-top: 10px;
    text-align: center;
    color: #8090b0;
}

.kf {
    margin: 15px auto;
    font-size: 13px;
    color: #00fff7;
    border-radius: 2px;
    background: transparent;
    border: 1px solid #00fff7;
    display: block;
    width: 100px;
    text-align: center;
    height: 34px;
    line-height: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 247, 0.15);
    font-family: var(--font-display);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.kf:hover {
    background: linear-gradient(135deg, #00fff7 0%, #b300ff 100%);
    border: 1px solid transparent;
    color: #050510;
    box-shadow: 0 0 25px rgba(0, 255, 247, 0.4), 0 0 50px rgba(179, 0, 255, 0.2);
}

.copy-mid {
    float: left;
    margin-left: 70px;
}

.copy-mid a {
    color: #8090b0;
    font-weight: 300;
    text-align: center;
    display: block;
    transition: color 0.3s ease;
}

.copy-mid a:hover {
    color: #00fff7;
    text-shadow: 0 0 8px rgba(0, 255, 247, 0.3);
}

.copy-mid li {
    float: left;
    width: 160px;
}

.copy-mid h2 {
    text-align: center;
    color: #00fff7;
    font-size: 30px;
    line-height: 56px;
    font-weight: 500;
    letter-spacing: 2px;
    font-family: var(--font-display);
    text-shadow: 0 0 10px rgba(0, 255, 247, 0.3);
}

.copy-right {
    float: right;
    width: 150px;
    text-align: center;
}

.copy-right p {
    color: #8090b0;
    height: 55px;
    line-height: 50px;
    overflow: hidden;
    font-size: 26px;
    font-weight: 300;
}

.copy {
    color: #ffffff;
    line-height: 52px;
    background: #050510;
    text-align: center;
    border-top: 1px solid rgba(0, 255, 247, 0.1);
    font-size: 15px;
    font-family: var(--font-display);
    letter-spacing: 1px;
}

/* ========================================
   全局容器加宽
   ======================================== */
@media (min-width: 1200px) {
    .container {
        width: 1500px;
    }
    .scd {
        max-width: 1500px;
    }
}

/* ========================================
   面包屑导航
   ======================================== */
.pst_bg {
    width: 100%;
    height: 72px;
    background: rgba(10, 10, 26, 0.6);
    border-bottom: 1px solid rgba(0, 255, 247, 0.08);
}

.pst {
    max-width: 1500px;
    width: auto;
    text-align: left;
    margin: 0 auto;
    height: 72px;
    line-height: 72px;
    padding-left: 24px;
    font-size: 18px;
    color: var(--cyber-text-secondary);
}

.pst a {
    color: #8090b0;
    transition: color 0.3s ease;
}

.pst a:hover {
    color: #00fff7;
    text-shadow: 0 0 8px rgba(0, 255, 247, 0.3);
}

.pst .fa-home {
    font-size: 18px;
    color: #00fff7;
    text-shadow: 0 0 8px rgba(0, 255, 247, 0.3);
}

/* ========================================
   侧边栏 / 内容区
   ======================================== */
.scd .scd_l {
    width: 210px;
    float: left;
    position: relative;
    z-index: 99;
}

.scd_l .s_name {
    width: 260px;
    height: 56px;
    line-height: 56px;
    background: linear-gradient(135deg, #00fff7 0%, #b300ff 100%);
    position: relative;
    text-indent: 12px;
    font-size: 20px;
    color: #050510;
    font-weight: 500;
    letter-spacing: 2px;
    font-family: var(--font-display);
    border-radius: 4px 0 0 0;
    box-shadow: 0 0 20px rgba(0, 255, 247, 0.2);
}

.scd_l .s_name img {
    vertical-align: top;
    margin-top: 18px;
}

.scd_l .s_name i {
    display: block;
    width: 30px;
    height: 31px;
    position: absolute;
    right: -30px;
    bottom: -1px;
}

.scd_l .s_nav {
    width: 260px;
    background: rgba(10, 10, 26, 0.9);
    margin-bottom: 20px;
    border-radius: 0 0 4px 4px;
    border: 1px solid rgba(0, 255, 247, 0.1);
    border-top: none;
}

.scd_l .s_nav li {
    margin: 0px 15px;
    height: 56px;
    line-height: 56px;
    border-bottom: 1px solid rgba(0, 255, 247, 0.06);
}

.scd_l .s_nav li a {
    height: 56px;
    line-height: 56px;
    font-size: 19px;
    display: block;
    *display: inline;
    zoom: 1;
    color: var(--cyber-text-muted);
    transition: all 0.3s ease;
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.scd_l .s_nav li.now a,
.scd_l .s_nav li a:hover {
    color: #00fff7;
    text-shadow: 0 0 12px rgba(0, 255, 247, 0.3);
}

.s_nav .now a {
    color: #00fff7;
}

.s_nav a:hover {
    color: #00fff7;
}

.scd_l .s_nav li:last-child {
    border-bottom: 0;
}

.scd .scd_r {
    width: calc(100% - 300px);
    float: right;
    padding: 0 0 0 40px;
}

.scd_r .r_name {
    width: 100%;
    height: 40px;
    border-bottom: 1px solid rgba(0, 255, 247, 0.12);
    position: relative;
}

.r_name span {
    display: inline-block;
    *display: inline;
    zoom: 1;
    height: 44px;
    line-height: 44px;
    font-size: 22px;
    color: #00fff7;
    border-bottom: 2px solid #00fff7;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(0, 255, 247, 0.3);
    font-family: var(--font-display);
    letter-spacing: 1px;
}

/* ========================================
   关于我们 - 内容
   ======================================== */
.about {
    width: 100%;
    padding: 40px 0;
    font-size: 20px;
    color: var(--cyber-text-muted);
    line-height: 2.2;
    text-align: left;
}

.about img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 247, 0.1);
}

.about > div > p {
    line-height: 40px;
}

/* ========================================
   分页
   ======================================== */
.pages {
    width: 100%;
    text-align: center;
    height: 30px;
    line-height: 30px;
    margin-bottom: 10px;
}

.pages a {
    display: inline-block;
    *display: inline;
    zoom: 1;
    height: 30px;
    line-height: 30px;
    vertical-align: top;
    font-size: 16px;
    color: #8090b0;
    margin: 0 3px;
    transition: color 0.3s ease;
    font-family: var(--font-display);
}

.pages a:hover {
    color: #00fff7;
    text-shadow: 0 0 8px rgba(0, 255, 247, 0.3);
}

.pages .now {
    color: #00fff7;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 255, 247, 0.4);
}

.pages .prev,
.pages .next {
    color: #00fff7;
    background: transparent;
    padding: 0 10px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 247, 0.3);
}

.pages .prev:hover,
.pages .next:hover {
    background: linear-gradient(135deg, #00fff7 0%, #b300ff 100%);
    color: #050510;
    box-shadow: 0 0 20px rgba(0, 255, 247, 0.3), 0 0 40px rgba(179, 0, 255, 0.15);
    border-color: transparent;
}

/* ========================================
   新闻列表
   ======================================== */
.new {
    width: 100%;
    padding: 30px 0;
}

.new dl {
    width: 100%;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px dashed rgba(0, 255, 247, 0.1);
    padding-left: 260px;
    overflow: hidden;
    font-size: 18px;
}

.new dl dt,
.new dl dt img {
    width: 235px;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    float: left;
    vertical-align: top;
}

.new dl dt {
    border: 2px solid rgba(0, 255, 247, 0.15);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 255, 247, 0.05);
}

.new dl dt:hover {
    border-color: rgba(0, 255, 247, 0.4);
    box-shadow: 0 0 20px rgba(0, 255, 247, 0.1);
}

.new dl dd {
    width: 595px;
    float: right;
    text-align: left;
}

.new dl dd .title {
    width: 100%;
    height: 30px;
    line-height: 30px;
    position: relative;
}

.new dl dd .title p {
    width: 65%;
    height: 30px;
    line-height: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 17px;
    color: #8090b0;
    transition: color 0.3s ease;
    font-family: var(--font-body);
}

.new dl dd .title p:hover {
    color: #00fff7;
    text-shadow: 0 0 8px rgba(0, 255, 247, 0.3);
}

.new dl dd .title em {
    font-style: normal;
    display: block;
    text-align: right;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 14px;
    color: #b300ff;
    font-family: var(--font-display);
}

.new dl dd .des {
    height: 62px;
    overflow: hidden;
    font-size: 18px;
    color: var(--cyber-text-muted);
    line-height: 270%;
    text-indent: 2em;
}

.new dl dd .more1 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    width: 82px;
    height: 24px;
    border: 1px solid #00fff7;
    background-color: transparent;
    text-align: center;
    line-height: 24px;
    font-size: 14px;
    color: #00fff7;
    transition: all ease .3s;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(0, 255, 247, 0.15);
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.new dl dd .more1:hover {
    background: linear-gradient(135deg, #00fff7 0%, #b300ff 100%);
    color: #050510;
    border: 1px solid transparent;
    box-shadow: 0 0 20px rgba(0, 255, 247, 0.3), 0 0 40px rgba(179, 0, 255, 0.15);
}

/* ========================================
   联系信息
   ======================================== */
.lianxi {
    margin: 15px 0;
}

.lianxi p {
    line-height: 30px;
    color: var(--cyber-text-muted);
}

.lianxi img {
    margin: 15px 0;
    display: block;
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 247, 0.1);
}

.lianxi span {
    color: #00fff7;
    text-shadow: 0 0 8px rgba(0, 255, 247, 0.3);
}

.sub {
    background: transparent;
    color: #00fff7;
    border: 1px solid #00fff7;
    margin-top: 15px;
    padding: 8px 24px;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 247, 0.15);
    cursor: pointer;
    font-family: var(--font-display);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
}

.sub:hover {
    background: linear-gradient(135deg, #00fff7 0%, #b300ff 100%);
    color: #050510;
    box-shadow: 0 0 30px rgba(0, 255, 247, 0.4), 0 0 60px rgba(179, 0, 255, 0.2);
    transform: translateY(-2px);
    border-color: transparent;
}

.new dl .newcontent {
    width: 855px;
}

.new dl .newcontent .des {
    height: 45px;
}

.new dl dd .des a {
    color: var(--cyber-text-muted);
    transition: color 0.3s ease;
}

.new dl dd .des a:hover {
    color: #00fff7;
    text-shadow: 0 0 8px rgba(0, 255, 247, 0.3);
}

/* ========================================
   详情页
   ======================================== */
.detail {
    padding-bottom: 25px;
}

.detail h2 {
    text-align: center;
    font-size: 28px;
    margin-top: 28px;
    color: #ffffff;
    font-weight: 700;
    font-family: var(--font-display);
    text-shadow: 0 0 15px rgba(0, 255, 247, 0.3);
}

.detail .lj {
    color: #b300ff;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 30px;
    font-size: 14px;
    font-family: var(--font-display);
}

.detail .lj a {
    color: #8090b0;
    transition: color 0.3s ease;
}

.detail .lj a:hover {
    color: #00fff7;
    text-shadow: 0 0 8px rgba(0, 255, 247, 0.3);
}

.pagebox {
    border-top: 1px dashed rgba(0, 255, 247, 0.1);
    margin-bottom: 50px;
}

.pagebox a {
    width: 50%;
    float: left;
    line-height: 45px;
    color: #8090b0;
    transition: color 0.3s ease;
    font-family: var(--font-body);
}

.pagebox a:hover {
    color: #00fff7;
    text-shadow: 0 0 8px rgba(0, 255, 247, 0.3);
}

.pagebox .down {
    float: right;
    text-align: right;
}

/* ========================================
   作品展示区域
   ======================================== */
#recent-works .col-xs-12.col-sm-4.col-md-4 {
    padding: 0;
}

#recent-works {
    background-size: cover;
    padding-bottom: 70px;
}

.recent-work-wrap {
    position: relative;
    display: block;
}

.recent-work-wrap img {
    width: 100%;
}

.recent-work-wrap .recent-work-inner {
    top: 0;
    background: transparent;
    opacity: 1;
    width: 100%;
    border-radius: 0;
    margin-bottom: 0;
    text-align: center;
}

.recent-work-wrap .recent-work-inner h3 {
    margin: 10px 0;
}

.recent-work-wrap .recent-work-inner h3 a {
    font-size: 24px;
    color: #00fff7;
    transition: color 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 255, 247, 0.3);
}

.recent-work-wrap .recent-work-inner h3 a:hover {
    color: #ff00aa;
    text-shadow: 0 0 15px rgba(255, 0, 170, 0.4);
}

.recent-work-wrap .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(0, 255, 247, 0.1) 0%, rgba(5, 5, 16, 0.95) 100%);
    color: #fff;
    vertical-align: middle;
    -webkit-transition: opacity 500ms;
    -moz-transition: opacity 500ms;
    -o-transition: opacity 500ms;
    transition: opacity 500ms;
    padding: 30px;
}

.recent-work-wrap .overlay .preview {
    bottom: 0;
    display: inline-block;
    height: 35px;
    line-height: 35px;
    border-radius: 2px;
    background: transparent;
    text-align: center;
    color: #00fff7;
    border: 1px solid #00fff7;
    padding: 0 15px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 247, 0.15);
    font-family: var(--font-display);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 12px;
}

.recent-work-wrap .overlay .preview:hover {
    background: linear-gradient(135deg, #00fff7 0%, #b300ff 100%);
    color: #050510;
    box-shadow: 0 0 25px rgba(0, 255, 247, 0.3), 0 0 50px rgba(179, 0, 255, 0.15);
    border-color: transparent;
}

.recent-work-wrap:hover .overlay {
    opacity: 0.9;
}

/* ========================================
   产品展示
   ======================================== */
.scd_r .pro img {
    width: 100%;
    border-radius: 4px 4px 0 0;
}

.scd_r .pro p {
    text-align: center;
    background: rgba(10, 10, 26, 0.9);
    line-height: 30px;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #8090b0;
    border-radius: 0 0 4px 4px;
    border: 1px solid rgba(0, 255, 247, 0.1);
    border-top: none;
    font-family: var(--font-body);
}

.scd_r .pro {
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 255, 247, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 247, 0.08);
}

.scd_r .pro:hover {
    box-shadow: 0 8px 30px rgba(0, 255, 247, 0.15), 0 0 30px rgba(179, 0, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(0, 255, 247, 0.3);
}

/* ========================================
   轮播 / Slider
   ======================================== */
#slider {
    width: 100%;
    margin: 0 auto;
}

/* ========================================
   留言板
   ======================================== */
.liuyan label {
    font-weight: 300;
    color: #8090b0;
}

.liuyan input,
.liuyan textarea {
    background: rgba(10, 10, 26, 0.9);
    border: 1px solid rgba(0, 255, 247, 0.2);
    color: #c0d0e0;
    border-radius: 2px;
    padding: 8px 12px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.liuyan input:focus,
.liuyan textarea:focus {
    border-color: #00fff7;
    box-shadow: 0 0 15px rgba(0, 255, 247, 0.15);
    outline: none;
}

/* ========================================
   表单元素通用
   ======================================== */
input, textarea, select, button {
    font-family: var(--font-body);
}

/* ========================================
   响应式布局 - 大屏
   ======================================== */
@media (min-width: 768px) {
    .navbar-brand > img {
        max-width: 280px;
        height: auto;
    }
    .jSlider img {
        height: 800px;
        object-fit: contain;
    }
}

@media (min-width: 768px) and (max-width: 980px) {
    .col-4 .item {
        width: 47%;
        margin-right: 2%;
        margin-bottom: 2%;
    }
    .product {
        display: none;
    }
    .img {
        display: none;
    }
    .copyright {
        display: none;
    }
}

/* ========================================
   响应式布局 - 平板
   ======================================== */
@media (max-width: 768px) {
    .jSlider img {
        height: 500px;
        object-fit: contain;
    }
    .productdetail img {
        width: 100%;
        object-fit: cover;
    }
    .copy {
        padding: 15px 0;
    }
    .newslist i {
    }
    .nav > li > a {
        padding: 5px 15px;
    }
    .nav > li {
        margin-right: 18px;
    }
    .f-box {
        padding: 20px 0;
        min-height: 220px;
        border-radius: 4px;
    }
    .f-box h2 {
        margin-top: 10px;
        font-size: 22px;
    }
    .f-box .yw {
        font-size: 16px;
    }
    .biaoti h2 {
        font-size: 26px;
    }
    .iconfont {
        font-size: 40px;
    }
    .f-box .f-text {
        padding: 0 5px;
    }
    .navbar-brand {
        display: block;
        margin-top: 5px;
    }
    .navbar-brand > img {
        width: 120px;
    }
    .navbar-toggle {
        margin-top: 12px;
        border: 1px solid rgba(0, 255, 247, 0.3);
    }
    .navbar-toggle .icon-bar {
        background: #00fff7;
    }
    .header-frontend .navbar-collapse ul.navbar-nav {
        float: none;
        margin-left: 0;
    }
    .header-frontend .navbar-nav > li > a {
        line-height: 30px;
        border-radius: 5px;
        -webkit-border-radius: 5px;
    }
    .header-frontend .nav li a:hover,
    .header-frontend .nav li a:focus,
    .header-frontend .nav li a.dropdown-toggle:focus,
    .header-frontend .nav li a.dropdown-toggle .dropdown-menu li a:hover,
    .header-frontend .nav li.active a,
    .header-frontend .dropdown-menu li a:hover {
        color: #00fff7 !important;
    }
    .header-frontend .navbar-nav > li {
        padding: 0;
        margin-bottom: 2px;
        line-height: 30px;
    }
    .header-frontend .nav li ul.dropdown-menu li a {
        margin-left: 0px;
        color: #8090b0 !important;
    }
    .header-frontend .nav li .dropdown-menu li a:hover,
    .header-frontend .nav li .dropdown-menu li.active a {
        color: #00fff7 !important;
    }
    .purchase-btn,
    .about-testimonial {
        margin-top: 10px;
    }
    .breadcrumb.pull-right {
        padding: 0;
    }
    .search,
    .bx-controls-direction {
        display: none;
    }
    .tweet-box {
        margin-bottom: 20px;
    }
    .property img {
        width: 80%;
    }
    .purchase-btn,
    .about-testimonial {
        margin-top: 0;
    }
    .purchase-btn {
        line-height: 98px;
    }
    .social-link-footer li a {
        font-size: 16px;
        height: 40px;
        width: 40px;
    }
    .navbar-header {
        float: none;
        text-align: center;
        width: 100%;
    }
    .navbar-brand {
        float: none;
    }
    .carousel-control {
        font-size: 45px;
        line-height: 70px;
    }
    .btn,
    .form-control {
        margin-bottom: 10px;
    }
}

/* ========================================
   响应式布局 - 手机
   ======================================== */
@media (max-width: 480px) {
    .header-frontend .navbar {
        min-height: 60px;
    }
    .navbar-toggle {
        margin-right: -10px;
    }
    .header-frontend .nav li .dropdown-menu li a:hover {
        color: #00fff7 !important;
    }
    .navbar-brand {
        margin-top: 10px !important;
        float: left !important;
    }
    .col-4 .item {
        width: 100%;
        margin-right: 0%;
        margin-bottom: 2%;
    }
    .breadcrumb.pull-right {
        float: left !important;
        margin-top: 10px;
        padding: 0;
    }
    .carousel-control {
        font-size: 23px;
        line-height: 38px;
    }
}

/* ========================================
   响应式布局 - 中屏
   ======================================== */
@media screen and (max-width: 770px) {
    .scd .scd_r,
    .scd .scd_l {
        width: 100%;
    }
    .scd_r {
        padding: 20px !important;
    }
    .scd_l .s_name i {
        display: none;
    }
    .scd_l .s_name {
        width: 100%;
        background-size: 100% 100%;
        text-align: left;
    }
    .scd_l .s_name img {
        margin-left: 30px;
    }
    .scd_l .s_nav {
        width: 480px;
    }
    .scd_l .s_nav li a {
        width: 450px;
    }
    .pst {
        text-align: left;
        width: 480px;
    }
    .scd {
        width: auto;
        max-width: 1200px;
    }
    .new dl dd {
        width: 100%;
    }
    .new dl dt,
    .new dl dt img {
        width: 314px;
        height: auto;
        aspect-ratio: 16 / 9;
    }
    .lianxi img {
        width: 100%;
    }
    .new dl .newcontent {
        width: 100%;
    }
    .detail img {
        width: 100%;
    }
    .pagebox a {
        width: 100%;
        line-height: 30px;
    }
    .pagebox .down {
        text-align: left;
    }
    .pagebox {
        margin-top: 20px;
    }
}

@media (max-width: 713px) {
    #slider {
        width: 100%;
        height: auto;
        border: none;
        margin-top: 0;
        -webkit-border-radius: 0;
        border-radius: 0;
    }
}

/* ========================================
   轮播容器尺寸
   ======================================== */

.intro_box p {
    font-size: 21px;
    color: var(--cyber-text-muted);
    line-height: 2.2;
    margin: 0;
    padding: 0 10px;
}

/* ========================================
   轮播核心样式
   ======================================== */
.simple-slider {
    width: 100% !important;
    height: 60vh !important;
    min-height: 360px;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    visibility: visible !important;
    position: relative !important;
    overflow: hidden !important;
}
.slider-dynamic, .slider-default {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
}
.slider-dynamic > a, .slider-default > img {
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1 !important;
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.slider-dynamic > a.active, .slider-default > img.active {
    display: block !important;
    z-index: 2 !important;
    opacity: 1 !important;
    transition: opacity 0.5s ease !important;
}
.slider-dynamic img, .slider-default img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border: none !important;
}
.slider-nav {
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    right: 0 !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    display: flex !important;
    justify-content: space-between !important;
    padding: 0 20px !important;
}
.slider-nav button {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background-color: rgba(0, 0, 0, 0.3) !important;
    color: white !important;
    border: none !important;
    cursor: pointer !important;
    font-size: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background-color 0.3s !important;
}
.slider-nav button:hover {
    background-color: rgba(0, 0, 0, 0.6) !important;
}
.slider-indicators {
    position: absolute !important;
    bottom: 20px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 10 !important;
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
}
.slider-indicator {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.5) !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
}
.slider-indicator.active {
    background-color: white !important;
    transform: scale(1.2) !important;
}
@media (max-width: 1200px) { .simple-slider { height: 55vh !important; } }
@media (max-width: 992px) { .simple-slider { height: 50vh !important; } }
@media (max-width: 768px) {
    .simple-slider { height: 45vh !important; min-height: 300px; }
    .slider-nav button { width: 40px !important; height: 40px !important; font-size: 16px !important; }
    .slider-indicator { width: 10px !important; height: 10px !important; }
}
@media (max-width: 480px) { .simple-slider { height: 40vh !important; min-height: 250px; } }

/* ========================================
   导航栏 Logo
   ======================================== */
.navbar-brand img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}
@media (max-width: 768px) { .navbar-brand img { height: 40px; max-width: 150px; } }
@media (max-width: 480px) { .navbar-brand img { height: 35px; max-width: 120px; } }

/* 下拉菜单 */
.dropdown-menu > li > a {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 1px;
    color: #c0d0e0;
}

/* ========================================
   浮动二维码
   ======================================== */
.float-qrcode {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 999;
    width: 120px;
    background: rgba(10,10,26,0.95);
    border: 2px solid rgba(0,255,247,0.3);
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,255,247,0.15);
    transition: all 0.3s ease;
}
.float-qrcode:hover {
    box-shadow: 0 0 30px rgba(0,255,247,0.3);
    transform: translateY(-4px);
}
.float-qrcode img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 6px;
    display: block;
    margin: 0 auto;
}
.float-qrcode-tip {
    color: #00fff7;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-shadow: 0 0 8px rgba(0,255,247,0.3);
}
@media (max-width: 768px) {
    .float-qrcode { right: 10px; bottom: 80px; width: 100px; padding: 8px; }
    .float-qrcode img { width: 80px; height: 80px; }
    .float-qrcode-tip { font-size: 12px; }
}

/* ========================================
   联系信息页
   ======================================== */
.contact-info-card {
    background: rgba(10,10,26,0.9);
    border-radius: 12px;
    padding: 30px;
    margin-top: 20px;
    border: 1px solid rgba(0,255,247,0.15);
}
.contact-info-card p {
    color: #c0d0e0;
    font-size: 19px;
    line-height: 2.2;
    margin: 0;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,255,247,0.08);
}
.contact-info-card p:last-child { border-bottom: none; }
.contact-label {
    color: #00fff7;
    font-weight: 600;
    display: inline-block;
    min-width: 90px;
    font-size: 19px;
    text-shadow: 0 0 8px rgba(0,255,247,0.3);
    font-family: var(--font-display);
    letter-spacing: 2px;
}

/* ========================================
   在线留言表单
   ======================================== */
.message-form {
    background: rgba(10,10,26,0.9);
    border-radius: 12px;
    padding: 60px 80px;
    margin-top: 20px;
    border: 1px solid rgba(0,255,247,0.15);
}
.message-form .form-row {
    display: flex;
    align-items: center;
    margin-bottom: 36px;
}
.message-form .form-row label {
    flex: 0 0 120px;
    color: #00fff7;
    font-weight: 600;
    font-size: 28px;
    text-shadow: 0 0 8px rgba(0,255,247,0.3);
    text-align: right;
    padding-right: 24px;
    white-space: nowrap;
}
.message-form .form-row input,
.message-form .form-row textarea {
    flex: 1;
    background: rgba(10,10,26,0.9);
    border: 1px solid rgba(0,255,247,0.18);
    color: #e0e8f0;
    border-radius: 8px;
    padding: 24px 28px;
    font-size: 28px;
    transition: border-color 0.3s ease;
}
.message-form .form-row input:focus,
.message-form .form-row textarea:focus {
    border-color: #00fff7;
    box-shadow: 0 0 14px rgba(0,255,247,0.18);
    outline: none;
}
.message-form .form-row input::placeholder,
.message-form .form-row textarea::placeholder {
    color: rgba(192,208,224,0.4);
}
.message-form .submit-btn {
    background: linear-gradient(135deg, #00fff7, #b300ff);
    color: #050510;
    border: none;
    padding: 20px 50px;
    border-radius: 8px;
    font-size: 26px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 3px;
}
.message-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,255,247,0.3);
}
.message-form .submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
@media (max-width: 600px) {
    .message-form .form-row { flex-direction: column; align-items: flex-start; }
    .message-form .form-row label { flex: none; text-align: left; padding-right: 0; padding-bottom: 6px; }
    .message-form .form-row input, .message-form .form-row textarea { width: 100%; font-size: 18px; }
}

/* ========================================
   关于我们页面
   ======================================== */
.about-page { max-width: 1500px; margin: 40px auto; padding: 0 30px; }
.about-section { margin-bottom: 60px; background: rgba(10,10,26,0.85); border: 1px solid rgba(0,255,247,0.12); border-radius: 14px; overflow: hidden; }
.about-section-header { background: linear-gradient(135deg, rgba(0,255,247,0.08) 0%, rgba(179,0,255,0.06) 100%); padding: 28px 40px; border-bottom: 1px solid rgba(0,255,247,0.12); }
.about-section-header h2 { margin: 0; font-size: 28px; font-weight: 700; color: #00fff7; font-family: var(--font-display); letter-spacing: 3px; text-shadow: 0 0 15px rgba(0,255,247,0.3); }
.about-section-header .en { display: block; font-size: 13px; color: #b300ff; text-transform: uppercase; letter-spacing: 5px; margin-top: 4px; font-family: var(--font-display); }
.about-section-body { padding: 40px; color: #f0f4ff; }
.about-rich { line-height: 2.2; font-size: 19px; color: #f0f4ff; word-wrap: break-word; word-break: break-word; }
.about-rich p, .about-rich div, .about-rich span, .about-rich li { white-space: pre-wrap; word-wrap: break-word; }
.about-rich p { margin: 20px 0; text-align: justify; text-indent: 2em; }
.about-rich p:first-of-type { text-indent: 0; font-size: 22px; color: #ffffff; font-weight: 600; margin-bottom: 25px; }
.about-rich h1, .about-rich h2, .about-rich h3, .about-rich h4, .about-rich h5, .about-rich h6 { color: #ffffff; margin: 30px 0 15px 0; font-weight: 700; line-height: 1.4; position: relative; padding-left: 15px; }
.about-rich h1::before, .about-rich h2::before, .about-rich h3::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 60%; background: linear-gradient(180deg, #00fff7, #b300ff); border-radius: 2px; }
.about-rich h1 { font-size: 28px; } .about-rich h2 { font-size: 24px; } .about-rich h3 { font-size: 20px; }
.about-rich img { max-width: 100%; height: auto; display: block; margin: 25px auto; border-radius: 8px; }
.about-rich ul, .about-rich ol { margin: 20px 0; padding-left: 40px; }
.about-rich li { margin: 12px 0; line-height: 1.8; }
.about-rich blockquote { border-left: 5px solid #00fff7; padding: 20px 25px; margin: 25px 0; background: rgba(179,0,255,0.05); border-radius: 0 8px 8px 0; font-style: italic; }
.about-rich table { width: 100%; border-collapse: collapse; margin: 25px 0; border-radius: 8px; overflow: hidden; }
.about-rich th, .about-rich td { border: 1px solid rgba(0,255,247,0.15); padding: 15px; text-align: left; }
.about-rich th { background: linear-gradient(135deg, #00fff7, #b300ff); color: #050510; font-weight: 600; text-align: center; }
.about-rich tr:nth-child(even) { background: rgba(0,255,247,0.03); }
.about-rich a { color: #00fff7; text-decoration: none; border-bottom: 1px solid transparent; transition: all 0.3s ease; }
.about-rich a:hover { color: #b300ff; border-bottom-color: #b300ff; }
.partner-intro { margin-bottom: 30px; padding: 20px 24px; background: rgba(10,10,26,0.6); border-left: 4px solid #00fff7; border-radius: 4px; }
.partner-intro p { margin: 0; color: #f0f4ff; line-height: 1.8; font-size: 18px; }
.partner-item { margin-bottom: 30px; }
.partner-card { background: rgba(10,10,26,0.9); border-radius: 10px; overflow: hidden; height: 160px; width: 100%; position: relative; transition: transform .2s ease, box-shadow .2s ease; text-decoration: none; border: 1px solid rgba(0,255,247,0.15); }
.partner-card:hover { transform: translateY(-4px); box-shadow: 0 8px 18px rgba(0,255,247,0.12); text-decoration: none; border-color: #00fff7; }
.partner-card img { width: 100% !important; height: 100% !important; object-fit: contain !important; display: block; padding: 12px; box-sizing: border-box; filter: grayscale(10%); transition: filter .2s ease, transform .2s ease; margin: 0 !important; }
.partner-card:hover img { filter: grayscale(0%); transform: scale(1.03); }
.partner-showcase .row { display: flex; flex-wrap: wrap; justify-content: center; }
.no-partners { text-align: center; padding: 80px 20px; background: rgba(10,10,26,0.5); border-radius: 14px; border: 1px solid rgba(0,255,247,0.08); color: var(--cyber-text-muted); font-size: 18px; }
.about-nav { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 40px; padding: 25px; background: rgba(10,10,26,0.7); border-radius: 12px; border: 1px solid rgba(0,255,247,0.1); }
.about-nav a { display: inline-block; padding: 10px 22px; color: #8090b0; text-decoration: none; border: 1px solid rgba(0,255,247,0.2); border-radius: 6px; font-size: 16px; font-weight: 600; font-family: var(--font-display); letter-spacing: 1px; transition: all 0.3s ease; }
.about-nav a:hover { color: #00fff7; border-color: #00fff7; background: rgba(0,255,247,0.05); box-shadow: 0 0 12px rgba(0,255,247,0.15); }

/* 关于我们 响应式 */
@media (max-width: 768px) {
    .about-page { padding: 0 15px; margin: 20px auto; }
    .about-section-header { padding: 22px 25px; }
    .about-section-header h2 { font-size: 24px; }
    .about-section-body { padding: 25px 20px; }
    .about-rich { font-size: 16px; line-height: 1.9; }
    .about-rich h1 { font-size: 24px; } .about-rich h2 { font-size: 22px; } .about-rich h3 { font-size: 20px; }
    .about-nav a { font-size: 14px; padding: 8px 16px; }
    .partner-card { height: 120px; }
    .partner-card img { height: 100% !important; }
}
@media (max-width: 480px) {
    .about-section-body { padding: 20px 15px; }
    .about-rich { font-size: 14px; }
    .about-rich ul, .about-rich ol { padding-left: 25px; }
    .partner-card { height: 100px; }
    .partner-card img { height: 100% !important; }
}

/* ========================================
   首页 - 项目案例 & 合作伙伴
   ======================================== */
.home-projects .recent-work-wrap {
    border-radius: 12px; overflow: hidden;
    border: 1px solid rgba(0,255,247,0.15);
    transition: transform .3s ease, box-shadow .3s ease;
    background: #0a0a1a;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 0 10px rgba(0,255,247,0.05);
}
.home-projects .recent-work-wrap:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0,255,247,0.15), 0 0 30px rgba(179,0,255,0.1);
    border-color: rgba(0,255,247,0.4);
}
.home-projects .recent-work-wrap img.img-responsive { width: 100%; height: 220px; object-fit: cover; display: block; }
.home-projects .overlay { display: flex; align-items: center; justify-content: center; background: linear-gradient(45deg, rgba(0,255,247,.85), rgba(179,0,255,.85)); opacity: 0; transition: opacity .25s ease; }
.home-projects .recent-work-wrap:hover .overlay { opacity: 1; }
.home-projects .recent-work-inner h3 { margin: 0 0 6px 0; font-size: 18px; font-weight: 600; }
.home-projects .recent-work-inner p { display: none; }
@media (max-width: 768px) { .home-projects .recent-work-wrap img.img-responsive { height: 180px; } }

/* ========================================
   新闻列表页 - 行业资讯 (独立样式)
   ======================================== */
.industry-page .news-item { border-bottom: 1px solid rgba(0,255,247,0.1); padding: 24px 0; transition: all 0.3s ease; background: none; border-radius: 0; margin-bottom: 0; border: none; border-bottom: 1px solid rgba(0,255,247,0.1); box-shadow: none; }
.industry-page .news-item:last-child { border-bottom: none; }
.industry-page .news-item:hover { background-color: rgba(0,255,247,0.05); padding-left: 10px; border-radius: 5px; transform: none; box-shadow: none; }
.industry-page .news-header { margin-bottom: 8px; padding-bottom: 0; border-bottom: none; }
.industry-page .news-title a { font-size: 20px; font-weight: 700; padding-left: 15px; position: relative; }
.industry-page .news-title a::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 18px; background: linear-gradient(180deg, #00fff7, #b300ff); border-radius: 2px; transition: height 0.3s ease; }
.industry-page .news-title a:hover { color: #00fff7; padding-left: 20px; }
.industry-page .news-title a:hover::before { height: 24px; }
.industry-page .news-date { color: var(--cyber-text-muted); font-size: 16px; white-space: nowrap; margin-left: 15px; padding: 5px 12px; background: rgba(0,255,247,0.05); border-radius: 15px; display: inline-flex; align-items: center; gap: 5px; }
.industry-page .news-summary { color: var(--cyber-text-muted); font-size: 17px; line-height: 2; margin: 14px 0 0 0; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; padding-left: 15px; border-left: 3px solid rgba(0,255,247,0.15); margin-left: 15px; }
.industry-page .news-item:not(:has(.news-summary)) .news-title a { font-size: 18px; line-height: 1.3; margin-bottom: 5px; }
.industry-page .news-item:not(:has(.news-summary)) .news-header { margin-bottom: 5px; flex-direction: row; align-items: center; justify-content: space-between; min-height: 45px; }
.industry-page .news-item:not(:has(.news-summary)) .news-content { padding-bottom: 3px; display: flex; flex-direction: column; justify-content: center; min-height: 60px; }
.industry-page .news-item:not(:has(.news-summary)) .news-date { margin-left: 15px; margin-top: 0; white-space: nowrap; }
.industry-page .search-container { background: rgba(10,10,26,0.9); padding: 25px; border-radius: 12px; margin-bottom: 30px; border: 1px solid rgba(0,255,247,0.1); }
.industry-page .search-form { display: flex; max-width: 650px; margin: 0 auto; }
.industry-page .search-input-wrapper { display: flex; width: 100%; border: 1px solid rgba(0,255,247,0.2); border-radius: 8px; overflow: hidden; background: rgba(10,10,26,0.9); transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.industry-page .search-input-wrapper:focus-within { border-color: #00fff7; box-shadow: 0 0 15px rgba(0,255,247,0.15); }
.industry-page .search-icon { display: flex; align-items: center; padding: 0 15px; color: rgba(0,255,247,0.5); font-size: 16px; }
.industry-page .search-input { flex: 1; padding: 14px 0; border: none; font-size: 17px; background: transparent; color: #c0d0e0; transition: border-color 0.3s ease; outline: none; min-width: 0; }
.industry-page .search-input::placeholder { color: rgba(192,208,224,0.3); }
.industry-page .search-button { background: linear-gradient(135deg, #00fff7, #b300ff); color: #050510; border: none; padding: 0 28px; cursor: pointer; font-size: 16px; font-weight: 600; font-family: var(--font-display); letter-spacing: 2px; white-space: nowrap; transition: all 0.3s ease; }
.industry-page .search-button:hover { background: linear-gradient(135deg, #b300ff, #00fff7); box-shadow: 0 0 15px rgba(0,255,247,0.3); }
.industry-page .empty-state { text-align: center; padding: 80px 20px; background: rgba(10,10,26,0.6); border-radius: 14px; border: 1px solid rgba(0,255,247,0.08); }
.industry-page .empty-icon { font-size: 64px; color: rgba(0,255,247,0.12); margin-bottom: 24px; }
.industry-page .empty-text { font-size: 18px; color: var(--cyber-text-muted); margin: 10px 0; }
.industry-page .keyword-highlight { color: #00fff7; font-weight: 600; }
.industry-page .empty-hint { font-size: 15px; color: var(--cyber-text-muted); margin-top: 15px; }
.industry-page .empty-hint a { color: #00fff7; text-decoration: none; margin-left: 5px; }
.industry-page .empty-hint a:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .industry-page .news-header { flex-direction: column; align-items: flex-start; }
    .industry-page .news-date { margin-left: 0; margin-top: 5px; }
    .industry-page .news-title a { font-size: 15px; line-height: 1.2; }
    .industry-page .news-item:not(:has(.news-summary)) .news-title a { font-size: 17px; line-height: 1.2; }
    .industry-page .news-item:not(:has(.news-summary)) .news-header { flex-direction: row; align-items: center; justify-content: space-between; min-height: 40px; }
    .industry-page .news-item:not(:has(.news-summary)) .news-content { min-height: 55px; }
    .industry-page .news-item:not(:has(.news-summary)) .news-date { margin-left: 10px; margin-top: 0; }
    .industry-page .news-summary { font-size: 14px; line-height: 1.3; margin-bottom: 8px; }
    .industry-page .news-item { padding: 12px 0; }
    .industry-page .news-header { margin-bottom: 6px; }
}
@media (max-width: 480px) {
    .industry-page .search-container { padding: 15px; }
    .industry-page .search-input-wrapper { flex-direction: column; border-radius: 12px; }
    .industry-page .search-input { width: 100%; padding: 12px 15px; }
    .industry-page .search-button { width: 100%; border-radius: 0 0 12px 12px; padding: 12px; }
    .industry-page .news-item { padding: 15px; }
    .industry-page .pages a { min-width: 36px; height: 36px; padding: 0 8px; font-size: 14px; }
}

/* ========================================
   新闻列表页 - 赛事活动 (独立样式)
   ======================================== */
.company-page .news-item { background: rgba(10,10,26,0.9); border: 1px solid rgba(0,255,247,0.15); border-radius: 8px; margin-bottom: 20px; padding: 0; box-shadow: 0 2px 4px rgba(0,255,247,0.05); transition: all 0.3s ease; }
.company-page .news-item:hover { box-shadow: 0 4px 12px rgba(0,255,247,0.15); transform: translateY(-2px); }
.company-page .news-content { padding: 15px; }
.company-page .news-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px solid rgba(0,255,247,0.1); flex-wrap: wrap; }
.company-page .news-title a { color: #e0e8f0; text-decoration: none; font-size: 44px; font-weight: 600; line-height: 1.5; transition: color 0.3s ease; display: block; word-wrap: break-word; word-break: break-all; }
.company-page .news-title a:hover { color: #00fff7; }
.company-page .news-date { color: rgba(192,208,224,0.7); font-size: 32px; white-space: nowrap; margin-left: 15px; }
.company-page .news-summary { color: var(--cyber-text-muted); font-size: 34px; line-height: 2; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.company-page .news-item:not(:has(.news-summary)) .news-title a { font-size: 36px; line-height: 1.3; margin-bottom: 5px; }
.company-page .news-item:not(:has(.news-summary)) .news-header { margin-bottom: 5px; flex-direction: row; align-items: center; justify-content: space-between; min-height: 45px; }
.company-page .news-item:not(:has(.news-summary)) .news-content { padding-bottom: 3px; display: flex; flex-direction: column; justify-content: center; min-height: 60px; }
.company-page .news-item:not(:has(.news-summary)) .news-date { margin-left: 15px; margin-top: 0; white-space: nowrap; }
.company-page .search-container { background: rgba(10,10,26,0.9); padding: 25px; border-radius: 12px; margin-bottom: 30px; border: 1px solid rgba(0,255,247,0.1); }
.company-page .search-form { display: flex; max-width: 650px; margin: 0 auto; }
.company-page .search-input { flex: 1; padding: 36px 40px; border: 1px solid rgba(0,255,247,0.2); border-right: none; border-radius: 8px 0 0 8px; font-size: 40px; background: rgba(10,10,26,0.9); color: #e0e8f0; transition: border-color 0.3s ease; outline: none; }
.company-page .search-input::placeholder { color: rgba(192,208,224,0.3); }
.company-page .search-input:focus { border-color: #00fff7; box-shadow: 0 0 15px rgba(0,255,247,0.1); }
.company-page .search-button { background: linear-gradient(135deg, #00fff7, #b300ff); color: #050510; border: none; padding: 0 50px; border-radius: 0 8px 8px 0; cursor: pointer; font-size: 36px; font-weight: 600; font-family: var(--font-display); letter-spacing: 2px; white-space: nowrap; transition: all 0.3s ease; }
.company-page .search-button:hover { background: linear-gradient(135deg, #b300ff, #00fff7); box-shadow: 0 0 15px rgba(0,255,247,0.3); }
.company-page .pages { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 30px; padding: 20px 0; text-align: center; }
.company-page .pages a { display: inline-flex; align-items: center; justify-content: center; padding: 16px 28px; margin: 0 5px; color: #8090b0; text-decoration: none; border: 1px solid rgba(0,255,247,0.15); border-radius: 4px; font-size: 20px; transition: all 0.3s ease; background: rgba(10,10,26,0.9); }
.company-page .pages a:hover:not([style*="cursor: not-allowed"]) { background: linear-gradient(135deg, #00fff7, #b300ff); color: #fff; border-color: #00fff7; }
.company-page .pages .now { background: linear-gradient(135deg, #00fff7, #b300ff); color: #fff; border-color: #00fff7; }

@media (max-width: 768px) {
    .company-page .news-header { flex-direction: column; align-items: flex-start; }
    .company-page .news-date { margin-left: 0; margin-top: 5px; }
    .company-page .news-title a { font-size: 15px; line-height: 1.2; }
    .company-page .news-item:not(:has(.news-summary)) .news-title a { font-size: 17px; line-height: 1.2; }
    .company-page .news-item:not(:has(.news-summary)) .news-header { flex-direction: row; align-items: center; justify-content: space-between; min-height: 40px; }
    .company-page .news-item:not(:has(.news-summary)) .news-content { min-height: 55px; }
    .company-page .news-item:not(:has(.news-summary)) .news-date { margin-left: 10px; margin-top: 0; }
    .company-page .news-summary { font-size: 14px; line-height: 1.3; margin-bottom: 8px; }
    .company-page .news-content { padding: 12px; }
    .company-page .news-header { margin-bottom: 6px; }
    .company-page .search-form { flex-direction: column; }
    .company-page .search-input { border-right: 1px solid #ddd; border-radius: 4px 4px 0 0; margin-bottom: -1px; }
    .company-page .search-button { border-radius: 0 0 4px 4px; padding: 12px; }
}

/* ========================================
   产品页 - 手机展示图 & 图片通用填充
   ======================================== */
.phone-slider { width: 70%; border-top: 40px solid #fff; border-bottom: 40px solid #fff; border-radius: 26px; box-shadow: 10px 10px 16px 8px rgba(0,0,0,.2); overflow: hidden; }
.phone-slider img { width: 100%; height: 100%; object-fit: cover; display: block; }
.phone-slider .owl-dots { position: absolute; bottom: -90px; width: 100%; text-align: center; }
.phone-slider .owl-dot { display: inline-block; width: 1.5rem; height: 1.5rem; margin: 0 .6rem; border: 2px solid #fff; border-radius: 100%; background: none; }
.phone-slider .owl-dot.active { background: #fff; }
@media (max-width: 750px) { .phone-slider { margin: 0 auto; } }

/* 详情页图片通用填充 */
.productdetail img,
.news-detail img,
.about-rich img,
.project-content img,
.rich-content img { max-width: 100%; height: auto; object-fit: cover; }
