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

        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', sans-serif;
            background-color: #e0e5ec;
            overflow-x: hidden;
        }

        /* ========== 顶部导航 (完全复刻首页风格) ========== */
        .ys-hd-pc {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 99;
            background: transparent;
            transition: all 0.3s ease;
            padding: 18px 40px;
        }
        body.scrolled .ys-hd-pc {
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(8px);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        .mod-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .head-logo-link img {
            height: 48px;
            transition: opacity 0.25s;
        }
        .head-logo-link img:first-child {
            display: block;
        }
        .head-logo-link img:last-child {
            display: none;
        }
        body.scrolled .head-logo-link img:first-child {
            display: none;
        }
        body.scrolled .head-logo-link img:last-child {
            display: block;
        }
        .head-other {
            display: flex;
            align-items: center;
            gap: 18px;
        }
        .head-nav {
            display: flex;
            list-style: none;
            gap: 28px;
            margin: 0;
            padding: 0;
        }
        .head-nav-item a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.25s;
            letter-spacing: 0.5px;
        }
        body.scrolled .head-nav-item a {
            color: #1a1f2e;
        }
        .head-nav-item a:hover {
            color: #00e0ff;
        }
        .head-other-more {
            margin-left: 0;
            position: relative;
        }
        .head-other-more a {
            background: linear-gradient(135deg, #00e0ff, #0088ff);
            padding: 8px 24px;
            border-radius: 40px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.25s;
            display: inline-block;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            white-space: nowrap;
        }
        .head-other-more a:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 14px rgba(0,160,255,0.35);
            background: linear-gradient(135deg, #00f0ff, #0095ff);
        }
        @media (max-width: 1100px) {
            .head-nav { gap: 18px; }
            .head-other { gap: 16px; }
            .head-nav-item a { font-size: 0.9rem; }
        }
        @media (max-width: 900px) {
            .head-nav { display: none; }
        }
        @media (max-width: 768px) {
            .ys-hd-pc { padding: 12px 20px; }
            .head-logo-link img { height: 38px; }
        }

        /* ========== 关于我们主体 (银灰金属质感 + 细腻底纹) ========== */
        .about-main {
            margin-top: 20px;
            padding: 40px 5% 80px;
            background-color: #dce1e6;
            background-image: 
                linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(220,225,230,0.9) 100%),
                repeating-linear-gradient(45deg, rgba(0,0,0,0.02) 0px, rgba(0,0,0,0.02) 2px, transparent 2px, transparent 8px);
            position: relative;
        }
        .about-main::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.2) 0%, rgba(0,0,0,0.02) 80%);
            pointer-events: none;
        }

        /* 页面头部 */
        .about-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }
        .about-header .sub {
            color: #0088cc;
            font-size: 1rem;
            letter-spacing: 4px;
            margin-bottom: 8px;
            font-weight: 500;
        }
        .about-header h1 {
            font-size: 3rem;
            background: linear-gradient(135deg, #2c3e50, #4ca1af);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .about-header .desc {
            color: #546e7a;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* 通用内容容器 */
        .about-container {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* ========== 板块1：公司简介（图文左右） ========== */
        .intro-section {
            display: flex;
            align-items: center;
            gap: 60px;
            margin-bottom: 80px;
            background: rgba(255, 255, 255, 0.55);
            backdrop-filter: blur(8px);
            border-radius: 48px;
            padding: 50px;
            border: 1px solid rgba(255,255,255,0.5);
            box-shadow: 0 15px 35px -12px rgba(0,0,0,0.1);
        }
        .intro-text {
            flex: 1;
        }
        .intro-text h2 {
            font-size: 2rem;
            color: #1e293b;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        .intro-text h2:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, #00e0ff, #0088ff);
            border-radius: 3px;
        }
        .intro-text p {
            color: #475569;
            line-height: 1.8;
            font-size: 1rem;
            margin-bottom: 20px;
        }
        .intro-stats {
            display: flex;
            gap: 40px;
            margin-top: 30px;
        }
        .stat-item {
            text-align: center;
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #0088cc;
        }
        .stat-label {
            font-size: 0.85rem;
            color: #64748b;
        }
        .intro-image {
            flex: 1;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 20px 30px -10px rgba(0,0,0,0.15);
             
        }
        .intro-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            
        
        }
        .intro-image:hover img {
            transform: scale(1.03);
        }

        /* ========== 板块2：发展历程（时间轴） ========== */
        .milestone-section {
            margin-bottom: 80px;
            background: rgba(255, 255, 255, 0.55);
            backdrop-filter: blur(8px);
            border-radius: 48px;
            padding: 50px;
            border: 1px solid rgba(255,255,255,0.5);
        }
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-title h2 {
            font-size: 2rem;
            color: #1e293b;
            margin-bottom: 12px;
        }
        .section-title p {
            color: #64748b;
        }
        .timeline {
            display: flex;
            flex-direction: column;
            position: relative;
            padding-left: 40px;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 15px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(180deg, #00e0ff, #0088ff);
            border-radius: 3px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 40px;
            padding-left: 35px;
        }
        .timeline-dot {
            position: absolute;
            left: -30px;
            top: 5px;
            width: 16px;
            height: 16px;
            background: #00e0ff;
            border-radius: 50%;
            box-shadow: 0 0 0 4px rgba(0,224,255,0.2);
        }
        .timeline-year {
            font-size: 1.3rem;
            font-weight: 700;
            color: #0088cc;
            margin-bottom: 8px;
        }
        .timeline-content h4 {
            font-size: 1.1rem;
            color: #1e293b;
            margin-bottom: 6px;
        }
        .timeline-content p {
            color: #64748b;
            line-height: 1.5;
        }

        /* ========== 板块3：企业文化（核心价值观卡片） ========== */
        .culture-section {
            margin-bottom: 80px;
            background: rgba(255, 255, 255, 0.55);
            backdrop-filter: blur(8px);
            border-radius: 48px;
            padding: 50px;
            border: 1px solid rgba(255,255,255,0.5);
        }
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .value-card {
            text-align: center;
            padding: 30px 20px;
            background: rgba(255,255,255,0.7);
            border-radius: 28px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.6);
        }
        .value-card:hover {
            transform: translateY(-8px);
            background: white;
            border-color: #00e0ff;
            box-shadow: 0 15px 30px -10px rgba(0,0,0,0.1);
        }
        .value-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #00e0ff, #0088ff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        .value-icon i {
            font-size: 2rem;
            color: white;
        }
        .value-card h3 {
            font-size: 1.3rem;
            color: #1e293b;
            margin-bottom: 12px;
        }
        .value-card p {
            color: #64748b;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* ========== 板块4：荣誉资质（徽章网格） ========== */
        .honor-section {
            margin-bottom: 80px;
            background: rgba(255, 255, 255, 0.55);
            backdrop-filter: blur(8px);
            border-radius: 48px;
            padding: 50px;
            border: 1px solid rgba(255,255,255,0.5);
        }
        .honor-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        .honor-item {
            text-align: center;
            padding: 25px 15px;
            background: rgba(255,255,255,0.7);
            border-radius: 24px;
            transition: all 0.3s ease;
        }
        .honor-item:hover {
            transform: translateY(-5px);
            background: white;
            box-shadow: 0 10px 25px -8px rgba(0,0,0,0.1);
        }
        .honor-item i {
            font-size: 2.5rem;
            color: #0088cc;
            margin-bottom: 15px;
        }
        .honor-item h4 {
            font-size: 1rem;
            color: #1e293b;
            margin-bottom: 5px;
        }
        .honor-item p {
            font-size: 0.75rem;
            color: #94a3b8;
        }

        /* ========== 板块5：联系我们（联系方式卡片） ========== */
        .contact-section {
            background: rgba(255, 255, 255, 0.55);
            backdrop-filter: blur(8px);
            border-radius: 48px;
            padding: 50px;
            border: 1px solid rgba(255,255,255,0.5);
        }
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        .contact-card {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 25px;
            background: rgba(255,255,255,0.7);
            border-radius: 28px;
            transition: all 0.3s ease;
        }
        .contact-card:hover {
            background: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -8px rgba(0,0,0,0.1);
        }
        .contact-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, #00e0ff, #0088ff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .contact-icon i {
            font-size: 1.5rem;
            color: white;
        }
        .contact-info h4 {
            font-size: 1.1rem;
            color: #1e293b;
            margin-bottom: 5px;
        }
        .contact-info p, .contact-info a {
            color: #64748b;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
        .contact-info a:hover {
            color: #00e0ff;
        }
        .map-container {
            margin-top: 40px;
            border-radius: 28px;
            overflow: hidden;
            height: 280px;
            background: #cbd5e1;
        }
        .map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #2c3e50, #4ca1af);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-direction: column;
            gap: 10px;
        }

        /* 响应式 */
        @media (max-width: 1024px) {
            .intro-section {
                flex-direction: column;
                padding: 35px;
            }
            .intro-stats {
                justify-content: center;
            }
            .timeline {
                padding-left: 20px;
            }
            .timeline:before {
                left: 0;
            }
            .timeline-item {
                padding-left: 20px;
            }
            .timeline-dot {
                left: -8px;
            }
        }
        @media (max-width: 768px) {
            .about-main {
                margin-top: 70px;
                padding: 30px 4% 60px;
            }
            .about-header h1 {
                font-size: 2rem;
            }
            .intro-section, .milestone-section, .culture-section, .honor-section, .contact-section {
                padding: 25px;
            }
            .intro-text h2 {
                font-size: 1.6rem;
            }
            .stat-number {
                font-size: 1.5rem;
            }
            .values-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== 页脚 ========== */
        .site-footer {
            background-color: #0f172a;
            color: rgba(255, 255, 255, 0.7);
            padding: 50px 5% 15px;
            position: relative;
            z-index: 1;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin: 0 auto;
            width: 100%;
            gap: 20px;
            flex-wrap: wrap;
        }
        .footer-left { flex: 0 0 200px; }
        .footer-logo img { height: 40px; margin-bottom: 10px; filter: brightness(0) invert(1); }
        .footer-left .slogan { font-size: 0.9rem; color: #94a3b8; }
        .footer-nav { flex: 1; }
        .footer-nav h4, .footer-contact h4, .footer-qrcode h4 {
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 600;
            position: relative;
            display: inline-block;
        }
        .footer-nav h4::after, .footer-contact h4::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 30px;
            height: 2px;
            background: #00e0ff;
        }
        .footer-nav ul { list-style: none; margin: 20px 0; }
        .footer-nav ul li { margin-bottom: 8px; }
        .footer-nav ul li a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .footer-nav ul li a:hover { color: #00e0ff; padding-left: 5px; }
        .footer-contact { flex: 1.5; }
        .footer-contact p { margin: 20px 0; font-size: 1rem; color: #94a3b8; }
        .footer-contact i { color: #00e0ff; margin-right: 8px; width: 16px; }
        .footer-qrcode { flex: 0 0 200px; text-align: center; }
        .footer-qrcode img { width: 150px; height: 150px; background: #fff; padding: 4px; border-radius: 6px; margin-bottom: 5px; }
        .footer-qrcode p { font-size: 0.7rem; color: #64748b; }
        .copyright-bar {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 25px;
            margin-top: 20px;
            text-align: center;
            font-size: 0.9rem;
            color: #64748b;
        }
        .copyright-bar a { color: #64748b; text-decoration: none; transition: color 0.3s; }
        .copyright-bar a:hover { color: #00e0ff; }
        @media (max-width: 768px) {
            .footer-content { flex-direction: column; align-items: center; text-align: center; }
            .footer-nav h4::after, .footer-contact h4::after { left: 50%; transform: translateX(-50%); }
        }