    /* 英雄区域轮播 - 优化 */
    .hero-slider-container {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .hero-slider {
        position: relative;
        width: 100%;
        height: 720px;
        overflow: hidden;
    }

    .hero-track {
        display: flex;
        transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
        height: 100%;
    }

    .hero-slide {
        min-width: 100%;
        position: relative;
        height: 100%;
    }

    .hero-content {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .hero-image-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 8s ease;
    }

    /* 视频播放器样式 */
    .hero-slider video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    /* 视频上方叠加层样式 */
    .hero-overlay-layer {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.1);
        z-index: 2;
    }

    .hero-slide.active .hero-image {
        transform: scale(1.05);
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
    }

    .hero-text-container {
        position: absolute;
        bottom: 58px;
        left: 58px;
        text-align: left;
        z-index: 10;
        opacity: 1;
        transition: opacity 0.8s ease;
    }

    .hero-slide:not(.active) .hero-text-container {
        opacity: 0;
        pointer-events: none;
    }

    .hero-text-container h1 {
        font-size: 60px;
        font-weight: bold;
        line-height: 1.2;
        letter-spacing: 0.05em;
        background: rgba(255, 255, 255, 1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        transform: translateY(20px);
        transition: transform 0.8s ease;
    }

    .hero-text-container p {
        font-size: 1.5rem;
        color: #ddd;
        margin-bottom: 50px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        transform: translateY(20px);
        transition: transform 0.8s ease 0.1s;
    }

    .hero-slide.active .hero-text-container h1,
    .hero-slide.active .hero-text-container p {
        transform: translateY(0);
    }

    .hero-slider-controls {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 20px;
        z-index: 20;
    }

    .hero-slider-btn {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #555;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .hero-slider-btn.active {
        background: linear-gradient(135deg, #6a11cb, #2575fc);
        width: 30px;
        border-radius: 6px;
    }

    .slider-arrows {
        position: absolute;
        top: 50%;
        width: 100%;
        display: none;
        justify-content: space-between;
        padding: 0 20px;
        z-index: 15;
        transform: translateY(-50%);
    }

    .slider-arrow {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.5);
        display: hidden;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .slider-arrow:hover {
        background: rgba(106, 17, 203, 0.8);
        transform: scale(1.1);
    }

    /* 轮播图两侧文本 */
    .vertical-text {
        position: absolute;
        width: 18.000019073486328px;
        height: 736px;
        top: 206px;
        display: flex;
        align-items: center;
        z-index: 5;
        color: white;
        font-size: 18px;
        writing-mode: vertical-lr;
        text-orientation: mixed;
        opacity: 1;
        letter-spacing: 5px;
        font-weight: 300;
        gap: 24px;
    }

    .left-text {
        left: 30px;
        transform: rotate(0deg);
        width: 18.000019073486328px;
        height: 736px;
        opacity: 1;
        top: 206px;
        gap: 24px;
        align-items: flex-start;
    }

    .right-text {
        right: 30px;
        top: 206px;
        transform: rotate(0deg);
    }

    /* 吉帛公司介绍区域 */
    #company-intro {
        position: relative;
        height: 600px;
        
        background-color: #1A1A1A;
    }

    .jibo-section {
        position: relative;
        height: 600px;
        overflow: hidden;
        background-color: #1A1A1A;
    }

    .jibo-content {
        position: relative;
        z-index: 2;
        top: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #1A1A1A;
    }

    .feature-grid1 {
        display: block;
    }

    .jibo-section .feature-text-top {
        margin-bottom: 120px;
        letter-spacing: 0.05em;
        font-size: 72px;
        display: block;
        line-height: 1.2;
        color: rgba(255, 255, 255, 0.5);
        margin-top: 0;
    }

    .text-scroll-1 {
        white-space: nowrap;
    }

    .text-scroll-1 span:first-child {
        color: red;
        display: inline-block;
        font-weight: bold;
    }

    .text-scroll-1 span:last-child {
        display: inline-block;
        color: rgba(255, 255, 255, 0.5);
        font-weight: bold;
    }

    .text-scroll-2 span {
        white-space: nowrap;
        color: rgba(255, 255, 255, 0.5);
        font-weight: bold;
    }

    .text-scroll-3 span {
        white-space: nowrap;
        color: rgba(255, 255, 255, 0.5);
        font-weight: bold;
    }

    .feature-text-bottom {
        font-size: 20px;
        font-weight: 400;
        line-height: 1.4;
        letter-spacing: 0.05em;
        margin: 0 90px;
        color: rgba(255, 255, 255, 0.6);
    }

    /* 产品核心视频区域 */
    #product-core {
        position: relative;
        width: 100%;
        height: 650px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background-color: #000;
        border-bottom: 0px solid green;
    }

    #product-core-video {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        bottom: 0px;
        top: 0px;
    }

    /* 产品核心区域 */
    #features {
        position: relative;
    }

    .features {
        position: relative;
    }

    .parallax-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    #features video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        object-fit: cover;
        z-index: -2;
    }

    .product-container {
        margin: 0 auto;
        color: white;
    }

    .section-product-title {
        font-size: 54px;
        text-align: left;
        margin-left: 60px;
        margin-bottom: 18px;
        line-height: 66px;
    }

    #product-core-text {
        font-size: 20px;
        font-weight: 400;
        width: 80%;
        text-align: left;
        letter-spacing: 0.05em;
        margin-bottom: 121px;
        margin-left: 60px;
        margin-top: 60px;
        color: rgba(255, 255, 255, 0.9);
    }

    .feature-text-top {
        font-size: 19px;
        font-weight: 400;
        letter-spacing: 0.05em;
        margin-bottom: 121px;
        margin-top: 60px;
        color: rgba(255, 255, 255, 0.9);
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        background-color: #000000;
        border-top: 1px solid #333131;
    }

    .product-item {
        text-align: center;
    }

    .product-item-breathable {
        text-align: center;
    }

    .product-item-light {
        border-left: 1px solid #333131;
        text-align: center;
    }

    .product-item-waterproof {
        border-left: 1px solid #333131;
        text-align: center;
    }

    .product-item-downproof {
        border-left: 1px solid #333131;
        text-align: center;
    }

    .product-item img {
        width: 72px;
        height: 72px;
        margin-bottom: 20px;
        margin-top: 45px;
    }

    .product-item h3 {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .product-item p {
        font-size: 16px;
        margin-left: 60px;
        margin-right: 60px;
        margin-bottom: 38px;
        letter-spacing: 0.05em;
        font-weight: 400;
    }

    /* 联系区域 */
    .contact {
        padding: 100px 0;
    }

    /* 户外区域样式 */
    #outdoor-link {
        display: block;
        position: relative;
        z-index: 1;
        text-decoration: none;
        color: inherit;
        font-family: inherit;
        height: 450px;
    }

    #outdoor-section {
        padding: 40px;
        position: relative;
        height: 100%;
        cursor: pointer;
        overflow: hidden;
    }

    #outdoor-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../images/outdoors.png');
        background-size: cover;
        background-position: center;
        transition: all 1.2s ease-in-out;
        z-index: 1;
        opacity: 0.6;
        filter: saturate(0.01);
    }

    #outdoor-arrow {
        position: absolute;
        top: 50%;
        right: 80px;
        transform: translateY(-50%);
        z-index: 2;
    }

    #outdoor-arrow img {
        filter: none !important;
    }

    #outdoor-content {
        position: relative;
        z-index: 2;
        text-align: left;
        top: 50px;
        left: 40px;
    }

    #series-product-image {
        height: 28px;
    }

    #outdoor-content h2 {
        margin-top: 3px;
        margin-bottom: 12px;
        font-size: 40px;
        font-weight: bold;
    }

    #outdoor-features {
        display: flex;
        justify-content: left;
        gap: 100px;
    }

    #outdoor-features div {
        text-align: left;
    }

    #outdoor-features p {
        font-size: 20px;
        font-weight: 400;
        line-height: 40px;
    }

    /* 运动区域样式 */
    #sports-link {
        display: block;
        position: relative;
        z-index: 1;
        text-decoration: none;
        color: inherit;
        font-family: inherit;
        height: 450px;
    }

    #sports-section {
        padding: 40px;
        position: relative;
        height: 100%;
        cursor: pointer;
        overflow: hidden;
    }

    #sports-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../images/运动系列.png');
        background-size: cover;
        background-position: center;
        transition: all 1.2s ease-in-out;
        z-index: 1;
        opacity: 0.6;
        filter: saturate(0.01);
    }

    #sports-arrow {
        position: absolute;
        top: 50%;
        right: 80px;
        transform: translateY(-50%);
        z-index: 2;
    }

    #sports-arrow img {
        filter: none !important;
    }

    #sports-content {
        position: relative;
        z-index: 2;
        text-align: left;
        top: 72px;
        left: 40px;
    }

    #sports-product-image {
        height: 28px;
    }

    #sports-content h2 {
        margin-top: 3px;
        margin-bottom: 12px;
        font-size: 40px;
        font-weight: bold;
    }

    #sports-features {
        display: flex;
        justify-content: left;
        gap: 100px;
    }

    #sports-features div {
        text-align: left;
    }

    #sports-features p {
        font-size: 20px;
        font-weight: 400;
        line-height: 40px;
    }

    /* 时尚区域样式 */
    #fashion-link {
        display: block;
        position: relative;
        z-index: 1;
        text-decoration: none;
        color: inherit;
        font-family: inherit;
        height: 450px;
    }

    #fashion-section {
        padding: 40px;
        position: relative;
        height: 100%;
        cursor: pointer;
        overflow: hidden;
    }

    #fashion-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../images/时尚.png');
        background-size: cover;
        background-position: center;
        transition: all 1.2s ease-in-out;
        z-index: 1;
        opacity: 0.6;
        filter: saturate(0.01);
    }

    #fashion-arrow {
        position: absolute;
        top: 50%;
        right: 80px;
        transform: translateY(-50%);
        z-index: 2;
    }

    #fashion-arrow img {
        filter: none !important;
    }

    #fashion-content {
        position: relative;
        z-index: 2;
        text-align: left;
        top: 72px;
        left: 40px;
    }

    #fashion-product-image {
        height: 28px;
    }

    #fashion-content h2 {
        margin-top: 3px;
        margin-bottom: 12px;
        font-size: 40px;
        font-weight: bold;
    }

    #fashion-features {
        display: flex;
        justify-content: left;
        gap: 100px;
    }

    #fashion-features div {
        text-align: left;
    }

    #fashion-features p {
        font-size: 20px;
        font-weight: 400;
        line-height: 40px;
    }

    /* 越南区域样式 */
    #vietnam-link {
        cursor: pointer;
        display: block;
        position: relative;
        z-index: 1;
        text-decoration: none;
        color: inherit;
        font-family: inherit;
        height: 450px;
    }

    #vietnam-section {
        padding: 40px;
        position: relative;
        height: 100%;
        cursor: pointer;
        overflow: hidden;
    }

    #vietnam-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../images/越南.png');
        background-size: cover;
        background-position: center;
        transition: all 1.2s ease-in-out;
        z-index: 1;
        opacity: 0.6;
        filter: saturate(0.01);
    }

    #vietnam-arrow {
        position: absolute;
        top: 50%;
        right: 80px;
        transform: translateY(-50%);
        z-index: 2;
    }

    #vietnam-arrow img {
        filter: none !important;
    }

    #vietnam-content {
        position: relative;
        z-index: 2;
        text-align: left;
        top: 120px;
        left: 40px;
    }

    #vietnam-product-image {
        height: 28px;
    }

    #vietnam-content h2 {
        margin-top: 3px;
        margin-bottom: 12px;
        font-size: 40px;
        font-weight: bold;
    }

    #lotak-features {
        display: flex;
        justify-content: left;
        gap: 100px;
    }

    #lotak-features div {
        text-align: left;
    }

    #lotak-features p {
        font-size: 20px;
        font-weight: 400;
    }

    /* 休闲区域样式 */
    #casual-link {
        display: block;
        position: relative;
        z-index: 1;
        text-decoration: none;
        color: inherit;
        font-family: inherit;
        height: 450px;
    }

    #casual-section {
        padding: 40px;
        position: relative;
        height: 100%;
        cursor: pointer;
        overflow: hidden;
    }

    #casual-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../images/休闲.png');
        background-size: cover;
        background-position: center;
        transition: all 1.2s ease-in-out;
        z-index: 1;
        opacity: 0.6;
        filter: saturate(0.01);
    }

    #casual-arrow {
        position: absolute;
        top: 50%;
        right: 80px;
        transform: translateY(-50%);
        z-index: 2;
    }

    #casual-arrow img {
        filter: none !important;
    }

    #casual-content {
        position: relative;
        z-index: 2;
        text-align: left;
        top: 72px;
        left: 40px;
    }

    #casual-product-image {
        height: 28px;
    }

    #casual-content h2 {
        margin-top: 3px;
        margin-bottom: 12px;
        font-size: 40px;
        font-weight: bold;
    }

    #casual-features {
        display: flex;
        justify-content: left;
        gap: 100px;
    }

    #casual-features div {
        text-align: left;
    }

    #casual-features p {
        font-size: 20px;
        font-weight: 400;
        line-height: 40px;
    }

    /* Lotak区域样式 */
    #lotak-link {
        display: block;
        position: relative;
        z-index: 1;
        text-decoration: none;
        color: inherit;
        font-family: inherit;
        height: 450px;
    }

    #lotak-section {
        padding: 40px;
        position: relative;
        height: 100%;
        cursor: pointer;
        overflow: hidden;
    }

    #lotak-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../images/lotak.png');
        background-size: cover;
        background-position: center;
        transition: all 1.2s ease-in-out;
        z-index: 1;
        opacity: 0.6;
        filter: saturate(0.01);
    }

    #lotak-arrow {
        position: absolute;
        top: 50%;
        right: 80px;
        transform: translateY(-50%);
        z-index: 2;
    }

    #lotak-arrow img {
        filter: none !important;
    }

    #lotak-content {
        position: relative;
        z-index: 2;
        text-align: left;
        top: 72px;
        left: 40px;
    }

    #lotak-product-image {
        height: 28px;
    }

    #lotak-content h2 {
        margin-top: 3px;
        margin-bottom: 12px;
        font-size: 40px;
        font-weight: bold;
    }

    #lotak-features {
        display: flex;
        justify-content: left;
        gap: 100px;
    }

    #lotak-features div {
        text-align: left;
    }

    #lotak-features p {
        font-size: 20px;
        font-weight: 400;
        line-height: 40px;
    }

    #lotak-section:hover #lotak-bg {
        opacity: 0.8;
        filter: saturate(1);
        transform: scale(1.05);
    }

    /* 工作装区域样式 */
    #workwear-link {
        display: block;
        position: relative;
        z-index: 1;
        text-decoration: none;
        color: inherit;
        font-family: inherit;
        height: 450px;
    }

    #workwear-section {
        padding: 40px;
        position: relative;
        height: 100%;
        cursor: pointer;
        overflow: hidden;
    }

    #workwear-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../images/workwear.png');
        background-size: cover;
        background-position: center;
        transition: all 1.2s ease-in-out;
        z-index: 1;
        opacity: 0.6;
        filter: saturate(0.01);
    }

    #workwear-arrow {
        position: absolute;
        top: 50%;
        right: 80px;
        transform: translateY(-50%);
        z-index: 2;
    }

    #workwear-arrow img {
        filter: none !important;
    }

    #workwear-content {
        position: relative;
        z-index: 2;
        text-align: left;
        top: 72px;
        left: 40px;
    }

    #workwear-product-image {
        height: 28px;
    }

    #workwear-content h2 {
        margin-top: 3px;
        margin-bottom: 12px;
        font-size: 40px;
        font-weight: bold;
    }

    #workwear-features {
        display: flex;
        justify-content: left;
        gap: 100px;
    }

    #workwear-features div {
        text-align: left;
    }

    #workwear-features p {
        font-size: 20px;
        font-weight: 400;
        line-height: 40px;
    }

    #workwear-section:hover #workwear-bg {
        opacity: 0.8;
        filter: saturate(1);
        transform: scale(1.05);
    }

    /* 可持续区域样式 */
    #sustainable-link {
        display: block;
        position: relative;
        z-index: 1;
        text-decoration: none;
        color: inherit;
        font-family: inherit;
        height: 450px;
    }

    #sustainable-section {
        padding: 40px;
        position: relative;
        height: 100%;
        cursor: pointer;
        overflow: hidden;
    }

    #sustainable-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../images/可持续.png');
        background-size: cover;
        background-position: center;
        transition: all 1.2s ease-in-out;
        z-index: 1;
        opacity: 0.6;
        filter: saturate(0.01);
    }

    #sustainable-arrow {
        position: absolute;
        top: 50%;
        right: 80px;
        transform: translateY(-50%);
        z-index: 2;
    }

    #sustainable-arrow img {
        filter: none !important;
    }

    #sustainable-content {
        position: relative;
        z-index: 2;
        text-align: left;
        top: 39px;
        left: 40px;
    }

    #sustainable-product-image {
        height: 28px;
    }

    #sustainable-content h2 {
        margin-top: 3px;
        margin-bottom: 12px;
        font-size: 40px;
        font-weight: bold;
    }

    #sustainable-features {
        display: flex;
        justify-content: left;
        gap: 100px;
    }

    #sustainable-features div {
        text-align: left;
    }

    #sustainable-features p {
        font-size: 20px;
        line-height: 40px;
        font-weight: 400;
    }

    .contact-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .contact-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
        color: #fff;
    }

    .contact-text {
        font-size: 1.1rem;
        color: #ddd;
        margin-bottom: 40px;
    }

    .info-item {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 25px;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, #ff6b6b, #ffa502);
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    }

    .info-content h3 {
        font-size: 1.2rem;
        color: #fff;
        margin-bottom: 5px;
    }

    .info-content p {
        font-size: 1rem;
        color: #aaa;
    }

    .contact-form {
        background: rgba(30, 30, 30, 0.8);
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .form-group {
        margin-bottom: 30px;
    }

    .form-label {
        display: block;
        font-size: 1.1rem;
        color: #ddd;
        margin-bottom: 10px;
    }

    .form-input {
        width: 100%;
        padding: 15px;
        background: rgba(40, 40, 40, 0.8);
        border: 1px solid #555;
        border-radius: 8px;
        color: #fff;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .form-input:focus {
        outline: none;
        border-color: #2575fc;
        box-shadow: 0 0 15px rgba(37, 117, 252, 0.3);
    }

    textarea.form-input {
        min-height: 150px;
        resize: vertical;
    }

    @keyframes pulseEffect {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    .parallax-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 120%;
        /* background-image: url('../images/产品核心背景图.svg'); */
        background-size: cover;
        background-position: center;
        z-index: -1;
        transform: translateZ(0);
        animation: pulseEffect 8s ease-in-out infinite;
    }

    .product-item {
        position: relative;
        z-index: 1;
    }

    /* 透气产品项悬停效果 */
    .product-item-breathable::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../images/hover_1.png');

        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        z-index: -1;
    }

    .product-item-breathable:hover::before {
        opacity: 1;
    }

    /* 轻盈产品项悬停效果 */
    .product-item-light::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../images/轻量.png');
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        z-index: -1;
    }

    .product-item-light:hover::before {
        opacity: 1;
    }

    /* 防水产品项悬停效果 */
    .product-item-waterproof::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../images/防水_2.png');
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        z-index: -1;
    }

    .product-item-waterproof:hover::before {
        opacity: 1;
    }

    /* 防绒产品项悬停效果 */
    .product-item-downproof::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../images/防绒_1.png');
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        z-index: -1;
    }

    .product-item-downproof:hover::before {
        opacity: 1;
    }

    .parallax-section {
        position: relative;
        overflow: hidden;
        padding: 100px 0;
        text-align: center;
        padding-bottom: 0px;
        background-color: rgba(0, 0, 0, 0.4);
        background-blend-mode: multiply;
    }

    .country-name-hover {
        font-size: 16px;
        letter-spacing: 0.05em;
        margin: 0;
        font-weight: bold;
        color: rgba(255, 255, 255, 1);
        transition: all 0.3s ease;
        position: relative;
        display: inline-block;
    }

    .country-name-hover:hover {
        font-size: 18px;
        font-weight: bold;
    }

    .country-name-hover-left:hover::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0px;
        width: calc(100% + 150px);
        height: 1px;
        background-color: #bbc0be;
    }

    .country-name-hover-left:hover::before {
        content: '';
        position: absolute;
        bottom: -9px;
        right: -50px;
        width: 0;
        height: 0;
        /* border-top: 5px solid transparent;
                border-bottom: 5px solid transparent;*/
        border-left: 10px solid #008D44;
    }

    .country-name-hover-right:hover::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: -150px;
        width: calc(100% + 150px);
        height: 1px;
        background-color: #bbc0be;
    }

    .country-name-hover-right:hover::before {
        content: '';
        position: absolute;
        bottom: -9px;
        left: -50px;
        width: 0;
        height: 0;
        border-right: 10px solid #008D44;
    }

    .contact-icon {
        position: relative;
        cursor: pointer;
    }

    .contact-icon:hover .tooltip {
        display: block !important;
        animation: fadeIn 0.3s;
        text-align: left;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    /* 通用section滚动进入动画 */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* 初始状态 - 隐藏所有需要动画的section */
    #outdoor-section,
    #sports-section,
    #fashion-section,
    #casual-section,
    #lotak-section,
    #workwear-section,
    #sustainable-section,
    #vietnam-section,
    #global-section,
    #global-strategy-section,
    #contact-section,
    #footer-section,
    #footer-area {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease-out;
    }

    /* 显示状态 - 应用动画 */
    #outdoor-section.animate,
    #sports-section.animate,
    #fashion-section.animate,
    #casual-section.animate,
    #lotak-section.animate,
    #workwear-section.animate,
    #sustainable-section.animate,
    #vietnam-section.animate,
    #global-section.animate,
    #global-strategy-section.animate,
    #contact-section.animate,
    #footer-section.animate,
    #footer-area.animate {
        opacity: 1;
        transform: translateY(0);
    }

    /* 所有section内容的延迟动画 */
    #outdoor-content img,
    #outdoor-content h2,
    #outdoor-content #outdoor-features,

    #sports-content img,
    #sports-content h2,
    #sports-content #sports-features,

    #fashion-content img,
    #fashion-content h2,
    #fashion-content #fashion-features,

    #casual-content img,
    #casual-content h2,
    #casual-content #casual-features,

    #lotak-content img,
    #lotak-content h2,
    #lotak-content #lotak-features,

    #sustainable-content img,
    #sustainable-content h2,
    #sustainable-content #sustainable-features,

    #vietnam-content img,
    #vietnam-content h2,
    #vietnam-content #vietnam-features,

    #workwear-content img,
    #workwear-content h2,
    #workwear-content #workwear-features,

    /* global-section内容 */
    #global-section .left-text-container,
    #global-section #right-stats-container,
    #global-section #global-scroll-container,

    /* global-strategy-section内容 */
    #global-strategy-section>div,

    /* contact-section内容 */
    #contact-section .container,

    /* footer-section内容 */
    #footer-section>div,

    /* footer-area内容 */
    #footer-area .container {

        transform: translateY(50px);
        transition: all 0.6s ease-out;
    }

    /* 户外section内容动画 */
    #outdoor-section.animate #outdoor-content img {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }

    #outdoor-section.animate #outdoor-content h2 {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.4s;
    }

    #outdoor-section.animate #outdoor-content #outdoor-features {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.6s;
    }

    /* 运动section内容动画 */
    #sports-section.animate #sports-content img {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }

    #sports-section.animate #sports-content h2 {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.4s;
    }

    #sports-section.animate #sports-content #sports-features {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.6s;
    }

    /* 时尚section内容动画 */
    #fashion-section.animate #fashion-content img {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }

    #fashion-section.animate #fashion-content h2 {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.4s;
    }

    #fashion-section.animate #fashion-content #fashion-features {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.6s;
    }

    /* 休闲section内容动画 */
    #casual-section.animate #casual-content img {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }

    #casual-section.animate #casual-content h2 {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.4s;
    }

    #casual-section.animate #casual-content #casual-features {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.6s;
    }

    /* lotak section内容动画 */
    #lotak-section.animate #lotak-content img {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }

    #lotak-section.animate #lotak-content h2 {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.4s;
    }

    #lotak-section.animate #lotak-content #lotak-features {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.6s;
    }

    /* 可持续section内容动画 */
    #sustainable-section.animate #sustainable-content img {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }

    #sustainable-section.animate #sustainable-content h2 {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.4s;
    }

    #sustainable-section.animate #sustainable-content #sustainable-features {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.6s;
    }

    /* 越南section内容动画 */
    #vietnam-section.animate #vietnam-content img {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }

    #vietnam-section.animate #vietnam-content h2 {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.4s;
    }

    #vietnam-section.animate #vietnam-content #vietnam-features {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.6s;
    }

    /* 工作装section内容动画 */
    #workwear-section.animate #workwear-content img {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }

    #workwear-section.animate #workwear-content h2 {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.4s;
    }

    #workwear-section.animate #workwear-content #workwear-features {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.6s;
    }

    /* global-section样式 */
    #global-section {
        background-image: url('../images/全球.png');
        background-size: cover;
        position: relative;
        height: 810px;
    }

    /* 左侧文本容器 */
    #global-section .left-text-container {
        position: absolute;
        left: 12%;
        top: 178px;
        width: 33%;
        text-align: left;
        opacity: 0;
    }

    #global-section .left-text-container h3 {
        font-size: 30px;
        margin-bottom: 20px;
        font-weight: 400;
    }

    #global-section .left-text-container h2 {
        font-size: 54px;
        margin-bottom: 30px;
        letter-spacing: 0.05em;
        font-weight: bold;
        line-height: 65px;
    }

    #global-section .left-text-container p {
        font-size: 24px;
        line-height: 1.4;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 400;
        letter-spacing: 0.05em;
    }

    /* 右侧数字容器 */
    #global-section #right-stats-container {
        position: absolute;
        right: 18%;
        min-width: 250px;
        height: 540px;
        top: 162px;
        display: flex;
        flex-direction: column;
        gap: 6px;
        opacity: 0;
    }

    #global-section #right-stats-container div h2.counter {
        font-size: 58px;
        letter-spacing: 0.05em;
        font-weight: 900;
        margin-bottom: -10px;
        opacity: 1 !important;
        visibility: visible !important;
    }

    #global-section #right-stats-container div p {
        font-size: 14px;
        letter-spacing: 0.05em;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.6);
    }

    #global-section #right-stats-container div h2.counter span {
        font-size: 58px;
        font-weight: 900;
    }

    #global-section #right-stats-container div h2.counter span[data-lang-key="global-suffix"] {
        font-size: 32px;
        font-weight: 900;
    }

    /* global-section内容动画 */
    #global-section.animate .left-text-container {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }

    #global-section.animate #right-stats-container {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.4s;
    }

    #global-section.animate #global-scroll-container {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.6s;
    }

    /* global-strategy-section基础样式 */
    #global-strategy-section {
        position: relative;
        text-align: center;
        height: 953px;
    }

    /* 标题区域样式 */
    #global-strategy-section>div:first-child {
        position: relative;
        top: 80px;
        margin-bottom: 100px;
        opacity: 1;
    }

    #global-strategy-section h2 {
        position: relative;
        font-size: 54px;
        line-height: 65px;
        margin: 0;
        color: rgba(255, 255, 255, 1);
        font-weight: bold;
        letter-spacing: 0.05em;
    }

    #global-strategy-section p[data-lang-key="global-strategy-desc"] {
        position: relative;
        font-size: 24px;
        margin-top: 12px;
        color: rgba(255, 255, 255, 0.6);
        letter-spacing: 0.05em;
        font-weight: 400;
        margin-left: 12%;
        margin-right: 12%;
    }

    /* 三部分布局样式 */
    #global-strategy-section>div:last-child {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        max-width: 1400px;
        margin: 0 auto;
    }

    /* 左侧文本区域样式 */
    #global-left-text {
        width: 24%;
        text-align: right;
        position: relative;
        top: 100px;
        margin-right: 30px;
    }

    #global-left-text h3 {
        font-size: 24px;
        font-weight: bold;
        line-height: 1.2;
        margin-bottom: 26px;
        color: rgba(231, 20, 26, 1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        padding-bottom: 10px;
        display: inline-block;
        vertical-align: top;
    }

    #global-left-text>div {
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-top: 18px;
    }

    #global-left-text p[data-lang-key="global-branch-vietnam-address"] {
        font-size: 13px;
        margin-top: 5px;
        color: rgba(255, 255, 255, 0.6);
        letter-spacing: 0.05em;
        font-weight: 500;
    }

    /* 中间图片样式 */
    #global-center-image {
        width: 540px;
        height: 900px;
        margin-top: 50px;
    }

    #global-center-image video {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* 右侧文本区域样式 */
    #global-right-text {
        width: 24%;
        text-align: left;
        position: relative;
        top: 100px;
        margin-left: 30px;
    }

    #global-right-text h3 {
        font-size: 24px;
        line-height: 1.2;
        font-weight: bold;
        margin-bottom: 26px;
        color: rgba(231, 20, 26, 1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        padding-bottom: 10px;
        display: inline-block;
        vertical-align: top;
    }

    #global-right-text>div {
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-top: 18px;
    }

    #global-right-text p[data-lang-key="global-branch-china-address"] {
        font-size: 13px;
        margin-top: 5px;
        color: rgba(255, 255, 255, 0.6);
        width: 100%;
        letter-spacing: 0.05em;
        font-weight: 500;
    }

    /* global-strategy-section内容动画 */
    #global-strategy-section.animate>div:first-child {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }

    #global-strategy-section.animate>div:last-child {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.4s;
    }

    /* contact-section基础样式 */
    #contact-section {
        position: relative;
        background-image: url('../images/联系.png');
        background-color: #0D4200;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 800px;
        min-height: 500px;
    }

    /* 容器样式 */
    #contact-section .container {
        text-align: center;
        padding-top: 80px;
    }

    /* 标题样式 */
    #contact-section h2 {
        font-size: 54px;
        color: white;
        line-height: 65px;
        letter-spacing: 0.05em;
        font-weight: bold;
    }

    /* 描述文本样式 */
    #contact-section p[data-lang-key="contact-desc"] {
        font-size: 24px;
        color: rgba(255, 255, 255, 0.6);
        margin: 20px 12% 40px;
        font-weight: 400;
        letter-spacing: 0.05em;
    }

    /* 联系图标容器样式 */
    #contact-section .container>div {
        display: flex;
        justify-content: center;
        gap: 50px;
    }

    /* 单个联系图标样式 */
    #contact-section .contact-icon {
        position: relative;
    }

    /* 图标图片样式 */
    #contact-section .contact-icon img {
        width: 36px;
        height: 36px;
    }

    /* 提示框样式 */
    #contact-section .tooltip {
        display: none;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 360px;
        margin-top: 10px;
    }

    /* 提示框标题样式 */
    #contact-section .tooltip h3 {
        margin: 0;
        background: #008D44;
        color: white;
        padding: 24px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        font-weight: bold;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
        letter-spacing: 0.05em;
    }

    /* 提示框内容样式 */
    #contact-section .tooltip p {
        margin: 0;
        background: rgba(0, 0, 0, 0.6);
        text-align: center;
        color: white;
        padding: 24px;
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: 500;
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
        letter-spacing: 0.05em;
    }

    /* contact-section内容动画 */
    #contact-section.animate .container {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }

    /* footer-section内容动画 */
    #footer-section.animate>div {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }

    /* footer-area内容动画 */
    #footer-area.animate .container {
        opacity: 1;
        transform: translateY(50);
        transition-delay: 0.2s;
    }

    /* 媒体查询 - 针对平板和移动设备的布局优化 */
    @media (max-width: 1200px) {

        /* 调整左侧文本容器宽度 */
        #global-section .left-text-container {
            width: 50% !important;
        }

        /* 调整右侧数字容器样式 */
        #right-stats-container {
            right: 2% !important;
            padding-left: 30px !important;
        }
    }

    @media (max-width: 1630px) {

        /* 调整左侧文本容器宽度 */
        .hero-text-container h1 {
            width: 1400px !important;
        }
    }

    @media (max-width: 1100px) {

        /* 在中等屏幕上垂直堆叠元素 */
        #global-section {
            height: auto !important;
            padding: 100px 0 !important;
        }

        #global-section .left-text-container {
            position: relative !important;
            left: auto !important;
            top: auto !important;
            width: 90% !important;
            margin: 0 auto 60px !important;
            text-align: center !important;
        }

        #right-stats-container {
            position: relative !important;
            right: auto !important;
            top: auto !important;
            height: auto !important;
            width: 90% !important;
            border-left: none !important;
            border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
            padding-left: 0 !important;
            padding-top: 150px !important;
            flex-direction: row !important;
            flex-wrap: wrap !important;
            justify-content: space-between !important;
            column-gap: 150px !important;
            row-gap: 30px !important;
            margin-bottom: 150px !important;
        }

        #right-stats-container>div {
            flex: 1 1 30% !important;
            min-width: 150px !important;
        }

        #right-stats-container>div:nth-child(1) {
            padding-left: 25% !important;
        }

        #right-stats-container>div:nth-child(3) {
            padding-left: 25% !important;
        }

        #right-stats-container h2 {
            font-size: 48px !important;
        }
    }

    @media (max-width: 768px) {

        /* 移动设备上的优化 */
        #global-section .left-text-container h2 {
            font-size: 48px !important;
        }

        #global-section .left-text-container p {
            font-size: 20px !important;
        }

        #right-stats-container>div {
            flex: 1 1 100% !important;
        }

        #right-stats-container>div:nth-child(1) {
            padding-left: 15% !important;
        }

        #right-stats-container>div:nth-child(2) {
            padding-left: 15% !important;
        }

        #right-stats-container>div:nth-child(3) {
            padding-left: 15% !important;
        }

        #right-stats-container>div:nth-child(4) {
            padding-left: 15% !important;
        }

        .icp-info {
            margin: 0 !important;
            margin-bottom: 20px !important;
            padding-top: 0 !important;
            font-size: 12px !important;
        }
    }

    /* 移动端适配：宽度小于1000px */
    @media screen and (max-width: 1000px) {

        /* 防止页面出现水平滚动条和右侧黑框 */
        html,
        body {
            width: 100% !important;
            overflow-x: hidden !important;
            margin: 0 !important;
            padding: 0 !important;
        }

        /* 视频播放器区域高度调整 */
        #video-container {
            height: 60vh !important;
            min-height: 400px;
        }

        .hero-slider {
            height: 100% !important;
        }

        .hero-slider-container {
            height: 355px !important;
        }

        .hero-text-container {
            left: 30px !important;
        }

        .hero-text-container h1 {
            font-size: 24px !important;
            width: 100%;
        }

        /* 公司介绍区域高度调整 */
        #about-section {
            height: auto !important;
            padding: 40px 20px !important;
        }

        #company-intro {
            height: 900px !important;
        }

        .feature-text-bottom {
            margin: 0 42px !important;
            font-size: 24px !important;
        }

        #product-core {
            height: 355px !important;
        }

        #product-core-video {
            height: 100% !important;
        }

        .section-product-title {
            font-size: 54px !important;
            margin-top: 158px !important;
        }


        /* 产品核心区域网格布局调整 */
        #features-section .container {
            flex-direction: column !important;
            gap: 40px !important;
        }

        #product-core-text {
            font-size: 28px !important;
            font-weight: normal !important;
            margin: 40px !important;
        }

        .product-grid {
            grid-template-columns: 1fr !important;
        }

        #features-section .feature-box {
            width: 100% !important;
            max-width: 100% !important;
        }

        /* 产品系列section高度调整 */
        #outdoor-link,
        #sports-section,
        #fashion-section,
        #casual-section,
        #lotak-section,
        #sustainable-section,
        #vietnam-link {
            height: 550px !important;
        }

        /* 产品系列内容位置调整 */
        #outdoor-content,
        #sports-content,
        #fashion-content,
        #casual-content,
        #lotak-content,
        #sustainable-content,
        #vietnam-content {
            top: 118px !important;
            left: 60px !important;
        }

        /* 产品系列标题字体大小调整 */
        #outdoor-content h2,
        #sports-content h2,
        #fashion-content h2,
        #casual-content h2,
        #lotak-content h2,
        #sustainable-content h2,
        #vietnam-content h2 {
            font-size: 28px !important;
            margin-bottom: 20px !important;
        }

        /* 产品系列特性文字大小调整 */
        #outdoor-features p,
        #sports-features p,
        #fashion-features p,
        #casual-features p,
        #lotak-features p,
        #sustainable-features p {
            font-size: 16px !important;
            line-height: 45px !important;
        }

        /* 产品系列特性布局调整 */
        #outdoor-features,
        #sports-features,
        #fashion-features,
        #casual-features,
        #lotak-features,
        #sustainable-features {

            gap: 30px !important;
        }

        /* 产品系列箭头调整 */
        #outdoor-arrow,
        #sports-arrow,
        #fashion-arrow,
        #casual-arrow,
        #lotak-arrow,
        #sustainable-arrow,
        #vietnam-arrow {
            right: 20px !important;
            transform: translateY(-50%) scale(0.7) !important;
        }

        /* 全球战略区域调整 */
        #global-section {
            height: auto !important;
            min-height: 600px;
            padding: 40px 0;
        }

        #global-section .left-text-container {
            position: static !important;
            /* width: 72% !important; */
            padding-left: 0 !important;
            padding-bottom: 50px !important;
            text-align: center !important;
            font-size: 30px !important;
        }

        #global-section .left-text-container p {
            color: rgba(255, 255, 255, 0.6) !important;
            font-size: 30px !important;
        }

        #global-section .right-stats-container {
            width: 82% !important;
        }

        /* 全球战略部署三列布局调整为单列 */
        #global-strategy-section {
            height: auto !important;
            padding: 40px 0;
        }

        #global-left-text,
        #global-right-text {
            width: 100% !important;
            text-align: center !important;
            margin: 0 auto !important;
        }

        #global-right-text {
            margin: 0 auto !important;
        }

        #global-center-image {
            margin-top: 100px !important;
        }

        /* 将中间图片区域移至竖向布局的最下方 */
        #global-left-text {
            order: 1 !important;
        }

        #global-right-text {
            order: 2 !important;
        }

        #global-center-image {
            order: 3 !important;
        }

        .country-name-hover-left:hover::after {
            height: 0px !important;
        }

        .country-name-hover-right:hover::after {
            height: 0px !important;
        }

        #global-strategy-section>div:first-of-type+div {
            flex-direction: column !important;
            align-items: center !important;
            gap: 40px !important;
        }

        /* 全球战略描述文本响应式调整 */
        [data-lang-key="global-strategy-desc"] {
            font-size: 28px !important;
            font-weight: normal !important;
            text-align: center;
            margin-left: 120px;
            margin-right: 120px;
        }

        .jibo-section .feature-text-top {
            font-size: 60px !important;
        }

        #global-section .left-text-container h2,
        #global-strategy-section h2 {
            font-size: 30px !important;
            line-height: 40px !important;
            font-weight: bold !important;
            letter-spacing: 0.05em !important;
        }

        /* 中间视频调整 */
        #global-strategy-section>div:first-of-type+div>div:nth-child(2) {
            width: 100% !important;
            height: auto !important;
            max-width: 500px;
        }

        .tooltip p {
            height: 107px !important;
        }

        /* 联系我们区域高度调整 */
        #contact-section {
            height: auto !important;
            min-height: 600px;
            padding: 40px 0;
        }

        #contact-section .container {
            padding-top: 40px !important;
        }

        /* 联系我们标题调整 */
        #contact-section h2 {
            font-size: 36px !important;
        }

        /* 联系我们图标布局调整 */
        #contact-section>div>div {
            gap: 30px !important;
        }


        /* 隐藏移动端不适合显示的元素 */
        .global-scroll-container {
            display: none !important;
        }

        .section-title::after {
            height: 0px !important;
        }

        /* 全屏导航栏 - 小于1000px时只保留标题并竖向排列 */
        .fullscreen-menu .menu-container {
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            padding: 40px 0 !important;
            height: auto !important;
        }

        .fullscreen-menu .menu-section {
            border: none !important;
            margin-bottom: 15px !important;
            text-align: center !important;
            width: 100% !important;
            padding: 5px 0 !important;
            height: auto !important;
            left: 0px;
        }

        .fullscreen-menu .section-title {
            font-size: 48px !important;
            font-weight: bold !important;
            margin-bottom: 10px !important;
            color: #fff !important;
            display: block !important;
        }

        .fullscreen-menu .sub-links {
            display: none !important;
        }
    }

    @media screen and (max-width: 842px) {
        .hero-text-container h1 {
            width: 500px !important;
        }
    }

    @media screen and (max-width: 842px) and (max-height: 472px) {
        .hero-text-container h1 {
            width: 100% !important;
        }
    }

    @media screen and (max-width: 700px) {

        #outdoor-content,
        #sports-content,
        #fashion-content,
        #casual-content,
        #lotak-content,
        #sustainable-content,
        #vietnam-content {
            left: 10px !important;
        }
    }

    @media screen and (max-width: 576px) {
        .fullscreen-menu .section-title {
            font-size: 1.8rem !important;
            margin: 17px !important;
        }

        #outdoor-link,
        #sports-link,
        #fashion-link,
        #casual-link,
        #lotak-link,
        #sustainable-link,
        #vietnam-link {
            height: auto !important;
        }

        #sports-content,
        #fashion-content,
        #casual-content,
        #lotak-content,
        #sustainable-content,
        #vietnam-content {
            left: 0px !important;
            height: 450px !important;
        }

        #outdoor-content,
        #sustainable-content {
            top: 0 !important;
        }

        #sustainable-content {
            height: 650px !important;
        }

        #sustainable-features p {
            font-size: 20px !important;
            line-height: 35px !important;
        }

        #global-left-text p[data-lang-key="global-branch-vietnam-address"] {
            margin: 5px 20px !important;
        }

        .tooltip {
            width: 350px !important;
        }

        .tooltip p {
            width: 350px !important;
            height: 77px !important;
        }

        .tooltip h3 {
            width: 350px !important;
            height: 77px !important;
        }

        .parallax-section {
            padding: 80px 0 !important;
        }

        #features video {
            height: 670px !important;
        }

        .section-product-title {
            margin-top: 0 !important;
        }
    }

    @media screen and (max-width: 400px) {
        .jibo-section .feature-text-top {
            font-size: 36px !important;
        }
        #global-section .left-text-container h3 {
            font-size: 20px !important;
        }
        #global-section .left-text-container {
            padding-bottom: 0 !important;
            margin: 0 auto 30px !important;
        }
        [data-lang-key="global-strategy-desc"] {
            font-size: 16px !important;
        }
        #global-strategy-section>div:first-of-type+div>div:nth-child(2) {
            width: 80% !important;
        }
        #global-strategy-section>div:first-child {
            margin-bottom: 0 !important;
            top: 30px !important;   
        }
        #contact-section p[data-lang-key="contact-desc"] {
            font-size: 16px !important;
        }
        #contact-section h2 {
            font-size: 30px !important;
        }
        #contact-section .container {
            padding-top: 0 !important;
        }
        #contact-section .tooltip h3 {
            font-size: 16px !important;
        }
        .tooltip p {
            font-size: 14px !important;
        }
        #global-scroll-container .scrolling-container img {
            height: 42px !important;
        }
        #global-section {
            padding: 30px 0 !important;
        }
        #right-stats-container {
            padding-top: 30px !important;
        }
        #global-section .left-text-container p {
            font-size: 16px !important;
        }
        .section-product-title {
            font-size: 30px !important;
            margin-left: 40px !important;
        }
        #product-core-text {
            margin: 0 40px 40px 40px !important;
        }
        #product-core-text {
            font-size: 16px !important;
        }
        .feature-text-bottom {
            font-size: 16px !important;
        }
        #company-intro {
            height: 550px !important;
        }
        .copyright {
            margin-bottom: 0 !important;
            font-size: 12px !important;
        }
        .icp-info p {
            font-size: 12px !important;
        }
        .footer-links {
            margin-top: 0 !important;
        }
        .footer-column {
            margin-bottom: 0 !important;
        }
        .footer-columns {
            margin-left: 25px !important;
            margin-right: 25px !important;
        }
        .footer-bottom {
            border-top: none !important;
        }
        .hero-text-container h1 {
            width: 342px !important;
        }

        html[lang="en"] #global-left-text h3 {
            margin-left: 3% !important;
            margin-right: 3% !important;
        }

        html[lang="en"] #global-right-text h3 {
            margin-left: 3% !important;
            margin-right: 3% !important;
        }

        html[lang="en"] .footer-left {
            width: 84% !important;
        }

        html[lang="en"] .footer-bottom {
            margin-right: 24px !important;
        }

        html[lang="en"] .left-text-container {
            width: 90% !important;
        }
    }

    /* 针对宽度470px以下的特殊处理 - 修复导航图标超出边界和右侧黑框问题 */
    @media screen and (max-width: 470px) {

        /* 防止页面出现水平滚动条和右侧黑框 */
        html,
        body {
            width: 100% !important;
            overflow-x: hidden !important;
            margin: 0 !important;
            padding: 0 !important;
        }

        html[lang="en"] #company-intro {
            height: 660px !important;
        }

        html[lang="en"] .feature-text-top {
            margin-bottom: 60px !important;
        }

        html[lang="en"] .feature-text-bottom {
            margin: 0 30px !important;
        }

        html[lang="en"] #sustainable-section {
            height: 580px !important;
        }

        html[lang="en"] .hero-text-container {
            bottom: 30px !important;
        }

        html[lang="en"] #contact-section p[data-lang-key="contact-desc"] {
            margin: 10px 5% !important;
            line-height: 1.2 !important;
        }

        html[lang="en"] #contact-section h2 {
            line-height: 1.4 !important;
        }

        html[lang="en"] .tooltip {
            width: 300px !important;
            left: 0 !important;
            margin-top: 0 !important;
        }

        html[lang="en"] .tooltip p {
            width: 300px !important;
            height: 107px !important;
        }

        html[lang="en"] .tooltip h3 {
            width: 300px !important;
            height: 30px !important;
        }

        .icon {
            width: 30px !important;
            height: 30px !important;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .icon img {
            width: 20px !important;
            height: 20px !important;
            object-fit: contain;
        }

        #jiboLogo {
            width: 100px !important;
            height: 40px !important;
            left: 10px !important;
            top: 10px !important;
        }

        #right-stats-container>div:nth-child(1) {
            padding-left: 15% !important;
        }

        #right-stats-container>div:nth-child(2) {
            padding-left: 15% !important;
        }

        #right-stats-container>div:nth-child(3) {
            padding-left: 15% !important;
        }

        #right-stats-container>div:nth-child(4) {
            padding-left: 15% !important;
        }
    }

    .footer {
        padding: 0 !important;
    }

    /* 页脚滚动区域 */
    #footer-scroll-section {
        width: 100%;
        height: 48px;
    }

    #footer-scroll-section>div {
        overflow: hidden;
        white-space: nowrap;
        width: 100%;
        position: relative;
        font-size: 0;
    }

    .icp-info p {
        font-size: 14px;
        margin: 0 !important;
        padding: 0 !important;
    }

    #footer-scroll-section .scrolling-container {
        height: 48px;
        display: inline-block;
        white-space: nowrap;
        animation: scrollLeft 40s linear infinite;
    }

    #footer-scroll-section .scrolling-container img {
        height: 100%;
        display: inline-block;
        margin: 0;
    }

    @keyframes scrollLeft {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* 全局滚动区域 */
    #global-scroll-container {
        overflow: hidden;
        white-space: nowrap;
        width: 100%;
        position: absolute;
        bottom: 40px;
        font-size: 0;
    }

    #global-scroll-container .scrolling-container {
        display: inline-block;
        white-space: nowrap;
        animation: scrollLeft 40s linear infinite;
    }

    #global-scroll-container .scrolling-container img {
        height: 66px;
        display: inline-block;
        margin: 0;
        vertical-align: top;
    }
	html[lang="en"] #company-intro
	{
		height: 700px !important;
	}