@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,900&display=swap");
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Source Han Sans CN, Microsoft JhengHei, PingFang SC, Source Han Serif SC, Microsoft YaHei, sans-serif;
            background-color: #fefefe;
            color: #1e2a3a;
            line-height: 1.5;
            overflow-x: hidden;
        }

        .hero {
            height: 80vh;
            min-height: 600px;
            background: none;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: left;
            text-align: left;
            color: white;
            overflow: hidden;
            isolation: isolate;
        }
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../images/abban.jpg') center center / cover no-repeat;
            z-index: -2;
            will-change: transform;
            animation: gentleZoom 9s infinite ease-in-out;
            transform-origin: center center;
        }
        @keyframes gentleZoom {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.08);
            }
            100% {
                transform: scale(1);
            }
        }

        .hero-content h1 {
            color: #fff;
            font-size: 3.5rem;
            font-weight: 800;
        }
        .hero-content p {
            color: #fff;
            font-size: 1.2rem;
            margin-top: 1rem;
        }

        .hero-content {
            left: 6%;
            top: 30%;
            position: relative;
            z-index: 2;
        }
        .hint_box_case {
            margin-left: 0%;
            color: #fff;
            margin-top: 5%;
            position: relative;
            display: flex;
            align-items: center;
            z-index: 2;
        }
        .hint_box_case .hint_box {
            width: 13px;
            height: 21px;
            border: 2px solid #fff;
            border-radius: .5rem;
            position: relative;
            margin-right: .5vw;
            font-size: .14rem;
            line-height: 1;
        }
        .hint_box_case .hint_box span {
            width: 3px;
            height: 5px;
            border-radius: 2px;
            background-color: #fff;
            position: absolute;
            left: 3px;
            top: 2px;
            animation: upd 2s ease infinite;
        }
        @keyframes upd {
            0% {
                transform: none;
            }
            50% {
                transform: translateY(50%);
            }
            100% {
                transform: none;
            }
        }

        .zilei {
            width: 88%;
            background: #fff;
            border-radius: 30px;
            border: 0;
            margin: -4vw auto;
            z-index: 999;
            position: relative;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
            height: 8vw;
            padding: 0 4%;
        }
        .zilei ul {}
        .zilei ul li {
            float: left;
            width: 25%;
            text-align: center;
            list-style: none;
        }
        .zilei ul li a {
            text-decoration: none;
            font-size: 1.2vw;
            color: #222;
            line-height: 8vw;
        }
        .zilei ul li a.active {
            font-weight: bold;
        }

        /* 平滑滚动 */
        html {
            scroll-behavior: smooth;
        }

        .about {
            width: 94%;
            margin: 4vw 0% 0 6%;
        }

        /* 全局容器 */
        .container {
            max-width: 88%;
            margin: 0 auto;
            padding: 0 0px;
        }

        /* 板块通用间距 */
        section {
            padding: 5vw 0 7vw 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        /* 从下至上加载动画（初始隐藏） */
        .fade-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* 图片也应用动画 */
        img {
            display: block;
            max-width: 100%;
            height: auto;
        }

        /* 板块样式 */
        .intro-top-text {
            background: #fff;
            padding: 28px 32px;
            border-radius: 40px;
            margin-bottom: 48px;
            text-align: center;
        }
        .intro-top-text p {
            font-size: 1.8vw;
            font-weight: 700;
            color: #222;
            line-height: 1.6;
        }
        .intro-split {
            background: url(../images/huilogo1.png) no-repeat center bottom !important;
            background-size: 80% !important;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }
        .intro-left {
            flex: 1;
            font-size: 1.05rem;
            background: none;
            padding: 28px 16% 0 0%;
            border-radius: 32px;
        }
        .intro-left h2 {
            font-size: 1.3vw;
            color: #333;
            padding-bottom: 1vw;
        }
        .intro-left p {
            font-size: .95vw;
            padding-bottom: 1vw;
            font-weight: normal;
            line-height: 2vw;
            color: #333;
        }
        .intro-right {
            flex: 1;
            border-radius: 0px;
            overflow: hidden;

        }

        .intro-right img {
            width: 100%;
            border-bottom-left-radius: 20px;
            border-top-left-radius: 20px;
        }

        /* 三卡片: 使命·价值观·愿景 */
        .cards-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
            align-items: baseline;
            flex-direction: row;
        }
        .card-item {
            flex: 1;
            background: #fff;
            border-radius: 32px;
            padding: 32px 24px;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            border: 1px solid rgba(0, 0, 0, 0.03);
            height: 15vw;
        }
        .card-item img {
            width: 6vw;
            border-radius: 20px;
            margin-bottom: 1vw;
        }
        .card-item h3 {
            font-size: 1.3vw;
            margin-bottom: 20px;
            color: #222;
            border-left: 0px solid #f7b05e;
            padding-left: 0px;
        }
        .card-item p {
            color: #333;
            font-size: .9vw;
            line-height: 1.8;
        }

        /* 荣誉资质区域左右布局 （图片滚动版）*/
        .zizhi {
            background: #f1f2f6;
        }
        .honor-wrapper {
            display: block;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 20px;
        }
        .honor-text {
            float: left;
            width: 48%;
            margin-right: 17%;
            flex: 1;

            padding: 28px 0;
            border-radius: 32px;
        }
        .honor-text h3 {
            font-size: 1.3vw;
            color: #333;
            padding: 5vw 0 1vw 0;
        }
        .honor-text p {
            font-size: 2.5vw;
            color: #333;
        }
        .honor-scroll-area {
            width: 35%;
            flex: 1;

            padding: 20px;
            display: flex;
            gap: 24px;
            overflow: hidden;
            position: relative;
            height: 35vw;
        }
        .scroll-col {
            flex: 1;
            overflow: hidden;
            position: relative;

        }
        .scroll-inner {
            display: flex;
            flex-direction: column;
            gap: 18px;
            padding: 8px;
        }
        /* 荣誉图片样式 */
        .honor-img {
            width: 100%;
            aspect-ratio: 4 / 3;
            object-fit: cover;
            border-radius: 20px;

            transition: transform 0.2s ease, box-shadow 0.2s;
            display: block;
            border: 0px solid #eef2ff;
        }
        .honor-img:hover {
            transform: scale(0.98);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        /* 无缝滚动动画 */
        @keyframes scrollDownLoop {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-50%);
            }
        }
        @keyframes scrollUpLoop {
            0% {
                transform: translateY(-50%);
            }
            100% {
                transform: translateY(0);
            }
        }
        .scroll-down .scroll-inner {
            animation: scrollDownLoop 24s linear infinite;
        }
        .scroll-up .scroll-inner {
            animation: scrollUpLoop 24s linear infinite;
        }
        /* 暂停悬停效果 */
        .scroll-col:hover .scroll-inner {
            animation-play-state: paused;
        }

        /* 第四板块 - 专家团队全新布局: 左中右三块 */
        .expert-layout-section {
            background: transparent;
            margin: 3vw 0 0 0;
        }
        .expert-three-cols {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 30px;
        }
        /* 左侧区域：标题 + 切换按钮 */
        .expert-left {
            flex: 1;
            min-width: 180px;
            text-align: left;
        }
        .expert-left-title {
            font-size: 2.3vw;
            font-weight: 700;
            color: #333;
            margin-bottom: 32px;
            position: relative;
            display: inline-block;
        }
        .expert-left-title:after {
            content: '';
            display: block;
            width: 0px;
            height: 0px;
            background: #f7b05e;
            margin-top: 8px;
            border-radius: 2px;
        }
        .switch-group-vertical {
            display: flex;
            gap: 20px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        .tab-btn {
            background: linear-gradient(96deg, #096bb3 0%, #16b2aa 97.7%);
            border: none;
            padding: 10px 28px;
            border-radius: 40px;
            font-weight: bold;
            font-size: .75vw;
            cursor: pointer;
            transition: 0.2s;
            color: #fff;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        }
        .tab-btn:hover {
            background: #ffcf8a;
            transform: scale(0.96);
        }

        /* 中间区域：照片 */
        .expert-center {
            flex: 0 0 300px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .expert-img {
            width: 300px;
            height: 432px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.15);
            transition: opacity 0.2s, transform 0.3s;
            display: block;
        }

        /* 右侧区域：专家详情 */
        .expert-right {
            flex: 1.5;
            padding-left: 10px;
        }
        .tab-category {
            font-size: 1rem;
            letter-spacing: 2px;
            background: linear-gradient(96deg, #096bb3 0%, #16b2aa 97.7%);
            display: inline-block;
            padding: 10px 16px;
            border-radius: 30px;
            color: #fff;
            font-weight: bold;
            margin: 0 0 12px 0;
        }
        .expert-name {
            color: #333;
            font-size: 1.8vw;
            font-weight: 700;
            margin: 12px 0;
            line-height: 1.3;
        }
        .expert-desc {
            color: #333;
            line-height: 1.9;
            margin: 20px 0 0;
            font-size: .9vw;
            white-space: normal;
        }

        /* 隐藏的静态专家数据容器 (内容来自HTML，不写入JS) */
        .expert-static-data {
            display: none;
        }

        /* 响应式适配 */
        @media (max-width: 900px) {
            .expert-three-cols {
                flex-direction: column;
                text-align: center;
            }
            .expert-left {
                text-align: center;
                margin-bottom: 20px;
            }
            .expert-left-title:after {
                margin-left: auto;
                margin-right: auto;
            }
            .switch-group-vertical {
                justify-content: center;
            }
            .expert-center {
                flex-basis: auto;
            }
            .expert-right {
                text-align: center;
                padding-left: 0;
            }
            .expert-img {
                width: 260px;
                height: auto;
                aspect-ratio: 300 / 432;
            }
        }

        /* 第五板块背景图浮层 */
        .weilai {
            padding: 0 !important;
        }
        .hero-banner {
            background: url('../images/weilaibg.jpg') center/cover fixed;
            border-radius: 0px;
            padding: 7vw 6% 30vw 6%;
            text-align: left;
            margin: 0px 0;
        }
        .hero-title {
            font-size: 2.3vw;
            font-weight: 600;
            color: #fff;
            margin-bottom: 20px;
        }
        .hero-desc {
            font-size: 1vw;
            line-height: 1.8vw;
            color: #fff;
            max-width: 660px;
            margin: 0 0;
        }

        /* 第六板块职位信息 */
        .zhiwei {
            background: #f1f2f6;
            padding: 7vw 0 !important;
        }
        .jobs-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            margin-top: 40px;
        }
        .job-card {
            flex: 1 1 280px;
            background: #ffffff;
            border-radius: 28px;
            padding: 28px 20px;
            box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.08);
            transition: 0.25s ease;
            border: 1px solid #eef2ff;
        }
        .job-card h4 {
            font-size: 1.5rem;
            margin-bottom: 12px;
            color: #13294b;
        }
        .job-meta {
            color: #f7b05e;
            font-weight: 600;
            margin-bottom: 12px;
        }
        .job-desc {
            color: #333;
            padding-top: 1vw;
            line-height: 1.8vw;
            font-size: .9vw;
        }

        /* 辅助样式 */
        .section-title {
            font-size: 2.3vw;
            color: #333;
            margin-bottom: 12px;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }
        .section-sub {
            margin-bottom: 48px;
            color: #4b5c6e;
            border-left: 3px solid #f7b05e;
            padding-left: 18px;
        }
        hr {
            margin: 16px 0;
        }

        /* ============================================================
           移动端适配样式 (完美适配手机 & 平板)
           保持原有电脑端代码不变，仅追加以下媒体查询
           ============================================================ */

        /* ---------- 平板 & 大屏手机 (≤ 1024px) ---------- */
        @media (max-width: 1024px) {
            .zilei {
                height: auto;
                padding: 2vw 4%;
                margin: -6vw auto 0;
                border-radius: 24px;
            }
            .zilei ul li {
                width: 25%;
                line-height: 6vw;
            }
            .zilei ul li a {
                font-size: 1.6vw;
                line-height: 6vw;
            }

            .intro-left h2 {
                font-size: 1.8vw;
            }
            .intro-left p {
                font-size: 1.2vw;
                line-height: 2.4vw;
            }

            .card-item h3 {
                font-size: 1.6vw;
            }
            .card-item p {
                font-size: 1.1vw;
            }

            .honor-text h3 {
                font-size: 1.6vw;
            }
            .honor-text p {
                font-size: 2.8vw;
            }

            .expert-left-title {
                font-size: 2.8vw;
            }
            .tab-btn {
                font-size: 1vw;
                padding: 8px 20px;
            }
            .expert-name {
                font-size: 2.2vw;
            }
            .expert-desc {
                font-size: 1.1vw;
            }

            .hero-title {
                font-size: 2.8vw;
            }
            .hero-desc {
                font-size: 1.2vw;
                line-height: 2vw;
            }

            .section-title {
                font-size: 2.8vw;
            }
        }

        /* ---------- 手机 (≤ 768px) ---------- */
        @media (max-width: 768px) {
            /* ----- 全局重置 ----- */
            body {
                font-size: 14px;
                line-height: 1.6;
            }

            .container {
                max-width: 94%;
                padding: 0 10px;
            }

            section {
                padding: 8vw 0 10vw 0;
            }

            
            /* ----- Hero 区域 ----- */
            .hero {
                height: 60vh;
                min-height: 420px;
                align-items: center;
                justify-content: center;
                text-align: center;
            }
            .hero::before {
                animation: gentleZoom 12s infinite ease-in-out;
            }
            .hero-content {
                left: 0;
                top: 0;
                padding: 0 6%;
                width: 100%;
                text-align: center;
            }
            .hero-content h1 {
                font-size: 6vw;
                line-height: 1.3;
                margin-bottom: 10px;
            }
            .hero-content p {
                font-size: 3.2vw;
                margin-top: 6px;
            }
            .hint_box_case {
                margin-top: 8%;
                justify-content: center;
            }
            .hint_box_case .hint_box {
                width: 16px;
                height: 26px;
            }
            .hint_box_case .hint_box span {
                width: 4px;
                height: 6px;
                left: 4px;
                top: 3px;
            }
            .hint_box_case span:last-child {
                font-size: 2.8vw;
            }

            /* ----- 分类导航 .zilei ----- */
            .zilei {
                width: 94%;
                height: auto;
                margin: -8vw auto 0;
                padding: 8px 2%;
                border-radius: 20px;
                background: #fff;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
            }
            .zilei ul {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 2px;
            }
            .zilei ul li {
                float: none;
                width: auto;
                flex: 1 1 45%;
                text-align: center;
                line-height: 1;
                padding: 4px 0;
            }
            .zilei ul li a {
                font-size: 2.8vw;
                line-height: 1;
                padding: 8px 6px;
                display: inline-block;
                white-space: nowrap;
                color: #555;
                font-weight: 500;
                border-radius: 20px;
                transition: all 0.2s;
            }
            .zilei ul li a.active {
                background: linear-gradient(96deg, #096bb3 0%, #16b2aa 97.7%);
                color: #fff;
                padding: 8px 16px;
                font-weight: 600;
            }

            /* ----- 简介区域 .about ----- */
            .about {
                width: 96%;
                margin: 6vw 0 0 2%;
            }
            .intro-top-text {
                padding: 16px 18px;
                border-radius: 24px;
                margin-bottom: 28px;
            }
            .intro-top-text p {
                font-size: 3.6vw;
                font-weight: 600;
                line-height: 1.5;
            }

            .intro-split {
                flex-direction: column;
                gap: 24px;
                background-size: 100% !important;
            }
            .intro-left {
                flex: none;
                width: 100%;
                padding: 12px 0 0 0;
                text-align: left;
            }
            .intro-left h2 {
                font-size: 4.2vw;
                padding-bottom: 2vw;
            }
            .intro-left p {
                font-size: 3.2vw;
                line-height: 1.8;
                padding-bottom: 2vw;
            }
            .intro-right {
                flex: none;
                width: 100%;
                border-radius: 16px;
                overflow: hidden;
            }
            .intro-right img {
                border-radius: 16px;
                width: 100%;
                height: auto;
            }

            /* ----- 卡片网格 (使命·价值观·愿景) ----- */
            .cards-grid {
                flex-direction: column;
                gap: 18px;
                margin-top: 20px;
            }
            .cards-grid .cards-grid {
                flex-direction: column;
                gap: 18px;
                margin-top: 0;
            }
            .card-item {
                flex: none;
                width: 100%;
                padding: 20px 16px;
                border-radius: 24px;
                text-align: center;
                height: auto;
            }
            .card-item img {
                width: 20vw;
                max-width: 90px;
                border-radius: 16px;
                margin: 0 auto 10px;
                display: block;
            }
            .card-item h3 {
                font-size: 3.6vw;
                margin-bottom: 8px;
            }
            .card-item p {
                font-size: 2.8vw;
                line-height: 1.5;
            }
            .card-item br {
                display: none;
            }
            .card-item p br {
                display: inline;
            }

            /* ----- 荣誉资质 .zizhi ----- */
            .zizhi {
                background-size: cover !important;
                background-position: center !important;
            }
            .honor-wrapper {
                display: flex;
                flex-direction: column;
                gap: 20px;
            }
            .honor-text {
                float: none;
                width: 100%;
                margin-right: 0;
                padding: 16px 0;
                text-align: center;
            }
            .honor-text h3 {
                font-size: 4.2vw;
                padding: 2vw 0 1vw;
            }
            .honor-text p {
                font-size: 3.6vw;
                line-height: 1.5;
            }

            /* ===== 荣誉资质滚动区域 - 移动端高度缩短 ===== */
            .honor-scroll-area {
                width: 100%;
                height: 40vw;
                /* 原 60vw，缩短滚动长度 */
                padding: 0;
                gap: 12px;
                flex-direction: row;
            }
            .scroll-col {
                flex: 1;
                overflow: hidden;
                position: relative;
                border-radius: 12px;
            }
            .scroll-inner {
                gap: 10px;
                padding: 4px;
            }
            .honor-img {
                border-radius: 12px;
                aspect-ratio: 4 / 3;
            }
            @keyframes scrollDownLoop {
                0% {
                    transform: translateY(0);
                }
                100% {
                    transform: translateY(-50%);
                }
            }
            @keyframes scrollUpLoop {
                0% {
                    transform: translateY(-50%);
                }
                100% {
                    transform: translateY(0);
                }
            }

            /* ----- 专家团队 (左中右 → 上下) ----- */
            .expert-layout-section {
                margin: 2vw 0 0;
            }
            .expert-three-cols {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            .expert-left {
                flex: none;
                width: 100%;
                text-align: center;
                min-width: auto;
            }
            .expert-left-title {
                font-size: 5vw;
                margin-bottom: 16px;
                display: inline-block;
            }
            .expert-left-title:after {
                width: 40px;
                height: 4px;
                margin: 8px auto 0;
            }
            .switch-group-vertical {
                justify-content: center;
                gap: 12px;
                margin-top: 10px;
                flex-wrap: wrap;
            }
            .tab-btn {
                font-size: 2.8vw;
                padding: 8px 18px;
                border-radius: 30px;
                min-width: 80px;
            }

            .expert-center {
                flex: none;
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
            }
            .expert-img {
                width: 60vw;
                max-width: 280px;
                height: auto;
                aspect-ratio: 300 / 432;
                border-radius: 18px;
            }

            .expert-right {
                flex: none;
                width: 100%;
                padding-left: 0;
                text-align: center;
            }
            .tab-category {
                font-size: 2.8vw;
                padding: 6px 16px;
                border-radius: 24px;
                display: inline-block;
                margin-bottom: 10px;
                letter-spacing: 1px;
            }
            .expert-name {
                font-size: 4.8vw;
                margin: 8px 0;
                line-height: 1.3;
            }
            .expert-desc {
                font-size: 3vw;
                line-height: 1.8;
                margin: 12px 0 0;
                text-align: left;
                padding: 0 4px;
            }

            /* ----- 未来背景图 .hero-banner ----- */
            .hero-banner {
                background-attachment: scroll !important;
                background-size: cover !important;
                border-radius: 0;
                padding: 12vw 6% 20vw;
                text-align: center;
                margin: 0;
            }
            .hero-title {
                font-size: 4.8vw;
                margin-bottom: 12px;
                line-height: 1.4;
            }
            .hero-desc {
                font-size: 3vw;
                line-height: 1.8;
                max-width: 100%;
                margin: 0 auto;
            }

            /* ----- 职位信息 .zhiwei ----- */
            .zhiwei {
                padding: 10vw 0 !important;
            }
            .section-title {
                font-size: 5vw;
                display: block;
                text-align: center;
                margin-bottom: 6px;
            }
            .section-sub {
                font-size: 3vw;
                padding-left: 12px;
                margin-bottom: 24px;
                border-left-width: 2px;
            }
            .jobs-grid {
                flex-direction: column;
                gap: 18px;
                margin-top: 20px;
            }
            .job-card {
                flex: none;
                width: 100%;
                padding: 20px 16px;
                border-radius: 20px;
            }
            .job-card h4 {
                font-size: 4vw;
                margin-bottom: 6px;
            }
            .job-meta {
                font-size: 2.8vw;
                margin-bottom: 6px;
            }
            .job-desc {
                font-size: 3vw;
                line-height: 1.7;
                padding-top: 6px;
            }

            
        }

        /* ---------- 小屏手机 (≤ 480px) ---------- */
        @media (max-width: 480px) {
            .hero {
                height: 50vh;
                min-height: 340px;
            }
            .hero-content h1 {
                font-size: 7vw;
            }
            .hero-content p {
                font-size: 3.6vw;
            }
            .hint_box_case span:last-child {
                font-size: 3.2vw;
            }

            .zilei ul li {
                flex: 1 1 48%;
            }
            .zilei ul li a {
                font-size: 3.2vw;
                padding: 6px 8px;
            }
            .zilei ul li a.active {
                padding: 6px 12px;
            }

            .intro-left h2 {
                font-size: 4.8vw;
            }
            .intro-left p {
                font-size: 3.6vw;
                line-height: 1.7;
            }

            .card-item {
                padding: 16px 12px;
                height: auto;
            }
            .card-item h3 {
                font-size: 4vw;
            }
            .card-item p {
                font-size: 3.2vw;
            }
            .card-item img {
                width: 24vw;
                max-width: 70px;
            }

            .honor-text p {
                font-size: 4vw;
            }
            /* ===== 小屏手机荣誉资质滚动高度进一步缩短 ===== */
            .honor-scroll-area {
                height: 50vw;
                /* 原 70vw，缩短滚动长度 */
            }

            .expert-img {
                width: 70vw;
                max-width: 220px;
            }
            .expert-name {
                font-size: 5.6vw;
            }
            .expert-desc {
                font-size: 3.4vw;
            }
            .tab-btn {
                font-size: 3.2vw;
                padding: 6px 14px;
                min-width: 60px;
            }

            .hero-title {
                font-size: 5.6vw;
            }
            .hero-desc {
                font-size: 3.4vw;
            }

            .job-card h4 {
                font-size: 4.6vw;
            }
            .job-desc {
                font-size: 3.4vw;
            }

            .footer .f_ban p {
                font-size: 3vw !important;
            }
            .footer .f_ban p span {
                font-size: 2.8vw !important;
            }
            .footer .copyright {
                font-size: 2.8vw;
            }
        }

        /* ---------- 超小屏 (≤ 360px) ---------- */
        @media (max-width: 360px) {
            .hero {
                height: 44vh;
                min-height: 280px;
            }
            .hero-content h1 {
                font-size: 8vw;
            }
            .zilei ul li {
                flex: 1 1 100%;
            }
            .zilei ul li a {
                font-size: 3.6vw;
            }
            .intro-left p {
                font-size: 4vw;
            }
            .card-item p {
                font-size: 3.6vw;
            }
            .expert-desc {
                font-size: 3.8vw;
            }
            .job-desc {
                font-size: 3.8vw;
            }
        }

        
       