        /* ===== Global Reset & Base ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
        }

        html {
            overflow-x: hidden;
        }

        body {
            color: #1e293b;
        }

        a {
			font-size: 15px;
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        /* ===== Containers ===== */
        .container-1600 {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .container-1320 {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ============================================================ */
        /* 1. Navbar (Transparent + Glassmorphism Menu) */
        /* ============================================================ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: transparent;
            transition: background 0.3s, box-shadow 0.3s;
            padding: 12px 0;
        }

        .navbar.scrolled {
            background: rgba(10, 22, 40, 0.6);
            backdrop-filter: blur(8px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }

        .navbar .container-1600 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 26px;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: 1px;
            flex-shrink: 0;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .nav-logo i {
            color: #f5b342;
            font-size: 30px;
        }

        .nav-logo span {
            background: linear-gradient(135deg, #f5b342, #ffd966);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 4px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 6px 18px;
            border-radius: 60px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .nav-menu>li {
            position: relative;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            cursor: pointer;
            transition: color 0.3s, background 0.3s;
            border-radius: 40px;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .nav-menu>li:hover {
            color: #f5b342;
            background: rgba(245, 179, 66, 0.15);
        }

.ls-active{
	color: #f5b342;
    
}


.full-video-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.full-video-section video {
    width: 100%;
    display: block;
}
/* 封面容器，默认显示，播放后隐藏 */
.csls-video-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}
/* 封面背景图 */
.csls-cover-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* 居中播放按钮 */
.csls-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background-color: rgba(245, 179, 66, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.csls-play-btn i {
    font-size: 32px;
    color: #ffffff;
    margin-left: 6px;
}
/* 按钮hover上浮放大 */
.csls-video-cover:hover .csls-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #f5b342;
}
/* 封面隐藏类 */
.csls-cover-hide {
    display: none !important;
}






        .nav-menu>li .dropdown {
            position: absolute;
            top: 42px;
            left: 0;
            min-width: 200px;
            background: rgba(10, 22, 40, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 16px;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: all 0.3s ease;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-menu>li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown li {
            padding: 10px 24px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            transition: all 0.25s;
            cursor: pointer;
            font-weight: 500;
        }

        .dropdown li:hover {
            color: #f5b342;
            background: rgba(245, 179, 66, 0.08);
            padding-left: 30px;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-shrink: 0;
        }

        .nav-right .icon-btn {
            color: rgba(255, 255, 255, 0.8);
            font-size: 20px;
            transition: color 0.3s;
            cursor: pointer;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .nav-right .icon-btn:hover {
            color: #f5b342;
        }

        .nav-phone {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .nav-phone i {
            color: #f5b342;
            font-size: 18px;
        }

        /* ============================================================ */
        /* 2. Hero Carousel */
        /* ============================================================ */
        .hero-section {
            margin-top: 0;
            height: 1500px;
            position: relative;
            overflow: hidden;
            background: #0a1628;
        }

        .hero-slider {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide .slide-content {
            text-align: center;
            color: #fff;
            max-width: 900px;
            padding: 0 20px;
        }

        .hero-slide .slide-content h1 {
            font-size: 42px;
            font-weight: 800;
            letter-spacing: 4px;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
            margin-bottom: 20px;
        }

        .hero-slide .slide-content h1 span {
            color: #f5b342;
        }

        .hero-slide .slide-content p {
            font-size: 22px;
            color: rgba(255, 255, 255, 0.85);
            letter-spacing: 2px;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
        }

        .hero-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(8px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 26px;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 20;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .hero-arrow:hover {
            background: #f5b342;
            color: #0a1628;
            transform: translateY(-50%) scale(1.05);
        }

        .hero-arrow.prev {
            left: 30px;
        }

        .hero-arrow.next {
            right: 30px;
        }

        /* ===== Stats Counter ===== */
        .hero-stats {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(10, 22, 40, 0.7);
            backdrop-filter: blur(10px);
            padding: 40px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            z-index: 15;
        }

        .hero-stats .container-1600 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .stat-item {
            text-align: center;
            padding: 24px 16px;
            border-radius: 14px;
            transition: all 0.4s ease;
            cursor: default;
            border: 1px solid transparent;
        }

        .stat-item:hover {
            background: rgba(245, 179, 66, 0.15);
            border-color: rgba(245, 179, 66, 0.3);
            transform: translateY(-6px);
        }

        .stat-item .number {
            font-size: 48px;
            font-weight: 800;
            color: #f5b342;
            display: inline-block;
            line-height: 1.2;
            transition: transform 0.4s ease;
        }

        .stat-item:hover .number {
            transform: translateY(-4px);
        }

        .stat-item .label {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 1px;
            margin-top: 6px;
            font-weight: 400;
            transition: transform 0.4s ease;
        }

        .stat-item:hover .label {
            transform: translateY(-2px);
            color: #fff;
        }

        /* ============================================================ */
        /* 3. Company Philosophy */
        /* ============================================================ */
        .philosophy-section {
            height: 1200px;
            display: flex;
            align-items: center;
            position: relative;
            background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
            overflow: hidden;
        }

        .philosophy-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(10, 22, 40, 0.7);
            z-index: 1;
        }

        .philosophy-section .container-1320 {
            position: relative;
            z-index: 2;
            color: #fff;
        }

        .philosophy-section h2 {
            font-size: 48px;
            font-weight: 800;
            letter-spacing: 2px;
            margin-bottom: 30px;
            color: #f5b342;
        }

        .philosophy-section h2 small {
            display: block;
            font-size: 18px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.6);
            letter-spacing: 4px;
            margin-top: 6px;
        }

        .philosophy-section .content {
            font-size: 20px;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.85);
            max-width: 900px;
            letter-spacing: 0.5px;
            font-weight: 300;
        }

        /* ============================================================ */
        /* 4. Core Services */
        /* ============================================================ */
        .services-section {
            padding: 100px 0 80px;
            background: #ffffff;
        }

        .services-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 60px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .services-header h2 {
            font-size: 40px;
            font-weight: 800;
            color: #0a1628;
            letter-spacing: 1px;
        }

        .services-header h2 small {
            display: block;
            font-size: 16px;
            font-weight: 400;
            color: #64748b;
            letter-spacing: 3px;
            margin-top: 4px;
        }

        .services-header .desc {
            font-size: 18px;
            color: #475569;
            max-width: 500px;
            text-align: right;
            line-height: 1.6;
            font-weight: 300;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .service-card {
            background: #f8fafc;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef2f6;
        }

        .service-card:hover {
            transform: translateY(-16px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
            border-color: #f5b342;
        }

        .service-card .card-img {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .service-card .card-img .icon-overlay {
            position: absolute;
            bottom: -24px;
            right: 24px;
            width: 52px;
            height: 52px;
            background: #f5b342;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: #fff;
            box-shadow: 0 8px 24px rgba(245, 179, 66, 0.35);
        }

        .service-card .card-body {
            padding: 32px 24px 28px;
        }

        .service-card .card-body h3 {
            font-size: 20px;
            font-weight: 700;
            color: #0a1628;
            margin-bottom: 10px;
        }

        .service-card .card-body p {
            font-size: 15px;
            color: #64748b;
            line-height: 1.7;
            font-weight: 300;
        }

        .service-card .card-body .features {
            margin-top: 14px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .service-card .card-body .features span {
            font-size: 14px;
            color: #334155;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .service-card .card-body .features span i {
            color: #f5b342;
            font-size: 12px;
        }

        /* ============================================================ */
        /* 5. Full-width Parallax Image */
        /* ============================================================ */
        .parallax-section {
            height: 580px;
            position: relative;
            overflow: hidden;
            background: #0a1628;
        }

        .parallax-section .parallax-bg {
            width: 100%;
            height: 120%;
            background: url('https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            position: absolute;
            top: -10%;
            left: 0;
            will-change: transform;
            transition: transform 0.1s linear;
        }

        .parallax-section .overlay {
            position: absolute;
            inset: 0;
            background: rgba(10, 22, 40, 0.45);
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .parallax-section .overlay .text {
            text-align: center;
            color: #fff;
            z-index: 3;
        }

        .parallax-section .overlay .text h2 {
            font-size: 52px;
            font-weight: 800;
            letter-spacing: 2px;
            margin-bottom: 12px;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        }

        .parallax-section .overlay .text h2 span {
            color: #f5b342;
        }

        .parallax-section .overlay .text p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.8);
            letter-spacing: 3px;
            font-weight: 300;
        }

        /* ============================================================ */
        /* 6. Industry Solutions (Accordion with images) */
        /* ============================================================ */
        .industry-section {
            padding: 80px 0;
            background: #f8fafc;
        }

        .industry-accordion {
            display: flex;
            gap: 16px;
            height: 500px;
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .industry-item {
            flex: 1;
            border-radius: 24px;
            background-size: cover;
            background-position: center;
            cursor: pointer;
            transition: flex 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease, transform 0.3s ease;
            position: relative;
            overflow: hidden;
            min-width: 60px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 2px solid transparent;
        }

        .industry-item:hover {
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
            border-color: rgba(245, 179, 66, 0.3);
        }

        .industry-item.active {
            flex: 3;
            border-color: #f5b342;
            box-shadow: 0 12px 40px rgba(245, 179, 66, 0.15);
        }

        .industry-item .item-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px 30px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
            color: #fff;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            transition: background 0.4s ease;
        }

        .industry-item:not(.active) .item-content {
            justify-content: center;
            align-items: center;
            text-align: center;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
        }

        .industry-item .item-content h3 {
            font-size: 22px;
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            transition: all 0.4s ease;
            margin: 0;
            letter-spacing: 1px;
        }

        .industry-item:not(.active) .item-content h3 {
            writing-mode: vertical-lr;
            letter-spacing: 6px;
            font-size: 18px;
            font-weight: 800;
            color: #fff;
            text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
        }

        .industry-item .item-content p {
            font-size: 15px;
            line-height: 1.7;
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: opacity 0.5s ease, max-height 0.6s ease, margin 0.3s ease;
            margin: 0;
            color: rgba(255, 255, 255, 0.9);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            font-weight: 300;
        }

        .industry-item.active .item-content p {
            opacity: 1;
            max-height: 200px;
            margin-top: 12px;
        }

        /* ============================================================ */
        /* 7. News & Insights */
        /* ============================================================ */
        .news-section {
            padding: 30px 0;
            background: #ffffff;
        }

        .news-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 50px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .news-header h2 {
            font-size: 40px;
            font-weight: 800;
            color: #0a1628;
            letter-spacing: 1px;
        }

        .news-header h2 small {
            display: block;
            font-size: 16px;
            font-weight: 400;
            color: #64748b;
            letter-spacing: 3px;
            margin-top: 4px;
        }

        .news-header .desc {
            font-size: 18px;
            color: #475569;
            max-width: 500px;
            text-align: right;
            line-height: 1.7;
            font-weight: 300;
        }

        .news-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .news-main-card {
            background: #f8fafc;
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            border: 1px solid #eef2f6;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }

        .news-main-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
            border-color: #f5b342;
            background: #ffffff;
        }

        .news-main-card .card-img {
            height: 280px;
            background-size: cover;
            background-position: center;
        }

        .news-main-card .card-body {
            padding: 32px 30px 30px;
        }

        .news-main-card .card-body h3 {
            font-size: 22px;
            font-weight: 700;
            color: #0a1628;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .news-main-card .card-body p {
            font-size: 16px;
            color: #64748b;
            line-height: 1.8;
            font-weight: 300;
            margin-bottom: 16px;
        }

        .news-main-card .card-body .more-link {
            color: #f5b342;
            font-weight: 600;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s;
        }

        .news-main-card .card-body .more-link:hover {
            gap: 14px;
        }

        .news-side {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .news-side-card {
            display: flex;
            align-items: stretch;
            background: #f8fafc;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            border: 1px solid #eef2f6;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
            cursor: default;
        }

        .news-side-card:hover {
            transform: translateX(12px);
            background: #ffffff;
            border-color: #f5b342;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }

        .news-side-card .side-img {
            width: 140px;
            flex-shrink: 0;
            background-size: cover;
            background-position: center;
        }

        .news-side-card .side-body {
            padding: 18px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .news-side-card .side-body h4 {
            font-size: 16px;
            font-weight: 700;
            color: #0a1628;
            margin-bottom: 6px;
            line-height: 1.4;
        }

        .news-side-card .side-body p {
            font-size: 14px;
            color: #64748b;
            line-height: 1.6;
            font-weight: 300;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 8px;
        }

        .news-side-card .side-body .more-link {
            color: #f5b342;
            font-weight: 600;
            font-size: 13px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.3s;
        }

        .news-side-card .side-body .more-link:hover {
            gap: 12px;
        }

        /* ============================================================ */
        /* 8. Full-width Video Section */
        /* ============================================================ */
        .full-video-section {
            width: 100%;
            height: 810px;
            background: #000000;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        .full-video-section video {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            display: block;
            object-fit: contain;
            background: #000;
        }

        /* ============================================================ */
        /* 9. Footer Information Bar (Full-width background, 4 columns) */
        /* ============================================================ */
        .footer-info {
            
            position: relative;
            padding: 60px 0 30px;
            color: #fff;
        }

        .footer-info::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(10, 22, 40, 0.85);
            z-index: 1;
        }

        .footer-info .container-1600 {
            position: relative;
            z-index: 2;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Column 1: Logo + Description + Social Icons */
        .footer-col-1 .footer-logo {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-col-1 .footer-logo i {
            color: #f5b342;
            font-size: 32px;
        }

        .footer-col-1 .footer-logo span {
            background: linear-gradient(135deg, #f5b342, #ffd966);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-col-1 .desc {
            font-size: 15px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
            font-weight: 300;
            max-width: 300px;
        }

        .footer-social {
            display: flex;
            gap: 16px;
        }

        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            font-size: 18px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-social a:hover {
            background: #f5b342;
            color: #0a1628;
            transform: translateY(-4px);
            border-color: #f5b342;
        }

        /* Column 2: Quick Links */
        .footer-col-2 h4,
        .footer-col-3 h4,
        .footer-col-4 h4 {
			text-align: center;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #ffffff;
            letter-spacing: 1px;
        }

        .footer-col-2 ul li {
			margin-left: 60px;
            margin-bottom: 12px;
        }

        .footer-col-2 ul li a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
            font-weight: 300;
            transition: color 0.3s, padding-left 0.3s;
            display: inline-block;
        }

        .footer-col-2 ul li a:hover {
            color: #f5b342;
            padding-left: 6px;
        }

        /* Column 3: Contact Information */
        .footer-col-3 .contact-item {
			
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
            font-weight: 300;
            line-height: 1.6;
        }

        .footer-col-3 .contact-item i {
            color: #f5b342;
            font-size: 18px;
            margin-top: 2px;
            width: 20px;
            text-align: center;
        }

        /* Column 4: QR Code + Follow */
        .footer-col-4 .qr-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .footer-col-4 .qr-wrapper .qr-placeholder {
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border: 2px dashed rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
            text-align: center;
            padding: 8px;
            line-height: 1.4;
        }

        .footer-col-4 .qr-wrapper .qr-placeholder i {
            font-size: 40px;
            color: rgba(255, 255, 255, 0.3);
            display: block;
            margin-bottom: 6px;
        }

        .footer-col-4 .qr-wrapper .follow-text {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 300;
            letter-spacing: 2px;
        }

        /* Copyright */
        .footer-copyright {
            text-align: center;
            padding-top: 30px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
            font-weight: 300;
            letter-spacing: 1px;
            position: relative;
            z-index: 2;
        }

        .footer-copyright span {
            color: #f5b342;
        }

        /* ============================================================ */
        /* AOS Custom */
        /* ============================================================ */
        [data-aos="custom-zoom"] {
            opacity: 0;
            transform: scale(0.85);
            transition-property: transform, opacity;
        }

        [data-aos="custom-zoom"].aos-animate {
            opacity: 1;
            transform: scale(1);
        }

        /* ============================================================ */
        /* Responsive */
        /* ============================================================ */
        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .news-grid {
                grid-template-columns: 1fr;
            }
            .hero-slide .slide-content h1 {
                font-size: 48px;
            }
            .stat-item .number {
                font-size: 36px;
            }
            .philosophy-section h2 {
                font-size: 36px;
            }
            .services-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .services-header .desc {
                text-align: left;
                max-width: 100%;
            }
            .news-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .news-header .desc {
                text-align: left;
                max-width: 100%;
            }
            .industry-accordion {
                height: 400px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 992px) {
            .industry-accordion {
                flex-wrap: wrap;
                height: auto;
                gap: 12px;
            }
            .industry-item {
                flex: 1 1 calc(50% - 12px);
                min-height: 250px;
                height: 300px;
            }
            .industry-item.active {
                flex: 1 1 100%;
            }
            .industry-item:not(.active) .item-content h3 {
                writing-mode: horizontal-tb;
                letter-spacing: 2px;
                font-size: 20px;
            }
        }

        @media (max-width: 768px) {
            .navbar .container-1600 {
                flex-wrap: wrap;
                height: auto;
                padding: 12px 20px;
                gap: 10px;
            }
            .nav-menu {
                order: 3;
                flex-wrap: wrap;
                justify-content: center;
                width: 100%;
                gap: 2px;
                padding: 8px 12px;
                border-radius: 30px;
            }
            .nav-menu>li {
                padding: 6px 12px;
                font-size: 12px;
            }
            .nav-right {
                gap: 12px;
            }
            .nav-phone {
                font-size: 13px;
            }
            .hero-section {
                height: 900px;
                margin-top: 0;
            }
            .hero-slide .slide-content h1 {
                font-size: 32px;
            }
            .hero-stats .container-1600 {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .stat-item .number {
                font-size: 28px;
            }
            .philosophy-section {
                height: auto;
                padding: 80px 0;
                background-attachment: scroll;
            }
            .philosophy-section h2 {
                font-size: 28px;
            }
            .philosophy-section .content {
                font-size: 16px;
            }
            .services-grid {
                grid-template-columns: 1fr;
            }
            .parallax-section {
                height: 380px;
            }
            .parallax-section .overlay .text h2 {
                font-size: 28px;
            }
            .news-side-card {
                flex-direction: column;
            }
            .news-side-card .side-img {
                width: 100%;
                height: 120px;
            }
            .hero-arrow {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            .hero-arrow.prev {
                left: 10px;
            }
            .hero-arrow.next {
                right: 10px;
            }
            .services-header h2 {
                font-size: 28px;
            }
            .news-header h2 {
                font-size: 28px;
            }
            .industry-item {
                flex: 1 1 100%;
                min-height: 200px;
            }
            .industry-item.active {
                flex: 1 1 100%;
                min-height: 300px;
            }
            .industry-item:not(.active) .item-content h3 {
                writing-mode: horizontal-tb;
                font-size: 18px;
            }
            .full-video-section {
                height: 400px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
            .footer-col-1 .desc {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
            .footer-social {
                justify-content: center;
            }
            .footer-col-3 .contact-item {
                justify-content: center;
            }
            .footer-col-4 .qr-wrapper {
                align-items: center;
            }
        }
        .ts-parallax-wrap{width:100%;height:580px;overflow:hidden;position:relative;margin:120px 0;}
        .ts-parallax-bg{width:100%;height:140%;position:absolute;top:-20%;left:0;background:url(https://picsum.photos/id/1049/3351/960) center/cover no-repeat;}

        @media (max-width: 480px) {
            .hero-stats .container-1600 {
                grid-template-columns: 1fr 1fr;
                gap: 6px;
            }
            .stat-item {
                padding: 14px 8px;
            }
            .stat-item .number {
                font-size: 22px;
            }
            .stat-item .label {
                font-size: 12px;
            }
            .full-video-section {
                height: 280px;
            }
        }



		.ts-logo{width:280px;display:block;text-decoration: none;}


        .contact-page {
			
            background: #f8fafc;
            color: #1e293b;
            overflow-x: hidden;
        }

        .contact-page a {
            text-decoration: none;
            color: inherit;
        }

        .contact-page ul {
            list-style: none;
        }

        /* ===== Containers ===== */
        .cnt-container-1600 {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ============================================================ */
        /* 1. Navbar (isolated) */
        /* ============================================================ */
        .cnt-navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: transparent;
            transition: background-color 0.3s ease;
            padding: 12px 0;
            overflow: visible;
        }

		.cnt-navbar.nav-scroll {
  /* 淡灰色半透明，可自行调整透明度0~1 */
  background-color: rgba(40, 44, 52, 0.75);
  /* 可选：滚动后加轻微阴影提升层次感 */
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

        .cnt-navbar.scrolled {
            background: rgba(10, 22, 40, 0.6);
            backdrop-filter: blur(8px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }

        .cnt-navbar .cnt-container-1600 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px;
        }

        .cnt-nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 26px;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: 1px;
            flex-shrink: 0;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .cnt-nav-logo i {
            color: #f5b342;
            font-size: 30px;
        }

        .cnt-nav-logo span {
            background: linear-gradient(135deg, #f5b342, #ffd966);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .cnt-nav-menu {
            display: flex;
            align-items: center;
            gap: 4px;
            background: rgb(0 0 0 / 36%);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 6px 18px;
            border-radius: 60px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }


.nav-scroll .cnt-nav-menu {
    background: transparent;
    border: 0px solid rgba(255, 255, 255, 0.2);
}



        .cnt-nav-menu>li {
            position: relative;
            padding: 10px 18px;
            font-size: 18px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            cursor: pointer;
            transition: color 0.3s, background 0.3s;
            border-radius: 40px;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .cnt-nav-menu>li:hover {
            color: #fff;
            background: rgb(141 140 140 / 90%);
        }

        .cnt-nav-menu>li .cnt-dropdown {
            position: absolute;
            top: 42px;
            left: 0;
            min-width: 200px;
            background: rgba(10, 22, 40, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 16px;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: all 0.3s ease;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cnt-nav-menu>li:hover .cnt-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .cnt-dropdown li {
            padding: 10px 24px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            transition: all 0.25s;
            cursor: pointer;
            font-weight: 500;
        }

        .cnt-dropdown li:hover {
            color: #f5b342;
            background: rgba(245, 179, 66, 0.08);
            padding-left: 30px;
        }

        .cnt-nav-right {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-shrink: 0;
        }

        .cnt-nav-right .cnt-icon-btn {
            color: rgba(255, 255, 255, 0.8);
            font-size: 21px;
            transition: color 0.3s;
            cursor: pointer;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .cnt-nav-right .cnt-icon-btn:hover {
            color: #f5b342;
        }

        .cnt-nav-phone {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #ffffff;
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 0.5px;
         
        }

        .cnt-nav-phone i {
           
            font-size: 18px;
        }

        /* ============================================================ */
        /* 2. Hero / Page Title */
        /* ============================================================ */
        .cnt-hero {
            margin-top: 0;
            height: 260px;
            background: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cnt-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(10, 22, 40, 0.5);
            z-index: 1;
        }

        .cnt-hero .cnt-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #fff;
            max-width: 800px;
            padding: 0 20px;
        }

        .cnt-hero .cnt-hero-content h1 {
            font-size: 48px;
            font-weight: 800;
            letter-spacing: 2px;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 10px;
        }

        .cnt-hero .cnt-hero-content h1 span {
            color: #f5b342;
        }

        .cnt-hero .cnt-hero-content p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.85);
            letter-spacing: 1px;
            font-weight: 300;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
        }

        /* ============================================================ */
        /* 3. Contact Form (with border) */
        /* ============================================================ */
        .cnt-contact-section {
            padding: 70px 0 50px;
            background: #ffffff;
        }

        .cnt-form-wrapper {
            max-width: 1100px;
            margin: 0 auto;
            padding: 50px 55px;
            border: 2px solid #eef2f6;
            border-radius: 24px;
            background: #fafbfc;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .cnt-form-wrapper:hover {
            border-color: #f5b342;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
        }

        .cnt-form-title {
            font-size: 32px;
            font-weight: 800;
            color: #0a1628;
            text-align: center;
            margin-bottom: 8px;
        }

        .cnt-form-sub {
            text-align: center;
            font-size: 16px;
            color: #94a3b8;
            margin-bottom: 36px;
            font-weight: 300;
        }

        .cnt-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px 30px;
        }

        .cnt-form-group {
            margin-bottom: 6px;
        }

        .cnt-form-group.full-width {
            grid-column: 1 / -1;
        }

        .cnt-form-group label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #0a1628;
            margin-bottom: 6px;
        }

        .cnt-form-group label .cnt-required {
            color: #ef4444;
            margin-left: 2px;
        }

        .cnt-form-group input,
        .cnt-form-group textarea {
            width: 100%;
            padding: 13px 18px;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            font-size: 15px;
            color: #1e293b;
            background: #ffffff;
            transition: border-color 0.3s, box-shadow 0.3s;
            outline: none;
            font-family: inherit;
        }

        .cnt-form-group input:focus,
        .cnt-form-group textarea:focus {
            border-color: #f5b342;
            box-shadow: 0 0 0 4px rgba(245, 179, 66, 0.10);
        }

        .cnt-form-group textarea {
            min-height: 140px;
            resize: vertical;
        }

        .cnt-submit-wrap {
            text-align: center;
            margin-top: 10px;
        }

        .cnt-submit-btn {
            display: inline-block;
            padding: 16px 56px;
            background: #f5b342;
            color: #0a1628;
            font-size: 17px;
            font-weight: 700;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 1px;
        }

        .cnt-submit-btn:hover {
            background: #e6a030;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(245, 179, 66, 0.35);
        }

        .cnt-submit-btn:active {
            transform: translateY(0);
        }

        /* ============================================================ */
        /* 4. Map Image */
        /* ============================================================ */
        .cnt-map-section {
            padding: 0 0 50px;
            background: #ffffff;
        }

        .cnt-map-wrapper {
            max-width: 1100px;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #eef2f6;
            transition: box-shadow 0.3s ease;
        }

        .cnt-map-wrapper:hover {
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        }

        .cnt-map-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        /* ============================================================ */
        /* 5. Contact Info Cards (3 items, hover background) */
        /* ============================================================ */
        .cnt-info-section {
            padding: 0 0 80px;
            background: #ffffff;
        }

        .cnt-info-grid {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .cnt-info-card {
            background: #f8fafc;
            border: 1px solid #eef2f6;
            border-radius: 18px;
            padding: 32px 28px;
            text-align: center;
            transition: all 0.4s ease;
            cursor: default;
        }

        .cnt-info-card:hover {
            background: #f5b342;
            border-color: #f5b342;
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(245, 179, 66, 0.25);
        }

        .cnt-info-card .cnt-info-icon {
            font-size: 32px;
            color: #f5b342;
            margin-bottom: 14px;
            transition: color 0.3s ease;
        }

        .cnt-info-card:hover .cnt-info-icon {
            color: #0a1628;
        }

        .cnt-info-card .cnt-info-label {
            font-size: 16px;
            font-weight: 700;
            color: #0a1628;
            letter-spacing: 1px;
            margin-bottom: 8px;
            transition: color 0.3s ease;
        }

        .cnt-info-card:hover .cnt-info-label {
            color: #0a1628;
        }

        .cnt-info-card .cnt-info-value {
            font-size: 15px;
            color: #475569;
            line-height: 1.6;
            font-weight: 300;
            transition: color 0.3s ease;
        }

        .cnt-info-card:hover .cnt-info-value {
            color: #0a1628;
        }

        /* ============================================================ */
        /* AOS custom (contact) */
        /* ============================================================ */
        [data-aos="cnt-zoom"] {
            opacity: 0;
            transform: scale(0.85);
            transition-property: transform, opacity;
        }

        [data-aos="cnt-zoom"].aos-animate {
            opacity: 1;
            transform: scale(1);
        }

        /* ============================================================ */
        /* Responsive (isolated) */
        /* ============================================================ */
        @media (max-width: 1200px) {
            .cnt-form-wrapper {
                padding: 40px 32px;
            }
            .cnt-info-grid {
                gap: 20px;
            }
        }

        @media (max-width: 992px) {
            .cnt-hero {
                height: 210px;
            }
            .cnt-hero .cnt-hero-content h1 {
                font-size: 34px;
            }
            .cnt-form-title {
                font-size: 28px;
            }
            .cnt-form-row {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .cnt-form-wrapper {
                padding: 32px 24px;
            }
            .cnt-info-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }
            .cnt-info-card {
                padding: 24px 18px;
            }
        }

        @media (max-width: 768px) {
            .cnt-navbar .cnt-container-1600 {
                flex-wrap: wrap;
                height: auto;
                padding: 12px 20px;
                gap: 10px;
            }
            .cnt-nav-menu {
                order: 3;
                flex-wrap: wrap;
                justify-content: center;
                width: 100%;
                gap: 2px;
                padding: 8px 12px;
                border-radius: 30px;
            }
            .cnt-nav-menu>li {
                padding: 6px 12px;
                font-size: 12px;
            }
            .cnt-nav-right {
                gap: 12px;
            }
            .cnt-nav-phone {
                font-size: 13px;
            }

            .cnt-hero {
                height: 170px;
            }
            .cnt-hero .cnt-hero-content h1 {
                font-size: 28px;
            }
            .cnt-hero .cnt-hero-content p {
                font-size: 16px;
            }

            .cnt-form-title {
                font-size: 24px;
            }
            .cnt-form-wrapper {
                padding: 24px 16px;
                border-width: 1.5px;
            }
            .cnt-form-row {
                gap: 14px;
            }
            .cnt-submit-btn {
                width: 100%;
                padding: 14px 20px;
                font-size: 16px;
            }

            .cnt-info-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .cnt-info-card {
                padding: 22px 18px;
            }

            .cnt-map-wrapper {
                border-radius: 14px;
            }
        }

        @media (max-width: 480px) {
            .cnt-hero {
                height: 140px;
            }
            .cnt-hero .cnt-hero-content h1 {
                font-size: 22px;
            }
            .cnt-form-title {
                font-size: 20px;
            }
            .cnt-form-wrapper {
                padding: 18px 12px;
            }
            .cnt-form-group input,
            .cnt-form-group textarea {
                padding: 11px 14px;
                font-size: 14px;
            }
            .cnt-info-card .cnt-info-icon {
                font-size: 26px;
            }
            .cnt-info-card .cnt-info-value {
                font-size: 14px;
            }
        }


:root{--ts-orange:#E85D04;--ts-gray:#666;--ts-white:#fff;--ts-nav-bg:rgba(255,255,255,0.22);}
        /* 通用容器 沿用之前尺寸 */
        .ts-container-1600{max-width: 1600px;margin: 0 auto;padding: 0 20px;}
        .ts-container-1320{max-width: 1320px;margin: 0 auto;padding: 0 20px;}

        /* 复用导航样式，和首页保持一致 */
        .ts-nav-wrap{position: absolute;top: 0;left: 0;width: 100%;z-index: 999;}
        .ts-nav-inner{display: flex;align-items: center;justify-content: space-between;padding: 18px 0;}
        .ts-logo{width:280px;display:block;text-decoration: none;}
        
        .ts-nav-menu{display: flex;gap: 36px;list-style: none;background: var(--ts-nav-bg);padding: 10px 28px;border-radius: 50px;backdrop-filter: blur(8px);}
        .ts-nav-menu>li{position: relative;}
        .ts-nav-menu>li>a{text-decoration: none;color:#333;padding: 8px 4px;display: block;font-size: 15px;transition: .2s;}
        .ts-nav-menu>li>a:hover{color: var(--ts-orange);}
        .ts-submenu{position:absolute;top:100%;left:0;background:rgba(255,255,255,0.95);box-shadow:0 4px 12px #00000018;list-style:none;width:200px;opacity:0;visibility:hidden;transform:translateY(10px);transition:.3s;border-radius:8px;overflow:hidden;}
        .ts-nav-menu>li:hover .ts-submenu{opacity:1;visibility:visible;transform:translateY(0);}
        .ts-submenu li a{display:block;padding:12px 16px;text-decoration:none;color:#333;font-size:14px;transition:.2s;}
        .ts-submenu li a:hover{background:#f5f5f5;color:var(--ts-orange);padding-left:20px;}
        /* 移除ts-nav-right背景样式 */
        .ts-nav-right{display:flex;align-items:center;gap:10px;}
        .ts-nav-right i{color:var(--ts-orange);font-size:18px;margin-right:4px;}
        .ts-nav-right span{font-size:15px;color:#333;}

        /* about页面专属样式 前缀tsab 避免和首页css冲突 */
        /* 顶部单张banner 高度690px */
        .tsab-banner-wrap{height:690px;width:100%;position:relative;}
        .tsab-banner-bg{width:100%;height:100%;}
        /* 数据统计模块 放在banner下方 */
        .tsab-data-wrap{width:100%;background:#f8f8f8;}
        .tsab-data-list{display:flex;}
        .tsab-data-item{flex:1;padding:60px 20px;text-align:center;transition:0.3s ease;cursor:pointer;}
        .tsab-data-item:hover{background:var(--ts-orange);}
        .tsab-data-item:hover .tsab-data-num,.tsab-data-item:hover .tsab-data-desc{color:#fff;}
        .tsab-data-num{font-size:48px;font-weight:700;color:#222;margin-bottom:12px;transition:0.3s;}
        .tsab-data-desc{font-size:15px;color:#777;text-transform:uppercase;letter-spacing:1px;transition:0.3s;}

        /* 视频横幅模块 高度800px 无弹窗，区域内直接播放 */
        .tsab-video-wrap{width:100%;height:800px;position:relative;margin:120px 0;overflow:hidden;}
        /* 初始背景图 样式保留，图片地址写在div行内style */
        .tsab-video-bg{width:100%;height:100%;position:absolute;top:0;left:0;transition:opacity 0.5s;z-index:1;}
        /* 视频容器 覆盖全屏 */
        .tsab-video-player{width:100%;height:100%;position:absolute;top:0;left:0;object-fit:cover;z-index:0;opacity:0;}
        /* 播放按钮 */


        .ts-parallax-wrap{width:100%;height:580px;overflow:hidden;position:relative;margin:120px 0;}
        .ts-parallax-bg{width:100%;height:140%;position:absolute;top:-20%;left:0;background:url(https://picsum.photos/id/1049/3351/960) center/cover no-repeat;}
        .tsab-play-btn{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:90px;height:90px;border-radius:50%;background:#ffffffdd;display:flex;align-items:center;justify-content:center;font-size:32px;color:var(--ts-orange);cursor:pointer;transition:0.3s;z-index:2;}
        .tsab-play-btn:hover{background:#fff;transform:translate(-50%,-50%) scale(1.1);}





		.ls-contact-section {
            width: 100%;
            max-width: 1600px;
            margin: 0 auto;
            padding: 60px;
            
        }

        .ls-contact-top-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }


		.ls-contact-info-box {
    padding: 40px 35px;
    background: #fff;
    /* 向前突出核心 */
    transform: translateX(-12px) translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

        /* 左侧联系信息标题：黑色+底部边框 */
        .ls-contact-info-box h3 {
            font-size: 26px;
            color: #000000;
            margin-bottom: 30px;
            font-weight: 600;
            padding-bottom: 12px;
            border-bottom: 2px solid #cdcdcd;
        }

        .ls-info-item {
            margin-bottom: 24px;
        }

        .ls-info-item h4 {
            font-size: 16px;
            color: #333;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .ls-info-item p {
            font-size: 15px;
            color: #555;
            line-height: 1.6;
        }

        .ls-info-item a {
            color: #0099e5;
            text-decoration: none;
        }

        .ls-info-item a:hover {
            text-decoration: underline;
        }

        /* 地图标题：黑色+底部边框 */
        .ls-map-box h3 {
			margin-top: 60px;
            font-size: 26px;
            color: #000000;
            margin-bottom: 30px;
            font-weight: 600;
            padding-bottom: 12px;
            border-bottom: 2px solid #cdcdcd;
        }

        .ls-map-iframe-wrap {
            width: 100%;
            height: 360px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #eee;
        }

        .ls-map-iframe-wrap iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* 表单区域：仅此处添加淡灰色边框 */
        .ls-inquiry-form-wrap {
            padding: 40px;
            border: 1px solid #dddddd; /* 淡灰色边框 */
            border-radius: 8px;
        }

        /* 表单标题：黑色+底部边框 */
        .ls-inquiry-form-wrap h3 {
            font-size: 26px;
            color: #000000;
            margin-bottom: 12px;
            font-weight: 600;
            padding-bottom: 12px;
           
        }

        .ls-form-desc {
            font-size: 15px;
            color: #666;
            margin-bottom: 35px;
            max-width: 100%;
        }

        .ls-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-bottom: 25px;
        }

        .ls-form-group {
            display: flex;
            flex-direction: column;
        }

        .ls-form-group-full {
            grid-column: 1 / -1;
        }

        .ls-form-group label {
            font-size: 15px;
            color: #333;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .ls-form-group input,
        .ls-form-group select,
        .ls-form-group textarea {
            width: 90%;
            padding: 14px 16px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
            color: #333;
            transition: border 0.3s ease;
        }

        .ls-form-group input:focus,
        .ls-form-group select:focus,
        .ls-form-group textarea:focus {
            outline: none;
            border-color: #f5b342;
        }

        .ls-form-group textarea {
            min-height: 140px;
            resize: vertical;
        }

        .ls-submit-btn {
            padding: 16px 40px;
            background-color: #d98d0b;
            color: #fff;
            border: none;
            border-radius: 6px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s ease;
            margin-top: 10px;
        }

        .ls-submit-btn:hover {
            background-color: #f5b342;
        }

        /* 响应式适配 */
        @media screen and (max-width: 1600px) {
            .ls-contact-section {
                width: 100%;
                max-width: 1600px;
            }
        }

        @media screen and (max-width: 992px) {
            .ls-contact-top-wrap {
                grid-template-columns: 1fr;
            }

            .ls-form-row {
                grid-template-columns: 1fr;
            }
			.ls-contact-info-box {
    			transform: none;
				}
        }



        .pan-partners {
      padding: 80px 20px;
      background: #ffffff;
    }
    /* 核心容器 最大宽度1320px 居中 */
    .pan-container {
      width: 100%;
      max-width: 1320px;
      margin: 0 auto;
    }
    /* 标题区域 */
    .pan-title-wrap {
      text-align: center;
      margin-bottom: 24px;
    }
    .pan-main-title {
      font-size: 42px;
      font-weight: 700;
      color: #222;
      margin: 0;
    }


.ls-logo-wall {

  background: #ffffff;
}
.ls-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}
/* 每一行通用容器 */
.ls-logo-row {
  display: flex;
  gap: 50px;
  margin-bottom: 40px;
  align-items: center;
}
/* 5个logo的行：左右两端对齐铺满整行 */
.ls-row-5 {
/*  justify-content: space-between;*/
}
/* 仅3个logo的第二排：左对齐 */
.ls-row-3 {
  justify-content: flex-start;
}
/* 所有logo卡片统一固定宽，全部大小一致 */
.ls-logo-item {
  width: 200px;
  padding: 15px;
  background: #f7f7f7;
  border-radius: 8px;
  transition: all 0.3s ease;
}
/* hover上浮效果 */
.ls-logo-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.ls-logo-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
/* 清除最后一行下边距 */
.ls-logo-row:last-child {
  margin-bottom: 0;
}




    /* 简介文案 */
    .pan-desc-wrap {
      max-width: 1000px;
      margin: 0 auto 60px;
      text-align: center;
    }
    .pan-desc-text {
      font-size: 16px;
      line-height: 1.7;
      color: #555;
      margin: 0;
    }
    /* Logo墙 一排5个 */
    .pan-logo-wall {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 40px;
      align-items: center;
    }
    .pan-logo-item {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 15px;
      background: #f8f8f8;
      border-radius: 8px;
      transition: all 0.3s ease;
    }
    .pan-logo-item:hover {
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
      transform: translateY(-4px);
    }
    .pan-logo-img {
      width: 100%;
      height: auto;
      object-fit: contain;
    }
    /* 响应式适配 */
    @media screen and (max-width: 1024px) {
      .pan-logo-wall {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
      }
    }
    @media screen and (max-width: 768px) {
      .pan-logo-wall {
        grid-template-columns: repeat(2, 1fr);
      }
      .pan-main-title {
        font-size: 32px;
      }
    }
    @media screen and (max-width: 480px) {
      .pan-logo-wall {
        grid-template-columns: 1fr;
      }
      .pan-partners {
        padding: 50px 15px;
      }
    }


    .ck-wrap {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 通用区块间距 */
        .ck-block-space {
            padding: 120px 0;
            border-bottom: 1px solid #eee;
        }
        /* 标题通用样式 */
        .ck-main-title {
            font-size: 44px;
            font-weight: 700;
            margin-bottom: 14px;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        .ck-main-title::before {
            content: "";
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: -10px;
            width: 60px;
            height: 4px;
            background-color: #f5b342;
        }
        /* 仓库描述文字 居中核心修改 */
        .ck-desc-text-center {
            font-size: 17px;
            line-height: 1.75;
            color: #222222;
            max-width: 1320px;
            margin: 0 auto;
            text-align: center;
        }
        /* 交错左右容器 */
        .ck-flex-row {
            display: flex;
            align-items: center;
            gap: 60px;
            margin-top: 50px;
        }
        .ck-flex-row-reverse {
            flex-direction: row-reverse;
        }
        .ck-flex-text {
            flex: 0 0 45%;
        }
        .ck-flex-media {
            flex: 0 0 55%;
        }
        /* 仓库信息文字样式 */
        .ck-warehouse-paragraph {
            font-size: 16px;
            line-height: 1.8;
            margin-top: 26px;
        }
        .ck-address-highlight {
            display: inline-block;
            margin-top: 12px;
            padding: 10px 18px;
            background: #f5b342;
            color: #000;
            font-weight: 500;
            border-radius: 4px;
        }
        /* 谷歌地图容器 */
        .ck-map-container {
            width: 100%;
            height: 520px;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 6px 28px rgba(0,0,0,0.07);
            border: 2px solid #f5b342;
        }
        .ck-map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        /* 实景图集 - 横向滚动卡片布局 */
        .ck-gallery-section {
            margin-top: 50px;
        }
        .ck-gallery-scroll {
            display: flex;
            gap: 26px;
            overflow-x: auto;
            padding: 20px 0;
            scroll-snap-type: x mandatory;
        }
        .ck-gallery-scroll::-webkit-scrollbar {
            height: 6px;
        }
        .ck-gallery-scroll::-webkit-scrollbar-thumb {
            background: #f5b342;
            border-radius: 3px;
        }
        .ck-gallery-card {
            flex: 0 0 360px;
            height: 300px;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            scroll-snap-align: start;
            transition: all 0.3s ease;
        }
        .ck-gallery-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 35px rgba(245, 179, 66, 0.18);
        }
        .ck-gallery-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .ck-gallery-label {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 14px;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            color: #fff;
            font-size: 15px;
        }
        /* WMS智能系统模块 全新双列卡片布局 */
        .ck-wms-bg-block {
            background: #f8f8f8;
                padding: 100px 30px;
                margin: 50px;
            border-radius: 20px;
        }
        .ck-wms-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 45px;
        }
        .ck-wms-item {
            background: #fff;
            padding: 32px;
            border-radius: 14px;
            border-left: 5px solid #f5b342;
            transition: 0.3s;
        }
        .ck-wms-item:hover {
            box-shadow: 0 8px 30px rgba(245, 179, 66, 0.12);
        }
        .ck-wms-item h4 {
            font-size: 21px;
            margin-bottom: 12px;
        }
        .ck-wms-item p {
            font-size: 15px;
            color: #333;
            line-height: 1.7;
        }
        /* 业务标签 居中修改 */
        .ck-tag-group {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 40px;
            justify-content: center;
        }
        .ck-tag {
            padding: 11px 22px;
            background-color: #f5b342;
            color: #000;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
        }
        /* 移动端适配 */
        @media (max-width: 992px) {
            .ck-flex-row, .ck-flex-row-reverse {
                flex-direction: column;
            }
            .ck-flex-text, .ck-flex-media {
                flex: unset;
                width: 100%;
            }
            .ck-wms-grid {
                grid-template-columns: 1fr;
            }
            .ck-main-title {
                font-size: 32px;
            }
            .ck-map-container {
                height: 380px;
            }
            .ck-gallery-card {
                flex: 0 0 280px;
            }
        }



        .ck-wrap {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 服务板块外层容器 */
        .ck-service-section {
            padding: 100px 0;
            background: #f8fafc;
        }
        /* 顶部居中标题描述区域 */
        .ck-section-head {
            text-align: center;
            max-width: 1320px;
            margin: 0 auto 60px;
        }
        .ck-section-head h2 {
            font-size: 44px;
            font-weight: 700;
            margin-bottom: 16px;
            position: relative;
            display: inline-block;
        }
        .ck-section-head h2::after {
            content: "";
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: -10px;
            width: 60px;
            height: 4px;
            background-color: #f5b342;
        }
        .ck-section-head p {
            font-size: 17px;
            line-height: 1.75;
            color: #222;
        }

        /* 手风琴容器 匹配JS id */
        #industryAccordion {
            display: flex;
            gap: 16px;
            height: 500px;
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 手风琴条目 匹配JS类名 industry-item */
        .industry-item {
            flex: 1;
            border-radius: 24px;
            background-size: cover;
            background-position: center;
            cursor: pointer;
            transition: flex 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            min-width: 60px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 2px solid transparent;
        }
        .industry-item:hover {
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
            border-color: rgba(245, 179, 66, 0.3);
        }
        .industry-item.active {
            flex: 3;
            border-color: #f5b342;
            box-shadow: 0 12px 40px rgba(245, 179, 66, 0.15);
        }
        .item-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px 30px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
            color: #fff;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            transition: background 0.4s ease;
        }
        .industry-item:not(.active) .item-content {
            justify-content: center;
            align-items: center;
            text-align: center;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
        }
        .item-content h3 {
            font-size: 22px;
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            transition: all 0.4s ease;
            margin: 0;
            letter-spacing: 1px;
        }
        .industry-item:not(.active) .item-content h3 {
            writing-mode: vertical-lr;
            letter-spacing: 6px;
            font-size: 18px;
            font-weight: 800;
            color: #fff;
            text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
        }
        .item-content p {
            font-size: 15px;
            line-height: 1.7;
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: opacity 0.5s ease, max-height 0.6s ease, margin 0.3s ease;
            margin: 0;
            color: rgba(255, 255, 255, 0.9);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            font-weight: 300;
        }
        .industry-item.active .item-content p {
            opacity: 1;
            max-height: 700px;
            margin-top: 12px;
        }

        /* 移动端适配 */
        @media (max-width: 992px) {
            #industryAccordion {
                flex-direction: column;
                height: auto;
            }
            .industry-item.active {
                flex: none;
                height: 420px;
            }
            .industry-item {
                height: 110px;
            }
            .ck-section-head h2 {
                font-size: 32px;
            }
        }

        .bg{
            background-color: #fff;
        }

        .ck-process-section {
            padding: 100px 0;
            
        }
        /* 顶部标题区域 */
        .ck-process-head {
            text-align: center;
            margin-bottom: 70px;
        }
        .ck-process-head h2 {
            font-size: 38px;
            font-weight: 700;
            margin-bottom: 16px;
            color: #000;
        }
        .ck-process-head p {
            font-size: 22px;
            color: #333;
            font-weight: 400;
        }
        /* 单行流程容器 - 严格一行展示 */
        .ck-process-row {
            display: flex;
            align-items: stretch;
            justify-content: space-between;
            gap: 14px;
            max-width: 1600px;
            margin: 0 auto;
        }
        /* 单张流程卡片 完全复刻原图圆角结构 */
        .ck-process-card {
            flex: 1;
            min-width: 220px;
            background: #f5f7fa;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 6px 20px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
        }
        .ck-process-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(245, 179, 66, 0.14);
        }
        /* 左上角圆形数字 */
        .ck-card-num {
            position: absolute;
            top: 18px;
            left: 18px;
            width: 38px;
            height: 38px;
            background: #fff;
            border-radius: 50%;
            display: grid;
            place-items: center;
            font-size: 17px;
            font-weight: 600;
            color: #111;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        /* 右上角短横线 */
        .ck-card-line {
            position: absolute;
            top: 24px;
            right: 20px;
            width: 24px;
            height: 3px;
            background: #222;
            border-radius: 2px;
        }
        /* 图标居中区域 */
        .ck-card-icon-box {
            padding: 60px 20px 40px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .ck-card-icon-box svg {
            width: 100px;
            height: 100px;
            stroke: #111;
            stroke-width: 2;
            fill: transparent;
        }
        /* 深蓝色标题栏 */
        .ck-card-title-bar {
            background-color: #0f2042;
            padding: 22px 16px;
            text-align: center;
        }
        .ck-card-title-bar h3 {
            color: #ffffff;
            font-size: 21px;
            font-weight: 600;
            line-height: 1.3;
        }
        /* 底部说明文字 - 适配长文案自动换行 */
        .ck-card-desc {
            padding: 26px 20px 30px;
            text-align: center;
            font-size: 15px;
            line-height: 1.7;
            color: #222;
        }
        /* 卡片之间箭头 */
        .ck-process-arrow {
            display: flex;
            align-items: center;
            font-size: 32px;
            color: #111;
            padding: 0 6px;
        }
        /* 移动端适配 */
        @media (max-width: 1400px) {
            .ck-process-row {
                flex-wrap: wrap;
            }
            .ck-process-card {
                flex: 1 1 280px;
            }
        }
        @media (max-width: 992px) {
            .ck-process-row {
                flex-direction: column;
                gap: 50px;
            }
            .ck-process-arrow {
                transform: rotate(90deg);
                margin: -25px auto;
            }
            .ck-process-head h2 {
                font-size: 32px;
            }
            .ck-process-head p {
                font-size: 18px;
            }
        }



        .serone-wrap {
            
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 流程板块外层 */
        .serone-process-section {
                margin-bottom: 50px;
            
            background: #fff;
        }
        /* 顶部标题区域 居中 */
        .serone-process-head {
            text-align: center;
            margin-bottom: 70px;
        }
        .serone-process-head h2 {
            font-size: 44px;
            font-weight: 700;
            margin-bottom: 16px;
            color: #000;
        }
        .serone-process-head p {
            font-size: 22px;
            color: #333;
            font-weight: 400;
        }
        /* 单行流程容器 严格一行展示 */
        .serone-process-row {
            display: flex;
            align-items: stretch;
            justify-content: space-between;
            gap: 14px;
            max-width: 1600px;
            margin: 0 auto;
        }
        /* 单张流程卡片 完全复刻原图圆角结构 */
        .serone-process-card {
            flex: 1;
            min-width: 220px;
            background: #ffffff;
            border: 1px solid #eee;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 2px 12px rgba(0,0,0,0.04);
            transition: all 0.3s ease;
        }
        .serone-process-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(245, 179, 66, 0.14);
        }
        /* 顶部圆形图标区域 */
        .serone-card-icon-wrap {
            width: 100%;
            padding: 40px 20px 30px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .serone-card-circle {
            margin-right: 45px;
            width: 130px;
            height: 130px;
            background: #f7f8fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .serone-card-circle svg {
            width: 75px;
            height: 75px;
            stroke: #111;
            stroke-width: 1.8;
            fill: transparent;
        }
        /* 卡片标题 */
        .serone-card-title {
            padding: 0 20px 16px;
            text-align: center;
        }
        .serone-card-title h3 {
            font-size: 24px;
            font-weight: 700;
            color: #0a0a0a;
            line-height: 1.3;
        }
        /* 底部说明文字 */
        .serone-card-desc {
            padding: 0 24px 36px;
            text-align: center;
            font-size: 15px;
            line-height: 1.7;
            color: #222;
        }
        /* 卡片之间箭头 */
        .serone-process-arrow {
            display: flex;
            align-items: center;
            font-size: 32px;
            color: #111;
            padding: 0 6px;
        }
        /* 移动端适配 */
        @media (max-width: 1400px) {
            .serone-process-row {
                flex-wrap: wrap;
            }
            .serone-process-card {
                flex: 1 1 280px;
            }
        }
        @media (max-width: 992px) {
            .serone-process-row {
                flex-direction: column;
                gap: 50px;
            }
            .serone-process-arrow {
                transform: rotate(90deg);
                margin: -25px auto;
            }
            .serone-process-head h2 {
                font-size: 32px;
            }
            .serone-process-head p {
                font-size: 18px;
            }
        }



        :root{--ts-orange:#E85D04;--ts-gray:#666;--ts-white:#fff;--ts-nav-bg:rgba(255,255,255,0.22);}
        /* 通用容器 沿用之前尺寸 */
        .ts-container-1600{max-width: 1600px;margin: 0 auto;padding: 0 20px;}
        .ts-container-1320{max-width: 1320px;margin: 0 auto;padding: 0 20px;}

        /* 复用导航样式，和首页保持一致 */
        .ts-nav-wrap{position: absolute;top: 0;left: 0;width: 100%;z-index: 999;}
        .ts-nav-inner{display: flex;align-items: center;justify-content: space-between;padding: 18px 0;}
        .ts-logo{display: flex;align-items: center;gap: 10px;font-size: 24px;font-weight: 600;color:#222;text-decoration: none;}
        .ts-logo i{color: var(--ts-orange);font-size: 28px;}
        .ts-nav-menu{display: flex;gap: 36px;list-style: none;background: var(--ts-nav-bg);padding: 10px 28px;border-radius: 50px;backdrop-filter: blur(8px);}
        .ts-nav-menu>li{position: relative;}
        .ts-nav-menu>li>a{text-decoration: none;color:#333;padding: 8px 4px;display: block;font-size: 15px;transition: .2s;}
        .ts-nav-menu>li>a:hover{color: var(--ts-orange);}
        .ts-submenu{position:absolute;top:100%;left:0;background:rgba(255,255,255,0.95);box-shadow:0 4px 12px #00000018;list-style:none;width:200px;opacity:0;visibility:hidden;transform:translateY(10px);transition:.3s;border-radius:8px;overflow:hidden;}
        .ts-nav-menu>li:hover .ts-submenu{opacity:1;visibility:visible;transform:translateY(0);}
        .ts-submenu li a{display:block;padding:12px 16px;text-decoration:none;color:#333;font-size:14px;transition:.2s;}
        .ts-submenu li a:hover{background:#f5f5f5;color:var(--ts-orange);padding-left:20px;}
        /* 移除ts-nav-right背景样式 */
        .ts-nav-right{display:flex;align-items:center;gap:10px;}
        .ts-nav-right i{color:var(--ts-orange);font-size:18px;margin-right:4px;}
        .ts-nav-right span{font-size:15px;color:#333;}

        /* about页面专属样式 前缀tsab 避免和首页css冲突 */
        /* 顶部单张banner 高度690px */
        .tsab-banner-wrap{height:690px;width:100%;position:relative;}
        .tsab-banner-bg{width:100%;height:100%;background:url(https://picsum.photos/id/28/1920/690) center/cover no-repeat;}
        /* 数据统计模块 放在banner下方 */
        .tsab-data-wrap{width:100%;background:#f8f8f8;}
        .tsab-data-list{display:flex;}
        .tsab-data-item{flex:1;padding:60px 20px;text-align:center;transition:0.3s ease;cursor:pointer;}
        .tsab-data-item:hover{background:var(--ts-orange);}
        .tsab-data-item:hover .tsab-data-num,.tsab-data-item:hover .tsab-data-desc{color:#fff;}
        .tsab-data-num{font-size:48px;font-weight:700;color:#222;margin-bottom:12px;transition:0.3s;}
        .tsab-data-desc{font-size:15px;color:#777;text-transform:uppercase;letter-spacing:1px;transition:0.3s;}

        /* 视频横幅模块 高度800px 无弹窗，区域内直接播放 */
        .tsab-video-wrap{width:100%;height:800px;position:relative;margin:120px 0;overflow:hidden;}
        /* 初始背景图 样式保留，图片地址写在div行内style */
        .tsab-video-bg{width:100%;height:100%;position:absolute;top:0;left:0;transition:opacity 0.5s;z-index:1;}
        /* 视频容器 覆盖全屏 */
        .tsab-video-player{width:100%;height:100%;position:absolute;top:0;left:0;object-fit:cover;z-index:0;opacity:0;}
        /* 播放按钮 */


        .ts-parallax-wrap{width:100%;height:580px;overflow:hidden;position:relative;margin:120px 0;}
        .ts-parallax-bg{width:100%;height:140%;position:absolute;top:-20%;left:0;background:url(https://picsum.photos/id/1049/3351/960) center/cover no-repeat;}
        .tsab-play-btn{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:90px;height:90px;border-radius:50%;background:#ffffffdd;display:flex;align-items:center;justify-content:center;font-size:32px;color:var(--ts-orange);cursor:pointer;transition:0.3s;z-index:2;}
        .tsab-play-btn:hover{background:#fff;transform:translate(-50%,-50%) scale(1.1);}




        .container-1600 {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .container-1320 {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ============================================================ */
        /* 1. Navbar (Transparent + Glassmorphism Menu) */
        /* ============================================================ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: transparent;
            transition: background 0.3s, box-shadow 0.3s;
            padding: 12px 0;
        }

        .navbar.scrolled {
            background: rgba(10, 22, 40, 0.6);
            backdrop-filter: blur(8px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }

        .navbar .container-1600 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 26px;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: 1px;
            flex-shrink: 0;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .nav-logo i {
            color: #f5b342;
            font-size: 30px;
        }

        .nav-logo span {
            background: linear-gradient(135deg, #f5b342, #ffd966);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 4px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 6px 18px;
            border-radius: 60px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .nav-menu>li {
            position: relative;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            cursor: pointer;
            transition: color 0.3s, background 0.3s;
            border-radius: 40px;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .nav-menu>li:hover {
            color: #f5b342;
            background: rgba(245, 179, 66, 0.15);
        }

        .nav-menu>li .dropdown {
            position: absolute;
            top: 42px;
            left: 0;
            min-width: 200px;
            background: rgba(10, 22, 40, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 16px;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: all 0.3s ease;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-menu>li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown li {
            padding: 10px 24px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            transition: all 0.25s;
            cursor: pointer;
            font-weight: 500;
        }

        .dropdown li:hover {
            color: #f5b342;
            background: rgba(245, 179, 66, 0.08);
            padding-left: 30px;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-shrink: 0;
        }

        .nav-right .icon-btn {
            color: rgba(255, 255, 255, 0.8);
            font-size: 20px;
            transition: color 0.3s;
            cursor: pointer;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .nav-right .icon-btn:hover {
            color: #f5b342;
        }

        .nav-phone {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .nav-phone i {
            color: #f5b342;
            font-size: 18px;
        }

        /* ============================================================ */
        /* 2. Hero Carousel */
        /* ============================================================ */
        .hero-section {
            margin-top: 0;
            height: 1500px;
            position: relative;
            overflow: hidden;
            background: #0a1628;
        }

        .hero-slider {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide .slide-content {
            text-align: center;
            color: #fff;
            max-width: 900px;
            padding: 0 20px;
        }

        .hero-slide .slide-content h1 {
            font-size: 42px;
            font-weight: 800;
            letter-spacing: 2px;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
            margin-bottom: 20px;
        }

        .hero-slide .slide-content h1 span {
            color: #f5b342;
        }

        .hero-slide .slide-content p {
            font-size: 22px;
            color: rgba(255, 255, 255, 0.85);
            letter-spacing: 2px;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
        }

        .hero-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(8px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 26px;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 20;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .hero-arrow:hover {
            background: #f5b342;
            color: #0a1628;
            transform: translateY(-50%) scale(1.05);
        }

        .hero-arrow.prev {
            left: 30px;
        }

        .hero-arrow.next {
            right: 30px;
        }

        /* ===== Stats Counter ===== */
        .hero-stats {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(10, 22, 40, 0.7);
            backdrop-filter: blur(10px);
            padding: 40px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            z-index: 15;
        }

        .hero-stats .container-1600 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .stat-item {
            text-align: center;
            padding: 24px 16px;
            border-radius: 14px;
            transition: all 0.4s ease;
            cursor: default;
            border: 1px solid transparent;
        }

        .stat-item:hover {
            background: rgba(245, 179, 66, 0.15);
            border-color: rgba(245, 179, 66, 0.3);
            transform: translateY(-6px);
        }

        .stat-item .number {
            font-size: 48px;
            font-weight: 800;
            color: #f5b342;
            display: inline-block;
            line-height: 1.2;
            transition: transform 0.4s ease;
        }

        .stat-item:hover .number {
            transform: translateY(-4px);
        }

        .stat-item .label {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 1px;
            margin-top: 6px;
            font-weight: 400;
            transition: transform 0.4s ease;
        }

        .stat-item:hover .label {
            transform: translateY(-2px);
            color: #fff;
        }

        /* ============================================================ */
        /* 3. Company Philosophy */
        /* ============================================================ */
        .philosophy-section {
            height: 1200px;
            display: flex;
            align-items: center;
            position: relative;
            background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
            overflow: hidden;
        }

        .philosophy-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(10, 22, 40, 0.7);
            z-index: 1;
        }

        .philosophy-section .container-1320 {
            position: relative;
            z-index: 2;
            color: #fff;
        }

        .philosophy-section h2 {
            font-size: 48px;
            font-weight: 800;
            letter-spacing: 2px;
            margin-bottom: 30px;
            color: #f5b342;
        }

        .philosophy-section h2 small {
            display: block;
            font-size: 18px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.6);
            letter-spacing: 4px;
            margin-top: 6px;
        }

        .philosophy-section .content {
            font-size: 20px;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.85);
            max-width: 900px;
            letter-spacing: 0.5px;
            font-weight: 300;
        }

        /* ============================================================ */
        /* 4. Core Services */
        /* ============================================================ */
        .services-section {
            padding: 100px 0 80px;
            background: #ffffff;
        }

        .services-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 60px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .services-header h2 {
            font-size: 40px;
            font-weight: 800;
            color: #0a1628;
            letter-spacing: 1px;
        }

        .services-header h2 small {
            display: block;
            font-size: 16px;
            font-weight: 400;
            color: #64748b;
            letter-spacing: 3px;
            margin-top: 4px;
        }

        .services-header .desc {
            font-size: 18px;
            color: #475569;
            max-width: 500px;
            text-align: right;
            line-height: 1.6;
            font-weight: 300;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .service-card {
            background: #f8fafc;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef2f6;
        }

        .service-card:hover {
            transform: translateY(-16px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
            border-color: #f5b342;
        }

        .service-card .card-img {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .service-card .card-img .icon-overlay {
            position: absolute;
            bottom: -24px;
            right: 24px;
            width: 52px;
            height: 52px;
            background: #f5b342;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: #fff;
            box-shadow: 0 8px 24px rgba(245, 179, 66, 0.35);
        }

        .service-card .card-body {
            padding: 32px 24px 28px;
        }

        .service-card .card-body h3 {
            font-size: 20px;
            font-weight: 700;
            color: #0a1628;
            margin-bottom: 10px;
        }

        .service-card .card-body p {
            font-size: 15px;
            color: #64748b;
            line-height: 1.7;
            font-weight: 300;
        }

        .service-card .card-body .features {
            margin-top: 14px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .service-card .card-body .features span {
            font-size: 14px;
            color: #334155;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .service-card .card-body .features span i {
            color: #f5b342;
            font-size: 12px;
        }

        /* ============================================================ */
        /* 5. Full-width Parallax Image */
        /* ============================================================ */
        .parallax-section {
            height: 580px;
            position: relative;
            overflow: hidden;
            background: #0a1628;
        }

        .parallax-section .parallax-bg {
            width: 100%;
            height: 120%;
            background: url('https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            position: absolute;
            top: -10%;
            left: 0;
            will-change: transform;
            transition: transform 0.1s linear;
        }

        .parallax-section .overlay {
            position: absolute;
            inset: 0;
            background: rgba(10, 22, 40, 0.45);
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .parallax-section .overlay .text {
            text-align: center;
            color: #fff;
            z-index: 3;
        }

        .parallax-section .overlay .text h2 {
            font-size: 52px;
            font-weight: 800;
            letter-spacing: 2px;
            margin-bottom: 12px;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        }

        .parallax-section .overlay .text h2 span {
            color: #f5b342;
        }

        .parallax-section .overlay .text p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.8);
            letter-spacing: 3px;
            font-weight: 300;
        }

        /* ============================================================ */
        /* 6. Industry Solutions (Accordion with images) */
        /* ============================================================ */
        .industry-section {
            padding: 80px 0;
            background: #f8fafc;
        }

        .industry-accordion {
            display: flex;
            gap: 16px;
            height: 500px;
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .industry-item {
            flex: 1;
            border-radius: 24px;
            background-size: cover;
            background-position: center;
            cursor: pointer;
            transition: flex 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease, transform 0.3s ease;
            position: relative;
            overflow: hidden;
            min-width: 60px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 2px solid transparent;
        }

        .industry-item:hover {
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
            border-color: rgba(245, 179, 66, 0.3);
        }

        .industry-item.active {
            flex: 3;
            border-color: #f5b342;
            box-shadow: 0 12px 40px rgba(245, 179, 66, 0.15);
        }

        .industry-item .item-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px 30px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
            color: #fff;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            transition: background 0.4s ease;
        }

        .industry-item:not(.active) .item-content {
            justify-content: center;
            align-items: center;
            text-align: center;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
        }

        .industry-item .item-content h3 {
            font-size: 22px;
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            transition: all 0.4s ease;
            margin: 0;
            letter-spacing: 1px;
        }

        .industry-item:not(.active) .item-content h3 {
            writing-mode: vertical-lr;
            letter-spacing: 6px;
            font-size: 18px;
            font-weight: 800;
            color: #fff;
            text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
        }

        .industry-item .item-content p {
            font-size: 15px;
            line-height: 1.7;
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: opacity 0.5s ease, max-height 0.6s ease, margin 0.3s ease;
            margin: 0;
            color: rgba(255, 255, 255, 0.9);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            font-weight: 300;
        }

        .industry-item.active .item-content p {
            opacity: 1;
            max-height: 200px;
            margin-top: 12px;
        }

        /* ============================================================ */
        /* 7. News & Insights */
        /* ============================================================ */
        .news-section {
            padding: 100px 0;
            background: #ffffff;
        }

        .news-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 50px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .news-header h2 {
            font-size: 40px;
            font-weight: 800;
            color: #0a1628;
            letter-spacing: 1px;
        }

        .news-header h2 small {
            display: block;
            font-size: 16px;
            font-weight: 400;
            color: #64748b;
            letter-spacing: 3px;
            margin-top: 4px;
        }

        .news-header .desc {
            font-size: 18px;
            color: #475569;
            max-width: 500px;
            text-align: right;
            line-height: 1.7;
            font-weight: 300;
        }

        .news-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .news-main-card {
            background: #f8fafc;
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            border: 1px solid #eef2f6;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }

        .news-main-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
            border-color: #f5b342;
            background: #ffffff;
        }

        .news-main-card .card-img {
            height: 280px;
            background-size: cover;
            background-position: center;
        }

        .news-main-card .card-body {
            padding: 32px 30px 30px;
        }

        .news-main-card .card-body h3 {
            font-size: 22px;
            font-weight: 700;
            color: #0a1628;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .news-main-card .card-body p {
            font-size: 16px;
            color: #64748b;
            line-height: 1.8;
            font-weight: 300;
            margin-bottom: 16px;
        }

        .news-main-card .card-body .more-link {
            color: #f5b342;
            font-weight: 600;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s;
        }

        .news-main-card .card-body .more-link:hover {
            gap: 14px;
        }

        .news-side {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .news-side-card {
            display: flex;
            align-items: stretch;
            background: #f8fafc;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            border: 1px solid #eef2f6;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
            cursor: default;
        }

        .news-side-card:hover {
            transform: translateX(12px);
            background: #ffffff;
            border-color: #f5b342;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }

        .news-side-card .side-img {
            width: 140px;
            flex-shrink: 0;
            background-size: cover;
            background-position: center;
        }

        .news-side-card .side-body {
            padding: 18px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .news-side-card .side-body h4 {
            font-size: 16px;
            font-weight: 700;
            color: #0a1628;
            margin-bottom: 6px;
            line-height: 1.4;
        }

        .news-side-card .side-body p {
            font-size: 14px;
            color: #64748b;
            line-height: 1.6;
            font-weight: 300;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 8px;
        }

        .news-side-card .side-body .more-link {
            color: #f5b342;
            font-weight: 600;
            font-size: 13px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.3s;
        }

        .news-side-card .side-body .more-link:hover {
            gap: 12px;
        }

        /* ============================================================ */
        /* 8. Full-width Video Section */
        /* ============================================================ */
        .full-video-section {
            width: 100%;
            height: 810px;
            background: #000000;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        .full-video-section video {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            display: block;
            object-fit: contain;
            background: #000;
        }

        /* ============================================================ */
        /* 9. Footer Information Bar (Full-width background, 4 columns) */
        /* ============================================================ */
        .footer-info {
            background: url('https://images.unsplash.com/photo-1497206365907-f5e630693df0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            position: relative;
            padding: 60px 0 30px;
            color: #fff;
        }

        .footer-info::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(10, 22, 40, 0.85);
            z-index: 1;
        }

        .footer-info .container-1600 {
            position: relative;
            z-index: 2;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Column 1: Logo + Description + Social Icons */
        .footer-col-1 .footer-logo {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-col-1 .footer-logo i {
            color: #f5b342;
            font-size: 32px;
        }

        .footer-col-1 .footer-logo span {
            background: linear-gradient(135deg, #f5b342, #ffd966);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-col-1 .desc {
            font-size: 15px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
            font-weight: 300;
            max-width: 300px;
        }

        .footer-social {
            display: flex;
            gap: 16px;
        }

        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            font-size: 18px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-social a:hover {
            background: #f5b342;
            color: #0a1628;
            transform: translateY(-4px);
            border-color: #f5b342;
        }

        /* Column 2: Quick Links */
        .footer-col-2 h4,
        .footer-col-3 h4,
        .footer-col-4 h4 {
			text-align: left;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #ffffff;
            letter-spacing: 1px;
        }

        .footer-col-2 ul li {
			
            margin-bottom: 12px;
        }

        .footer-col-2 ul li a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
            font-weight: 300;
            transition: color 0.3s, padding-left 0.3s;
            display: inline-block;
        }

        .footer-col-2 ul li a:hover {
            color: #f5b342;
            padding-left: 6px;
        }

        /* Column 3: Contact Information */
        .footer-col-3 .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
            font-weight: 300;
            line-height: 1.6;
        }

        .footer-col-3 .contact-item i {
            color: #f5b342;
            font-size: 18px;
            margin-top: 2px;
            width: 20px;
            text-align: center;
        }

        /* Column 4: QR Code + Follow */
        .footer-col-4 .qr-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .footer-col-4 .qr-wrapper .qr-placeholder {
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border: 2px dashed rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
            text-align: center;
            padding: 8px;
            line-height: 1.4;
        }

        .footer-col-4 .qr-wrapper .qr-placeholder i {
            font-size: 40px;
            color: rgba(255, 255, 255, 0.3);
            display: block;
            margin-bottom: 6px;
        }

        .footer-col-4 .qr-wrapper .follow-text {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 300;
            letter-spacing: 2px;
        }

        /* Copyright */
        .footer-copyright {
            text-align: center;
            padding-top: 30px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
            font-weight: 300;
            letter-spacing: 1px;
            position: relative;
            z-index: 2;
        }

        .footer-copyright span {
            color: #f5b342;
        }

        /* ============================================================ */
        /* AOS Custom */
        /* ============================================================ */
        [data-aos="custom-zoom"] {
            opacity: 0;
            transform: scale(0.85);
            transition-property: transform, opacity;
        }

        [data-aos="custom-zoom"].aos-animate {
            opacity: 1;
            transform: scale(1);
        }

        /* ============================================================ */
        /* Responsive */
        /* ============================================================ */
        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .news-grid {
                grid-template-columns: 1fr;
            }
            .hero-slide .slide-content h1 {
                font-size: 48px;
            }
            .stat-item .number {
                font-size: 36px;
            }
            .philosophy-section h2 {
                font-size: 36px;
            }
            .services-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .services-header .desc {
                text-align: left;
                max-width: 100%;
            }
            .news-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .news-header .desc {
                text-align: left;
                max-width: 100%;
            }
            .industry-accordion {
                height: 400px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 992px) {
            .industry-accordion {
                flex-wrap: wrap;
                height: auto;
                gap: 12px;
            }
            .industry-item {
                flex: 1 1 calc(50% - 12px);
                min-height: 250px;
                height: 300px;
            }
            .industry-item.active {
                flex: 1 1 100%;
            }
            .industry-item:not(.active) .item-content h3 {
                writing-mode: horizontal-tb;
                letter-spacing: 2px;
                font-size: 20px;
            }
        }

        @media (max-width: 768px) {
            .navbar .container-1600 {
                flex-wrap: wrap;
                height: auto;
                padding: 12px 20px;
                gap: 10px;
            }
            .nav-menu {
                order: 3;
                flex-wrap: wrap;
                justify-content: center;
                width: 100%;
                gap: 2px;
                padding: 8px 12px;
                border-radius: 30px;
            }
            .nav-menu>li {
                padding: 6px 12px;
                font-size: 12px;
            }
            .nav-right {
                gap: 12px;
            }
            .nav-phone {
                font-size: 13px;
            }
            .hero-section {
                height: 900px;
                margin-top: 0;
            }
            .hero-slide .slide-content h1 {
                font-size: 32px;
            }
            .hero-stats .container-1600 {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .stat-item .number {
                font-size: 28px;
            }
            .philosophy-section {
                height: auto;
                padding: 80px 0;
                background-attachment: scroll;
            }
            .philosophy-section h2 {
                font-size: 28px;
            }
            .philosophy-section .content {
                font-size: 16px;
            }
            .services-grid {
                grid-template-columns: 1fr;
            }
            .parallax-section {
                height: 380px;
            }
            .parallax-section .overlay .text h2 {
                font-size: 28px;
            }
            .news-side-card {
                flex-direction: column;
            }
            .news-side-card .side-img {
                width: 100%;
                height: 120px;
            }
            .hero-arrow {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            .hero-arrow.prev {
                left: 10px;
            }
            .hero-arrow.next {
                right: 10px;
            }
            .services-header h2 {
                font-size: 28px;
            }
            .news-header h2 {
                font-size: 28px;
            }
            .industry-item {
                flex: 1 1 100%;
                min-height: 200px;
            }
            .industry-item.active {
                flex: 1 1 100%;
                min-height: 300px;
            }
            .industry-item:not(.active) .item-content h3 {
                writing-mode: horizontal-tb;
                font-size: 18px;
            }
            .full-video-section {
                height: 400px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
            .footer-col-1 .desc {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
            .footer-social {
                justify-content: center;
            }
            .footer-col-3 .contact-item {
                justify-content: center;
            }
            .footer-col-4 .qr-wrapper {
                align-items: center;
            }
        }
        .ts-parallax-wrap{width:100%;height:580px;overflow:hidden;position:relative;margin:120px 0;}
        .ts-parallax-bg{width:100%;height:140%;position:absolute;top:-20%;left:0;background:url(https://picsum.photos/id/1049/3351/960) center/cover no-repeat;}

        @media (max-width: 480px) {
            .hero-stats .container-1600 {
                grid-template-columns: 1fr 1fr;
                gap: 6px;
            }
            .stat-item {
                padding: 14px 8px;
            }
            .stat-item .number {
                font-size: 22px;
            }
            .stat-item .label {
                font-size: 12px;
            }
            .full-video-section {
                height: 280px;
            }
        }


        .hero-btn-group {
            margin-left: 230px;
    margin-top: 30px;
    display: flex;
    gap: 20px;
}
.hero-btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.primary-btn {
    background-color: #f5b342;
    color: #000;
}
.primary-btn:hover {
    opacity: 0.85;
}
.outline-btn {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}
.outline-btn:hover {
    background-color: rgba(255,255,255,0.15);
}





.serone-service-wrap {
            width: 1600px;
	max-width: 1600px;
                margin: 20px auto 100px auto;
        }
        /* 模块标题 */
        .serone-service-title {
            text-align: center;
            margin-bottom: 60px;
        }
        .serone-service-title h2 {
            font-size: 38px;
            color: #222222;
            letter-spacing: 1px;
        }
        .serone-service-title span {
            display: block;
            width: 80px;
            height: 4px;
            background-color: #f5b342;
            margin: 15px auto 0;
        }
        /* 服务卡片容器 一排5列 */
        .serone-service-list {
            display: flex;
            gap: 24px;
        }
        /* 单个服务卡片 */
        .serone-service-card {
            flex: 1;
            background: #ffffff;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease;
            cursor: pointer;
        }
        /* hover上浮效果 */
        .serone-service-card:hover {
            transform: translateY(-12px);
        }
        /* 卡片图片区域 */
        .serone-card-img {
            width: 100%;
            height: 220px;
            overflow: hidden;
        }
        .serone-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        /* 卡片文字区域 */
        .serone-card-text {
            padding: 22px 16px;
            text-align: center;
        }
        .serone-card-text a {
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            color: #222222;
            transition: color 0.2s ease;
        }
        .serone-service-card:hover .serone-card-text a {
            color: #f5b342;
        }



.csls-bg{
	background-color: #f8f8f8;
}
.csls-wrap-warehouse {
    width: 1600px;
    max-width: 1600px;
    margin: 0px auto;
    padding: 70px 50px;
}
/* 板块标题区域 */
.csls-title-warehouse {
    text-align: center;
    margin-bottom: 65px;
}
.csls-title-warehouse h2 {
    font-size: 38px;
    color: #222;
    font-weight: 600;
}
.csls-title-line {
    width: 75px;
    height: 4px;
    background: #f5b342;
    margin: 16px auto 0;
}
/* 仓库地址 */
.csls-address-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    color: #333;
    margin-bottom: 55px;
}
.csls-address-box i {
    color: #f5b342;
    font-size: 22px;
}
/* 数据卡片三栏布局 */
.csls-data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}
.csls-data-card {
    background: #fff;
    border-radius: 10px;
    padding: 32px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.csls-data-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 22px rgba(245, 179, 66, 0.14);
}
.csls-data-card i {
    font-size: 34px;
    color: #f5b342;
    margin-bottom: 18px;
}
.csls-data-label {
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
}
.csls-data-num {
    font-size: 23px;
    font-weight: 600;
    color: #222;
}
/* 平台&物流两栏布局 */
.csls-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 45px;
}
.csls-info-card {
    background: #fff;
    border-radius: 10px;
    padding: 32px 26px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.csls-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 22px rgba(245, 179, 66, 0.14);
}
.csls-info-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 18px;
}
.csls-info-head i {
    color: #f5b342;
    font-size: 20px;
}
.csls-info-text {
    font-size: 16px;
    color: #555;
    line-height: 1.75;
}
/* 底部说明文案 */
.csls-desc-text {
    text-align: center;
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    padding: 0 80px;
}
/* 响应式适配 */
@media screen and (max-width:1600px){
    .csls-wrap-warehouse{
        width: 100%;
    }
}
@media screen and (max-width:1200px){
    .csls-data-grid{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:768px){
    .csls-data-grid,
    .csls-info-grid{
        grid-template-columns: 1fr;
    }
    .csls-wrap-warehouse{
        padding: 50px 20px;
    }
    .csls-desc-text{
        padding: 0;
    }
}





.yu-temu-fulfillment {
  padding: 80px 0;
  background-color: #f8f9fa;
}
.yu-container {
  width: 1600px;
  margin: 0 auto;
}
.yu-section-title {
  text-align: center;
  margin-bottom: 60px;
}
.yu-main-title {
  font-size: 42px;
  color: #155CC6;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0;
}
.yu-title-icon {
  font-size: 46px;
}
.yu-service-block {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 18px rgba(0,0,0,0.06);
  margin-bottom: 32px;
}
.yu-sub-title {
  font-size: 24px;
  color: #222;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}
.yu-sub-icon {
  font-size: 26px;
  color: #E85D04;
}
.yu-text-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}
/* 流程列表样式 */
.yu-process-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.yu-process-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.yu-process-num {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: #155CC6;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}
.yu-process-text h4 {
  font-size: 18px;
  color: #222;
  margin: 0 0 8px 0;
}
.yu-process-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}
/* 两栏布局 */
.yu-two-col {
  display: flex;
  gap: 30px;
}
.yu-col-item {
  flex: 1;
}
.yu-col-item h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  color: #222;
  margin: 0 0 12px 0;
}
.yu-col-item p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

/* 响应式适配 平板手机 */
@media screen and (max-width:1320px) {
  .yu-container {
    width: 92%;
  }
}
@media screen and (max-width:768px) {
  .yu-main-title {
    font-size: 28px;
  }
  .yu-two-col {
    flex-direction: column;
  }
  .yu-service-block {
    padding: 24px;
  }
  .yu-temu-fulfillment {
    padding: 40px 0;
  }
}


.ll-temu-warehouse-module {
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
}
/* 1600px居中容器 */
.ll-container {
  width: 1600px;
  margin: 0 auto;
}
/* 主标题区域 */
.ll-title-wrap {
  text-align: center;
  margin-bottom: 60px;
}
.ll-main-title {
  font-size: 38px;
  color: #000000;
  font-weight: 700;
  margin: 0;
}
/* 通用行布局 */
.ll-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}
/* 左文右图 */
.ll-row-text-left .ll-col-text {
  width: 55%;
}
.ll-row-text-left .ll-col-img {
  width: 45%;
}
/* 左图右文 */
.ll-row-img-left .ll-col-img {
  width: 45%;
}
.ll-row-img-left .ll-col-text {
  width: 55%;
}
/* 小标题样式 */
.ll-sub-title {
  font-size: 26px;
  color: #000;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px 0;
}
/* font图标样式 */
.ll-icon {
  font-size: 28px;
  color: #155CC6;
}
/* 描述文字 */
.ll-desc-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 0;
}
/* 图片盒子 */
.ll-img-box {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
/* 淡灰色通栏背景 */
.ll-gray-bg-wrap {
  width: 100%;
  background-color: #f5f5f5;
  padding: 80px 30px;
  margin: 80px 0;
}





.ssl-wrap {
    width: 100%;
}
.ssl-process-section {
    width: 100%;
    padding: 80px 0;
}
/* 容器宽度1600px居中 */
/* 顶部标题 */
.ssl-process-head {
    text-align: center;
    margin-bottom: 60px;
}
.ssl-process-head h2 {
    font-size: 38px;
    color: #000000;
    font-weight: 700;
    margin: 0 0 16px 0;
}
.ssl-process-head p {
    font-size: 22px;
    color: #444444;
    margin: 0;
}
/* 横向流程行 */
.ssl-process-row {
    display: flex;
    align-items: stretch;
    gap: 16px;
    width: 100%;
}
/* 单个流程卡片 原图圆角浅灰边框样式 */
.ssl-process-card {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e6e8ec;
    background: #f7f8fa;
    display: flex;
    flex-direction: column;
}
/* 卡片上半部分 浅灰底色 */
.ssl-card-top {
    position: relative;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* 左上角黑色圆形数字 */
.ssl-card-num {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #111827;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
/* 图标容器 */
.ssl-card-icon-wrap {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* 卡片下半部分 纯白底色 */
.ssl-card-bottom {
    background-color: #ffffff;
    padding: 28px 20px;
    text-align: center;
    flex-grow: 1;
}
.ssl-card-title {
    font-size: 16px;
    color: #000000;
    font-weight: 600;
    margin: 0 0 14px 0;
}
.ssl-card-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}
/* 中间箭头 */
.ssl-process-arrow {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}




.news-page {
            background: #f8fafc;
            color: #1e293b;
            overflow-x: hidden;
        }

        .news-page a {
            text-decoration: none;
            color: inherit;
        }

        .news-page ul {
            list-style: none;
        }

        /* ===== Containers ===== */
        .nws-container-1600 {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ============================================================ */
        /* 1. Navbar (isolated) */
        /* ============================================================ */
        .nws-navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: transparent;
            transition: background 0.3s, box-shadow 0.3s;
            padding: 12px 0;
        }

        .nws-navbar.scrolled {
            background: rgba(10, 22, 40, 0.6);
            backdrop-filter: blur(8px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }

        .nws-navbar .nws-container-1600 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px;
        }

        .nws-nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 26px;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: 1px;
            flex-shrink: 0;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .nws-nav-logo i {
            color: #f5b342;
            font-size: 30px;
        }

        .nws-nav-logo span {
            background: linear-gradient(135deg, #f5b342, #ffd966);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nws-nav-menu {
            display: flex;
            align-items: center;
            gap: 4px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 6px 18px;
            border-radius: 60px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .nws-nav-menu>li {
            position: relative;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            cursor: pointer;
            transition: color 0.3s, background 0.3s;
            border-radius: 40px;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .nws-nav-menu>li:hover {
            color: #f5b342;
            background: rgba(245, 179, 66, 0.15);
        }

        .nws-nav-menu>li .nws-dropdown {
            position: absolute;
            top: 42px;
            left: 0;
            min-width: 200px;
            background: rgba(10, 22, 40, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 16px;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: all 0.3s ease;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nws-nav-menu>li:hover .nws-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nws-dropdown li {
            padding: 10px 24px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            transition: all 0.25s;
            cursor: pointer;
            font-weight: 500;
        }

        .nws-dropdown li:hover {
            color: #f5b342;
            background: rgba(245, 179, 66, 0.08);
            padding-left: 30px;
        }

        .nws-nav-right {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-shrink: 0;
        }

        .nws-nav-right .nws-icon-btn {
            color: rgba(255, 255, 255, 0.8);
            font-size: 20px;
            transition: color 0.3s;
            cursor: pointer;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .nws-nav-right .nws-icon-btn:hover {
            color: #f5b342;
        }

        .nws-nav-phone {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .nws-nav-phone i {
            color: #f5b342;
            font-size: 18px;
        }

        /* ============================================================ */
        /* 2. Hero / Page Title (optional) */
        /* ============================================================ */
        .nws-hero {
            margin-top: 0;
            height: 350px;
            background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nws-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(10, 22, 40, 0.5);
            z-index: 1;
        }

        .nws-hero .nws-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #fff;
            max-width: 800px;
            padding: 0 20px;
        }

        .nws-hero .nws-hero-content h1 {
            font-size: 56px;
            font-weight: 800;
            letter-spacing: 3px;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 16px;
        }

        .nws-hero .nws-hero-content h1 span {
            color: #f5b342;
        }

        .nws-hero .nws-hero-content p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.85);
            letter-spacing: 1px;
            font-weight: 300;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
        }

        /* ============================================================ */
        /* 3. News Section (two-column cards) */
        /* ============================================================ */
        .nws-news-section {
            padding: 100px 0 80px;
            background: #ffffff;
        }

        .nws-news-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 60px;
            flex-wrap: wrap;
            gap: 30px;
        }

        .nws-news-header .nws-news-title {
            font-size: 40px;
            font-weight: 800;
            color: #0a1628;
            letter-spacing: 1px;
            flex: 1 1 40%;
        }

        .nws-news-header .nws-news-title small {
            display: block;
            font-size: 16px;
            font-weight: 400;
            color: #64748b;
            letter-spacing: 3px;
            margin-top: 4px;
        }

        .nws-news-header .nws-news-desc {
            font-size: 18px;
            color: #475569;
            max-width: 500px;
            text-align: right;
            line-height: 1.7;
            font-weight: 300;
            flex: 1 1 40%;
        }

        .nws-news-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        /* Each card is an <a> tag, inner flex layout: image left, content right */
        .nws-news-card {
            display: flex;
            align-items: stretch;
            background: #f8fafc;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef2f6;
            cursor: pointer;
            color: inherit;
            text-decoration: none;
            position: relative;
            will-change: transform;
        }

        /* 悬停突出效果：上浮 + 放大 + 强阴影 + 提升层级 */
        .nws-news-card:hover {
            transform: translateY(-16px) scale(1.02);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
            border-color: #f5b342;
            background: #ffffff;
            z-index: 10;
        }

        .nws-news-card .nws-news-card-img {
            flex: 0 0 40%;
            background-size: cover;
            background-position: center;
            min-height: 220px;
        }

        .nws-news-card .nws-news-card-body {
            flex: 1;
            padding: 30px 28px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .nws-news-card .nws-news-card-body h3 {
            font-size: 22px;
            font-weight: 700;
            color: #0a1628;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .nws-news-card .nws-news-card-body p {
            font-size: 16px;
            color: #64748b;
            line-height: 1.8;
            font-weight: 300;
            margin-bottom: 16px;
            flex: 1;
        }

        .nws-news-card .nws-news-card-body .nws-more-link {
            color: #f5b342;
            font-weight: 600;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s;
            align-self: flex-start;
        }

        .nws-news-card .nws-news-card-body .nws-more-link:hover {
            gap: 14px;
        }

        /* ============================================================ */
        /* AOS custom (news) */
        /* ============================================================ */
        [data-aos="nws-zoom"] {
            opacity: 0;
            transform: scale(0.85);
            transition-property: transform, opacity;
        }

        [data-aos="nws-zoom"].aos-animate {
            opacity: 1;
            transform: scale(1);
        }

        /* ============================================================ */
        /* Responsive (isolated) */
        /* ============================================================ */
        @media (max-width: 1200px) {
            .nws-news-grid {
                grid-template-columns: 1fr;
            }
            .nws-news-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .nws-news-header .nws-news-desc {
                text-align: left;
                max-width: 100%;
            }
            .nws-hero .nws-hero-content h1 {
                font-size: 42px;
            }
        }

        @media (max-width: 992px) {
            .nws-hero {
                height: 280px;
            }
        }

        @media (max-width: 768px) {
            .nws-navbar .nws-container-1600 {
                flex-wrap: wrap;
                height: auto;
                padding: 12px 20px;
                gap: 10px;
            }
            .nws-nav-menu {
                order: 3;
                flex-wrap: wrap;
                justify-content: center;
                width: 100%;
                gap: 2px;
                padding: 8px 12px;
                border-radius: 30px;
            }
            .nws-nav-menu>li {
                padding: 6px 12px;
                font-size: 12px;
            }
            .nws-nav-right {
                gap: 12px;
            }
            .nws-nav-phone {
                font-size: 13px;
            }
            .nws-hero {
                height: 240px;
            }
            .nws-hero .nws-hero-content h1 {
                font-size: 32px;
            }
            .nws-hero .nws-hero-content p {
                font-size: 18px;
            }
            .nws-news-card {
                flex-direction: column;
            }
            .nws-news-card .nws-news-card-img {
                flex: 0 0 200px;
                min-height: 200px;
                width: 100%;
            }
            .nws-news-card .nws-news-card-body {
                padding: 24px 20px;
            }
            .nws-news-header .nws-news-title {
                font-size: 28px;
            }
            /* 移动端缩小缩放比例，防止溢出 */
            .nws-news-card:hover {
                transform: translateY(-10px) scale(1.01);
            }
        }

        @media (max-width: 480px) {
            .nws-hero {
                height: 200px;
            }
            .nws-hero .nws-hero-content h1 {
                font-size: 26px;
            }
            .nws-news-card .nws-news-card-img {
                flex: 0 0 160px;
                min-height: 160px;
            }
            .nws-news-card:hover {
                transform: translateY(-8px) scale(1.01);
            }
        }






.detail-page {
            background: #f8fafc;
            color: #1e293b;
            overflow-x: hidden;
        }

        .detail-page a {
            text-decoration: none;
            color: inherit;
        }

        .detail-page ul {
            list-style: none;
        }

        /* ===== Containers ===== */
        .dtl-container-1600 {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ============================================================ */
        /* 1. Navbar (isolated) */
        /* ============================================================ */
        .dtl-navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: transparent;
            transition: background 0.3s, box-shadow 0.3s;
            padding: 12px 0;
        }

        .dtl-navbar.scrolled {
            background: rgba(10, 22, 40, 0.6);
            backdrop-filter: blur(8px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }

        .dtl-navbar .dtl-container-1600 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px;
        }

        .dtl-nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 26px;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: 1px;
            flex-shrink: 0;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .dtl-nav-logo i {
            color: #f5b342;
            font-size: 30px;
        }

        .dtl-nav-logo span {
            background: linear-gradient(135deg, #f5b342, #ffd966);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .dtl-nav-menu {
            display: flex;
            align-items: center;
            gap: 4px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 6px 18px;
            border-radius: 60px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .dtl-nav-menu>li {
            position: relative;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            cursor: pointer;
            transition: color 0.3s, background 0.3s;
            border-radius: 40px;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .dtl-nav-menu>li:hover {
            color: #f5b342;
            background: rgba(245, 179, 66, 0.15);
        }

        .dtl-nav-menu>li .dtl-dropdown {
            position: absolute;
            top: 42px;
            left: 0;
            min-width: 200px;
            background: rgba(10, 22, 40, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 16px;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: all 0.3s ease;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .dtl-nav-menu>li:hover .dtl-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dtl-dropdown li {
            padding: 10px 24px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            transition: all 0.25s;
            cursor: pointer;
            font-weight: 500;
        }

        .dtl-dropdown li:hover {
            color: #f5b342;
            background: rgba(245, 179, 66, 0.08);
            padding-left: 30px;
        }

        .dtl-nav-right {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-shrink: 0;
        }

        .dtl-nav-right .dtl-icon-btn {
            color: rgba(255, 255, 255, 0.8);
            font-size: 20px;
            transition: color 0.3s;
            cursor: pointer;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .dtl-nav-right .dtl-icon-btn:hover {
            color: #f5b342;
        }

        .dtl-nav-phone {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .dtl-nav-phone i {
            color: #f5b342;
            font-size: 18px;
        }

        /* ============================================================ */
        /* 2. Hero / Page Title (optional) */
        /* ============================================================ */
        .dtl-hero {
            margin-top: 0;
            height: 280px;
            background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .dtl-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(10, 22, 40, 0.5);
            z-index: 1;
        }

        .dtl-hero .dtl-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #fff;
            max-width: 800px;
            padding: 0 20px;
        }

        .dtl-hero .dtl-hero-content h1 {
            font-size: 48px;
            font-weight: 800;
            letter-spacing: 2px;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 10px;
        }

        .dtl-hero .dtl-hero-content h1 span {
            color: #f5b342;
        }

        .dtl-hero .dtl-hero-content p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.85);
            letter-spacing: 1px;
            font-weight: 300;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
        }

        /* ============================================================ */
        /* 3. News Detail Content */
        /* ============================================================ */
        .dtl-detail-section {
            padding: 60px 0 80px;
            background: #ffffff;
        }

        .dtl-detail-wrapper {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 标题居中 */
        .dtl-detail-title {
            text-align: center;
            font-size: 36px;
            font-weight: 800;
            color: #0a1628;
            line-height: 1.3;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        /* 日期 & 浏览次数 - 左右布局 */
        .dtl-detail-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 15px;
            color: #94a3b8;
            padding-bottom: 16px;
            border-bottom: 1px solid #eef2f6;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .dtl-detail-meta .dtl-meta-left {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .dtl-detail-meta .dtl-meta-left i {
            color: #f5b342;
            font-size: 16px;
        }

        .dtl-detail-meta .dtl-meta-right {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .dtl-detail-meta .dtl-meta-right i {
            color: #f5b342;
            font-size: 16px;
        }

        /* 正文内容 */
        .dtl-detail-body {
            font-size: 17px;
            line-height: 1.9;
            color: #334155;
            padding-bottom: 30px;
            border-bottom: 1px solid #eef2f6;
            margin-bottom: 40px;
        }

        .dtl-detail-body p {
            margin-bottom: 18px;
        }

        .dtl-detail-body p:last-child {
            margin-bottom: 0;
        }

        /* ============================================================ */
        /* 4. Comment Form (边框卡片，现在与正文同宽) */
        /* ============================================================ */
        .dtl-comment-section {
            /* 继承父容器宽度，无额外 max-width */
        }

        .dtl-comment-card {
            background: #f8fafc;
            border: 1px solid #eef2f6;
            border-radius: 20px;
            padding: 40px 45px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            transition: box-shadow 0.3s ease;
        }

        .dtl-comment-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        }

        .dtl-comment-card .dtl-comment-title {
            font-size: 22px;
            font-weight: 700;
            color: #0a1628;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .dtl-comment-card .dtl-comment-title i {
            color: #f5b342;
            font-size: 22px;
        }

        .dtl-comment-card .dtl-comment-sub {
            font-size: 14px;
            color: #94a3b8;
            margin-bottom: 24px;
            font-weight: 300;
        }

        .dtl-form-group {
            margin-bottom: 20px;
        }

        .dtl-form-group label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #0a1628;
            margin-bottom: 6px;
        }

        .dtl-form-group label .dtl-required {
            color: #ef4444;
            margin-left: 2px;
        }

        .dtl-form-group input,
        .dtl-form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            font-size: 15px;
            color: #1e293b;
            background: #ffffff;
            transition: border-color 0.3s, box-shadow 0.3s;
            outline: none;
            font-family: inherit;
        }

        .dtl-form-group input:focus,
        .dtl-form-group textarea:focus {
            border-color: #f5b342;
            box-shadow: 0 0 0 4px rgba(245, 179, 66, 0.12);
        }

        .dtl-form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        /* 验证码行 */
        .dtl-form-row {
            display: flex;
            gap: 16px;
            align-items: center;
            flex-wrap: wrap;
        }

        .dtl-form-row .dtl-form-group {
            flex: 1;
            min-width: 140px;
            margin-bottom: 0;
        }

        .dtl-form-row .dtl-form-group input {
            flex: 1;
        }

        .dtl-captcha-box {
			    margin: 30px 0 0 30px;
            display: flex;
            align-items: center;
            gap: 12px;
            background: #eef2f6;
            padding: 8px 16px;
            border-radius: 12px;
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 4px;
            color: #0a1628;
            font-family: 'Courier New', monospace;
            user-select: none;
            flex-shrink: 0;
        }

        .dtl-captcha-box i {
            color: #f5b342;
            font-size: 20px;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .dtl-captcha-box i:hover {
            transform: rotate(30deg);
        }

        .dtl-submit-btn {
            display: inline-block;
            padding: 14px 48px;
            background: #f5b342;
            color: #0a1628;
            font-size: 16px;
            font-weight: 700;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 1px;
            margin-top: 8px;
        }

        .dtl-submit-btn:hover {
            background: #e6a030;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(245, 179, 66, 0.35);
        }

        .dtl-submit-btn:active {
            transform: translateY(0);
        }

        /* ============================================================ */
        /* AOS custom (news-detail) */
        /* ============================================================ */
        [data-aos="dtl-zoom"] {
            opacity: 0;
            transform: scale(0.85);
            transition-property: transform, opacity;
        }

        [data-aos="dtl-zoom"].aos-animate {
            opacity: 1;
            transform: scale(1);
        }

        /* ============================================================ */
        /* Responsive (isolated) */
        /* ============================================================ */
        @media (max-width: 992px) {
            .dtl-hero {
                height: 220px;
            }
            .dtl-hero .dtl-hero-content h1 {
                font-size: 34px;
            }
            .dtl-detail-title {
                font-size: 28px;
            }
            .dtl-comment-card {
                padding: 30px 24px;
            }
        }

        @media (max-width: 768px) {
            .dtl-navbar .dtl-container-1600 {
                flex-wrap: wrap;
                height: auto;
                padding: 12px 20px;
                gap: 10px;
            }
            .dtl-nav-menu {
                order: 3;
                flex-wrap: wrap;
                justify-content: center;
                width: 100%;
                gap: 2px;
                padding: 8px 12px;
                border-radius: 30px;
            }
            .dtl-nav-menu>li {
                padding: 6px 12px;
                font-size: 12px;
            }
            .dtl-nav-right {
                gap: 12px;
            }
            .dtl-nav-phone {
                font-size: 13px;
            }

            .dtl-hero {
                height: 180px;
            }
            .dtl-hero .dtl-hero-content h1 {
                font-size: 28px;
            }
            .dtl-hero .dtl-hero-content p {
                font-size: 16px;
            }

            .dtl-detail-title {
                font-size: 24px;
            }
            .dtl-detail-meta {
                font-size: 14px;
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }

            .dtl-detail-body {
                font-size: 16px;
            }

            .dtl-comment-card {
                padding: 24px 18px;
            }
            .dtl-comment-card .dtl-comment-title {
                font-size: 19px;
            }

            .dtl-form-row {
                flex-direction: column;
                align-items: stretch;
            }
            .dtl-form-row .dtl-form-group {
                min-width: auto;
                margin-bottom: 16px;
            }
            .dtl-form-row .dtl-form-group:last-child {
                margin-bottom: 0;
            }
            .dtl-captcha-box {
                justify-content: center;
            }
            .dtl-submit-btn {
                width: 100%;
                text-align: center;
            }

            /* 调整 wrapper 内边距 */
            .dtl-detail-wrapper {
                padding: 0 16px;
            }
        }

        @media (max-width: 480px) {
            .dtl-hero {
                height: 150px;
            }
            .dtl-hero .dtl-hero-content h1 {
                font-size: 22px;
            }
            .dtl-detail-title {
                font-size: 20px;
            }
            .dtl-detail-body {
                font-size: 15px;
            }
            .dtl-comment-card {
                padding: 18px 14px;
            }
        }

        /* ============================================================ */
        /* Hamburger Menu Button (hidden on desktop) */
        /* ============================================================ */
        .cnt-hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            cursor: pointer;
            z-index: 1001;
            border-radius: 8px;
            transition: background 0.3s;
        }
        .cnt-hamburger:hover {
            background: rgba(255,255,255,0.1);
        }
        .cnt-hamburger span {
            display: block;
            width: 24px;
            height: 2.5px;
            background: #fff;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        .cnt-hamburger.cnt-hamburger-active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .cnt-hamburger.cnt-hamburger-active span:nth-child(2) {
            opacity: 0;
        }
        .cnt-hamburger.cnt-hamburger-active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ============================================================ */
        /* GLOBAL MOBILE RESPONSIVE - All Components */
        /* ============================================================ */

        /* === Tablet: 992px === */
        @media (max-width: 992px) {
            /* Hero buttons */
            .hero-btn-group {
                margin-left: 0;
                justify-content: center;
                flex-wrap: wrap;
            }
            .hero-btn {
                padding: 12px 24px;
                font-size: 14px;
            }
            /* Serone service wrap - 3 cols */
            .serone-service-wrap {
                width: 100% !important;
                padding: 0 20px;
            }
            .serone-service-list {
                flex-wrap: wrap;
            }
            .serone-service-card {
                flex: 1 1 calc(33.333% - 16px);
                min-width: 200px;
            }
            /* CSLS warehouse */
            .csls-wrap-warehouse {
                width: 100%;
                padding: 50px 24px;
            }
            /* Partners logo wall */
            .ls-container {
                width: 100%;
                padding: 0 20px;
            }
            .ls-logo-row {
                flex-wrap: wrap;
                gap: 20px;
                justify-content: center;
            }
            .ls-logo-item {
                width: 160px;
            }
            /* Yu container */
            .yu-container {
                width: 100%;
                padding: 0 20px;
            }
            /* LL container */
            .ll-container {
                width: 100%;
                padding: 0 20px;
            }
            .ll-row {
                flex-direction: column;
                gap: 30px;
                margin-bottom: 50px;
            }
            .ll-row-text-left .ll-col-text,
            .ll-row-text-left .ll-col-img,
            .ll-row-img-left .ll-col-img,
            .ll-row-img-left .ll-col-text {
                width: 100%;
            }
            /* About page banner */
            .tsab-banner-wrap {
                height: 400px;
            }
            .tsab-video-wrap {
                height: 500px;
                margin: 60px 0;
            }
            .tsab-data-list {
                flex-wrap: wrap;
            }
            .tsab-data-item {
                flex: 1 1 50%;
                padding: 40px 16px;
            }
            .tsab-data-num {
                font-size: 36px;
            }
            /* SSL process */
            .ssl-process-row {
                flex-wrap: wrap;
                gap: 20px;
            }
            .ssl-process-card {
                flex: 1 1 calc(50% - 10px);
            }
            .ssl-process-arrow {
                display: none;
            }
            /* NWS hero */
            .nws-hero {
                height: 280px;
            }
            .nws-hero .nws-hero-content h1 {
                font-size: 38px;
            }
            /* CK gallery card */
            .ck-gallery-card {
                flex: 0 0 280px;
            }
            /* TS nav menu */
            .ts-nav-menu {
                gap: 16px;
                padding: 8px 16px;
            }
            .ts-nav-menu>li>a {
                font-size: 14px;
            }
            /* Footer inline overrides */
            .footer-col-2 ul {
                position: relative !important;
                left: 0 !important;
            }
            .footer-col-4 h4 {
                margin-left: 0 !important;
            }
        }

        /* === Mobile: 768px === */
        @media (max-width: 768px) {
            /* Show hamburger */
            .cnt-hamburger {
                display: flex !important;
            }
            /* Mobile nav menu: hidden by default, shown when active */
            .cnt-nav-menu {
                display: none !important;
                position: absolute !important;
                top: 100% !important;
                left: 0 !important;
                width: 100% !important;
                flex-direction: column !important;
                background: rgba(10, 22, 40, 0.95) !important;
                backdrop-filter: blur(16px) !important;
                -webkit-backdrop-filter: blur(16px) !important;
                padding: 16px 20px !important;
                border-radius: 0 !important;
                gap: 0 !important;
                border: none !important;
                box-shadow: 0 12px 30px rgba(0,0,0,0.3) !important;
                z-index: 999 !important;
                order: unset !important;
                flex-wrap: unset !important;
                justify-content: unset !important;
                border-radius: 0 !important;
                border: none !important;
                box-shadow: 0 12px 30px rgba(0,0,0,0.3) !important;
            }
            .cnt-nav-menu.cnt-nav-menu-active {
                display: flex !important;
            }
            .cnt-nav-menu>li {
                padding: 12px 16px;
                font-size: 16px;
                width: 100%;
                border-bottom: 1px solid rgba(255,255,255,0.06);
            }
            .cnt-nav-menu>li:last-child {
                border-bottom: none;
            }
            /* Dropdown in mobile */
            .cnt-dropdown {
                position: static !important;
                opacity: 1 !important;
                visibility: visible !important;
                transform: none !important;
                background: rgba(255,255,255,0.05) !important;
                border-radius: 8px !important;
                border: none !important;
                box-shadow: none !important;
                padding: 4px 0 !important;
                min-width: auto !important;
            }
            .cnt-dropdown li {
                padding: 8px 24px !important;
            }
            .cnt-dropdown li:hover {
                padding-left: 30px !important;
            }
            /* Hide phone on small mobile */
            .cnt-nav-phone {
                display: none;
            }
            .cnt-nav-right {
                gap: 12px;
            }
            /* Hero section */
            .hero-section {
                height: 700px;
            }
            .hero-slide .slide-content h1 {
                font-size: 26px;
                letter-spacing: 2px;
            }
            .hero-slide .slide-content p {
                font-size: 16px;
            }
            .hero-btn-group {
                margin-left: 0;
                flex-direction: column;
                align-items: center;
                gap: 12px;
                margin-top: 20px;
            }
            .hero-btn {
                padding: 12px 28px;
                font-size: 14px;
                width: 80%;
                text-align: center;
            }
            .hero-arrow {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }
            .hero-arrow.prev { left: 10px; }
            .hero-arrow.next { right: 10px; }
            /* Stats */
            .hero-stats {
                padding: 24px 0;
            }
            .hero-stats .container-1600 {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .stat-item {
                padding: 16px 10px;
            }
            .stat-item .number {
                font-size: 28px;
            }
            .stat-item .label {
                font-size: 13px;
            }
            /* Services */
            .services-section {
                padding: 60px 0 50px;
            }
            .services-header {
                flex-direction: column;
                align-items: flex-start;
                margin-bottom: 36px;
            }
            .services-header h2 {
                font-size: 28px;
            }
            .services-header .desc {
                text-align: left;
                max-width: 100%;
            }
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            /* Industry accordion */
            .industry-section {
                padding: 50px 0;
            }
            .industry-accordion {
                flex-direction: column;
                height: auto;
                gap: 12px;
            }
            .industry-item {
                flex: none !important;
                height: 120px;
                min-height: 120px;
            }
            .industry-item.active {
                height: 350px;
                min-height: 350px;
            }
            .industry-item:not(.active) .item-content h3 {
                writing-mode: horizontal-tb !important;
                letter-spacing: 2px !important;
                font-size: 18px !important;
            }
            /* News */
            .news-section {
                padding: 60px 0;
            }
            .news-header {
                flex-direction: column;
                align-items: flex-start;
                margin-bottom: 30px;
            }
            .news-header h2 {
                font-size: 28px;
            }
            .news-header .desc {
                text-align: left;
                max-width: 100%;
            }
            .news-grid {
                grid-template-columns: 1fr;
            }
            .news-side-card {
                flex-direction: column;
            }
            .news-side-card .side-img {
                width: 100%;
                height: 160px;
            }
            .news-side-card:hover {
                transform: translateY(-6px);
            }
            /* Serone service - 2 cols */
            .serone-service-wrap {
                width: 100% !important;
                margin: 20px auto 60px auto;
                padding: 0 16px;
            }
            .serone-service-list {
                flex-wrap: wrap;
                gap: 16px;
            }
            .serone-service-card {
                flex: 0 0 calc(50% - 8px) !important;
                min-width: 0;
            }
            .serone-card-img {
                height: 160px;
            }
            .serone-service-title h2 {
                font-size: 28px;
            }
            /* CSLS warehouse mobile */
            .csls-wrap-warehouse {
                padding: 40px 16px;
            }
            .csls-title-warehouse h2 {
                font-size: 28px;
            }
            .csls-address-box {
                font-size: 15px;
                flex-wrap: wrap;
                text-align: center;
            }
            .csls-data-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .csls-info-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .csls-desc-text {
                padding: 0;
                font-size: 15px;
            }
            /* Footer */
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
                text-align: center;
            }
            .footer-col-1 .desc {
                max-width: 100%;
            }
            .footer-social {
                justify-content: center;
            }
            .footer-col-2 ul {
                position: relative !important;
                left: 0 !important;
            }
            .footer-col-2 ul li {
                margin-left: 0;
            }
            .footer-col-3 .contact-item {
                justify-content: center;
            }
            .footer-col-4 h4 {
                margin-left: 0 !important;
            }
            .footer-col-4 .qr-wrapper {
                align-items: center;
            }
            /* About page */
            .tsab-banner-wrap {
                height: 300px;
            }
            .tsab-video-wrap {
                height: 360px;
                margin: 40px 0;
            }
            .tsab-data-item {
                flex: 1 1 50%;
                padding: 30px 12px;
            }
            .tsab-data-num {
                font-size: 30px;
            }
            .tsab-data-desc {
                font-size: 13px;
            }
            .ts-parallax-wrap {
                height: 350px;
                margin: 60px 0;
            }
            /* TS nav - hide on mobile, use hamburger */
            .ts-nav-menu {
                display: none;
            }
            .ts-nav-menu.ts-nav-menu-active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(255,255,255,0.98);
                padding: 16px 20px;
                gap: 0;
                border-radius: 0;
                box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            }
            .ts-nav-menu.ts-nav-menu-active>li>a {
                padding: 12px 0;
                font-size: 16px;
                border-bottom: 1px solid #eee;
            }
            .ts-submenu {
                position: static !important;
                opacity: 1 !important;
                visibility: visible !important;
                transform: none !important;
                box-shadow: none !important;
                width: 100% !important;
                border-radius: 0 !important;
                background: #f9f9f9 !important;
            }
            .ts-submenu li a {
                padding: 10px 24px !important;
            }
            .ts-submenu li a:hover {
                padding-left: 28px !important;
            }
            .ts-nav-inner {
                flex-wrap: wrap;
                padding: 12px 0;
            }
            /* CK warehouse */
            .ck-block-space {
                padding: 60px 0;
            }
            .ck-main-title {
                font-size: 28px;
            }
            .ck-section-head h2 {
                font-size: 28px;
            }
            .ck-flex-row, .ck-flex-row-reverse {
                flex-direction: column;
                gap: 30px;
            }
            .ck-flex-text, .ck-flex-media {
                flex: unset;
                width: 100%;
            }
            .ck-map-container {
                height: 300px;
            }
            .ck-wms-grid {
                grid-template-columns: 1fr;
            }
            .ck-wms-bg-block {
                padding: 50px 16px;
                margin: 30px 0;
            }
            .ck-process-head h2 {
                font-size: 28px;
            }
            .ck-process-head p {
                font-size: 18px;
            }
            /* Yu temu */
            .yu-main-title {
                font-size: 28px;
            }
            .yu-service-block {
                padding: 24px;
            }
            .yu-two-col {
                flex-direction: column;
            }
            .yu-temu-fulfillment {
                padding: 50px 0;
            }
            /* LL warehouse */
            .ll-gray-bg-wrap {
                padding: 40px 16px;
                margin: 40px 0;
            }
            .ll-sub-title {
                font-size: 22px;
            }
            .ll-main-title {
                font-size: 28px;
            }
            /* SSL process */
            .ssl-process-row {
                flex-direction: column;
            }
            .ssl-process-card {
                flex: 1 1 100%;
            }
            .ssl-process-head h2 {
                font-size: 28px;
            }
            /* NWS news page */
            .nws-hero {
                height: 220px;
            }
            .nws-hero .nws-hero-content h1 {
                font-size: 28px;
            }
            .nws-hero .nws-hero-content p {
                font-size: 16px;
            }
            .nws-news-card {
                flex-direction: column;
            }
            .nws-news-card .nws-news-card-img {
                flex: 0 0 180px;
                min-height: 180px;
            }
            .nws-news-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .nws-news-header .nws-news-desc {
                text-align: left;
                max-width: 100%;
            }
            .nws-news-header .nws-news-title {
                font-size: 28px;
            }
            /* Contact page */
            .ls-contact-section {
                width: 100%;
                padding: 40px 16px;
            }
            .ls-contact-top-wrap {
                grid-template-columns: 1fr;
            }
            .ls-contact-info-box {
                transform: none;
                padding: 28px 20px;
            }
            .ls-inquiry-form-wrap {
                padding: 28px 16px;
            }
            .ls-form-row {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .ls-form-group input,
            .ls-form-group select,
            .ls-form-group textarea {
                width: 100%;
            }
            /* Partners */
            .pan-partners {
                padding: 50px 16px;
            }
            .pan-main-title {
                font-size: 28px;
            }
            .pan-logo-wall {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            /* CNT contact form */
            .cnt-form-wrapper {
                padding: 28px 16px;
            }
            .cnt-form-row {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .cnt-submit-btn {
                width: 100%;
                padding: 14px 20px;
            }
            .cnt-info-grid {
                grid-template-columns: 1fr;
            }
            /* Full video */
            .full-video-section {
                height: 350px;
            }
            /* Serone process */
            .serone-process-head h2 {
                font-size: 28px;
            }
            .serone-process-row {
                flex-direction: column;
                gap: 30px;
            }
            .serone-process-arrow {
                transform: rotate(90deg);
                margin: -15px auto;
            }
        }

        /* === Small Mobile: 480px === */
        @media (max-width: 480px) {
            /* Hero */
            .hero-section {
                height: 550px;
            }
            .hero-slide .slide-content h1 {
                font-size: 22px;
                letter-spacing: 1px;
            }
            .hero-slide .slide-content p {
                font-size: 14px;
            }
            .hero-btn {
                padding: 10px 20px;
                font-size: 13px;
                width: 90%;
            }
            .hero-stats .container-1600 {
                grid-template-columns: 1fr 1fr;
                gap: 6px;
            }
            .stat-item {
                padding: 12px 6px;
            }
            .stat-item .number {
                font-size: 22px;
            }
            .stat-item .label {
                font-size: 11px;
            }
            /* Services - 1 col */
            .services-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .services-header h2 {
                font-size: 24px;
            }
            .service-card .card-img {
                height: 160px;
            }
            /* News */
            .news-header h2 {
                font-size: 24px;
            }
            .news-main-card .card-img {
                height: 180px;
            }
            .news-main-card .card-body {
                padding: 20px 16px;
            }
            .news-main-card .card-body h3 {
                font-size: 18px;
            }
            /* Serone - 1 col */
            .serone-service-card {
                flex: 0 0 100% !important;
            }
            .serone-service-title h2 {
                font-size: 24px;
            }
            /* CSLS */
            .csls-title-warehouse h2 {
                font-size: 24px;
            }
            .csls-data-card {
                padding: 24px 16px;
            }
            .csls-data-num {
                font-size: 20px;
            }
            /* Footer */
            .footer-info {
                padding: 40px 0 20px;
            }
            .footer-grid {
                gap: 20px;
            }
            /* About */
            .tsab-banner-wrap {
                height: 220px;
            }
            .tsab-data-item {
                flex: 1 1 100%;
                padding: 24px 12px;
            }
            .tsab-data-num {
                font-size: 28px;
            }
            /* Partners - 1 col */
            .pan-logo-wall {
                grid-template-columns: 1fr;
            }
            /* NWS */
            .nws-hero {
                height: 180px;
            }
            .nws-hero .nws-hero-content h1 {
                font-size: 24px;
            }
            .nws-news-card .nws-news-card-img {
                flex: 0 0 140px;
                min-height: 140px;
            }
            .nws-news-header .nws-news-title {
                font-size: 24px;
            }
            /* Contact */
            .ls-contact-info-box h3 {
                font-size: 22px;
            }
            .ls-inquiry-form-wrap h3 {
                font-size: 22px;
            }
            .ls-submit-btn {
                width: 100%;
                text-align: center;
            }
            /* CK */
            .ck-main-title {
                font-size: 24px;
            }
            .ck-process-head h2 {
                font-size: 24px;
            }
            .ck-section-head h2 {
                font-size: 24px;
            }
            .ck-gallery-card {
                flex: 0 0 240px;
                height: 220px;
            }
            /* Yu */
            .yu-main-title {
                font-size: 24px;
            }
            .yu-sub-title {
                font-size: 20px;
            }
            /* LL */
            .ll-main-title {
                font-size: 24px;
            }
            .ll-sub-title {
                font-size: 20px;
            }
            /* SSL */
            .ssl-process-head h2 {
                font-size: 24px;
            }
            /* Full video */
            .full-video-section {
                height: 250px;
            }
            /* CNT form */
            .cnt-hero {
                height: 160px;
            }
            .cnt-hero .cnt-hero-content h1 {
                font-size: 24px;
            }
            .cnt-form-title {
                font-size: 22px;
            }
            /* Logo img */
            .ts-logo img {
                width: 120px !important;
            }
        }

        /* === Extra small: 375px === */
        @media (max-width: 375px) {
            .hero-slide .slide-content h1 {
                font-size: 20px;
            }
            .stat-item .number {
                font-size: 20px;
            }
            .stat-item .label {
                font-size: 10px;
            }
            .services-header h2 {
                font-size: 22px;
            }
            .news-header h2 {
                font-size: 22px;
            }
        }

        /* === Global overflow fix === */
        html, body {
           
            max-width: 100%;
        }
        img, video {
            max-width: 100%;
            height: auto;
        }