body, object, iframe, h1, h2, h3, h4, h5, h6, blockquote, a, code, em, img, q, small, strong, dd, dl, dt, li, ol, ul, fieldset, form, label, table, tbody, tr, th, td, input, textarea {
    color: rgb(102, 102, 102);
    font-size: 16px !important;
    font-family: 'Inter', 'Noto Sans SC', system-ui, -apple-system, 'Microsoft YaHei', sans-serif;
    padding: 0px;
    margin: 0px;
}
body {
    font-size: 16px !important;
    line-height: 1.6 !important;
}

@media (max-width: 768px) {
    body {
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px !important;
    }
}
/* 强制覆盖系统样式 - 添加到您的CSS末尾 */
.nav-bar .nav-menu .nav-link {
    font-size: var(--text-base) !important;  /* 使用!important确保覆盖 */
    line-height: 1.6 !important;
}

/* 如果系统使用了.menu类，也要覆盖 */
.nav-bar .menu .nav-link,
.nav-bar .top-nav .nav-link {
    font-size: var(--text-base) !important;
    line-height: 1.6 !important;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .nav-bar .nav-menu .nav-link {
        font-size: 16px !important;  /* 移动端固定大小 */
    }
}

/* ===== 复用首页现代化设计变量 ===== */
        :root {
            --primary: #1a5a8c;
            --primary-dark: #0d3b5e;
            --primary-light: #3d8fc9;
            --primary-gradient: linear-gradient(135deg, #1a5a8c 0%, #3d8fc9 100%);
            --primary-soft: rgba(26, 90, 140, 0.12);
            --nav-bg-glass: rgba(26, 90, 140, 0.9);
            --bg-light: #f2f5f9;
            --bg-white: #ffffff;
            --bg-card: rgba(255, 255, 255, 0.95);
            --text-dark: #0a1a2a;
            --text-light: #2c3e50;
            --text-white: #ffffff;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 20px rgba(0,0,0,0.1);
            --shadow-xl: 0 20px 30px rgba(0,0,0,0.12);
            --shadow-hover: 0 30px 40px -10px rgba(26, 90, 140, 0.3);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --radius-xl: 32px;
            --radius-full: 9999px;
            --text-xs: clamp(0.75rem, 0.8vw, 1rem);
            --text-sm: clamp(0.875rem, 0.9vw, 1.1rem);
            --text-base: clamp(1rem, 1vw, 1.25rem);
            --text-lg: clamp(1.125rem, 1.2vw, 1.5rem);
            --text-xl: clamp(1.25rem, 1.5vw, 1.75rem);
            --text-2xl: clamp(1.5rem, 2vw, 2.25rem);
            --text-3xl: clamp(1.875rem, 2.5vw, 3rem);
            --space-1: clamp(0.25rem, 0.3vw, 0.5rem);
            --space-2: clamp(0.5rem, 0.6vw, 0.75rem);
            --space-3: clamp(0.75rem, 0.8vw, 1rem);
            --space-4: clamp(1rem, 1.2vw, 1.5rem);
            --space-6: clamp(1.5rem, 1.8vw, 2.25rem);
            --space-8: clamp(2rem, 2.4vw, 3rem);
            --space-12: clamp(3rem, 3.6vw, 4.5rem);
            --space-16: clamp(4rem, 4.8vw, 6rem);
            --max-width: min(1600px, 90vw);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Noto Sans SC', system-ui, -apple-system, 'Microsoft YaHei', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            font-size: var(--text-base);
        }

        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--space-6);
        }

        /* ===== 头部 & 导航 (完全复用首页) ===== */
        .header {
            background: var(--bg-white);
            box-shadow: var(--shadow-md);
            border-bottom: 1px solid rgba(26, 90, 140, 0.1);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: var(--space-4) 0;
            flex-wrap: wrap;
            gap: var(--space-4);
        }
        .logo img {
            height: clamp(50px, 6vh, 80px);
            width: auto;
            display: block;
        }
        .search-form {
            display: flex;
            max-width: clamp(300px, 30vw, 500px);
            background: var(--bg-light);
            border-radius: var(--radius-full);
            padding: 4px;
            border: 1px solid rgba(26, 90, 140, 0.15);
        }
        .search-input {
            flex: 1;
            padding: var(--space-3) var(--space-4);
            border: none;
            border-radius: var(--radius-full);
            outline: none;
            background: transparent;
            color: var(--text-dark);
            font-size: var(--text-base);
        }
        .search-btn {
            padding: var(--space-3) var(--space-6);
            background: var(--primary-gradient);
            color: white;
            border: none;
            border-radius: var(--radius-full);
            cursor: pointer;
            font-weight: 600;
            font-size: var(--text-sm);
            transition: 0.3s;
            white-space: nowrap;
            box-shadow: 0 4px 12px rgba(26,90,140,0.3);
        }
        .search-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(26,90,140,0.4);
        }

        .nav-bar {
            position: sticky;
            top: 0;
            z-index: 100;
            background: var(--nav-bg-glass);
            backdrop-filter: blur(12px) saturate(180%);
            box-shadow: 0 4px 20px rgba(26,90,140,0.25);
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }
        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--space-6);
        }
        .nav-toggle {
            display: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: var(--space-2);
        }
        .nav-link {
            display: block;
            padding: var(--space-3) var(--space-4);
            color: white;
            font-weight: 600;
            text-decoration: none;
            border-radius: var(--radius-full);
            transition: 0.3s;
            text-shadow: 0 1px 3px rgba(0,0,0,0.2);
        }
        .nav-link:hover {
            background: rgba(255,255,255,0.25);
            transform: translateY(-1px);
        }
        .nav-item {
            position: relative;
        }
        .nav-item::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 20px;
            background: transparent;
        }
        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            min-width: 240px;
            background: rgba(255,255,255,0.98);
            backdrop-filter: blur(12px);
            border-radius: var(--radius-lg);
            box-shadow: 0 10px 30px rgba(26,90,140,0.25);
            padding: var(--space-2);
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
            border: 1px solid rgba(255,255,255,0.3);
            z-index: 1000;
        }
        .nav-item:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }
        .dropdown-content a {
            display: block;
            padding: var(--space-3) var(--space-4);
            color: var(--text-dark);
            text-decoration: none;
            border-radius: var(--radius-sm);
            font-size: var(--text-sm);
            transition: 0.2s;
        }
        .dropdown-content a:hover {
            background: var(--primary-soft);
            color: var(--primary-dark);
            transform: translateX(4px);
        }

        /* ===== 页面内部banner (企业概况主题) ===== */
        .page-banner {
            height: clamp(250px, 30vh, 350px);
            background: linear-gradient(105deg, #0d3b5e 0%, #1a5a8c 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-bottom: var(--space-12);
        }
        .page-banner::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: url('/ats/uiFramework/commonResource/image/2026033013361588931.jpg') center/cover no-repeat;
            opacity: 0.15;
            mix-blend-mode: overlay;
        }
        .banner-title {
            position: relative;
            z-index: 2;
            font-size: var(--text-3xl);
            font-weight: 700;
            text-shadow: 0 4px 12px rgba(0,0,0,0.3);
            letter-spacing: 2px;
        }
        .banner-title small {
            display: block;
            font-size: var(--text-lg);
            font-weight: 400;
            margin-top: var(--space-2);
            opacity: 0.9;
        }

        /* ===== 面包屑 ===== */
        .breadcrumb {
            display: flex;
            gap: var(--space-2);
            margin: var(--space-6) 0 var(--space-8);
            color: var(--text-light);
            font-size: var(--text-sm);
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb span {
            color: var(--text-light);
        }

        /* ===== 企业简介图文混合布局 ===== */
        .profile-section {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-8);
            margin-bottom: var(--space-16);
            background: var(--bg-white);
            border-radius: var(--radius-xl);
            padding: var(--space-8);
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(26,90,140,0.1);
        }
        .profile-image {
            flex: 1 1 400px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }
        .profile-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s;
        }
        .profile-image:hover img {
            transform: scale(1.02);
        }
        .profile-content {
            flex: 1 1 500px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .profile-content h2 {
            font-size: var(--text-2xl);
            margin-bottom: var(--space-4);
            color: var(--primary-dark);
            position: relative;
            padding-bottom: var(--space-3);
        }
        .profile-content h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--primary-gradient);
            border-radius: var(--radius-full);
        }
        .profile-content p {
            margin-bottom: var(--space-4);
            color: var(--text-light);
            line-height: 1.8;
            text-align: justify;
        }
        .profile-stats {
            display: flex;
            gap: var(--space-6);
            margin-top: var(--space-4);
        }
        .stat-item {
            text-align: center;
        }
        .stat-number {
            font-size: var(--text-2xl);
            font-weight: 700;
            color: var(--primary);
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .stat-label {
            font-size: var(--text-sm);
            color: var(--text-light);
        }

        /* ===== 领导分工 (图文卡片) ===== */
        .leadership-section {
            margin: var(--space-16) 0;
        }
        .section-header {
            display: flex;
            align-items: center;
            gap: var(--space-3);
            margin-bottom: var(--space-8);
        }
        .section-header .title-bar {
            width: 6px;
            height: clamp(30px, 4vh, 50px);
            background: var(--primary-gradient);
            border-radius: var(--radius-full);
        }
        .section-header h3 {
            font-size: var(--text-2xl);
            font-weight: 700;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .leader-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: var(--space-6);
        }
        .leader-card {
            background: var(--bg-white);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: 0.3s;
            border: 1px solid rgba(26,90,140,0.1);
            display: flex;
            flex-direction: column;
        }
        .leader-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-light);
        }
        .leader-img {
            height: 260px;
            overflow: hidden;
        }
        .leader-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .leader-card:hover .leader-img img {
            transform: scale(1.05);
        }
        .leader-info {
            padding: var(--space-4) var(--space-4) var(--space-6);
            text-align: center;
        }
        .leader-name {
            font-size: var(--text-lg);
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: var(--space-1);
        }
        .leader-post {
            font-size: var(--text-sm);
            color: var(--primary);
            font-weight: 600;
            margin-bottom: var(--space-3);
        }
        .leader-desc {
            font-size: var(--text-sm);
            color: var(--text-light);
            line-height: 1.6;
        }

        /* ===== 组织架构图 (图文示意) ===== */
        .org-section {
            margin: var(--space-16) 0;
            background: var(--bg-white);
            border-radius: var(--radius-xl);
            padding: var(--space-8);
            box-shadow: var(--shadow-lg);
        }
        .org-chart {
            display: flex;
            flex-direction: column;
            gap: var(--space-8);
            margin-top: var(--space-8);
        }
        .org-row {
            display: flex;
            justify-content: center;
            gap: var(--space-6);
            flex-wrap: wrap;
        }
        .org-node {
            background: var(--primary-gradient);
            color: white;
            padding: var(--space-3) var(--space-6);
            border-radius: var(--radius-full);
            font-weight: 600;
            box-shadow: var(--shadow-md);
            min-width: 160px;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.3);
            backdrop-filter: blur(5px);
        }
        .org-node-light {
            background: white;
            color: var(--primary-dark);
            border: 1px solid var(--primary-light);
        }
        .org-image {
            margin-top: var(--space-8);
            text-align: center;
        }
        .org-image img {
            max-width: 100%;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
        }

        /* ===== 发展历程 (时间轴图文) ===== */
        .timeline-section {
            margin: var(--space-16) 0;
        }
        .timeline {
            position: relative;
            padding-left: var(--space-8);
            margin-top: var(--space-8);
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--primary-gradient);
            border-radius: var(--radius-full);
        }
        .timeline-item {
            position: relative;
            padding-bottom: var(--space-8);
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-6);
        }
        .timeline-dot {
            position: absolute;
            left: calc(-1 * var(--space-8) - 6px);
            top: 0;
            width: 16px;
            height: 16px;
            background: white;
            border: 3px solid var(--primary);
            border-radius: 50%;
            z-index: 2;
        }
        .timeline-time {
            flex: 0 0 120px;
            font-weight: 700;
            color: var(--primary-dark);
            font-size: var(--text-lg);
        }
        .timeline-content {
            flex: 1;
            background: var(--bg-white);
            padding: var(--space-6);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-6);
            border: 1px solid rgba(26,90,140,0.1);
        }
        .timeline-content img {
            width: 100px;
            height: 80px;
            object-fit: cover;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
        }
        .timeline-text {
            flex: 1;
        }
        .timeline-text h4 {
            font-size: var(--text-lg);
            margin-bottom: var(--space-2);
            color: var(--primary-dark);
        }
        .timeline-text p {
            color: var(--text-light);
            font-size: var(--text-sm);
        }

        /* ===== 荣誉资质 (图文网格) ===== */
        .honor-section {
            margin: var(--space-16) 0;
        }
        .honor-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: var(--space-6);
            margin-top: var(--space-8);
        }
        .honor-card {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            padding: var(--space-6) var(--space-4);
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: 0.3s;
            border: 1px solid rgba(26,90,140,0.1);
        }
        .honor-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-light);
        }
        .honor-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto var(--space-4);
            background: var(--primary-soft);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: var(--primary);
        }
        .honor-card h4 {
            font-size: var(--text-base);
            font-weight: 600;
            margin-bottom: var(--space-2);
            color: var(--primary-dark);
        }
        .honor-card p {
            font-size: var(--text-sm);
            color: var(--text-light);
        }
        .honor-card img {
            width: 100%;
            height: 120px;
            object-fit: contain;
            margin-bottom: var(--space-3);
        }

        /* ===== 底部 (完全复用首页) ===== */
        footer {
            background: #0d3b5e;
            color: rgba(255,255,255,0.95);
            padding: var(--space-16) 0 var(--space-8);
            margin-top: var(--space-16);
        }
        .footer-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--space-6);
        }
        .footer-main {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: var(--space-12);
            flex-wrap: wrap;
            gap: var(--space-8);
        }
        .footer-left img {
            width: 100px;
            height: auto;
        }
        .contact-info p {
            margin: var(--space-2) 0;
            color: rgba(255,255,255,0.95);
        }
        .back-top {
            width: clamp(48px,5vw,60px);
            height: clamp(48px,5vw,60px);
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: white;
            transition: 0.3s;
            font-size: 28px;
        }
        .back-top:hover {
            background: var(--primary-light);
            transform: scale(1.1);
        }
        .footer-links {
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: var(--space-12);
        }
        .link-title {
            font-size: var(--text-lg);
            font-weight: 600;
            margin-bottom: var(--space-6);
            color: white;
        }
        .dropup-container {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-4);
        }
        .dropup {
            position: relative;
            flex: 1;
            min-width: 200px;
        }
        .dropup-btn {
            width: 100%;
            padding: var(--space-3) var(--space-4);
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.25);
            border-radius: var(--radius-full);
            color: white;
            display: flex;
            justify-content: space-between;
            cursor: pointer;
        }
        .dropup-content {
            position: absolute;
            bottom: 100%;
            left: 0;
            right: 0;
            background: white;
            border-radius: var(--radius-lg);
            margin-bottom: var(--space-2);
            display: none;
            box-shadow: var(--shadow-xl);
            z-index: 1000;
        }
        .dropup-content.show {
            display: block;
        }
        .dropup-content a {
            display: block;
            padding: var(--space-3) var(--space-4);
            color: var(--text-dark);
            text-decoration: none;
            border-bottom: 1px solid rgba(26,90,140,0.1);
        }
        .dropup-content a:hover {
            background: var(--primary-soft);
        }
        .copyright {
            text-align: center;
            margin-top: var(--space-12);
            padding-top: var(--space-8);
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: var(--text-sm);
        }

        /* 响应式微调 */
        @media (max-width: 768px) {
            .nav-toggle { display: block; }
            .nav-menu { 
                display: none; 
                flex-direction: column; 
                position: absolute; 
                top: 100%; 
                left: 0; 
                width: 100%; 
                background: var(--nav-bg-glass); 
                padding: var(--space-4); 
            }
            .nav-menu.active { display: flex; }
            .dropdown-content {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                background: rgba(255,255,255,0.15);
                display: none;
            }
            .nav-item.active .dropdown-content { display: block; }
            .profile-section { flex-direction: column; }
            .timeline-content { flex-direction: column; }
        }