@charset "utf-8";

/* 移动端响应式 - 仅 max-width:992px 生效，不影响 PC */

@media (max-width: 992px) {
    :root {
        --base-px: 1px;
        --m-gap: 20px;
        --m-text: 16px;
        --m-text-sm: 14px;
        --m-title: 24px;
        --m-subtitle: 18px;
        --m-line: 1.7;
        --m-radius: 10px;
        /* 首页轮播按 PC 设计稿 2300×670 比例，保证完整显示 */
        --m-hero-h: calc(100vw * 670 / 2300);
        /* 内页 Banner 按 2300×380 比例 */
        --m-banner-h: calc(100vw * 380 / 2300);
    }

    html,
    body {
        overflow-x: hidden;
        max-width: 100%;
        -webkit-text-size-adjust: 100%;
        font-size: var(--m-text);
        line-height: var(--m-line);
    }

    body.nav-body-lock {
        overflow: hidden;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    /* ========== 容器边距 ========== */
    header .W1520,
    .W1520,
    .W1344,
    .W1440 {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: var(--m-gap) !important;
        padding-right: var(--m-gap) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box;
    }

    /* ========== Header ========== */
    header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: #fff;
    }

    header .header-bar {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        position: relative;
        min-height: 56px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    header .header-bar.align-center {
        justify-content: flex-start;
    }

    header .header-bar > .header-tools {
        display: none;
    }

    .header-right {
        display: flex;
        align-items: center;
        margin-left: auto;
        gap: 2px;
    }

    .Logo {
        flex-shrink: 0;
    }

    .Logo > a > img {
        width: 96px;
        height: auto;
    }

    .header-tools {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .search-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
    }

    .search-icon > img {
        width: 18px;
        height: 18px;
    }

    .translate-text {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 36px;
        height: 40px;
        margin-left: 0 !important;
        font-size: 14px;
        font-weight: 600;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        margin-left: 2px;
        flex-shrink: 0;
        padding: 0;
        border: none;
        background: transparent;
        cursor: pointer;
        gap: 5px;
    }

    .nav-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        background: #2B2D3B;
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .nav-toggle.nav-toggle-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.nav-toggle-active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.nav-toggle-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav {
        display: none;
        order: 10;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: auto;
        flex-direction: column;
        background: #fff;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
        padding: 8px 0 12px;
        z-index: 999;
        max-height: calc(100vh - 56px);
        overflow-y: auto;
    }

    .nav.nav-open {
        display: flex;
    }

    .nav > li {
        float: none;
        width: 100%;
        justify-content: center;
    }

    .nav > li:nth-child(1) {
        margin-left: 0;
    }

    .nav > li a {
        width: 100%;
        margin: 0;
        padding: 14px var(--m-gap);
        height: auto;
        font-size: 16px;
        line-height: 1.4;
        border-radius: 0;
        box-sizing: border-box;
    }

    .nav > li a.selected,
    .nav > li a:hover {
        border-radius: 0;
    }

    /* ========== Banner / 轮播：完整显示，不裁切文字 ========== */
    .swiper2 {
        width: 100%;
        overflow: hidden;
        background: #8ec8e8;
    }

    .swiper2,
    .swiper2 .swiper-slide {
        height: var(--m-hero-h) !important;
        min-height: 140px;
        max-height: 360px;
    }

    .swiper2 .swiper-slide {
        /* 覆盖 HTML 内联的 cover，改为完整显示 */
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
        background-color: #8ec8e8 !important;
    }

    .swiper2 .swiper-button-prev,
    .swiper2 .swiper-button-next {
        display: none;
    }

    .swiper2 .swiper-pagination-bullet {
        width: 18px;
        height: 4px;
        border-radius: 2px;
    }

    .banner,
    .banner1 {
        width: 100%;
        height: var(--m-banner-h) !important;
        min-height: 120px;
        max-height: 280px;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
        background-color: #1a5a7a;
    }

    .banner > div,
    .banner1 > div {
        font-size: 26px;
        padding: 0 var(--m-gap);
        text-align: center;
    }

    /* ========== 通用排版 ========== */
    .top-title > div {
        font-size: var(--m-title);
        line-height: 1.35;
    }

    .model-top-line {
        width: 48px;
        height: 4px;
        margin-top: 10px;
        border-radius: 2px;
    }

    .model-top-line2 {
        margin-top: 12px;
    }

    .navigation {
        padding: 20px 0 8px;
    }

    .navigation > .nav-text,
    .char-navigation > .nav-text {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 16px;
        color: #888;
        word-break: break-word;
    }

    .navigation > .content-box {
        margin: 24px 0;
    }

    .navigation > .content-box > p,
    .content-box > p,
    .goal-text,
    .Novel-text,
    .switch-main1 > div,
    .detail-text,
    .blurb-box > .blurb-content > div {
        font-size: var(--m-text) !important;
        line-height: var(--m-line) !important;
        margin-bottom: 14px !important;
    }

    .btn-more {
        width: auto !important;
        min-width: 140px;
        min-height: 44px;
        height: auto !important;
        padding: 12px 22px;
        font-size: 15px;
        border-radius: 6px;
        box-sizing: border-box;
    }

    .btn-more > img {
        width: 14px;
        height: 14px;
        margin-left: 10px;
        padding-top: 0;
    }

    /* ========== 通用布局 ========== */
    .display-flex {
        flex-wrap: wrap;
    }

    .model1,
    .model2,
    .model-master,
    .blurb-box,
    .contact-box,
    .detail-box,
    .news-item,
    .search-box,
    .join-box,
    .character-ul {
        flex-direction: column !important;
    }

    .model1 > .model-left,
    .model2 > .model-left,
    .model1 > .model-right,
    .model2 > .model-right,
    .model4 > .model-master > .master-left,
    .model4 > .model-master > .master-right {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .model1 > .model-right > img,
    .model2 > .model-left > img,
    .navigation > .nav-img,
    .blurb-box > div > img,
    .contact-box > img,
    .news-item > img,
    .news-img,
    .detail-video,
    .model4 > .model-master > .master-left > img {
        width: 100% !important;
        height: auto !important;
        max-width: 100%;
        object-fit: cover;
        display: block;
        border-radius: var(--m-radius);
    }

    .model1,
    .model2,
    .model3,
    .model4 {
        padding: 32px 0;
    }

    .model1 > .model-left {
        margin-right: 0;
        padding-top: 0;
        margin-bottom: 20px;
    }

    .model2 > .model-left {
        margin-right: 0;
        margin-bottom: 0;
        order: 2;
    }

    .model2 > .model-right {
        order: 1;
        margin-bottom: 20px;
    }

    .model1 > .model-left > .model-text1,
    .model2 > .model-right > .model-text1 {
        font-size: var(--m-subtitle);
        line-height: 1.4;
        margin: 16px 0 10px;
    }

    .model1 > .model-left > .model-text2,
    .model2 > .model-right > .model-text2,
    .model2 > .model-right > .model-text3 {
        font-size: var(--m-text);
        line-height: var(--m-line);
        margin-bottom: 20px;
    }

    .model2 > .model-right > .model-text2,
    .model2 > .model-right > .model-text3 {
        margin-top: 10px;
    }

    .model-box,
    .model-box2 {
        background-size: cover;
        background-position: center;
    }

    .model-box2 {
        padding: 32px 0 !important;
    }

    /* 产品网格（强制覆盖 PC 固定宽高，避免横向滚动） */
    .product-box {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden;
        margin-bottom: 32px !important;
    }

    .product-box > .model-list {
        margin-top: 24px !important;
        margin-bottom: 16px !important;
        width: 100%;
    }

    .model3 > .model-list > ul,
    .product-box > .model-list > ul {
        display: flex !important;
        flex-wrap: wrap !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        gap: 14px !important;
        width: 100% !important;
    }

    .model3 > .model-list > ul > li,
    .product-box > .model-list > ul > li,
    .model-list-li {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 !important;
        position: relative !important;
        overflow: hidden !important;
        border-radius: 16px;
        box-sizing: border-box !important;
    }

    .model3 > .model-list > ul > li > .list-item,
    .product-box > .model-list > ul > li > .list-item {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        padding: 14px !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }

    .model3 > .model-list > ul > li > .list-item > img,
    .product-box > .model-list > ul > li > .list-item > img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        border-radius: 8px;
        display: block;
    }

    .model3 > .model-list > ul > li > .list-item > div,
    .product-box > .model-list > ul > li > .list-item > div {
        font-size: 15px !important;
        line-height: 1.4 !important;
        margin-top: 12px !important;
        word-break: break-word;
    }

    /* 悬停层：绝对定位铺满卡片，禁止 PC 的 relative + 负 top */
    .model3 > .model-list > ul > li > .list-acitve,
    .product-box > .model-list > ul > li > .list-acitve {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 16px !important;
        box-sizing: border-box !important;
        border-radius: 16px !important;
        overflow: auto !important;
        z-index: 2;
    }

    .model3 > .model-list > ul > li > .list-acitve > div,
    .product-box > .model-list > ul > li > .list-acitve > div {
        font-size: 14px !important;
        line-height: 1.5 !important;
        word-break: break-word;
        width: auto !important;
        max-width: 100% !important;
    }

    .model3 > .model-list > ul > li > .list-acitve > div:nth-child(1),
    .product-box > .model-list > ul > li > .list-acitve > div:nth-child(1) {
        font-size: 16px !important;
        margin-top: 8px !important;
    }

    .model3 > .model-list > ul > li > .list-acitve > div:nth-child(2),
    .product-box > .model-list > ul > li > .list-acitve > div:nth-child(2) {
        margin-top: 10px !important;
    }

    .model3 > .model-list > ul > li > .list-acitve > div:nth-child(3),
    .product-box > .model-list > ul > li > .list-acitve > div:nth-child(3) {
        margin-top: 16px !important;
        width: auto !important;
        min-width: 110px;
        max-width: 100%;
        text-align: center;
        padding: 10px 18px !important;
        box-sizing: border-box !important;
    }

    /* 移动端：隐藏悬停遮罩，改为点击整卡跳转，避免布局错乱 */
    .model3 > .model-list > ul > li > .list-acitve,
    .product-box > .model-list > ul > li > .list-acitve {
        display: none !important;
    }

    .model3 > .model-list > ul > li > .list-item > .list-item-text,
    .product-box > .model-list > ul > li > .list-item > .list-item-text {
        display: block !important;
    }

    .model3 > .justify-between {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .model3 > .model-list {
        margin-top: 24px;
    }

    /* ========== 首页新闻 ========== */
    .model4 > .model-master {
        margin-top: 20px;
        gap: 20px;
    }

    .model4 > .model-master > .master-left > .model-text1 {
        font-size: 17px;
        line-height: 1.4;
        margin-top: 12px;
    }

    .model4 > .model-master > .master-left > .model-text2 {
        font-size: var(--m-text-sm);
        line-height: var(--m-line);
        margin-top: 8px;
        margin-bottom: 16px;
    }

    .model4 > .model-master > .master-right {
        width: 100%;
    }

    .model4 > .model-master > .master-right > ul > li {
        padding: 16px;
        margin-bottom: 12px;
        border-radius: 8px;
        flex-direction: row;
        align-items: flex-start;
    }

    .model4 > .model-master > .master-right > ul > li > .li-left {
        width: auto;
        min-width: 56px;
        border-right: 1px solid #D8D8D8;
        padding-right: 14px;
        flex-shrink: 0;
    }

    .model4 > .model-master > .master-right > ul > li > .li-left > .model-text1 {
        font-size: 28px;
        line-height: 1;
    }

    .model4 > .model-master > .master-right > ul > li > .li-left > .model-text2 {
        font-size: 12px;
        margin-top: 4px;
    }

    .model4 > .model-master > .master-right > ul > li > .li-right {
        padding-left: 14px;
        flex: 1;
        min-width: 0;
    }

    .model4 > .model-master > .master-right > ul > li > .li-right > .model-text3 {
        font-size: 15px;
        line-height: 1.4;
        word-break: break-word;
    }

    .model4 > .model-master > .master-right > ul > li > .li-right > .model-text4 {
        font-size: 13px;
        line-height: 1.6;
        margin-top: 6px;
        word-break: break-word;
    }

    /* ========== About Us ========== */
    .culture-box {
        height: auto !important;
        min-height: 280px;
        padding: 36px 0 !important;
        background-size: cover;
        background-position: center;
        box-sizing: border-box;
    }

    .culture-box > div > ul {
        flex-direction: column !important;
        padding: 0 !important;
        gap: 12px;
        align-items: stretch !important;
    }

    .culture-box > div > ul > li,
    .culture-box > div > ul > li:hover {
        width: 100% !important;
        height: auto !important;
        padding: 18px !important;
        box-sizing: border-box;
        border-radius: 8px;
    }

    .culture-box > div > ul > li > img {
        width: 32px;
        height: auto;
    }

    .culture-box > div > ul > li > div:nth-child(2) {
        font-size: 16px;
        line-height: 1.4;
        margin: 10px 0 6px;
    }

    .culture-box > div > ul > li > div:nth-child(3) {
        font-size: var(--m-text-sm);
        line-height: var(--m-line);
    }

    /* ========== R&D ========== */
    .blurb-box {
        margin-bottom: 20px;
    }

    .blurb-box > .blurb-content {
        padding: 20px !important;
        margin-top: 12px;
        border-radius: var(--m-radius);
        background-size: cover;
    }

    .blurb-box > .blurb-content > div:nth-child(1) {
        font-size: var(--m-subtitle);
    }

    .blurb-box > .blurb-content > div:nth-child(2) {
        margin-top: 20px !important;
    }

    .character-title {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .switch-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 20px;
    }

    .switch-nav > li {
        margin-right: 0 !important;
        margin-bottom: 0;
        font-size: 13px;
        padding: 10px 12px;
        border-radius: 6px;
    }

    .Novel-title {
        font-size: var(--m-title);
        margin-top: 28px;
    }

    /* ========== R&D Commitments 卡片 ========== */
    .character-box {
        height: auto !important;
        min-height: 0;
        padding: 28px 0;
        margin-bottom: 8px;
        background: #F4F5F9;
    }

    .character-content {
        padding-top: 0 !important;
    }

    .char-container {
        position: static !important;
        top: auto !important;
        height: auto !important;
        padding-bottom: 8px;
        margin-top: 0;
    }

    .character-ul {
        margin-right: 0 !important;
        gap: 12px;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .character-ul > li {
        width: 100% !important;
        height: auto !important;
        min-height: 0;
        padding: 18px 16px;
        box-sizing: border-box;
        margin-bottom: 0;
        background-image: none !important;
        background-color: #fff;
        border: 1px solid #eaeaea;
        border-top: 3px solid #40CAC0;
        border-radius: var(--m-radius);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .character-ul > li > div {
        text-align: left;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .character-ul > li > div:nth-child(1) {
        font-size: 16px;
        font-weight: 700;
        margin-top: 0 !important;
        color: #2B2D3B;
    }

    .character-ul > li > div:nth-child(2) {
        font-size: var(--m-text-sm);
        line-height: var(--m-line);
        margin-top: 8px;
        width: 100% !important;
        margin-left: 0 !important;
        color: #666;
    }

    /* ========== People ========== */
    .people-ul {
        gap: 12px;
        justify-content: space-between;
    }

    .people-ul > li {
        width: 100% !important;
        margin-right: 0 !important;
        margin-bottom: 12px;
        box-sizing: border-box;
    }

    .people-ul > li > img {
        width: 100%;
        height: auto;
    }

    .people-ul > li > div:nth-child(2) {
        font-size: 16px;
        margin: 12px 10px 6px;
    }

    .people-ul > li > div:nth-child(3) {
        font-size: var(--m-text-sm);
        line-height: 1.5;
        margin: 0 10px 14px;
    }

    /* ========== Products / Search ========== */
    .W1520 > .justify-between {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .search-box {
        width: 100%;
        gap: 12px;
    }

    .search-box > .search-select {
        width: 100% !important;
        box-sizing: border-box;
        font-size: var(--m-text);
        padding: 14px 16px;
        border-radius: 8px;
    }

    .search-box > .search-input {
        width: 100% !important;
        box-sizing: border-box !important;
        height: auto !important;
        min-height: 48px;
        display: flex !important;
        align-items: stretch !important;
        overflow: hidden;
        border-radius: 8px;
    }

    .search-box > .search-input > input {
        width: 100% !important;
        flex: 1;
        min-width: 0;
        font-size: var(--m-text);
        height: auto !important;
        padding: 12px 14px !important;
        box-sizing: border-box;
    }

    .search-box > .search-input > div {
        font-size: 14px !important;
        min-height: 48px;
        height: auto !important;
        padding: 0 14px !important;
        flex-shrink: 0;
        white-space: nowrap;
        display: flex !important;
        align-items: center !important;
        box-sizing: border-box;
    }

    ul.nav_xl {
        width: 100% !important;
        max-width: 100% !important;
        left: 0;
        right: 0;
        box-sizing: border-box;
    }

    /* ========== 详情页（产品详情 / 团队详情） ========== */
    .detail-box,
    .detail-box.display-flex {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 20px !important;
        margin-bottom: 40px !important;
        gap: 16px;
        overflow: hidden;
        box-sizing: border-box !important;
    }

    .detail-box > .detail-left,
    .detail-box > .detail-right {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        float: none !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        position: static !important;
    }

    .detail-box > .detail-left > div,
    .detail-box > .detail-left > div:nth-child(1),
    .detail-box > .detail-left > .product-main {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 16px !important;
        margin: 0 !important;
    }

    .detail-box > .detail-left img,
    .detail-box > .detail-left > div > img,
    .detail-box > .detail-left .product-main img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: block;
    }

    .detail-box > .detail-right {
        padding-left: 0 !important;
        margin-top: 0 !important;
    }

    .detail-box > .detail-right > div {
        width: 100% !important;
        max-width: 100% !important;
        font-size: var(--m-text) !important;
        line-height: var(--m-line) !important;
        margin-top: 12px !important;
        word-break: break-word !important;
        overflow-wrap: anywhere !important;
        white-space: normal !important;
        position: static !important;
        float: none !important;
        left: auto !important;
        right: auto !important;
        box-sizing: border-box !important;
    }

    .detail-box > .detail-right > div:nth-child(1) {
        font-size: 22px !important;
        line-height: 1.35 !important;
        margin-top: 0 !important;
        font-weight: 700;
        color: #111 !important;
    }

    .detail-box > .detail-right > div:nth-child(2) {
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin-top: 8px !important;
        color: #888 !important;
    }

    .detail-box > .detail-right > div:nth-child(3) {
        margin-top: 16px !important;
    }

    /* 富文本内容防溢出、防重叠 */
    .detail-box > .detail-right img,
    .detail-box > .detail-right table,
    .detail-box > .detail-right iframe,
    .detail-box > .detail-right video {
        max-width: 100% !important;
        width: auto !important;
        height: auto !important;
    }

    .detail-box > .detail-right table {
        display: block;
        overflow-x: auto;
    }

    .detail-box > .detail-right p,
    .detail-box > .detail-right span,
    .detail-box > .detail-right div,
    .detail-box > .detail-right li {
        max-width: 100% !important;
        word-break: break-word !important;
        overflow-wrap: anywhere !important;
        position: static !important;
        float: none !important;
    }

    .detail-title {
        font-size: var(--m-title);
        word-break: break-word;
    }

    /* 产品详情缩略图 */
    .product-thumbs {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 88px;
        margin-top: 12px !important;
        padding: 10px 32px !important;
        box-sizing: border-box !important;
    }

    .productThumbsSwiper {
        width: 100% !important;
        height: 72px !important;
    }

    .productThumbsSwiper .swiper-slide {
        height: 68px !important;
    }

    .swiper3 {
        width: 100% !important;
        height: auto;
        min-height: 90px;
    }

    /* ========== News ========== */
    .news-item {
        flex-direction: column !important;
        padding: 14px;
        box-sizing: border-box;
    }

    .news-item > img {
        width: 100% !important;
        height: auto !important;
        margin-bottom: 12px;
        border-radius: 8px;
    }

    .news-item > .news-item-left {
        border-right: none !important;
        border-bottom: 1px solid #D8D8D8;
        margin: 0 0 12px 0 !important;
        padding: 0 0 10px 0 !important;
        width: 100%;
        display: flex;
        align-items: baseline;
        gap: 10px;
    }

    .news-item > .news-item-left > div:nth-child(1) {
        font-size: 32px;
        padding-top: 0;
        line-height: 1;
    }

    .news-item > .news-item-left > div:nth-child(2) {
        font-size: 13px;
        padding-top: 0;
    }

    .news-item > .news-item-right {
        margin: 0 !important;
        width: 100%;
    }

    .news-item > .news-item-right > div:nth-child(1) {
        font-size: 16px;
        line-height: 1.4;
        word-break: break-word;
    }

    .news-item > .news-item-right > div:nth-child(2) {
        font-size: var(--m-text-sm);
        line-height: var(--m-line);
        margin: 8px 0;
        word-break: break-word;
    }

    .news-item > .news-item-right > div:nth-child(3) > a {
        font-size: 15px;
    }

    .load-btn,
    .more-btn {
        min-height: 44px;
        font-size: 15px;
        padding: 12px 24px;
        width: auto !important;
        box-sizing: border-box;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* ========== Contact ========== */
    .contact-main {
        padding: 28px 0 !important;
        box-sizing: border-box;
    }

    .contact-title {
        font-size: var(--m-title);
    }

    .contact-box {
        margin-top: 20px;
        gap: 16px;
        width: 100%;
    }

    .contact-box > div {
        margin-left: 0 !important;
        width: 100%;
    }

    .contact-box > img {
        width: 100% !important;
        max-width: 280px;
        height: auto !important;
        margin: 0 auto;
        display: block;
    }

    .contact-info {
        flex-direction: column !important;
        width: 100%;
        gap: 12px;
    }

    .contact-info > div {
        width: 100% !important;
        margin-left: 0 !important;
        height: auto !important;
        font-size: var(--m-text);
        box-sizing: border-box;
    }

    .contact-info > div:nth-child(1) {
        gap: 10px;
    }

    .contact-info > div:nth-child(1) > div,
    .contact-info > div:nth-child(2) {
        padding: 16px !important;
        border-radius: 8px;
        box-sizing: border-box;
    }

    .contact-info > div:nth-child(1) > div > input,
    .contact-info > div:nth-child(2) > input {
        font-size: var(--m-text);
        width: 100%;
        box-sizing: border-box;
    }

    .contact-submit {
        font-size: var(--m-text);
        min-height: 48px;
        line-height: 48px;
        padding: 0;
        border-radius: 8px;
        margin-top: 12px;
    }

    /* ========== Join Us（重点修复按钮溢出） ========== */
    .join-main {
        height: auto !important;
        min-height: 0 !important;
        padding: 24px 0 40px !important;
        background-size: cover;
        background-position: center top;
        overflow: hidden;
    }

    .join-box {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        gap: 14px;
        margin-top: 16px;
        width: 100%;
    }

    .join-box > div {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !important;
        margin: 0 !important;
        border-radius: var(--m-radius);
        overflow: hidden;
    }

    .join-box > div > div:nth-child(1) {
        font-size: 17px;
        font-weight: 700;
        padding-bottom: 12px !important;
        word-break: break-word;
    }

    .join-box > div > div:nth-child(2),
    .join-box > div > div:nth-child(3) {
        font-size: var(--m-text-sm);
        line-height: var(--m-line);
        margin-top: 10px !important;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    /* Apply now 按钮：完整可见、可点击 */
    .join-box > div > div:nth-child(4) {
        width: auto !important;
        max-width: 100%;
        min-width: 120px;
        min-height: 44px;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        font-size: 15px !important;
        padding: 10px 22px !important;
        margin-top: 16px !important;
        border-radius: 999px;
        box-sizing: border-box;
        cursor: pointer;
        white-space: nowrap;
    }

    /* ========== Footer ========== */
    footer {
        height: auto !important;
        min-height: 0;
        padding: 0 0 28px;
        background-size: cover;
        background-position: center;
        overflow: hidden;
    }

    footer > div {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px;
        padding-top: 28px !important;
        font-size: var(--m-text-sm);
        width: 100%;
        box-sizing: border-box;
    }

    footer > div > div:nth-child(1) {
        display: none;
    }

    footer > div > ul {
        flex-direction: column !important;
        width: 100%;
        gap: 18px;
    }

    footer > div > ul > li,
    footer > div > ul > li:nth-child(3) {
        width: 100% !important;
    }

    footer > div > ul > li > div:nth-child(1),
    footer > div > .footer-send > .send-title {
        font-size: 15px;
        margin-bottom: 10px;
    }

    footer > div > ul > li > div {
        font-size: 13px;
        line-height: 1.65;
        margin-top: 6px;
        word-break: break-word;
    }

    footer > div > .footer-send {
        width: 100%;
    }

    footer > div > .footer-send > .send-btn {
        width: 100%;
        box-sizing: border-box;
        align-items: center;
    }

    footer > div > .footer-send .email-input {
        font-size: var(--m-text);
        min-height: 44px;
        width: 100%;
        box-sizing: border-box;
    }

    footer .TxtCenter {
        padding: 16px var(--m-gap) 0;
        font-size: 12px;
        line-height: 1.5;
        word-break: break-word;
    }

    /* ========== Pagination ========== */
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
        font-size: 14px;
        gap: 4px;
        padding-bottom: 24px;
    }

    .pagination > span {
        min-width: 36px;
        min-height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .pagination > img {
        margin: 0 8px;
    }
}

/* 小屏手机再微调 */
@media (max-width: 576px) {
    :root {
        --m-gap: 16px;
        --m-title: 22px;
        --m-subtitle: 17px;
        --m-hero-h: calc(100vw * 670 / 2300);
        --m-banner-h: calc(100vw * 380 / 2300);
    }

    .model4 > .model-master > .master-right > ul > li {
        flex-direction: column;
    }

    .model4 > .model-master > .master-right > ul > li > .li-left {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #D8D8D8;
        padding-right: 0;
        padding-bottom: 8px;
        margin-bottom: 8px;
        display: flex;
        align-items: baseline;
        gap: 8px;
    }

    .model4 > .model-master > .master-right > ul > li > .li-right {
        padding-left: 0;
    }
}

/* PC 端：隐藏移动端专用结构，完全不影响原视觉 */
@media (min-width: 993px) {
    .nav-toggle,
    .header-right {
        display: none !important;
    }

    header .header-bar > .header-tools {
        display: flex;
    }

    header .header-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}
