  :root {
            --primary-dark: #0f3057;
            --primary-main: #00587a;
            --primary-light: #008891;
            --accent: #00bcd4;
            --accent-light: #26c6da;
            --neutral-dark: #1a237e;
            --neutral-main: #283593;
            --neutral-light: #5c6bc0;
            --text-primary: #212121;
            --text-secondary: #757575;
            --text-light: #ffffff;
            --background: #f8f9fa;
            --surface: #ffffff;
            --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.12);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Noto Sans SC', sans-serif;
            color: var(--text-primary);
            line-height: 1.6;
            background-color: var(--background);
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo h1 {
            font-size: 26px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-main));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin: 0 12px;
        }
        
        nav ul li a {
            font-weight: 500;
            padding: 8px 0;
            position: relative;
            transition: var(--transition);
            color: var(--text-primary);
            text-decoration: none;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: linear-gradient(to right, var(--accent), var(--accent-light));
            transition: var(--transition);
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        nav ul li a:hover {
            color: var(--primary-main);
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--primary-dark);
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(90deg, rgba(15, 48, 87, 0.85) 0%, rgba(0, 88, 122, 0.75) 100%), url('/jia/images/bangongshi.jpg') center/cover no-repeat;
            padding: 150px 0 100px;
            color: var(--text-light);
            text-align: center;
            margin-top: 60px;
        }
        
        .page-header h1 {
            font-size: 42px;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .page-header p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }
        
        .breadcrumb a {
            color: var(--text-light);
            opacity: 0.8;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .breadcrumb a:hover {
            opacity: 1;
            color: var(--accent);
        }
        
        .breadcrumb span {
            margin: 0 10px;
            opacity: 0.8;
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--primary-dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--accent), var(--accent-light));
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .section-title p {
            color: var(--text-secondary);
            max-width: 700px;
            margin: 25px auto 0;
            font-size: 18px;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-bottom: 80px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--primary-dark);
        }
        
        .about-text p {
            color: var(--text-secondary);
            margin-bottom: 25px;
            line-height: 1.8;
        }
        
        .about-image {
            flex: 1;
            height: 400px;
            background: linear-gradient(135deg, var(--primary-main), var(--primary-dark));
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            text-align: center;
            padding: 20px;
            position: relative;
            overflow: hidden;
        }
        
        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/jia/images/bangongshi7.jpg') center/cover no-repeat;
            opacity: 0.8;
        }
        
        /* Mission Vision */
        .mission-vision {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }
        
        .mv-card {
            background: var(--surface);
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }
        
        .mv-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .mv-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-light), var(--primary-main));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            margin: 0 auto 25px;
            transition: var(--transition);
        }
        
        .mv-card:hover .mv-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .mv-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }
        
        .mv-card p {
            color: var(--text-secondary);
            line-height: 1.7;
        }
        
        /* History Section */
        .history-section {
            background: linear-gradient(135deg, #f6f9fc 0%, #e9f2f8 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .history-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
            border-radius: 50%;
            opacity: 0.1;
            z-index: 0;
        }
        
        .history-section::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, var(--primary-main) 0%, var(--primary-dark) 100%);
            border-radius: 50%;
            opacity: 0.1;
            z-index: 0;
        }
        
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 0;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background: linear-gradient(to bottom, var(--primary-light), var(--primary-main));
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
            border-radius: 3px;
        }
        
        .timeline-item {
            position: relative;
            width: 50%;
            margin-bottom: 50px;
            z-index: 1;
        }
        
        .timeline-item:nth-child(odd) {
            left: 0;
            padding-right: 70px;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
            padding-left: 70px;
        }
        
        .timeline-content {
            background: var(--surface);
            border-radius: 12px;
            padding: 25px;
            box-shadow: var(--shadow-md);
            position: relative;
        }
        
        .timeline-content::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: var(--primary-main);
            border-radius: 50%;
            top: 30px;
        }
        
        .timeline-item:nth-child(odd) .timeline-content::after {
            right: -60px;
        }
        
        .timeline-item:nth-child(even) .timeline-content::after {
            left: -60px;
        }
        
        .timeline-year {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-main);
            margin-bottom: 10px;
        }
        
        .timeline-text {
            color: var(--text-secondary);
            line-height: 1.7;
        }
        
        /* Values Section */
        .values-section {
            padding: 80px 0;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .value-card {
            background: var(--surface);
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .value-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-light), var(--primary-main));
            color: white;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin: 0 auto 25px;
            transition: var(--transition);
        }
        
        .value-card:hover .value-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .value-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }
        
        .value-card p {
            color: var(--text-secondary);
            line-height: 1.7;
        }
        
        /* Stats Section */
        .stats-section {
            background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-main) 100%);
            padding: 100px 0;
            color: var(--text-light);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/jia/images/bangongshi9.jpg') center/cover no-repeat;
            opacity: 0.1;
            z-index: 0;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 1;
        }
        
        .stat-item {
            padding: 20px;
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(to right, var(--accent), var(--accent-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .stat-text {
            font-size: 18px;
            opacity: 0.9;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            text-align: center;
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--primary-dark);
        }
        
        .cta-content p {
            font-size: 18px;
            margin-bottom: 40px;
            color: var(--text-secondary);
        }
        
        .btn {
            display: inline-block;
            padding: 14px 36px;
            background: linear-gradient(to right, var(--accent), var(--accent-light));
            color: white;
            border-radius: 30px;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            text-decoration: none;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: var(--transition);
            z-index: 1;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }
        
        /* Footer */
        footer {
            background: linear-gradient(to bottom, var(--primary-dark), var(--neutral-dark));
            color: var(--text-light);
            padding: 80px 0 30px;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/jia/images/bangongshi11.jpg') center/cover no-repeat;
            opacity: 0.05;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            color: var(--text-light);
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--accent);
            bottom: 0;
            left: 0;
            border-radius: 2px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            transition: var(--transition);
            opacity: 0.8;
            color: var(--text-light);
            text-decoration: none;
        }
        
        .footer-column ul li a:hover {
            opacity: 1;
            color: var(--accent);
            padding-left: 5px;
        }
        
        .footer-column p {
            opacity: 0.8;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            color: var(--text-light);
        }
        
        .footer-column i {
            margin-right: 10px;
            color: var(--accent);
        }
        
        .footer-qrcode {
            margin-top: 20px;
            text-align: center;
        }
        
        .footer-qrcode img {
            width: 150px;
            height: 150px;
            background: white;
            padding: 10px;
            border-radius: 10px;
            box-shadow: var(--shadow-md);
        }
        
        .footer-qrcode p {
            margin-top: 10px;
            font-size: 14px;
        }
        
        .friend-links {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 30px;
            position: relative;
            z-index: 1;
        }
        
        .friend-links a {
            margin: 0 10px;
            opacity: 0.7;
            transition: var(--transition);
            color: var(--text-light);
            text-decoration: none;
        }
        
        .friend-links a:hover {
            opacity: 1;
            color: var(--accent);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
            font-size: 14px;
            position: relative;
            z-index: 1;
            color: var(--text-light);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            nav ul {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                width: 100%;
            }
            
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 0;
            }
            
            .timeline-item:nth-child(even) {
                left: 0;
            }
            
            .timeline-item:nth-child(odd) .timeline-content::after,
            .timeline-item:nth-child(even) .timeline-content::after {
                left: -60px;
            }
        }
        
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 32px;
            }
            
            .page-header p {
                font-size: 18px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stat-number {
                font-size: 36px;
            }
        }
        
        @media (max-width: 576px) {
            .mission-vision,
            .values-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .btn {
                padding: 12px 25px;
            }
        }