a {
    text-decoration: none;
    color: inherit;
    background: none;
    outline: none;
    border: none;
    box-shadow: none;
    cursor: pointer;
}


/* 顶部横条样式 */
.top-header {
    z-index: 99999999999 !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-top: 20px;
    background-color: #fff;
    background-size: 100% 20px;
    background-repeat: no-repeat;
    background-image: url(../img/top-header-image.png) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    -o-transition: background-size 0.3s, padding-top 0.3s;
    -webkit-transition: background-size 0.3s, padding-top 0.3s;
    transition: background-size 0.3s, padding-top 0.3s;
    padding-bottom: 10px;
}

/* 导航栏 */
.navbar {
    background-color: #fff;
    min-height: 56px;
    position: relative;
    z-index: 99999999999;
}

.navbar-brand img {
    margin-bottom: 5px;
}

/* 主要内容区域需要顶部边距以避免被固定导航遮挡 */
.main-content {
    margin-top: 91px;
}

.breadcrumb-wrapper {
    border-top: 1px solid #eee;
    border-bottom: 2px solid #f3f3f3;
    padding-top: 3rem;
    padding-bottom: 1rem;
}

.breadcrumb-item a {
    color: #999;
    text-decoration: none;
}

.breadcrumb-item.active {
    font-weight: bold;
    color: #000;
}

/* 手机端 Logo 居中 */
@media (max-width: 991.98px) {
    .navbar .navbar-brand {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }

    .navbar-toggler,
    .lang-dropdown-mobile {
        z-index: 11;
    }

    .lang-dropdown-mobile .active {
        color: #000000 !important;
        font-weight: 600 !important;
    }

    .navbar-collapse {
        display: none !important;
    }

    #mobileMenu {
        display: none;
        background-color: #fff;
        padding: 10px;
        border-top: 2px solid var(--indeco-red);
        position: relative;
        z-index: 999;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 16px 16px;
    }

    #mobileMenu.show {
        display: block;
        animation: slideDown 0.3s ease-out;
    }

    #mobileMenu .active {
        background-color: rgba(196, 30, 58, 0.05);
        color: #000 !important;
        font-weight: 600;
        border-radius: 6px;
    }

    #mobileMenu>ul .active {
        background-color: rgba(196, 30, 58, 0.05);
        color: #000 !important;
        font-weight: 600;
        border-radius: 6px;
    }

    #mobileMenu>ul>ul .active {
        background-color: rgba(196, 30, 58, 0.05);
        color: #000 !important;
        font-weight: 600;
        border-radius: 6px;
    }


    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* 移动端二级菜单样式 */
    .mobile-nav-item {
        border-bottom: 1px solid rgba(233, 236, 239, 0.6);
        margin: 0 8px;
    }

    .mobile-nav-item:first-child {
        margin-top: 8px;
    }

    .mobile-nav-item:last-child {
        border-bottom: none;
    }

    .mobile-nav-link {
        color: #000 !important;
        text-decoration: none;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
        padding: 15px 12px;
        border-radius: 8px;
        margin: 3px 0;
        font-weight: 500;
    }

    .mobile-nav-link:hover {
        color: #666 !important;
        background-color: rgba(196, 30, 58, 0.05);
        transform: translateX(2px);
    }

    .has-submenu .mobile-nav-link {
        cursor: pointer;
    }

    .submenu-toggle {
        font-size: 0.8rem;
        transition: transform 0.3s ease;
        color: #6c757d;
    }

    .has-submenu.active .submenu-toggle {
        transform: rotate(180deg);
        color: var(--indeco-red);
    }

    .has-submenu.active .mobile-nav-link {
        background-color: rgba(196, 30, 58, 0.05);
        color: #000 !important;
        font-weight: 600;
    }

    .mobile-submenu {
        list-style: none;
        padding: 0;
        margin: 0;
        background-color: #f8f9fa;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        border-left: 3px solid var(--indeco-red);
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 0 8px 8px 0;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .mobile-submenu.show {
        max-height: 300px;
        padding: 8px 0;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .mobile-submenu li {
        border-bottom: 1px solid rgba(233, 236, 239, 0.5);
        margin: 0 8px;
    }

    .mobile-submenu li:last-child {
        border-bottom: none;
    }

    .mobile-submenu li:first-child {
        margin-top: 4px;
    }

    .mobile-submenu li:last-child {
        margin-bottom: 4px;
    }

    .mobile-submenu a {
        color: #000 !important;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.85rem;
        font-weight: 500;
        padding: 12px 16px;
        display: block;
        border-radius: 6px;
        margin: 2px 0;
        position: relative;
    }



    .mobile-submenu a:hover {
        color: #666 !important;
        background-color: rgba(196, 30, 58, 0.08);
        padding-left: 32px;
        transform: translateX(4px);
    }

    .mobile-submenu a:hover:before {
        opacity: 1;
        transform: translateX(0);
    }
}



/* 响应式调整 */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .contact-form {
        padding: 2rem;
    }
}


/* 全局样式 */
:root {
    --indeco-red: #c41e3a;
    --indeco-green: #28a745;
    --indeco-warning: #ffc107;
    --dark-gray: #333333;
    --light-gray: #f8f9fa;
    --text-muted: #6c757d;
}

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

body {
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

/* 导航栏样式 */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 700;
    margin: 0 0.5rem;
    font-family: 'MyriadPro';
    transition: color 0.3s ease;
    color: #060606 !important;
}

.nav-link:hover {
    color: var(--indeco-red) !important;
}

.navbar .collapse .active>a {
    color: var(--indeco-red) !important;
}

/* 桌面端下拉菜单样式 */
.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    min-width: 220px;
    animation: fadeInUp 0.3s ease;
}

.navbar .dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
    border: none;
    background: none;

}

.navbar .dropdown-item.active {
    background-color: #f8f9fa;
    color: var(--indeco-red);
    padding-left: 2rem;
}

.navbar .dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--indeco-red);
    padding-left: 2rem;
}

.navbar .dropdown-item strong {
    color: var(--indeco-red);
}

.navbar .dropdown-divider {
    margin: 0.5rem 0;
    border-top: 1px solid #e9ecef;
}

/* 下拉菜单动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 下拉箭头样式 */
.navbar .dropdown-toggle::after {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.navbar .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* PC端语言选择器 */
.language-selector {
    color: #666 !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem !important;
}

.language-selector:hover {
    color: var(--indeco-red) !important;
}

.language-selector i {
    color: #666;
    font-size: 0.9rem;
}

.language-dropdown {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    min-width: 120px;
}

.language-dropdown .dropdown-item {
    padding: 0.5rem 1rem;
    color: #666;
    transition: all 0.3s ease;
}

.language-dropdown .dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--indeco-red);
}

/* 移动端导航 */
.mobile-nav {
    width: 100%;
    padding: 1rem 0;
    background: white;
}

.mobile-language-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 1.5rem;
}

.mobile-language-btn {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 50%;
    color: #666;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-language-btn:hover,
.mobile-language-btn:focus {
    background: white;
    border-color: var(--indeco-red);
    color: var(--indeco-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.2);
}

.mobile-language-btn i {
    color: inherit;
}

.mobile-language-menu {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    min-width: 120px;
    margin-bottom: 0.5rem !important;
}

.mobile-language-menu .dropdown-item {
    padding: 0.75rem 1.25rem;
    color: #495057;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
}

.mobile-language-menu .dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--indeco-red);
    transform: translateX(3px);
}

.mobile-nav-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0 1rem;
}

.mobile-nav-link {
    color: #000 !important;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
    display: flex;
    background: transparent;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
    justify-content: space-between;
}

.mobile-nav-link:hover {
    color: #666 !important;
    text-decoration: none;
    background: #f5f5f5;
    border-color: transparent;
    transform: translateX(2px);
    box-shadow: none;
}

/* 新移动端Header横向布局 */
.mobile-header {
    min-height: 60px;
    padding: 0.5rem 0;
}

.mobile-header .mobile-language-section {
    flex: 0 0 auto;
    padding: 0;
    border: none;
    margin: 0;
}

.mobile-header .mobile-language-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    background: transparent;
    border: 1px solid #ddd;
    color: #666;
    box-shadow: none;
}

.mobile-header .mobile-language-btn:hover,
.mobile-header .mobile-language-btn:focus {
    background: #f8f9fa;
    border-color: var(--indeco-red);
    color: var(--indeco-red);
    transform: none;
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.15);
}

.mobile-logo {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-logo .navbar-brand {
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: var(--dark-gray);
}

.mobile-logo .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}

.mobile-logo .brand-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--indeco-red);
    letter-spacing: 1px;
}

.mobile-logo .tagline {
    font-size: 0.65rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.mobile-menu-section {
    flex: 0 0 auto;
}

.mobile-menu-btn {
    border: none;
    background: transparent;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover,
.mobile-menu-btn:focus {
    background: #f8f9fa;
    border: 1px solid var(--indeco-red);
}

.mobile-menu-btn .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* 移动端展开菜单样式调整 */
#mobileNavMenu .mobile-nav-items {
    padding: 1rem;
}

#mobileNavMenu .mobile-nav-link {
    color: #000 !important;
    background: transparent;
    border: none;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    font-size: 1rem;
    padding: 0.75rem 1rem;
}

/* 移动端响应式优化 */
@media (max-width: 480px) {
    .mobile-logo .brand-text {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }

    .mobile-logo .tagline {
        font-size: 0.55rem;
    }

    .mobile-header .mobile-language-btn,
    .mobile-menu-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .mobile-logo .brand-text {
        font-size: 0.9rem;
    }

    .mobile-logo .tagline {
        font-size: 0.5rem;
    }

    .mobile-header {
        min-height: 56px;
    }
}

/* 移动端navbar-toggler样式 */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    padding-top: 50px;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    padding-bottom: 30px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -2px;
    animation: titleColorChange 8s ease infinite;
}

.hero-subtitle-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.hero-arrow {
    color: var(--indeco-red);
    font-size: 1.2rem;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.hero-subtitle:hover {
    color: var(--indeco-red);
    text-decoration: none;
}

.highlight-text {
    font-weight: 700;
    animation: highlightColorChange 6s ease infinite;
}

/* Hero Navigation Buttons */
.hero-nav-buttons {
    padding: 10px 0;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-btn {
    width: 30px;
    height: 30px;
    border: 2px solid #000000;
    background: transparent;
    border-radius: 50%;
    color: #000000;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background-color: #000000;
    color: white;
}

.nav-btn:active {
    transform: scale(0.95);
}

.nav-btn i {
    transition: transform 0.2s ease;
}

.nav-btn:hover i {
    transform: translateX(2px);
}

.nav-btn-prev:hover i {
    transform: translateX(-2px);
}

.nav-btn:focus {
    outline: 2px solid #4a90c2;
    outline-offset: 2px;
}

.nav-btn.clicked {
    animation: btnClick 0.3s ease;
}

/* 手机端 */
/* @media (max-width: 768px) {
    .nav-btn-prev  {
        font-size: 1.5rem;
    }
    .nav-btn-next  {
        font-size: 1.5rem;
    }
} */

@keyframes btnClick {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes titleColorChange {
    0% {
        color: #1e3a8a;
    }

    20% {
        color: #3b82f6;
    }

    40% {
        color: #8b5cf6;
    }

    60% {
        color: #ec4899;
    }

    80% {
        color: #f59e0b;
    }

    100% {
        color: #1e3a8a;
    }
}

@keyframes highlightColorChange {
    0% {
        color: #dc2626;
    }

    16.67% {
        color: #ea580c;
    }

    33.33% {
        color: #d97706;
    }

    50% {
        color: #65a30d;
    }

    66.67% {
        color: #16a34a;
    }

    83.33% {
        color: #0d9488;
    }

    100% {
        color: #dc2626;
    }
}

/* Hero Carousel */
.hero-carousel-container {
    position: relative;
    z-index: 2;
    touch-action: pan-y pinch-zoom;
    /* 允许垂直滚动和缩放，但优化水平滑动 */
}

.hero-image-carousel {
    position: relative;
    min-height: 480px;
    /* 根据实际图片高度调整 */
}

.carousel-image {
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.carousel-image.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

.carousel-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.carousel-image:hover img {
    transform: scale(1.05);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.carousel-controls {
    display: flex;
    align-items: center;
}

.carousel-btn {

    background: #ccc;
    border: none;
    width: 30px;
    height: 3px;
    border-radius: 2px;
    cursor: pointer;
    padding: 0;
    margin: 0 3px;
}

.carousel-btn:hover,
.carousel-btn.active {
    background: #333;
}

.carousel-btn i {
    display: none;
}

/* Carousel Note */
.carousel-note {
    text-align: center;
    margin-top: 1rem;
}

.note-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Innovation Section */
.innovation-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

/* Left Side Styles */
.innovation-left {
    padding-right: 2rem;
}

.at-glance-label {
    color: var(--indeco-red);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.innovation-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 3rem;
    color: var(--dark-gray);
}

/* Video Section */
.video-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.indeco-logo-circle {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.indeco-logo-circle:hover {
    transform: scale(1.05);
}

.indeco-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.indeco-logo-circle:hover .play-overlay {
    opacity: 1;
}

.watch-video-btn {
    background: transparent;
    border: none;
    color: var(--dark-gray);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.watch-video-btn:hover {
    color: var(--indeco-red);
    text-decoration: none;
}

.watch-video-btn:focus {
    color: var(--indeco-red);
    text-decoration: none;
}

.indeco-logo-circle {
    display: inline-block;
    text-decoration: none;
}

/* Right Side Styles */
.innovation-right {
    padding-left: 2rem;
}

.company-intro {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.company-description,
.company-expansion {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.discover-section {
    margin-top: 2rem;
}

.discover-btn {
    background: transparent;
    border: none;
    color: var(--dark-gray);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.discover-btn:hover {
    color: var(--indeco-red);
    transform: translateX(5px);
}

.discover-btn i {
    transition: transform 0.3s ease;
}

.discover-btn:hover i {
    transform: translateX(5px);
}

.discover-btn.clicked {
    animation: discoverClick 0.3s ease;
}

@keyframes discoverClick {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

/* Products Section */
.products-section {
    padding: 5rem 0;
}

.products-section .product-carousel-container {
    position: relative;
    margin-bottom: 3rem;
    min-height: 600px;
    touch-action: pan-y pinch-zoom;
    /* 允许垂直滚动和缩放，但优化水平滑动 */
}

.products-section .product-carousel {
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.products-section .product-slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}



.products-section .product-card {
    background: white;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 550px;
    display: flex;
    align-items: center;
}

.products-section .product-image-container {
    text-align: center;
}

.products-section .product-image {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.products-section .product-image:hover {
    transform: scale(1.05);
}

.products-section .product-content {
    padding-left: 2rem;
}

.products-section .product-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.products-section .product-series {
    color: #4a90c2;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.products-section .product-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.products-section .weight-range {
    margin-bottom: 2rem;
}

.products-section .weight-label {
    color: var(--dark-gray);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.products-section .weight-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.products-section .weight-min,
.products-section .weight-max {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark-gray);
}

.products-section .weight-min sub,
.products-section .weight-max sub {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
}

.products-section .weight-separator {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 600;
}

.products-section .product-cta-btn {
    background-color: var(--indeco-green);
    border-color: var(--indeco-green);
    color: white;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    border-radius: 5px;
}

.products-section .product-cta-btn:hover {
    background-color: #1e7e34;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

/* Hydraulic Hammers Red Button */
.products-section .product-cta-btn.hydraulic-cta {
    background-color: var(--indeco-red);
    border-color: var(--indeco-red);
}

.products-section .product-cta-btn.hydraulic-cta:hover {
    background-color: #a01729;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.3);
}

/* Navigation and Pagination */
.products-section .product-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
}

.products-section .product-nav-btn {
    background: transparent;
    border: 2px solid #ddd;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--dark-gray);
    font-size: 1.2rem;
}

.products-section .product-nav-btn:hover {
    background-color: var(--dark-gray);
    border-color: var(--dark-gray);
    color: white;
    transform: scale(1.1);
}

/* Pagination Dots */
.products-section .product-pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.products-section .pagination-dot {
    width: 30px;
    height: 3px;
    border-radius: 2px;
    border: none;
    background-color: #ddd;
    cursor: pointer;
    margin: 0 3px;
}

.products-section .pagination-dot.active {
    background-color: #333;
    height: 4px;
}

.products-section .pagination-dot:hover {
    background-color: #666;
}

/* All Products Button */
.products-section .all-products-btn {
    background-color: var(--dark-gray);
    border-color: var(--dark-gray);
    color: white;
    padding: 1rem 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-radius: 0 !important;

}

.products-section .all-products-btn:hover {
    background-color: var(--indeco-red);
    border-color: var(--indeco-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.3);
}

/* Animation Effects */
.products-section .product-nav-btn.clicked {
    animation: btnClickProduct 0.2s ease;
}

@keyframes btnClickProduct {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

.products-section .product-cta-btn:focus,
.products-section .all-products-btn:focus {
    outline: 2px solid #4a90c2;
    outline-offset: 2px;
}

.products-section .product-slide {
    animation: fadeInProduct 0.5s ease;
}

@keyframes fadeInProduct {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* max-576 */

@media (max-width: 576px) {

    /* Products Section Mobile */
    .products-section .product-card {
        padding: 1.5rem;
        border-width: 2px;
    }

    .products-section .product-image-container {
        padding: 1rem;
    }

    .products-section .product-title {
        font-size: 1.6rem;
    }

    .products-section .product-series {
        font-size: 0.8rem;
    }

    .products-section .product-description {
        font-size: 0.9rem;
    }

    .products-section .weight-min,
    .products-section .weight-max {
        font-size: 1.8rem;
    }

    .products-section .product-cta-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .products-section .product-navigation {
        margin-top: 1.5rem;
        max-width: 280px;
    }

    .products-section .product-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .products-section .pagination-dot {
        width: 20px;
        height: 2px;
        margin: 0 1px;
    }

    .products-section .pagination-dot.active {
        height: 3px;
    }

    .products-section .all-products-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .products-section .section-title {
        font-size: 1.5rem;
    }
}

.products-section .product-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 2;
    pointer-events: auto;
}



/* 手机端 */
@media (max-width: 768px) {
    .products-section .product-card {
        padding: 0px;
    }

    .products-section .product-content {
        padding-left: 0px;
    }
}






/* Video Sections */
.video-sections {
    padding: 0;
    background: rgb(243, 243, 243);
}

/* INDECONNECT Section */
.indeconnect-section {
    position: relative;
    margin-bottom: 0;
}

.indeconnect-section .indeconnect-background {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.indeconnect-section .background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.indeconnect-section .tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    z-index: 1;
}

.indeconnect-section .indeconnect-content {
    position: relative;
    z-index: 2;
    padding: 1rem 0;
}

.indeconnect-section .connect-subtitle {
    font-size: 38px;
    line-height: 1;
    font-weight: bold;
    letter-spacing: -0.4px;
    color: white;
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.indeconnect-section .indeconnect-brand {
    margin-bottom: 2rem;
}

.indeconnect-brand img {
    margin-top: 20px;
    max-width: 300px;
}

.indeconnect-section .brand-text {
    color: white;
    font-size: 4rem;
    font-weight: 900;
    margin: 0;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 3px;
}

.indeconnect-section .indeconnect-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.indeconnect-section .indeconnect-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

/* Tunnel Section */
.tunnel-section {
    margin-top: 3rem;
}

@media (min-width: 992px) {
    .tunnel-section {
        max-height: 450px;
    }
}

.tunnel-section .text-info {
    background-color: #ffffff;
}

.tunnel-section .item-1 {
    padding-left: 0;
}

@media (max-width: 768px) {
    .tunnel-section .item-1 {
        padding: 0;
    }
}

.tunnel-section .item-2 {
    margin: 10px 0;
}

.tunnel-section .tunnel-image-container {
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .tunnel-section .tunnel-image-container {
        height: 450px;
    }
}


.tunnel-section .tunnel-image {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.tunnel-section .focus-badge {
    display: inline-block;
    margin-bottom: 1rem;
}

.tunnel-section .focus-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.tunnel-section .tunnel-title {
    font-weight: 700;
    color: #333333;
    margin-bottom: 2rem;
}

.tunnel-section .tunnel-description {
    color: #666666;
    font-size: 14px;
    line-height: 1.2;
    text-align: justify;
}

.tunnel-section .tunnel-guide-link {
    margin-top: 1.5rem;
}

.tunnel-section .headline-small {
    font-size: 30px;
    line-height: 1;
    font-weight: bold;
    letter-spacing: -0.4px;
    text-transform: none;
}

.tunnel-section .download-link {
    color: #333333;
    text-decoration: none;
    font-size: 13.5px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border-bottom: 2px solid transparent;
}

.tunnel-section .download-link:hover {
    color: #808080;

}

/* World Map Section */
.world-map-section {
    padding: 0;
    background: white;
}

.world-map-section .world-map-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
}

.world-map-section .world-map-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.world-map-section .world-map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://indeco.it/wp-content/uploads/2020/07/banner-indeco-world-v1-hover.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.world-map-section .world-map-container:hover::before {
    opacity: 1;
}

.world-map-section .world-map-container:hover .world-map-background {
    opacity: 0;
}

.world-map-section .world-map-container:hover .vertical-line {
    background-color: #000000 !important;
}

.world-map-section .world-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 1;
}

.world-map-section .world-map-overlay:hover .world-map-content * {
    color: #000000 !important;
}

.world-map-section .world-map-content:hover .vertical-line {
    background-color: #000000 !important;
}

.world-map-section .world-map-overlay:hover .world-dealers-link {
    color: #ce000d !important;
}

.world-map-section .world-map-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.world-map-section .map-marker {
    flex-shrink: 0;
}

.world-map-section .marker-icon {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.world-map-section .world-subtitle {
    color: var(--indeco-red);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.world-map-section .world-title {
    color: white;
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.world-map-section .world-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.world-map-section .vertical-line {
    width: 2px;
    height: 80px;
    background: white;
    opacity: 0.8;
}

.world-map-section .world-dealers-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.world-map-section .world-dealers-btn:hover {
    background: white;
    color: #333;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* 新的链接样式 */
.world-map-section .world-action p {
    margin: 0;
}

.world-map-section .world-dealers-link {
    display: inline-block;
    background: transparent;
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* 去掉按钮圆角 */
.world-map-section .no-border-radius {
    border-radius: 0 !important;
}

/* 手机端 */
@media (max-width: 768px) {
    .world-map-section .marker-icon {
        max-width: 60px;
    }

    .world-map-section .world-title {
        font-size: 1.6rem;
    }

    .world-map-section .world-dealers-link {
        padding: 0px;
    }

    .world-map-section .world-action {
        justify-content: center;
    }
}


/* Success Stories */
.success-stories {
    padding: 0;
    background: white;
}


/* Stories Carousel */
.stories-carousel-container {
    position: relative;
    height: 500px;
    touch-action: pan-y pinch-zoom;
    /* 允许垂直滚动和缩放，但优化水平滑动 */
}

.stories-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.story-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.story-slide.active {
    opacity: 1;
}

.story-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
}

.story-content {
    padding: 0 60px;
    color: white;
    max-width: 600px;
}

.story-line {
    width: 60px;
    height: 3px;
    background: white;
    margin-bottom: 2rem;
}

.story-title {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.story-read-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.story-read-btn:hover {
    background: white;
    color: #333;
    border-color: white;
}

/* Story Navigation */
.story-navigation {
    position: absolute;
    bottom: 30px;
    left: 60px;
    display: flex;
    gap: 12px;
}

.story-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.story-dot.active {
    background: white;
}

.story-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Success Info Card */
.success-info-card {
    background: var(--indeco-red);
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 电脑端 */
@media (min-width: 992px) {
    .success-info-card {
        position: absolute;
        margin-right: 21px;
        margin-left: 18px;
    }

    /* 悬停整个卡片时修改箭头颜色 */
    .success-info-card:hover .wpb_wrapper {
        border-right-color: #fff !important;
    }
}

/* 内容区域单独悬停时的背景效果 */
.success-info-content:hover {
    background: white;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.success-info-card:hover * {
    color: black !important;
}

.success-stories .wpb_wrapper {
    width: 0px;
    height: 0px;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-right: 18px solid #c41e3a;
    /* 默认红色 */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
    filter: drop-shadow(-3px 2px 2px rgba(0, 0, 0, 0.15));
    left: -18px;
}

.success-info-content {
    height: 100%;
    background-color: #c41e3a;
    text-align: center;
    color: white;
    padding: 2rem;
    /* 上下居中 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.success-main-title {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.success-all-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.success-all-btn:hover {
    background: white;
    color: var(--indeco-red);
    border-color: white;
}

/* Success Stories 新的链接样式（去掉边框） */
.story-read-link {
    background: transparent;
    border: none;
    color: white;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.story-read-link:hover {
    background: white;
    color: #333;
    text-decoration: none;
    transform: translateY(-2px);
}

.success-all-link {
    background: transparent;
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.success-all-link:hover {
    background: white;
    color: var(--indeco-red);
    text-decoration: none;
    transform: translateY(-2px);
}

/* Press Room @ card-news*/
.card-news {
    padding: 5rem 0;
}

.card-news .press-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.card-news .press-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.card-news .press-card {
    background: #f8f9fa;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.card-news .press-card:hover {
    background: white;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-news .press-card .img-container {
    overflow: hidden;
    height: 200px;
}

.card-news .press-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-news .press-card:hover img {
    transform: scale(1.1);
}

/* Press Room 箭头样式 */
.card-news .press-content span.text-muted {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.card-news .press-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    display: inline-block;
    margin-left: auto;
}

.card-news .press-card:hover .press-arrow {
    opacity: 1;
    transform: translateX(0);
}

.card-news .press-content {
    padding: 1.5rem;
}

.card-news .press-content h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.card-news .more-news {
    display: inline-block;
    width: auto;
    font-size: 12.5px;
    line-height: 1.2;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background: #161616;
    border-radius: 0 !important;
}

.card-news .more-news:hover {
    background: #fff;
    color: #161616;
}

.card-news .section-title {
    padding-top: 60px;
}

/* Footer */
.footer {
    overflow: hidden;
    border-top: 1px solid #dee2e6;
    background: #f8f9fa;
}

/* 手机端 */

@media (max-width: 992px) {
    .footer {
        text-align: center;
    }

    .footer .two {
        padding: 0 20px !important;
    }
}

@media (max-width: 768px) {
    .footer .container {
        margin: 0;
        padding: 0;
    }

    .footer .otherlogo {
        display: block !important;
    }

    .footer .row .col-lg-6 {
        margin: 0;
        padding: 0;
    }
}



.footer h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

        /* Contact Info Styles */
      .footer  .contact-info {
            padding: 20px 0;
        }

        .footer  .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }

        .footer .contact-item:hover {
            transform: translateX(5px);
        }

        .footer .contact-icon {
            background: linear-gradient(135deg, #faf5e5 0%, #b0b0b0 100%);
            color: #000;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

    

        .footer .contact-icon i {
            font-size: 18px;
            font-weight: 600;
        }

        .footer .contact-details {
            flex: 1;
        }

        .footer .contact-title {
            color: #333;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .footer .contact-text {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 4px;
            line-height: 1.4;
        }

        .footer .contact-text:last-child {
            margin-bottom: 0;
        }
        @media (max-width: 992px) {
            .footer .contact-info {
                display: flex;
                flex-direction: column;
               width: 300px;
               text-align: start;
            }
            .footer .contact-info-box{
                display: flex;
                justify-content: center;
            }

        }
        /* Mobile Responsive for Contact Info */
        @media (max-width: 768px) {
            .footer .contact-item {
                margin-bottom: 20px;
            }

            .footer .contact-icon {
                width: 45px;
                height: 45px;
                margin-right: 12px;
            }

            .footer .contact-icon i {
                font-size: 16px;
            }

            .footer .contact-title {
                font-size: 1rem;
            }

            .footer .contact-text {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .footer .contact-icon {
                width: 40px;
                height: 40px;
                margin-right: 10px;
            }

            .footer .contact-icon i {
                font-size: 14px;
            }

            .footer .contact-title {
                font-size: 0.95rem;
            }

            .footer .contact-text {
                font-size: 0.85rem;
            }
        }



        .footer .otherlogo img {
            max-width: 160px;
        }

        .footer .otherlogo p {
            white-space: nowrap;
        }

        .footer .logo-box {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        /* 手机端 */
        @media (max-width: 992px) {
            .footer .logo-box {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        }











        
        
        

/* 新添加的社交媒体链接样式 */
.social-media-links .social-link {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.social-media-links .social-link:hover {
    color: white;
    background: var(--indeco-red);
    transform: translateY(-2px);
    text-decoration: none;
}

.app-downloads img {
    height: 35px;
    border-radius: 5px;
}

.partner-logos img {
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logos img:hover {
    opacity: 1;
}

/* 按钮样式 */
.btn {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



.btn-warning {
    background-color: var(--indeco-warning);
    border-color: var(--indeco-warning);
    color: var(--dark-gray);
}

.btn-warning:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: var(--dark-gray);
}

.btn-outline-dark:hover {
    background-color: var(--dark-gray);
    border-color: var(--dark-gray);
}

.btn-outline-light:hover {
    background-color: white;
    border-color: white;
    color: var(--dark-gray);
}

/* 响应式设计 */
@media (max-width: 768px) {

    /* Header Mobile Styles */
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-brand img {
        max-width: 150px;
        height: auto;
    }

    .mobile-language-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .mobile-nav-items {
        padding: 0 0.5rem;
        gap: 0.5rem;
    }

    .mobile-nav-link {
        font-size: 1rem;
        padding: 0.6rem 0.8rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-subtitle-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-arrow {
        margin-top: 0;
    }

    .hero-image-carousel {
        min-height: 480px;
    }

    .nav-btn {
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
    }

    /* Innovation Section Responsive */
    .innovation-left {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .innovation-right {
        padding-left: 0;
    }

    .innovation-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .video-section {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .indeco-logo-circle {
        width: 70px;
        height: 70px;
    }

    .section-title {
        font-size: 1.5rem;
        font-weight: 900;
    }

/* ---------------------------- */
    /* Products Section Responsive */
    .product-carousel-container {
        min-height: 700px;
    }

  .product-carousel-container  .product-carousel {
        min-height: 700px;
    }

    .product-carousel-container .product-card {
        padding: 2rem;
        min-height: 650px;
        flex-direction: column;
        justify-content: center;
    }

    .product-carousel-container .product-content {
        padding-left: 0;
        margin-top: 2rem;
        text-align: center;
    }

    .product-carousel-container .product-title {
        font-size: 1.8rem;
    }

    .product-carousel-container .weight-stats {
        justify-content: center;
    }

    .product-carousel-container .weight-min,
    .product-carousel-container .weight-max {
        font-size: 2rem;
    }

    .product-carousel-container .product-navigation {
        margin-top: 2rem;
        max-width: 320px;
    }

    .product-carousel-container .product-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .product-carousel-container .pagination-dot {
        width: 25px;
        height: 2px;
        margin: 0 2px;
    }

    .product-carousel-container .pagination-dot.active {
        height: 3px;
    }
/* -------------------- */
    /* Video Sections Mobile */
    .indeconnect-background {
        height: 350px;
        display: flex;
        align-items: center;
    }

    .connect-subtitle {
        font-size: 1.5rem;
        text-align: center;
    }

    .indeconnect-section .indeconnect-brand {
        text-align: center;
    }

    .brand-text {
        font-size: 2.5rem;
    }

    .indeconnect-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        margin-top: 1rem;
    }

    .tunnel-content {
        padding: 1rem;
        margin-top: 2rem;
    }

    .tunnel-title {
        font-size: 1.8rem;
    }

    .tunnel-description {
        font-size: 0.95rem;
        text-align: left;
    }

    .download-link {
        font-size: 0.9rem;
        justify-content: center;
    }

    /* World Map Mobile */
    .world-map-container {
        height: 350px;
    }

    .world-map-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .marker-icon {
        width: 60px;
    }

    .world-title {
        font-size: 2rem;
    }

    .world-action {
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .vertical-line {
        height: 60px;
    }

    .world-dealers-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    /* Success Stories Mobile */
    .stories-carousel-container,
    .success-info-card {
        height: 350px;
    }

    .story-content {
        padding: 0 30px;
    }

    .story-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .story-navigation {
        left: 30px;
        bottom: 20px;
    }

    .success-main-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        display: flex;
        justify-content: center;
    }

    .hero-image-carousel {
        min-height: 800px;
    }

    .hero-section .container {
        padding: 0px !important;
        margin: 0px !important;
    }
}

@media (max-width: 768px) {
    .hero-image-carousel {
        min-height: 650px;
    }
}

@media (max-width: 576px) {
    .hero-image-carousel {
        min-height: 650px;
    }
}

@media (max-width: 550px) {
    .hero-image-carousel {
        min-height: 600px;
    }
}

@media (max-width: 460px) {
    .hero-image-carousel {
        min-height: 550px;
    }
}

@media (max-width: 576px) {
    /* Header Small Mobile Styles */


    .mobile-language-btn {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    .mobile-nav-items {
        padding: 0 0.25rem;
        gap: 0.4rem;
    }

    .mobile-nav-link {
        font-size: 0.95rem;
        padding: 0.6rem 0.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }



    .carousel-controls {
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .carousel-btn {
        width: 25px;
        height: 2px;
        margin: 0 2px;
    }

    .carousel-btn:hover,
    .carousel-btn.active {
        height: 3px;
    }

    .nav-btn {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .hero-nav-buttons {
        gap: 0.8rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .note-text {
        font-size: 0.8rem;
    }

    /* Innovation Section Mobile */
    .innovation-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .indeco-logo-circle {
        width: 60px;
        height: 60px;
    }

    .watch-video-btn {
        font-size: 0.9rem;
    }

    .company-intro {
        font-size: 1rem;
    }

    .company-description,
    .company-expansion {
        font-size: 0.9rem;
    }



    /* Success Stories Mobile Small */
    .stories-carousel-container,
    .success-info-card {
        height: 300px;
    }

    .story-content {
        padding: 0 20px;
    }

    .story-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .story-line {
        width: 40px;
        height: 2px;
        margin-bottom: 1.5rem;
    }

    .story-navigation {
        left: 20px;
        bottom: 15px;
        gap: 8px;
    }

    .story-dot {
        width: 10px;
        height: 10px;
    }

    .success-main-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .success-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    /* Video Sections Mobile Small */
    .indeconnect-background {
        height: 300px;
        display: flex;
        align-items: center;
    }

    .connect-subtitle {
        font-size: 1.2rem;
    }

    .brand-text {
        font-size: 2rem;
    }

    .tunnel-title {
        font-size: 1.5rem;
    }

    .tunnel-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .focus-logo {
        height: 32px;
    }

    /* World Map Mobile Small */
    .world-map-container {
        height: 300px;
    }

    .marker-icon {
        width: 50px;
    }

    .world-subtitle {
        font-size: 0.9rem;
    }

    .world-title {
        font-size: 1.8rem;
    }

    .world-action {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .vertical-line {
        height: 50px;
    }

    .world-dealers-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* 滚动效果 */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.section-title {
    font-weight: 600;
    font-size: 3rem;
}

.scroll-animate.animate {

    opacity: 1;
    transform: translateY(0);
}

/* 加载动画 */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* 轮播图图片动画初始状态 */
.carousel-image .img-fluid {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}


/* 激活时图片动画到位 */
.carousel-image.active .img-fluid {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Press Room 描述段落高度控制 */
@media (min-width: 992px) {
    .press-card .press-content .text-muted.small {
        min-height: 67px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* applications */
/* Tunnel Section */
.applications-page .tunnel-section-two {
    margin-top: 3rem;
    padding: 2rem 0;
    background: #f8f9fa;
}

.applications-page .tunnel-section-two .tunnel-image-container {
    position: relative;
}

.applications-page .tunnel-section-two .tunnel-image {
    border-radius: 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
}

.applications-page .tunnel-section-two .tunnel-content {
    padding: 2rem;
}

.applications-page .tunnel-section-two .focus-badge {
    display: inline-block;
    margin-bottom: 1rem;
}

.applications-page .tunnel-section-two .focus-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.applications-page .tunnel-section-two .tunnel-title {
    font-weight: 700;
    color: #333333;
    margin-bottom: 2rem;
}

.applications-page .tunnel-section-two .tunnel-description {
    color: #666666;
    font-size: 0.9rem;
    text-align: justify;
}

.applications-page .tunnel-section-two .tunnel-guide-link {
    margin-top: 1.5rem;
}

.applications-page .tunnel-section-two .download-link {
    color: #333333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border-bottom: 2px solid transparent;
}

.applications-page .tunnel-section-two .download-link:hover {
    color: #333333;
    border-bottom: 2px solid #333333;
    text-decoration: none;
}

/* 卡片图片悬停效果 - 放大但不影响布局 */
.applications-page .card-img-container {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    /* 图片容器鼠标指针变为手指 */
}

.applications-page .card-img-container img {
    transition: transform 0.3s ease;
}

.applications-page .card:hover .card-img-container img {
    transform: scale(1.1);
}

/* 加载更多按钮居中 */
#loadMoreContainer {
    text-align: center;
    margin-top: 20px;
}

/* 卡片标题指针样式 */
.applications-page .card-title {
    cursor: pointer;
    /* 标题鼠标指针变为手指 */
    font-size: 0.9rem;
}

/* 视频链接样式 - 真正两端对齐 */
.applications-page .video-link-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: auto;
    /* 确保在卡片底部 */
}

.applications-page .video-link-text {
    text-decoration: none;
    font-size: 0.8rem;
}

.applications-page .video-link-text:hover {
    text-decoration: underline;
}

.applications-page .headline-big {
    font-size: 58px;
    line-height: 1;
    font-weight: bold;
    letter-spacing: -1px;
}

@media (max-width: 767.98px) {
    .applications-page .headline-big {
        font-size: 30px;
    }

    .applications-page .label-big {
        font-size: 20px;
    }

    .applications-page .btn-light {
        font-size: 12px;
    }
}

.applications-page .label-big {
    color: #ce000d;
    font-weight: bold;
    margin: 0;
    padding: 0;
    font-size: 28px;
    line-height: 1.1;
}

.applications-page .video-link-arrow {
    font-size: 16px;
    opacity: 0;
    /* 默认隐藏箭头 */
    transition: opacity 0.3s ease;
    /* 过渡动画 */
}

.applications-page .card:hover .video-link-arrow {
    opacity: 1;
    /* 卡片悬停时显示箭头 */
}

.applications-page .filterVideos .card-title {
    font-weight: bold;
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.1;
}

.applications-page .list-group-item {
    border: none;
    font-size: 0.8rem;
}

.applications-page .select-btn-group {
    border-bottom: 1px solid #ccc;
}

.applications-page .select-btn-group a {
    border-radius: 0 !important;
    background-color: #e2e2e2;
    padding: 12px 25px;
    transform: translateY(1px);
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: #595959;
    /* 垂直居中 */
}

.applications-page .select-btn-group .active {
    z-index: 1;
    color: black;
    background-color: #ffffff;
    font-weight: 600;
    border: 1px solid #ccc;
    /* 浅灰色边框 */
    border-bottom: 1px solid #ffffff;

}

/* 手机端 */
@media (max-width: 767.98px) {
    .applications-page .select-btn-group {
        flex-direction: column;
        padding: 0 10px;
    }

    /* .applications-page .container {
        padding: 0px !important;
    } */
    .applications-page .select-btn-group {
        border-bottom: 0px;
    }

    .applications-page .select-btn-group a {
        padding: 6px 10px;
        justify-content: center;
    }
}


/* 移除筛选按钮的JS hover阴影效果 */
.applications-page .select-btn-group .btn,
.applications-page .select-btn-group a {
    box-shadow: none !important;
}

.applications-page .select-btn-group .btn:hover,
.applications-page .select-btn-group a:hover {
    box-shadow: none !important;
}

.applications-page .btn-outline-secondary {
    font-size: 0.8rem;
    border-radius: 0 !important;
    /* !important 确保覆盖其他样式 */

}

.applications-page .form-check-label {
    font-size: 0.8rem;
}

.applications-page .list-group-item-action {
    /* 一行一个 */
    display: block;
    line-height: 2;
    font-size: 0.8rem;
}

.applications-page .filter-text {
    font-size: 0.8rem;
    margin-right: 10px;
    line-height: 5;
}

@media (max-width: 767.98px) {
    .applications-page .filter-text {
        line-height: 2.2;
    }

    .applications-page .list-btn-group a {
        background: #f2f2f2;
        display: contents;
        padding: 6px 18px;
    }

    .applications-page .list-btn-group {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        background: none;
        border: none;
        padding: 0 8px;
        justify-content: flex-start;
    }

    .applications-page .list-btn-group a {
        display: inline-block;
        width: auto !important;
        /* 关键：覆盖Bootstrap的100%宽度 */
        min-width: 0 !important;
        max-width: 100%;
        background: #f2f2f2;
        color: #222 !important;
        border: none;
        border-radius: 20px;
        padding: 2px 10px;
        font-size: 13px;
        margin: 0;
        box-shadow: none;
        transition: background 0.2s, color 0.2s;
        text-align: center;
        white-space: nowrap;
        /* 让按钮内容不自动换行 */
        flex-shrink: 0;
        /* 防止被压缩 */
    }

    .applications-page .list-btn-group-item.active,
    .applications-page .list-btn-group-item:active {
        background: #000;
    }

    .applications-page .filter-btn-group {
        justify-content: space-around !important;
    }
}


/* career */
.contact-page .contact-container {
    max-width: 100%;
    margin: 0;
    background: white;
    min-height: 100vh;
}

.contact-page .form-section .formbox {
    padding: 30px;
}

/* 手机端 */
@media (max-width: 768px) {
    .contact-page .form-section {
        padding: 10px !important;
    }

    .contact-page .form-section .formbox {
        padding: 20px;
    }
}

.contact-page .contact-header {
    background: white;
    padding: 60px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.contact-page .contact-title {
    font-size: 3rem;
    color: #333;
    margin: 0;
    letter-spacing: -1px;
    font-weight: 800;
}

.contact-page .contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: right;
}

.contact-page .contact-details {
    text-align: right;
}

.contact-page .contact-phone {
    font-size: 1.5rem;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.contact-page .contact-phone:hover {
    color: #666;
    text-decoration: none;
}

.contact-page .contact-hours {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 8px;
}

.contact-page .contact-email {
    font-size: 0.85rem;
    color: #666;
    text-decoration: none;
    display: block;
}

.contact-page .contact-email:hover {
    color: #333;
    text-decoration: underline;
}

.contact-page .call-us-btn {
    background: #333;
    color: white;
    padding: 8px 16px;
    border: none;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    white-space: nowrap;
}

.contact-page .call-us-btn:hover {
    background: #555;
}

/* 手机端响应式样式 */
@media (max-width: 768px) {
    .contact-page .contact-header {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .contact-page .contact-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .contact-page .contact-info {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        text-align: center;
    }

    .contact-page .contact-details {
        text-align: center;
        width: 100%;
    }

    .contact-page .contact-phone {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .contact-page .contact-hours {
        margin-bottom: 8px;
    }

    .contact-page .contact-email {
        margin-bottom: 0;
    }

    .contact-page .call-us-btn {
        width: auto;
        padding: 10px 20px;
    }
}

.contact-page .form-section {
    background: #f0f0f0;
    padding: 30px 40px;
    margin: 0;
}

.contact-page .form-instruction {
    text-align: center;
    margin-bottom: 25px;
    color: #666;
    font-size: 0.9rem;
}

.contact-page .form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
    font-size: 0.85rem;
}

.contact-page .form-control,
.contact-page .form-select {
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 8px 10px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    background: white;
}

.contact-page .form-control:focus,
.contact-page .form-select:focus {
    border-color: #999;
    box-shadow: none;
    outline: none;
}

.contact-page .form-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.contact-page .privacy-check {
    flex: 1;
    margin-right: 20px;
}

.contact-page .btn-group {
    display: flex;
    gap: 8px;
}

.contact-page .btn-submit {
    background: #333;
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 3px;
    font-size: 0.85rem;
}

.contact-page .btn-submit:hover {
    background: #555;
}

.contact-page .btn-reset {
    background: transparent;
    border: 1px solid #666;
    color: #666;
    padding: 9px 25px;
    border-radius: 3px;
    font-size: 0.85rem;
}

.contact-page .btn-reset:hover {
    background: #666;
    color: white;
}

/* 手机端响应式 */
@media (max-width: 768px) {
    .contact-page .form-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-page .privacy-check {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .contact-page .btn-group {
        justify-content: center;
    }
}

.contact-page .headquarters-section {
    padding: 30px 40px;
    background: white;
}


.contact-page .headquarters-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 25px;
}

.contact-page .office-item {
    margin-bottom: 20px;
    padding: 0;
    background: transparent;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.contact-page .office-item:last-child {
    border-bottom: none;
}

.contact-page .office-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.contact-page .office-title-one {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.contact-page .office-address {
    color: #666;
    line-height: 1.4;
    margin-bottom: 0;
    font-size: 0.8rem;
}

/* 表单验证样式 */
.contact-page .is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.contact-page .invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #dc3545;
}

/* 加载动画 */
.contact-page .spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* 成功/错误消息样式 */
.contact-page .alert {
    margin-bottom: 1rem;
    border-radius: 0.375rem;
}

.contact-page .alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.contact-page .alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}







/* detail */
/* 移除Bootstrap默认边距 */
.detail-page .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.detail-page .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.detail-page .col-lg-5,
.detail-page .col-lg-7,
.detail-page .col-md-6 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.detail-page .hero-section-detail {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.detail-page .hero-section-detail .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://epiroc.scene7.com/is/image/epiroc/SB-52-application?$landscape1600$');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.detail-page .hero-section-detail .content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.detail-page .hero-section-detail .left-panel {
    background: #34495ec5;
    color: white;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.detail-page .hero-section-detail .product-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 3rem;
    color: white;
}

.detail-page .hero-section-detail .feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

.detail-page .hero-section-detail .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.4;
}

.detail-page .hero-section-detail .feature-icon {
    background: #f39c12;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 16px;
    font-weight: bold;
}

.detail-page .hero-section-detail .contact-btn {
    background: transparent;
    border: 2px solid #f39c12;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    width: fit-content;
}

.detail-page .hero-section-detail .contact-btn:hover {
    background: #f39c12;
    color: white;
    text-decoration: none;
}

.detail-page .hero-section-detail .contact-btn i {
    font-size: 1.2rem;
}

.detail-page .hero-section-detail .right-panel {
    flex: 1;
    height: 100%;
    position: relative;
}

.detail-page .hero-section-detail .worker-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 3;
}

@media (max-width: 768px) {
    .detail-page .hero-section-detail {
        height: 340px;
        min-height: 260px;
    }

    .detail-page .hero-section-detail .content-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100%;
        align-items: stretch;
        display: flex;
    }

    .detail-page .hero-section-detail .left-panel {
        height: 100%;
        width: 100%;
        background: rgba(52, 73, 94, 0.8);
        padding: 2rem 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .detail-page .hero-section-detail .product-title {
        font-size: 2.5rem;
    }

    .detail-page .hero-section-detail .feature-item {
        font-size: 1rem;
    }
}

@media (max-width: 991.98px) {
    .detail-page .hero-section-detail {
        position: relative;
        height: auto !important;
        min-height: unset !important;
    }

    .detail-page .hero-section-detail .background-image {
        display: none !important;
        /* 手机端隐藏原背景图 */
    }

    .detail-page .hero-section-detail .content-overlay {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        min-height: unset !important;
        background: rgba(52, 73, 94, 0.85);
        display: block !important;
        overflow: hidden;
    }

    .detail-page .hero-section-detail .content-overlay::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 0;
        background-image: url('https://epiroc.scene7.com/is/image/epiroc/SB-52-application?$landscape1600$');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 1;
    }

    .detail-page .hero-section-detail .container-fluid,
    .detail-page .hero-section-detail .left-panel {
        position: relative;
        z-index: 1;
    }

    .detail-page .hero-section-detail .left-panel {
        background: rgba(52, 73, 94, 0.85);
        padding: 2rem 1rem;
        height: auto;
    }
}

/* 第二个组件样式 */
.detail-page .features-section {
    height: 600px;
    overflow: hidden;
}

.detail-page .features-section .image-container {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.detail-page .features-section .construction-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.detail-page .features-section .breaker-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 图片底部覆盖文字 */
.detail-page .features-section .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.8);
    color: white;
    padding: 15px 20px;
    font-size: 1.2rem;
    font-weight: bold;
}

/* 右侧文字面板 */
.detail-page .features-section .text-panel {
    background: #FFD700;
    height: 600px;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.detail-page .features-section .text-panel h2 {
    color: #2C3E50;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.detail-page .features-section .text-panel p {
    color: #7F8C8D;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .detail-page .features-section {
        height: auto;
    }

    .detail-page .features-section .image-container {
        height: 400px;
    }

    .detail-page .features-section .text-panel {
        height: 300px;
        padding: 2rem;
    }

    .detail-page .features-section .text-panel h2 {
        font-size: 2rem;
    }

    .detail-page .features-section .text-panel p {
        font-size: 1rem;
    }
}

/* 第三个组件样式 */
.detail-page .carrier-section {
    position: relative;
    height: 400px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
}

.detail-page .carrier-section .carrier-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://epiroc.scene7.com/is/image/epiroc/SB-52-application?$landscape1600$&cropN=0.10,0.20,0.80,0.27');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.detail-page .carrier-section .carrier-content {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

.detail-page .carrier-section .row {
    width: 100%;
    height: 100%;
    margin: 0;
}

.detail-page .carrier-form-panel {
    padding: 40px 0 40px 8vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.detail-page .carrier-title {
    color: #FFD24A;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.1;
}

.detail-page .carrier-select {
    max-width: 300px;
    font-weight: bold;
    color: #444;
    margin-bottom: 20px;
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.detail-page .carrier-result-panel {
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
}

.detail-page .carrier-result-title {
    color: #FFD24A;
    font-size: 2.7rem;
    font-weight: bold;
    text-align: right;
    line-height: 1.1;
}

.detail-page #carrierResultBrand,
.detail-page #carrierResultModel {
    color: #FFD24A;
    font-weight: bold;
}

/* 背景加深遮罩 */
.detail-page .carrier-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.7);
    z-index: 1;
}

.detail-page .carrier-section .carrier-bg {
    z-index: 0;
}

.detail-page .carrier-section .carrier-content {
    z-index: 2;
}

/* 响应式 */
@media (max-width: 991px) {

    .detail-page .carrier-form-panel,
    .detail-page .carrier-result-panel {
        padding-left: 4vw;
        padding-right: 4vw;
    }
}

@media (max-width: 768px) {
    .detail-page .carrier-section {
        height: auto;
        min-height: 500px;
    }

    .detail-page .carrier-form-panel,
    .detail-page .carrier-result-panel {
        padding: 30px 5vw 10px 5vw;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .detail-page .carrier-title,
    .detail-page .carrier-result-title {
        font-size: 2rem;
        text-align: left;
    }

    .detail-page .carrier-result-panel {
        justify-content: flex-start;
        text-align: left;
    }
}

/* 技术参数与产品图片组件样式 */
.detail-page .specs-section {
    padding: 40px 0;
    background: #fff;
}

.detail-page .specs-section .specs-row {
    min-height: 700px;
}

.detail-page .specs-section .specs-info-panel {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 32px 32px 24px 32px;
    background: #fafbfc;
    margin: 0 24px 0 0;
}

.detail-page .specs-section .specs-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #444;
    margin-bottom: 12px;
}

.detail-page .specs-section .specs-desc {
    color: #666;
    font-size: 1rem;
    margin-bottom: 24px;
}

.detail-page .specs-section .specs-product-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #444;
}

.detail-page .specs-section .specs-unit-switch .btn {
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
}

.detail-page .specs-section .specs-unit-switch .btn.active {
    background: #e0e0e0;
    color: #222;
}

.detail-page .specs-section .specs-table-wrap {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.detail-page .specs-section .specs-table {
    margin-bottom: 0;
    background: #fff;
}

.detail-page .specs-section .specs-table-header {
    background: #f7c948;
    color: #444;
    font-weight: bold;
    font-size: 1.05rem;
    border-bottom: 1px solid #e0e0e0;
}

/* 手机端 */
@media (max-width: 768px) {
    .detail-page .specs-section .specs-table-header {
        font-size: 0.8rem;
        color: #666;
    }

    .detail-page .specs-section .specs-unit-switch .btn {
        font-size: 0.8rem;
    }

    .detail-page .specs-section .specs-product-title {
        font-size: 1rem;
    }
}

.detail-page .specs-section .specs-table td {
    font-size: 1rem;
    color: #444;
    padding: 8px 12px;
    background: #fff;
}

.detail-page .specs-section .specs-table tr:nth-child(even) td {
    background: #f6f6f6;
}

.detail-page .specs-section .specs-notes {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 18px;
    padding-left: 18px;
}

.detail-page .specs-section .specs-notes li {
    margin-bottom: 4px;
}

.detail-page .specs-section .specs-more-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #444;
    margin-bottom: 8px;
}

.detail-page .specs-section .specs-more-list {
    list-style: none;
    padding-left: 0;
}

.detail-page .specs-section .specs-more-list li {
    margin-bottom: 6px;
}

.detail-page .specs-section .specs-more-list a {
    color: #5c5c5c;
    font-size: 0.8rem;
}

.detail-page .specs-section .specs-more-list hr {
    margin: 5px 0;
}

.detail-page .specs-section .specs-img-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    padding: 24px 0 24px 0;
}

.detail-page .specs-section .specs-img-wrap {
    text-align: center;
}

.detail-page .specs-section .specs-img {
    max-width: 570px;
    width: 100%;
    height: auto;
    margin-bottom: 8px;
}

.detail-page .specs-section .specs-img-caption {
    color: #888;
    font-size: 0.98rem;
    margin-bottom: 24px;
}

@media (max-width: 991px) {
    .detail-page .specs-section .specs-info-panel {
        margin: 0 0 24px 0;
    }
}

@media (max-width: 768px) {
    .detail-page .specs-section {
        padding: 20px 0;
    }

    .detail-page .specs-section .specs-row {
        min-height: unset;
    }

    .detail-page .specs-section .specs-info-panel {
        padding: 18px 8px 12px 8px;
        border-radius: 0;
    }

    .detail-page .specs-section .specs-img-panel {
        padding: 12px 0 12px 0;
    }

    .detail-page .specs-section .specs-img {
        max-width: 160px;
    }
}

/* 三栏横排/竖排组件样式 */
.detail-page .triple-section {
    padding: 18px 0 18px 0;
    background: #f5f5f5;
}

.detail-page .triple-section .triple-row {
    min-height: 320px;
}

.detail-page .triple-section .triple-img-panel {
    position: relative;
    height: 100%;
    min-height: 320px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.detail-page .triple-section .triple-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://epiroc.scene7.com/is/image/epiroc/Epiroc_appl_overview?$landscape1600$&cropN=0.36,0.19,0.64,0.76');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.detail-page .triple-section .triple-img-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    background: rgba(44, 62, 80, 0.8);
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    padding: 18px 24px;
    letter-spacing: 1px;
}

.detail-page .triple-section .triple-blue-panel {
    background: #495a67;
    color: #fff;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 32px;
}

.detail-page .triple-section .triple-blue-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.detail-page .triple-section .triple-blue-desc {
    font-size: 1.1rem;
    color: #e0e0e0;
    font-style: italic;
}

.detail-page .triple-section .triple-yellow-panel {
    background: #f7c948;
    color: #444;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 32px;
}

.detail-page .triple-section .triple-yellow-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.detail-page .triple-section .triple-yellow-desc {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-style: italic;
}

@media (max-width: 991px) {

    .detail-page .triple-blue-panel,
    .detail-page .triple-yellow-panel {
        padding: 0 16px;
    }
}

@media (max-width: 768px) {
    .detail-page .triple-section .triple-row {
        flex-direction: column !important;
    }

    .detail-page .triple-section .triple-img-panel,
    .detail-page .triple-section .triple-blue-panel,
    .detail-page .triple-section .triple-yellow-panel {
        min-height: 180px;
        height: auto;
    }

    .detail-page .triple-section .triple-img-overlay {
        font-size: 1.1rem;
        padding: 10px 14px;
    }

    .detail-page .triple-section .triple-blue-title,
    .detail-page .triple-section .triple-yellow-title {
        font-size: 1.2rem;
    }

    .detail-page .triple-section .triple-blue-desc,
    .detail-page .triple-section .triple-yellow-desc {
        font-size: 0.98rem;
    }
}

/* 横向卡片组件 */
.detail-page .gallery-section {
    padding: 40px 0;
    background: #fff;
}

.detail-page .gallery-section .gallery-header-row {
    margin-bottom: 30px;
}

.detail-page .gallery-section .gallery-title {
    font-size: 1rem;
    font-weight: bold;
    color: #444;
}

.detail-page .gallery-section .gallery-tags {
    display: flex;
    align-items: center;
}

.detail-page .gallery-section .gallery-tags-label {
    font-size: 0.8rem;
    font-weight: bold;
    color: #888;
    margin-right: 10px;
}

.detail-page .gallery-section .gallery-tag {
    font-size: 0.8rem;
    background: #f7c948;
    color: #444;
    padding: 5px;
}

.detail-page .gallery-section .gallery-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 18px;
    overflow-x: unset !important;
}

.detail-page .gallery-section .gallery-card {
    position: relative;
    width: calc(25% - 14px) !important;
    min-width: 180px;
    height: 200px;
    margin: 0;
    flex: 0 0 calc(25% - 14px) !important;
    box-sizing: border-box;
}

.detail-page .gallery-section .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-page .gallery-section .gallery-card-hover {
    position: relative;
}

.detail-page .gallery-section .gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.detail-page .gallery-section .gallery-hover-title {
    padding: 0 10px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.detail-page .gallery-section .gallery-hover-desc {
    padding: 0 10px;
    font-size: 0.8rem;
    color: #fff;
    margin-bottom: 16px;
}

.detail-page .gallery-section .gallery-hover-btn {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 150px;
    padding: 10px;
    background: #f39c12;
    color: #fff;
    border: none;
    font-size: 0.8rem;
    cursor: pointer;
}

.detail-page .gallery-section .gallery-card-hover:hover .gallery-hover-overlay {
    opacity: 1;
}

@media (max-width: 991px) {
    .detail-page .gallery-section .gallery-card {
        width: calc(50% - 12px) !important;
        flex: 0 0 calc(50% - 12px) !important;
    }
}

@media (max-width: 768px) {
    .detail-page .gallery-section .gallery-row {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
    }

    .detail-page .gallery-section .gallery-card {
        width: 80vw !important;
        min-width: 240px;
        max-width: 90vw;
        flex: 0 0 auto !important;
        margin-bottom: 0;
    }
}

/* 相关产品与服务卡片组件 */
.detail-page .related-section {
    padding: 40px 0;
    background: #f5f5f5;
}

.detail-page .related-section .related-title {
    font-size: 2rem;
    font-weight: bold;
    color: #444;
    margin-bottom: 30px;
}

.detail-page .related-section .related-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.detail-page .related-section .related-card {
    position: relative;
    width: calc(25% - 14px);
    min-width: 180px;
    height: 260px;
    flex: 0 0 calc(25% - 14px);
    box-sizing: border-box;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.detail-page .related-section .related-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.detail-page .related-section .related-img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-page .related-section .related-img-wrap img {
    width: 100%;
    object-fit: contain;
}

.detail-page .related-section .related-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 18px 16px 12px 16px;
    min-height: 30%;
    box-sizing: border-box;
    transition: background 0.2s;
}

.detail-page .related-section .related-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: #3b4a54;
    transition: transform 0.4s cubic-bezier(.4, 1.5, .5, 1), color 0.2s;
}

.detail-page .related-section .related-desc {
    font-size: 0.7rem;
    color: #7f8c8d;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s, max-height 0.4s;
}

.detail-page .related-section .related-more {
    font-size: 0.8rem;
    margin-top: 8px;
}

.detail-page .related-section .related-card:hover .related-name {
    transform: translateY(-18px);
    color: #f39c12;
}

.detail-page .related-section .related-card:hover .related-desc {
    opacity: 1;
    max-height: 60px;
}

.detail-page .related-section .related-card {
    cursor: pointer;
}

/* 手机端描述常显，无动画 */
@media (max-width: 768px) {
    .detail-page .related-section .related-row {
        flex-direction: column;
        gap: 16px;
    }

    .detail-page .related-section .related-card {
        width: 100% !important;
        min-width: 0;
        max-width: 100%;
        height: 120px;
        margin-bottom: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        box-shadow: none;
        border-radius: 0;
        border: 1px solid #e0e0e0;
        background: #fff;
        overflow: hidden;
    }

    .detail-page .related-section .related-img-wrap {
        position: relative;
        width: 38%;
        height: 100%;
        min-width: 90px;
        max-width: 140px;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .detail-page .related-section .related-img-wrap img {
        max-width: 90%;
        max-height: 90%;
        object-fit: contain;
    }

    .detail-page .related-section .related-info {
        height: 110px;
        position: relative;
        flex: 1 1 0;
        background: #fff;
        padding: 6px;
        min-height: unset;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .detail-page .related-section .related-name {
        font-size: 1.1rem;
        font-weight: bold;
        color: #3b4a54;
        margin-bottom: 8px;
        transform: none !important;
    }

    .detail-page .related-section .related-desc {
        display: none;
    }

    .detail-page .related-section .related-more {
        opacity: 1 !important;
        max-height: 60px !important;
        transition: none;
        font-size: 0.8rem;
        margin-top: 0;
    }
}

.detail-page .specs-table tbody {
    display: table-row-group;
    max-height: 1000px;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(.4, 1.5, .5, 1);
}

.detail-page .specs-table tbody.collapsed {
    max-height: 0 !important;
    overflow: hidden;
    display: block;
}

.detail-page .unit-imperial {
    display: none;
}

.detail-page .specs-unit-switch .btn.active {
    background: #e0e0e0;
    color: #222;
}

/* press-room */

.press-room hr {
    /* 灰色 */
    border: 1px solid #e0e0e0;
    margin: 0;
    margin-bottom: 40px;
}

.press-room .pressroom-hr {
    margin-top: 90px;
    margin-bottom: 90px;
}

/* 手机端 */
@media (max-width: 768px) {
    .press-room hr {
        margin-bottom: 20px;
    }

    .press-room .pressroom-hr {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .press-room {
        margin-top: 130px;
    }
}

/* Tunnel Section */
.press-room .tunnel-section-two {
    margin-top: 3rem;
    padding: 2rem 0;
    background: #f8f9fa;
}

.press-room .tunnel-section-two .tunnel-image-container {
    position: relative;
}

.press-room .tunnel-section-two .tunnel-image {
    border-radius: 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
}

.press-room .tunnel-section-two .tunnel-content {
    padding: 2rem;
}

.press-room .tunnel-section-two .focus-badge {
    display: inline-block;
    margin-bottom: 1rem;
}

.press-room .tunnel-section-two .focus-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.press-room .tunnel-section-two .tunnel-title {
    font-weight: 700;
    color: #333333;
    margin-bottom: 2rem;
}

.press-room .tunnel-section-two .tunnel-description {
    color: #666666;
    font-size: 0.9rem;
    text-align: justify;
}

.press-room .tunnel-section-two .tunnel-guide-link {
    margin-top: 1.5rem;
}

.press-room .tunnel-section-two .download-link {
    color: #333333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border-bottom: 2px solid transparent;
}

.press-room .tunnel-section-two .download-link:hover {
    color: #333333;
    border-bottom: 2px solid #333333;
    text-decoration: none;
}

/* 卡片图片悬停效果 - 放大但不影响布局 */
.press-room .card-img-container {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    /* 图片容器鼠标指针变为手指 */
}

.press-room .card-img-container img {
    transition: transform 0.3s ease;
}

.press-room .card:hover .card-img-container img {
    transform: scale(1.1);
}

/* 加载更多按钮居中 */
#loadMoreContainer {
    text-align: center;
    margin-top: 20px;
}

/* 卡片标题指针样式 */
.press-room .card-title {
    cursor: pointer;
    /* 标题鼠标指针变为手指 */
    font-size: 0.9rem;
}

/* 视频链接样式 - 真正两端对齐 */
.press-room .video-link-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: auto;
    /* 确保在卡片底部 */
}

.press-room .video-link-text {
    text-decoration: none;
    font-size: 0.8rem;
}

.press-room .video-link-text:hover {
    text-decoration: underline;
}

.press-room .headline-big {
    font-size: 58px;
    line-height: 1;
    font-weight: bold;
    letter-spacing: -1px;
}

@media (max-width: 767.98px) {
    .press-room .headline-big {
        font-size: 30px;
    }

    .press-room .label-big {
        font-size: 20px;
    }

    .press-room .btn-light {
        font-size: 12px;
    }
}

.press-room .label-big {
    color: #ce000d;
    font-weight: bold;
    margin: 0;
    padding: 0;
    font-size: 28px;
    line-height: 1.1;
}

.press-room .video-link-arrow {
    font-size: 16px;
    opacity: 0;
    /* 默认隐藏箭头 */
    transition: opacity 0.3s ease;
    /* 过渡动画 */
}

.press-room .card:hover .video-link-arrow {
    opacity: 1;
    /* 卡片悬停时显示箭头 */
}

.press-room .filterVideos .card-title {
    font-weight: bold;
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.1;
}

.press-room .list-group-item {
    border: none;
    font-size: 0.8rem;
}

.press-room .active {
    color: black;
    font-size: 0.9rem;
    font-weight: 600
}

.press-room .btn-outline-secondary {
    font-size: 0.8rem;
}

.press-room .form-check-label {
    font-size: 0.8rem;
}

.press-room .list-group-item-action {
    /* 一行一个 */
    display: block;
    line-height: 2;
    font-size: 0.8rem;
}

@media (max-width: 767.98px) {
    .press-room .filter-text {
        line-height: 2.2;
    }

    .press-room .list-btn-group a {
        background: #f2f2f2;
        display: contents;
        padding: 6px 18px;
    }

    .press-room .list-btn-group {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        background: none;
        border: none;
        padding: 0 8px;
        justify-content: flex-start;
    }

    .press-room .list-btn-group a {
        display: inline-block;
        width: auto !important;
        /* 关键：覆盖Bootstrap的100%宽度 */
        min-width: 0 !important;
        max-width: 100%;
        background: #f2f2f2;
        color: #222 !important;
        border: none;
        border-radius: 20px;
        padding: 2px 10px;
        font-size: 13px;
        margin: 0;
        box-shadow: none;
        transition: background 0.2s, color 0.2s;
        text-align: center;
        white-space: nowrap;
        /* 让按钮内容不自动换行 */
        flex-shrink: 0;
        /* 防止被压缩 */
    }

    .press-room .list-btn-group-item.active,
    .press-room .list-btn-group-item:active {
        background: #000;
    }

    .press-room .filter-btn-group {
        justify-content: space-around !important;
    }
}

/* 这部分是卡片新闻的模板 */
.press-room .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.press-room .page-title {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin: 40px 0;
}

.press-room .section-title {
    color: #888;
    font-weight: bold;
    margin: 0;
    padding: 0;
    font-size: 22px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.press-room .news-item {
    display: flex;
    background: white;
    margin-bottom: 0;
    min-height: 300px;
}

.press-room .news-image {
    width: 50%;
    position: relative;
}

.press-room .news-image img {
    width: 100%;
    height: 100%;
    display: block;
}


.press-room .news-content {
    width: 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #e9ecef;
}

.press-room .news-title {
    font-size: 36px;
    font-weight: normal;
    color: #333;
    line-height: 1.2;
    margin-bottom: 40px;
}

.press-room .news-category {
    color: rgb(0, 0, 0);
    padding: 8px 16px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.press-room .news-category i {
    color: rgb(0, 0, 0);
}

.press-room .news-item:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 2;
    /* 过度动画 */
    transition: box-shadow 0.6s ease;
}

@media (max-width: 768px) {
    .press-room .news-item {
        flex-direction: column;
        height: auto;
    }

    .press-room .news-image,
    .press-room .news-content {
        width: 100%;
    }

    .press-room .news-image {
        position: relative;
        overflow: hidden;
    }

    .press-room .news-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .press-room .news-content {
        padding: 30px;
        position: relative;
        z-index: 1;
        background: white;
    }

    .press-room .news-title {
        font-size: 24px;
    }

    .press-room .page-title {
        font-size: 32px;
    }
}

.press-room .list-group-item {
    border: none;
}

.press-room .active {
    color: black;
    background-color: #fff;
    font-size: 1.2rem;
    font-weight: 600
}

/* 筛选按钮样式 */
.press-room .filter-text {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.press-room .filter-btn-group {
    border: none;
    background: none;
}

.press-room .filter-btn-group .btn {
    background: #e9ecef;
    border: none;
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 20px;
    margin: 0;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.press-room .filter-btn-group .btn:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.press-room .filter-btn-group .btn:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.press-room .filter-btn-group .btn.active {
    background: #333;
    color: white;
    font-weight: 600;
}

.press-room .filter-btn-group .btn:hover:not(.active) {
    background: #d1d5db;
    color: #333;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .press-room .filter-text {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .press-room .filter-btn-group {
        width: 100%;
        justify-content: center;
    }

    .press-room .filter-btn-group .btn {
        flex: 1;
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* products */
/* 加载状态样式 */
.products-page .loading-spinner {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.products-page .loading-spinner.active {
    display: block;
}

.products-page .load-more-section {
    transition: opacity 0.3s;
}

.products-page .load-more-section.disabled {
    opacity: 0.6;
    pointer-events: none;
}

/* Products Page Styles */

/* 左侧筛选器样式 */
.products-page .filter-sidebar {
    background-color: #f8f9fa;
    height: 100%;
    padding: 2rem 1.5rem;
    border-right: 1px solid #e9ecef;
}

.products-page .filter-section {
    margin-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1.5rem;
}

.products-page .filter-section:last-child {
    border-bottom: none;
}

.products-page .filter-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.products-page .filter-header:hover {
    color: var(--indeco-red);
}


.products-page .filter-title {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
    color: #333;
    font-family: 'MyriadPro', Arial, sans-serif;
}

.products-page .filter-header i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    color: #666;
}

.products-page .filter-header[aria-expanded="false"] i {
    transform: rotate(-90deg);
}

.products-page .filter-options {
    padding-top: 1rem;
}

.products-page .form-check {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
}

.products-page .form-check-input {
    margin-top: 0.25rem;
    margin-left: -1.75rem;
    border: 2px solid #ccc;
    border-radius: 3px;
}

.products-page .form-check-input:checked {
    background-color: var(--indeco-red);
    border-color: var(--indeco-red);
}

.products-page .form-check-label {
    font-size: 0.875rem;
    color: #555;
    cursor: pointer;
    line-height: 1.4;
}

.products-page .count {
    color: #888;
    font-size: 0.8rem;
}

/* 自定义范围输入框样式 */
.products-page .custom-range-check {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e9ecef;
}

.products-page .custom-range-inputs {
    margin-top: 0.5rem;
    padding: 1rem;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.products-page .custom-range-inputs .form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0.25rem;
}

.products-page .custom-range-inputs .form-control {
    font-size: 0.875rem;
    border-color: #ddd;
    border-radius: 4px;
}

.products-page .custom-range-inputs .form-control:focus {
    border-color: var(--indeco-red);
    box-shadow: 0 0 0 0.2rem rgba(196, 30, 58, 0.25);
}

/* 右侧产品区域样式 */
.products-page .products-content {
    padding: 2rem;
    min-height: 100vh;
    background-color: #fff;
}

.products-page .products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.products-page .products-count {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.products-page .products-count span {
    font-weight: 700;
    color: #333;
}

/* 手机端样式 */
@media (max-width: 767.98px) {
    .products-count {
        display: none;
    }
}


.products-page .toolbar-controls {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.products-page .unit-selector {
    display: flex;
    gap: 0;
}

.products-page .unit-selector .btn {
    border-radius: 0;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.products-page .unit-selector .btn:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.products-page .unit-selector .btn:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.products-page .unit-selector .btn.active {
    background-color: var(--indeco-red);
    border-color: var(--indeco-red);
    color: white;
}

.products-page .sort-dropdown .form-select {
    min-width: 180px;
    font-size: 0.875rem;
    border-color: #ccc;
}

/* 产品网格样式 */
.products-page .products-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.products-page .product-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 0rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.products-page .product-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.products-page .product-title {
    margin: 0 0 0.75rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'MyriadPro', Arial, sans-serif;
}

.products-page .product-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.products-page .product-link:hover {
    color: var(--indeco-red);
    text-decoration: underline;
}

.products-page .product-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.products-page .product-specs {
    margin-bottom: 1rem;
}

.products-page .spec-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #555;
}

.products-page .spec-label {
    font-weight: 600;
    color: #333;
    margin-right: 0.25rem;
}

.products-page .spec-item sup {
    color: var(--indeco-red);
    margin: 0 0.25rem;
}

.products-page .product-actions {
    margin-top: 1rem;
}

/* 完整规格显示样式 */
.products-page .complete-specs {
    margin: 1rem 0;
}

.products-page .complete-specs .spec-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #555;
    line-height: 1.5;
}

.products-page .complete-specs .spec-label {
    font-weight: 600;
    color: #333;
    margin-right: 0.25rem;
}

.products-page .complete-specs .spec-item sup {
    color: var(--indeco-red);
    margin: 0 0.25rem;
    font-size: 0.7rem;
}

.products-page .product-actions-extended {
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.products-page .product-actions-extended .btn {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

.products-page .show-more {
    font-size: 0.875rem;
    color: var(--indeco-red);
    text-decoration: none;
    padding: 0;
    border: none;
    background: none;
    font-weight: 500;
}

.products-page .show-more:hover {
    text-decoration: underline;
    color: var(--indeco-red);
}

.products-page .show-more i {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.products-page .show-more.expanded i {
    transform: rotate(180deg);
}


.products-page .product-info {
    padding: 30px;
}

/* 手机端 */
@media (max-width: 768px) {
    .products-page .product-info {
        padding: 10px;
    }
}

.products-page .product-image img {
    max-width: 100%;
    height: 100%;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.products-page .load-more-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

/* 响应式设计 */
@media (max-width: 991.98px) {
    .products-page .filter-sidebar {
        min-height: auto;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .products-page .products-content {
        padding: 1.5rem;
    }

    .products-page .products-toolbar {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .products-page .toolbar-controls {
        justify-content: space-between;
        gap: 1rem;
    }

    .products-page .unit-selector {
        flex: 1;
    }

    .products-page .unit-selector .btn {
        flex: 1;
    }

    /* 手机端筛选器默认折叠 */
    .products-page .filter-section .collapse.show {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .products-page .product-card .row {
        flex-direction: column;
    }

    .products-page .product-image {
        margin-bottom: 1.5rem;
    }

    .products-page .toolbar-controls {
        flex-direction: column;
        gap: 1rem;
    }

    .products-page .sort-dropdown .form-select {
        min-width: 100%;
    }

    .products-page .filter-sidebar {
        padding: 1rem;
    }

    .products-page .products-content {
        padding: 1rem;
    }
}

/* 加载动画 */
.products-page .loading {
    opacity: 0.7;
    pointer-events: none;
}

.products-page .loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--indeco-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 自定义复选框样式 */
.products-page .form-check-input[type="checkbox"] {
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 0.25rem;
    transition: all 0.15s ease-in-out;
}

.products-page .form-check-input[type="checkbox"]:focus {
    border-color: var(--indeco-red);
    box-shadow: 0 0 0 0.2rem rgba(196, 30, 58, 0.25);
}

.products-page .filter-tags {
    border-radius: 6px;
}

.products-page .filter-tag {
    background: #4bb3c1;
    color: #ffffff !important;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.products-page .filter-tag .btn-close {
    filter: invert(1);
    opacity: 0.7;
    margin-left: 0.5rem;
}

.products-page .filter-tag .btn-close:hover {
    opacity: 1;
}

.products-page .filter-tag:last-child {
    background: #5a6163;
    color: #ffffff;
    letter-spacing: 1px;
}

/* 变量定义 */
:root {
    --indeco-red: #c41e3a;
    --dark-gray: #333;
    --light-gray: #666;
    --border-color: #e9ecef;
    --background-light: #f8f9fa;
}

.products-page .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-page .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

    /* ---------------------------- */
  /* 轮播图容器样式 */


 /* 轮播图容器样式 */
    .products-page .banner-section .banner-swiper {
        width: 100%;
        height: 500px;
        position: relative;
        overflow: hidden;
    }

    .products-page {
        max-width: 1920px;
        margin: 0 auto;

    }

    /* 大于992px */
    @media (min-width: 992px) {
        .products-page .banner-section .banner-swiper {
            height: 800px;
        }
    }

    /* 轮播图滑动项样式 */
    .products-page .banner-section .swiper-slide {
        position: relative;
        width: 100%;
        height: 100%;
    }

    /* 滑动内容容器 */
    .products-page .banner-section .slide-content {
        position: relative;
        width: 100%;
        height: 100%;
    }

    /* 轮播图片样式 */
    .products-page .banner-section .slide-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }



    /* 覆盖层样式 */
    .products-page .banner-section .slide-overlay {
        position: absolute;
        top: 50%;
        width: 40%;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem;
    }


    /* 大于992px */
    @media (min-width: 992px) {
        .products-page .banner-section .slide-overlay {
            padding: 6rem;
        }
    }

    /* 小三角效果 */
    .products-page .banner-section .slide-overlay::before {
        content: '';
        position: absolute;
        left: -17px;
        top: 20%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-top: 22px solid transparent;
        border-bottom: 22px solid transparent;
        z-index: 5;
    }

    /* 覆盖层内容样式 */
    .products-page .banner-section .overlay-content {
        color: white;
        max-width: 100%;
    }

    /* 覆盖层标题样式 */
    .products-page .banner-section .overlay-title {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }

    /* 覆盖层描述样式 */
    .products-page .banner-section .overlay-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

    /* 覆盖层按钮样式 */
    .products-page .banner-section .overlay-btn {
        padding: 12px 30px;
        font-size: 1rem;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
    }



    /* 分页器样式 */
    .products-page .banner-section .swiper-pagination {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    .products-page .banner-section .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        margin: 0 5px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .products-page .banner-section .swiper-pagination-bullet-active {
        background: #f7c948;
        transform: scale(1.2);
    }

    /* 响应式设计 */
    @media (max-width: 768px) {
        .products-page .banner-section .banner-swiper {
            height: auto;
            min-height: 600px;
            background: #f7c948 !important;
        }

        .products-page .banner-section .slide-content {
            display: flex;
            flex-direction: column;
            height: auto;
        }

        .products-page .banner-section .slide-image {
            height: 300px;
            order: 1;
        }

        .products-page .banner-section .slide-overlay {
            position: relative;
            width: 100%;
            background: rgba(0, 0, 0, 0);
            border-radius: 0;
            margin: 0;
            order: 2;
            transform: none;
            top: auto;
            right: auto;
        }

        /* 移动端隐藏小三角 */
        .products-page .banner-section .slide-overlay::before {
            display: none;
        }

        .products-page .banner-section .overlay-title {
            font-size: 1.5rem;
        }

        .products-page .banner-section .overlay-description {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 480px) {
        .products-page .banner-section .banner-swiper {
            min-height: 500px;
        }

        .products-page .banner-section .slide-image {
            height: 250px;
        }

        .products-page .banner-section .overlay-title {
            font-size: 1.2rem;
        }

        .products-page .banner-section .overlay-description {
            font-size: 0.8rem;
            margin-bottom: 1.5rem;
        }

        .products-page .banner-section .overlay-btn {
            padding: 10px 25px;
            font-size: 0.9rem;
        }
    }

    /* 特性卡片样式 */
    .products-page .banner-section .features-banner {
        padding: 4rem 0;
        background: #f8f9fa;
    }

    .products-page .banner-section .feature-card {
        background: white;
        border-radius: 10px;
        padding: 2rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        height: 100%;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .products-page .banner-section .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    }

    .products-page .banner-section .card-icon {
        margin-bottom: 1.5rem;
    }

    .products-page .banner-section .card-icon i {
        font-size: 1.5rem;
        color: #f7c948;
    }

    .products-page .banner-section .card-title {
        font-size: 1.5rem;
        font-weight: bold;
        color: #333;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .products-page .banner-section .card-description {
        font-size: 1rem;
        color: #666;
        line-height: 1.6;
        margin: 0;
    }

    /* 响应式设计 */
    @media (max-width: 768px) {
        .products-page .banner-section .features-banner {
            padding: 3rem 0;
        }

        .products-page .banner-section .feature-card {
            padding: 1.5rem;
        }

        .products-page .banner-section .card-title {
            font-size: 1.3rem;
        }

        .products-page .banner-section .card-description {
            font-size: 0.95rem;
        }
    }

    @media (max-width: 480px) {
        .products-page .banner-section .features-banner {
            padding: 2rem 0;
        }

        .products-page .banner-section .feature-card {
            padding: 1.25rem;
        }

        .products-page .banner-section .card-title {
            font-size: 1.2rem;
        }

        .products-page .banner-section .card-description {
            font-size: 0.9rem;
        }
    }

    .products-page .banner-section .history-title {
        font-size: 2rem;
        font-weight: bold;
        color: #333;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    /* ---------------------------- */

    /* 三栏横排/竖排组件样式 */
    .products-page .related-products-section * {
        cursor: pointer;
    }

    .products-page .related-products-section {
        padding: 18px 0 18px 0;
        background: #f5f5f5;
    }

    .products-page .related-products-section .triple-row {
        min-height: 320px;
    }

    .products-page .related-products-section .triple-img-panel {
        position: relative;
        height: 100%;
        min-height: 320px;
        width: 100%;
        overflow: hidden;
        display: flex;
        align-items: flex-end;
    }

    .products-page .related-products-section .triple-img-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        z-index: 1;
    }

    .products-page .related-products-section .triple-img-overlay {
        position: relative;
        z-index: 2;
        width: 100%;
        font-size: 1.6rem;
        font-weight: bold;
        padding: 18px 24px;
        letter-spacing: 1px;
    }

    .products-page .related-products-section .triple-blue-panel {
        height: 100%;
        min-height: 320px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 0 32px;
    }

    .products-page .related-products-section .triple-blue-title {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 12px;
    }

    .products-page .related-products-section .triple-blue-desc {
        font-size: 1.1rem;
        font-style: italic;
    }

    .products-page .related-products-section .triple-yellow-panel {
        height: 100%;
        min-height: 320px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 0 32px;
    }

    .products-page .related-products-section .triple-yellow-title {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 12px;
    }

    .products-page .related-products-section .triple-yellow-desc {
        font-size: 1.1rem;
        color: #7f8c8d;
        font-style: italic;
    }

    @media (max-width: 991px) {

        .products-page .triple-blue-panel,
        .products-page .triple-yellow-panel {
            padding: 0 16px;
        }
    }

    @media (max-width: 768px) {
        .products-page .related-products-section .triple-row {
            flex-direction: column !important;
        }

        .products-page .related-products-section .triple-img-panel,
        .products-page .related-products-section .triple-blue-panel,
        .products-page .related-products-section .triple-yellow-panel {
            min-height: 180px;
            height: auto;
        }

        .products-page .related-products-section .triple-img-overlay {
            font-size: 1.1rem;
            padding: 10px 14px;
        }

        .products-page .related-products-section .triple-blue-title,
        .products-page .related-products-section .triple-yellow-title {
            font-size: 1.2rem;
        }

        .products-page .related-products-section .triple-blue-desc,
        .products-page .related-products-section .triple-yellow-desc {
            font-size: 0.98rem;
        }
    }
    .products-page .banner-section .overlay-btn:hover {
        transform: translateY(-2px);
    }


    
    
    
     /* ---------------------------- */



/* sales-nertwork */
.sales-network .breadcrumb-nav {
    background: white;
    padding: 15px 40px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.9rem;
}

.sales-network .breadcrumb-nav a {
    color: #666;
    text-decoration: none;
}

.sales-network .breadcrumb-nav a:hover {
    color: #333;
}

.sales-network .page-header {
    background: white;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.sales-network .page-title {
    font-size: 3rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.sales-network .contact-us-btn {
    background: #333;
    color: white;
    padding: 12px 24px;
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.sales-network .contact-us-btn:hover {
    background: #555;
}

.sales-network .main-content {
    display: flex;
    min-height: calc(100vh - 200px);
}

.sales-network .sidebar {
    width: 350px;
    background: white;
    padding: 30px;
}

.sales-network .search-box {
    position: relative;
    margin-bottom: 30px;
}

.sales-network .search-input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

.sales-network .search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
}

.sales-network .filter-section {
    margin-bottom: 30px;
}

.sales-network .filter-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    font-size: 1rem;
}

.sales-network .filter-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    background: white;
    margin-bottom: 15px;
}

.sales-network .dealer-list {
    max-height: 500px;
    overflow-y: auto;
}

.sales-network .dealer-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    position: relative;
}

.sales-network .dealer-item.headquarters {
    background: #e8f4f8;
}

.sales-network .dealer-item.selected {
    border: 2px solid #007bff;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
}

.sales-network .dealer-item:hover {
    cursor: pointer;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sales-network .dealer-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.sales-network .badge-headquarters {
    background: #dc3545;
    color: white;
}

.sales-network .badge-subsidiary {
    background: #fd7e14;
    color: white;
}

.sales-network .dealer-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 1rem;
    padding-right: 80px;
}

.sales-network .dealer-location {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
}

.sales-network .map-container {
    flex: 1;
    position: relative;
    background: #e0e0e0;
}

.sales-network .map-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.sales-network .map-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.sales-network .map-control-btn {
    background: white;
    border: 1px solid #ccc;
    padding: 8px;
    margin-left: 5px;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sales-network .map-control-btn:hover {
    background: #f0f0f0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .sales-network .main-content {
        flex-direction: column;
    }

    .sales-network .sidebar {
        width: 100%;
    }

    .sales-network .page-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .sales-network .page-title {
        font-size: 2rem;
    }

    .sales-network .map-container {
        height: 400px;
    }
}

.pt-9 {
    padding-top: 4rem;
}

.pt-10 {
    padding-top: 8rem;
}

/* 加载状态样式 */
.products-page .loading-spinner {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.products-page .loading-spinner.active {
    display: block;
}

.products-page .load-more-section {
    transition: opacity 0.3s;
}

.products-page .load-more-section.disabled {
    opacity: 0.6;
    pointer-events: none;
}

/* 筛选器箭头动画 */
.filter-header i {
    transition: transform 0.3s ease;
}

.filter-header[aria-expanded="true"] i {
    transform: rotate(180deg);
}

/* 默认都关闭 */
.filter-content {
    display: none;
}

/* PC端默认展开 */
@media (min-width: 992px) {
    .filter-content {
        display: block;
    }
}

/* ===== 新闻详情页样式 ===== */
.news-detail-page {
    padding-top: 70px;
    min-height: 100vh;
}

.news-detail-page .news-content iframe {
    width: 100%;
    height: 800px;
}

.news-detail-page .news-content video {
    width: 100%;
    height: 800px;
}

.news-detail-page .news-content img {
    /* 居中 */
    display: block;
    width: auto;
    margin: 0 auto;
    height: auto;
}

/* 手机端 */
@media (max-width: 768px) {
    .news-detail-page .news-content iframe {
        height: 400px;
    }

    .news-detail-page .news-content video {
        height: 400px;
    }
}

/* 面包屑导航 */
.breadcrumb-nav {
    margin-bottom: 2rem;
}

/* 手机端 */

@media (max-width: 768px) {
    .breadcrumb-nav {
        display: flex !important;
        flex-direction: column;
    }
}

.breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 0.5rem;
}

.breadcrumb-link {
    color: #333;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.breadcrumb-link:hover {
    color: #007bff;
}

.news-meta {
    font-size: 0.85rem;
    color: #666;
}

.news-category {
    color: #333;
    font-weight: 500;
}

.news-separator {
    margin: 0 8px;
    color: #ccc;
}

.news-date {
    color: #666;
}

/* 新闻文章 */
.news-article {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 主图 */
.news-hero-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.news-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 文章标题和日期 */
.news-header {
    padding: 2rem 2rem 1rem;
}

.news-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.news-date-published {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* 文章内容 */
.news-content {
    padding: 0 2rem 2rem;
    line-height: 1.7;
    color: #444;
}

.news-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* FancyBox 图片幻灯片效果 */
.news-content .gallery-image {
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
    margin: 10px;
    display: block;
}

.news-content .gallery-image:hover {
    opacity: 0.8;
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 为包装的链接添加相对定位 */
.news-content a[data-fancybox] {
    position: relative;
    display: inline-block;
    margin: 10px;
}

/* 放大镜图标效果 */
.news-content a[data-fancybox]::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    z-index: 10;
}

.news-content a[data-fancybox]:hover::after {
    opacity: 1;
}

.news-quote {
    background: #f8f9fa;
    border-left: 4px solid #007bff;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
    border-radius: 0 4px 4px 0;
}

/* 电脑端992 */
@media (min-width: 992px) {
    .job-application-page .container-fluid {
        padding: 0 40px !important;
    }

    .job-application-page .job-application-page-box {
        padding: 60px;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .news-detail-page {
        padding-top: 50px;
    }

    .news-title {
        font-size: 1.8rem;
    }

    .news-header,
    .news-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .news-hero-image {
        height: 250px;
    }
}

/* ===== 新闻详情页样式结束 ===== */


/* ===== 求职申请页面样式 ===== */
.job-application-page {
    padding-top: 60px;
    background-color: #f8f9fa;
    min-height: 100vh;
}

/* 页面标题 */
.job-application-page .page-header {
    margin-bottom: 2rem;
}

.job-application-page .page-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.job-application-page .page-subtitle {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.job-application-page .back-btn {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    border-radius: 0 !important;
}

/* 电脑端布局 */
@media (min-width: 769px) {
    .job-application-page .header-content {
        flex-direction: row-reverse !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
    }

    .job-application-page .back-btn {
        order: unset !important;
        margin-bottom: 0 !important;
    }

    .job-application-page .title-content {
        order: unset !important;
        flex: 1;
    }
}

/* 表单样式 */
.job-application-page .job-application-form {
    overflow: hidden;
}

.job-application-page .form-section {
    padding: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.job-application-page .form-section:last-child {
    border-bottom: none;
}

.job-application-page .title-form {
    margin: 80px 0 20px;
    padding: 0 0 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 22px;
    line-height: 1;
    font-weight: bold;
    color: #161616;
    letter-spacing: 0;
    text-transform: uppercase;
}

.job-application-page .section-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #888;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-application-page .section-title i {
    color: #666;
}

/* 表单控件 */
.job-application-page .form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.job-application-page .form-label.required::after {
    content: " *";
    color: #dc3545;
}

.job-application-page .form-control,
.job-application-page .form-select {
    border: 1px solid #ddd;
    border-radius: 0px;
    padding: 0.75rem;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.job-application-page .form-control:focus,
.job-application-page .form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* 表单行布局 */
.job-application-page .form-row {
    margin-bottom: 1rem;
}

/* 电脑端：label在左边，输入框在右边 */
@media (min-width: 992px) {

    .py-4job-application-page-box {
        padding: 40px;
    }

    .job-application-page .form-row .form-label {
        text-align: right;
        padding-right: 1rem;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        height: 100%;
    }

    .job-application-page .form-row .row.align-items-start .form-label {
        align-items: flex-start;
        padding-top: 0.75rem;
    }
}

/* 手机端：label在上面，输入框在下面 */
@media (max-width: 991.98px) {
    .job-application-page .title-form {
        margin: 40px 0 20px;
    }

    .back-btn-job-application {
        background-color: #fff;
        color: #6b6b6b;
        border: 0;
        margin: 0;
    }

    .job-application-page {
        padding-top: 20px !important;
    }

    .job-application-page .form-row .row {
        flex-direction: column;
    }

    .job-application-page .form-row .col-lg-3,
    .job-application-page .form-row .col-lg-9 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .job-application-page .form-row .form-label {
        margin-bottom: 0.5rem;
        text-align: left;
    }

    .job-application-page .file-upload-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .job-application-page .file-browse-btn {
        align-self: flex-start;
    }
}

/* 电话号码输入 */
.job-application-page .input-group-text {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-right: none;
    padding: 0.75rem;
}

.job-application-page .input-group .form-control {
    border-left: none;
}



/* 文件上传 */
.job-application-page .file-upload-container {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.job-application-page .file-upload-display {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    background: #fff;
    color: #666;
    font-size: 0.95rem;
    cursor: pointer;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.job-application-page .file-upload-display:hover {
    border-color: #007bff;
    background-color: #f8f9fa;
}

.job-application-page .file-browse-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    border-radius: 0px;
}

.job-application-page .file-status {
    color: #666;
}

/* 隐私声明 */
.job-application-page .privacy-notice {
    margin-top: 2rem;
    text-align: center;
}

.job-application-page .privacy-notice .form-check {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.job-application-page .privacy-notice .form-check-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

.job-application-page .privacy-link {
    color: #007bff;
    text-decoration: none;
}

.job-application-page .privacy-link:hover {
    text-decoration: underline;
}

/* 提交按钮 */
.job-application-page .submit-btn {
    padding: 0.75rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0px;
}

.job-application-page .submit-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .job-application-page .job-application-page {
        padding-top: 100px;
    }

    .job-application-page .page-header {
        margin-bottom: 1.5rem;
    }

    .job-application-page .page-header .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .job-application-page .page-title {
        font-size: 2rem;
    }

    .job-application-page .back-btn {
        align-self: flex-start;
        order: 1;
        margin-bottom: 1rem;
    }

    .job-application-page .title-content {
        order: 2;
    }

    .job-application-page .form-section {
        padding: 1.5rem;
    }

    .job-application-page .upload-section {
        padding: 1.5rem;
    }

    .job-application-page .submit-btn {
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .job-application-page .page-title {
        font-size: 1.8rem;
    }

    .job-application-page .form-section {
        padding: 1rem;
    }
}

/* ===== 求职申请页面样式结束 ===== */
/* SalesNetwork.html */

/* 基础样式调整 */
.sales-network-main {
    padding-top: 50px;
    padding-bottom: 100px;
}

.sales-network-main .sales-network-header {
    background-color: white;
    border-bottom: 1px solid #eee;
}

.sales-network-main .sales-network-title {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    font-family: Arial, sans-serif;
}

.sales-network-main .contact-us-button {
    background-color: #000;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sales-network-main .contact-us-button:hover {
    background-color: #333;
}

/* 主容器 - 仅使用flex布局 */

@media (min-width: 769px) {
    .sales-network-main .main-container {
        display: flex;
        flex: 1;
        overflow: hidden;
        max-height: 800px;
    }

}

/* 侧边栏样式 - 整体不滚动，仅列表滚动 */
.sales-network-main .sidebar {
    width: 100%;
    max-width: 320px;
    background-color: #fff;
    border-right: 1px solid #ddd;
    overflow: visible;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sales-network-main .sidebar-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sales-network-main .dealer-list {
    max-height: 400px;
}

/* 经销商列表容器 - 仅列表区域滚动 */
.sales-network-main .dealer-list-container {
    flex: 1;
    overflow-y: auto;
    margin-top: 1rem;
    scrollbar-width: thin;
    scrollbar-color: #ddd #f8f9fa;
}

.sales-network-main .dealer-list-container::-webkit-scrollbar {
    width: 6px;
}

.sales-network-main .dealer-list-container::-webkit-scrollbar-track {
    background: #f8f9fa;
}

.sales-network-main .dealer-list-container::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 3px;
}

/* 筛选区域样式 */
.sales-network-main .filter-group {
    margin-bottom: 1.5rem;
}

.sales-network-main .filter-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #495057;
}

.sales-network-main .search-box {
    display: flex;
    margin-bottom: 1.5rem;
    position: relative;
}

.sales-network-main .search-box input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    background-color: white;
    color: #333;
}

.sales-network-main .search-box input:focus {
    outline: none;
    border-color: #ccc;
    box-shadow: none;
}

.sales-network-main .search-box input::placeholder {
    color: #999;
}

.sales-network-main .search-box .search-icon {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    pointer-events: none;
}

/* 经销商列表样式 */
.sales-network-main .dealer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sales-network-main .dealer-item {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    transition: background-color 0.2s ease;
    background-color: #fff;
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

.sales-network-main .dealer-item:hover {
    background-color: #f8f9fa;
}

.sales-network-main .dealer-item.active {
    background-color: #e9ecef;
}

.sales-network-main .dealer-icon {
    width: 24px;
    height: 24px;
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.sales-network-main .dealer-info {
    flex-grow: 1;
}

.sales-network-main .dealer-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.sales-network-main .dealer-name {
    font-weight: 600;
    font-size: 1rem;
    color: #000;
    margin: 0;
    margin-right: 0.5rem;
}

.sales-network-main .dealer-wrench {
    color: #6c757d;
    font-size: 0.875rem;
    margin-left: auto;
}

.sales-network-main .dealer-type {
    display: inline-block;
    background-color: #dc3545;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.sales-network-main .dealer-location {
    font-size: 0.875rem;
    color: #000;
    margin-bottom: 0.25rem;
}

.sales-network-main .dealer-address {
    font-size: 0.8rem;
    color: #6c757d;
    line-height: 1.4;
}

/* 地图容器样式 */
.sales-network-main .map-container {
    flex: 1;
    position: relative;
}

.sales-network-main #map {
    width: 100%;
    height: 100%;
}

/* 地图控制按钮 */
.sales-network-main .map-controls {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 30;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sales-network-main .map-control-btn {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.sales-network-main .map-control-btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

/* 响应式设计 - 完全使用flex解决遮挡问题 */
@media (max-width: 768px) {
    .sales-network-main {
        margin-top: 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .sales-network-main .sales-network-header {
        padding: 1rem 0;
        flex-shrink: 0;
        /* 固定头部高度 */
    }



    .sales-network-main .sidebar {
        max-width: none;
        border-right: none;
        border-bottom: 1px solid #ddd;
        /* height: 300px; */
        min-height: 300px;
        overflow: hidden;
        flex-shrink: 0;
        background-color: #fff;
        z-index: 20;
        position: relative;
        order: 1;
    }

    .sales-network-main .sidebar-body {
        height: 100%;
        padding: 1rem;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .sales-network-main .search-box {
        flex-shrink: 0;
        margin-bottom: 0.75rem;
    }

    .sales-network-main .search-box input {
        padding: 0.6rem 2rem 0.6rem 0.75rem;
        font-size: 0.85rem;
    }

    .sales-network-main .search-box .search-icon {
        right: 0.6rem;
        font-size: 0.85rem;
    }

    .sales-network-main .filter-group {
        flex-shrink: 0;
        margin-bottom: 0.5rem;
    }

    .sales-network-main .filter-label {
        font-size: 0.875rem;
        margin-bottom: 0.25rem;
    }

    .sales-network-main .dealer-list-container {
        flex: 1;
        overflow-y: auto;
        min-height: 0;
        margin-top: 0.5rem;
        background-color: #fff;
        border: 1px solid #e9ecef;
        border-radius: 4px;
        padding: 0.5rem;
    }

    .sales-network-main .dealer-item {
        padding: 0.75rem;
        background-color: #fff;
    }

    .sales-network-main .dealer-name {
        font-size: 0.9rem;
    }

    .sales-network-main .dealer-type {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }

    .sales-network-main .dealer-location {
        font-size: 0.8rem;
    }

    .sales-network-main .dealer-address {
        font-size: 0.75rem;
    }

    .sales-network-main .map-container {
        height: 350px;
        min-height: 350px;
        width: 100%;
        flex-shrink: 0;
        position: relative;
        background-color: #f8f9fa;
        border: 1px solid #ddd;
        z-index: 10;
        order: 2;
    }

    .sales-network-main #map {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
}

/* SalesNetwork.html */

/* contact.html */
.contact-page .contact-container {
    max-width: 100%;
    margin: 0;
    background: white;
    min-height: 100vh;
}

.contact-page .form-section .formbox {
    padding: 30px;
}

/* 手机端 */
@media (max-width: 768px) {
    .contact-page .form-section {
        padding: 10px !important;
    }

    .contact-page .form-section .formbox {
        padding: 20px;
    }
}

.contact-page .contact-header {
    background: white;
    padding: 60px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.contact-page .contact-title {
    font-size: 3rem;
    color: #333;
    margin: 0;
    letter-spacing: -1px;
    font-weight: 800;
}

.contact-page .contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: right;
}

.contact-page .contact-details {
    text-align: right;
}

.contact-page .contact-phone {
    font-size: 1.5rem;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.contact-page .contact-phone:hover {
    color: #666;
    text-decoration: none;
}

.contact-page .contact-hours {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 8px;
}

.contact-page .contact-email {
    font-size: 0.85rem;
    color: #666;
    text-decoration: none;
    display: block;
}

.contact-page .contact-email:hover {
    color: #333;
    text-decoration: underline;
}

.contact-page .call-us-btn {
    background: #333;
    color: white;
    padding: 8px 16px;
    border: none;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    white-space: nowrap;
}

.contact-page .call-us-btn:hover {
    background: #555;
}

/* 手机端响应式样式 */
@media (max-width: 768px) {
    .contact-page .contact-header {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .contact-page .contact-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .contact-page .contact-info {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        text-align: center;
    }

    .contact-page .contact-details {
        text-align: center;
        width: 100%;
    }

    .contact-page .contact-phone {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .contact-page .contact-hours {
        margin-bottom: 8px;
    }

    .contact-page .contact-email {
        margin-bottom: 0;
    }

    .contact-page .call-us-btn {
        width: auto;
        padding: 10px 20px;
    }
}

.contact-page .form-section {
    background: #f0f0f0;
    padding: 30px 40px;
    margin: 0;
}

.contact-page .form-instruction {
    text-align: center;
    margin-bottom: 25px;
    color: #666;
    font-size: 0.9rem;
}

.contact-page .form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
    font-size: 0.85rem;
}

.contact-page .form-control,
.contact-page .form-select {
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 8px 10px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    background: white;
}

.contact-page .form-control:focus,
.contact-page .form-select:focus {
    border-color: #999;
    box-shadow: none;
    outline: none;
}

.contact-page .form-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.contact-page .privacy-check {
    flex: 1;
    margin-right: 20px;
}

.contact-page .btn-group {
    display: flex;
    gap: 8px;
}

.contact-page .btn-submit {
    background: #333;
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 3px;
    font-size: 0.85rem;
}

.contact-page .btn-submit:hover {
    background: #555;
}

.contact-page .btn-reset {
    background: transparent;
    border: 1px solid #666;
    color: #666;
    padding: 9px 25px;
    border-radius: 3px;
    font-size: 0.85rem;
}

.contact-page .btn-reset:hover {
    background: #666;
    color: white;
}

/* 手机端响应式 */
@media (max-width: 768px) {
    .contact-page .form-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-page .privacy-check {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .contact-page .btn-group {
        justify-content: center;
    }
}

.contact-page .headquarters-section {
    padding: 30px 40px;
    background: white;
}


.contact-page .headquarters-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 25px;
}

.contact-page .office-item {
    margin-bottom: 20px;
    padding: 0;
    background: transparent;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.contact-page .office-item:last-child {
    border-bottom: none;
}

.contact-page .office-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.contact-page .office-title-one {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.contact-page .office-address {
    color: #666;
    line-height: 1.4;
    margin-bottom: 0;
    font-size: 0.8rem;
}

/* 表单验证样式 */
.contact-page .is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.contact-page .invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #dc3545;
}

/* 加载动画 */
.contact-page .spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* 成功/错误消息样式 */
.contact-page .alert {
    margin-bottom: 1rem;
    border-radius: 0.375rem;
}

.contact-page .alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.contact-page .alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

/* contact.html */

/* company.html */
/* World Map Section */
.company-page .world-map-section {
    padding: 0;
    background: white;
}

.company-page .world-map-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
}

.company-page .world-map-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.company-page .world-map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://indeco.it/wp-content/uploads/2020/07/banner-indeco-world-v1-hover.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.company-page .world-map-container:hover::before {
    opacity: 1;
}

.company-page .world-map-container:hover .company-page .world-map-background {
    opacity: 0;
}

.company-page .world-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 1;
}

.company-page .world-map-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.company-page .map-marker {
    flex-shrink: 0;
}

.company-page .marker-icon {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.company-page .world-subtitle {
    color: #ce000d;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.company-page .world-title {
    color: white;
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.company-page .world-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
    height: 100%;
}

.company-page .vertical-line {
    width: 2px;
    height: 80px;
    background: white;
    opacity: 0.8;
}

.company-page .world-dealers-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.company-page .world-dealers-btn:hover {
    background: white;
    color: #333;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

@media (max-width: 576px) {
    .company-page .world-title {
        font-size: 1.8rem;
    }

    .company-page .world-action {
        align-items: center;
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .company-page .world-title {
        font-size: 1.6rem;
    }
}


/* 新的链接样式 */
.company-page .world-action p {
    margin: 0;
}

.company-page .world-dealers-link {
    display: inline-block;
    background: transparent;
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* 去掉按钮圆角 */
.company-page .no-border-radius {
    border-radius: 0 !important;
}


.company-page .timeline-wrapper {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.company-page .content-area {
    border-radius: 8px;
    margin-bottom: 30px;
    min-height: 200px;
    display: flex;
    align-items: center;
}

.company-page .content-left {
    flex: 1;
}

.company-page .content-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.company-page .year-badge {
    color: #dc3545;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.company-page .content-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.company-page .content-divider {
    width: 60px;
    height: 2px;
    background-color: #ddd;
    margin: 20px 0;
}

.company-page .event-year {
    color: #666;
    font-size: 1rem;
    margin-bottom: 5px;
}

.company-page .event-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.company-page .event-description {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.company-page .logo-container {
    text-align: center;
}

.company-page .company-logo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 3rem;
    color: white;
    font-weight: bold;
}

.company-page .logo-text {
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.company-page .timeline-navigation {
    position: relative;
    padding: 20px 0;
}

.company-page .timeline-container {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.company-page .nav-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #333;
    background-color: #333;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.company-page .nav-button:hover {
    background-color: #555;
    border-color: #555;
}

.company-page .nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.company-page .nav-button:disabled:hover {
    background-color: #333;
    border-color: #333;
}

.company-page .timeline-track {
    flex: 1;
    height: 80px;
    position: relative;
    overflow: hidden;
}

.company-page .timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #dee2e6;
    transform: translateY(-50%);
}

.company-page .timeline-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: #dc3545;
    transition: width 0.3s ease;
    width: 0;
}

.company-page .timeline-nodes {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    transition: transform 0.5s ease;
    /* width: 2000px;  */
}

.company-page .timeline-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    z-index: 5;
    width: 80px;
    margin-left: -40px;
    /* 居中对齐 */
    top: 50%;
    transform: translateY(-50%);
}

.company-page .timeline-node::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid #dc3545;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.company-page .timeline-node.active::before {
    background-color: #dc3545;
    transform: scale(1.2);
}

.company-page .timeline-node.completed::before {
    background-color: white;
    border-color: #dc3545;
}

.company-page .timeline-node.future::before {
    background-color: white;
    border-color: #dee2e6;
}

.company-page .timeline-node .year-text {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.company-page .timeline-node.active .year-text {
    color: #dc3545;
    font-weight: bold;
}

.company-page .timeline-node.completed .year-text {
    color: #333;
}

.company-page .timeline-node.future .year-text {
    color: #6c757d;
}

.company-page .timeline-node:hover .year-text {
    color: #dc3545;
}

/* 内容区域动画效果 */
.company-page .content-item {
    display: none;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease-in-out;
}

.company-page .content-item.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.company-page .content-item.slide-out-left {
    opacity: 0;
    transform: translateX(-50px);
}

.company-page .content-item.slide-out-right {
    opacity: 0;
    transform: translateX(50px);
}

.company-page .content-item.slide-in-left {
    opacity: 1;
    transform: translateX(0);
    animation: slideInFromLeft 0.5s ease-in-out;
}

.company-page .content-item.slide-in-right {
    opacity: 1;
    transform: translateX(0);
    animation: slideInFromRight 0.5s ease-in-out;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.company-page .timeline-image-container img {
    max-width: 500px;
    width: 100%;
}

/* 手机端 */
@media (max-width: 992px) {
    .company-page .contact-form-section .formbox {
        padding: 1rem !important;
    }

    .company-page .contact-form-section .reqbut {
        text-align: center !important;
    }

    .company-page .annual-content {
        flex-direction: column;
    }

    .company-page .timeline-wrapper {
        padding: 4px;
        border-radius: 8px;
        margin-bottom: 30px;
    }

    .company-page .content-title {
        font-size: 30px;
        line-height: 1;
        font-weight: bold;
        letter-spacing: -0.4px;
    }

    .company-page .event-title {
        margin: 0 0 8px;
        font-size: 20px;
        line-height: 1.2;
        font-weight: 600;
    }

    .company-page .event-description {
        font-size: 0.9rem;
    }
}


/* World Map Section */
.company-page .world-map-section {
    padding: 0;
    background: white;
}

.company-page .world-map-section .world-map-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
}

.company-page .world-map-section .world-map-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.company-page .world-map-section .world-map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://indeco.it/wp-content/uploads/2020/07/banner-indeco-world-v1-hover.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.company-page .world-map-section .world-map-container:hover::before {
    opacity: 1;
}

.company-page .world-map-section .world-map-container:hover .world-map-background {
    opacity: 0;
}

.company-page .world-map-section .world-map-container:hover .vertical-line {
    background-color: #000000 !important;
}

.company-page .world-map-section .world-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 1;
}

.company-page .world-map-section .world-map-overlay:hover .world-map-content * {
    color: #000000 !important;
}

.company-page .world-map-section .world-map-content:hover .vertical-line {
    background-color: #000000 !important;
}

.company-page .world-map-section .world-map-overlay:hover .world-dealers-link {
    color: #ce000d !important;
}

.company-page .world-map-section .world-map-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.company-page .world-map-section .map-marker {
    flex-shrink: 0;
}

.company-page .world-map-section .marker-icon {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.company-page .world-map-section .world-subtitle {
    color: var(--indeco-red);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.company-page .world-map-section .world-title {
    color: white;
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.company-page .world-map-section .world-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.company-page .world-map-section .vertical-line {
    width: 2px;
    height: 80px;
    background: white;
    opacity: 0.8;
}

.company-page .world-map-section .world-dealers-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.company-page .world-map-section .world-dealers-btn:hover {
    background: white;
    color: #333;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* 新的链接样式 */
.company-page .world-map-section .world-action p {
    margin: 0;
}

.company-page .world-map-section .world-dealers-link {
    display: inline-block;
    background: transparent;
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* 去掉按钮圆角 */
.company-page .world-map-section .no-border-radius {
    border-radius: 0 !important;
}

/* 手机端 */
@media (max-width: 768px) {
    .company-page .world-map-section .marker-icon {
        max-width: 60px;
    }

    .company-page .world-map-section .world-title {
        font-size: 1.6rem;
    }

    .company-page .world-map-section .world-dealers-link {
        padding: 0px;
    }

    .company-page .world-map-section .world-action {
        justify-content: center;
    }
}
















/* World Map Section */
.main-content .world-map-section {
    padding: 0;
    background: white;
}

.main-content .world-map-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
}

.main-content .world-map-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.main-content .world-map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://indeco.it/wp-content/uploads/2020/07/banner-indeco-world-v1-hover.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.main-content .world-map-container:hover::before {
    opacity: 1;
}

.main-content .world-map-container:hover .main-content .world-map-background {
    opacity: 0;
}

.main-content .world-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 1;
}

.main-content .world-map-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-content .map-marker {
    flex-shrink: 0;
}

.main-content .marker-icon {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.main-content .world-subtitle {
    color: #ce000d;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.main-content .world-title {
    color: white;
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.main-content .world-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
    height: 100%;
}

.main-content .vertical-line {
    width: 2px;
    height: 80px;
    background: white;
    opacity: 0.8;
}

.main-content .world-dealers-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.main-content .world-dealers-btn:hover {
    background: white;
    color: #333;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

@media (max-width: 576px) {
    .main-content .world-title {
        font-size: 1.8rem;
    }

    .main-content .world-action {
        align-items: center;
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .main-content .world-title {
        font-size: 1.6rem;
    }
}


/* 新的链接样式 */
.main-content .world-action p {
    margin: 0;
}

.main-content .world-dealers-link {
    display: inline-block;
    background: transparent;
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* 去掉按钮圆角 */
.main-content .no-border-radius {
    border-radius: 0 !important;
}


.main-content .timeline-wrapper {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.main-content .content-area {
    border-radius: 8px;
    margin-bottom: 30px;
    min-height: 200px;
    display: flex;
    align-items: center;
}

.main-content .content-left {
    flex: 1;
}

.main-content .content-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-content .year-badge {
    color: #dc3545;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.main-content .content-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.main-content .content-divider {
    width: 60px;
    height: 2px;
    background-color: #ddd;
    margin: 20px 0;
}

.main-content .event-year {
    color: #666;
    font-size: 1rem;
    margin-bottom: 5px;
}

.main-content .event-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.main-content .event-description {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.main-content .logo-container {
    text-align: center;
}

.main-content .company-logo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 3rem;
    color: white;
    font-weight: bold;
}

.main-content .logo-text {
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.main-content .timeline-navigation {
    position: relative;
    padding: 20px 0;
}

.main-content .timeline-container {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.main-content .nav-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #333;
    background-color: #333;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.main-content .nav-button:hover {
    background-color: #555;
    border-color: #555;
}

.main-content .nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.main-content .nav-button:disabled:hover {
    background-color: #333;
    border-color: #333;
}

.main-content .timeline-track {
    flex: 1;
    height: 80px;
    position: relative;
    overflow: hidden;
}

.main-content .timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #dee2e6;
    transform: translateY(-50%);
}

.main-content .timeline-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: #dc3545;
    transition: width 0.3s ease;
    width: 0;
}

.main-content .timeline-nodes {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    transition: transform 0.5s ease;
    /* width: 2000px;  */
}

.main-content .timeline-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    z-index: 5;
    width: 80px;
    margin-left: -40px;
    /* 居中对齐 */
    top: 50%;
    transform: translateY(-50%);
}

.main-content .timeline-node::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid #dc3545;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.main-content .timeline-node.active::before {
    background-color: #dc3545;
    transform: scale(1.2);
}

.main-content .timeline-node.completed::before {
    background-color: white;
    border-color: #dc3545;
}

.main-content .timeline-node.future::before {
    background-color: white;
    border-color: #dee2e6;
}

.main-content .timeline-node .year-text {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.main-content .timeline-node.active .year-text {
    color: #dc3545;
    font-weight: bold;
}

.main-content .timeline-node.completed .year-text {
    color: #333;
}

.main-content .timeline-node.future .year-text {
    color: #6c757d;
}

.main-content .timeline-node:hover .year-text {
    color: #dc3545;
}

/* 内容区域动画效果 */
.main-content .content-item {
    display: none;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease-in-out;
}

.main-content .content-item.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.main-content .content-item.slide-out-left {
    opacity: 0;
    transform: translateX(-50px);
}

.main-content .content-item.slide-out-right {
    opacity: 0;
    transform: translateX(50px);
}

.main-content .content-item.slide-in-left {
    opacity: 1;
    transform: translateX(0);
    animation: slideInFromLeft 0.5s ease-in-out;
}

.main-content .content-item.slide-in-right {
    opacity: 1;
    transform: translateX(0);
    animation: slideInFromRight 0.5s ease-in-out;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.main-content .timeline-image-container img {
    max-width: 500px;
    width: 100%;
}

/* 手机端 */
@media (max-width: 992px) {
    .main-content .contact-form-section .formbox {
        padding: 1rem !important;
    }

    .main-content .contact-form-section .reqbut {
        text-align: center !important;
    }

    .main-content .annual-content {
        flex-direction: column;
    }

    .main-content .timeline-wrapper {
        padding: 4px;
        border-radius: 8px;
        margin-bottom: 30px;
    }

    .main-content .content-title {
        font-size: 30px;
        line-height: 1;
        font-weight: bold;
        letter-spacing: -0.4px;
    }

    .main-content .event-title {
        margin: 0 0 8px;
        font-size: 20px;
        line-height: 1.2;
        font-weight: 600;
    }

    .main-content .event-description {
        font-size: 0.9rem;
    }
}


/* World Map Section */
.main-content .world-map-section {
    padding: 0;
    background: white;
}

.main-content .world-map-section .world-map-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
}

.main-content .world-map-section .world-map-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.main-content .world-map-section .world-map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://indeco.it/wp-content/uploads/2020/07/banner-indeco-world-v1-hover.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.main-content .world-map-section .world-map-container:hover::before {
    opacity: 1;
}

.main-content .world-map-section .world-map-container:hover .world-map-background {
    opacity: 0;
}

.main-content .world-map-section .world-map-container:hover .vertical-line {
    background-color: #000000 !important;
}

.main-content .world-map-section .world-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 1;
}

.main-content .world-map-section .world-map-overlay:hover .world-map-content * {
    color: #000000 !important;
}

.main-content .world-map-section .world-map-content:hover .vertical-line {
    background-color: #000000 !important;
}

.main-content .world-map-section .world-map-overlay:hover .world-dealers-link {
    color: #ce000d !important;
}

.main-content .world-map-section .world-map-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-content .world-map-section .map-marker {
    flex-shrink: 0;
}

.main-content .world-map-section .marker-icon {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.main-content .world-map-section .world-subtitle {
    color: var(--indeco-red);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.main-content .world-map-section .world-title {
    color: white;
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.main-content .world-map-section .world-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.main-content .world-map-section .vertical-line {
    width: 2px;
    height: 80px;
    background: white;
    opacity: 0.8;
}

.main-content .world-map-section .world-dealers-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.main-content .world-map-section .world-dealers-btn:hover {
    background: white;
    color: #333;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* 新的链接样式 */
.main-content .world-map-section .world-action p {
    margin: 0;
}

.main-content .world-map-section .world-dealers-link {
    display: inline-block;
    background: transparent;
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* 去掉按钮圆角 */
.main-content .world-map-section .no-border-radius {
    border-radius: 0 !important;
}

/* 手机端 */
@media (max-width: 768px) {
    .main-content .world-map-section .marker-icon {
        max-width: 60px;
    }

    .main-content .world-map-section .world-title {
        font-size: 1.6rem;
    }

    .main-content .world-map-section .world-dealers-link {
        padding: 0px;
    }

    .main-content .world-map-section .world-action {
        justify-content: center;
    }
}


  /* Banner Swiper 样式 */
        .banner-section {
            position: relative;
            height: 60vh;
            min-height: 500px;
            overflow: hidden;
        }

        .banner-swiper {
            width: 100%;
            height: 100%;
        }

        .banner-slide {
            position: relative;
            width: 100%;
            height: 60vh;
            min-height: 500px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .banner-content {
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 20px;
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .banner-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease-out;
        }

        .banner-subtitle {
            font-size: 1.5rem;
            font-weight: 300;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .banner-cta-btn {
            background: #f6ca52;
            color: rgb(0, 0, 0);
            border: none;
            padding: 10px 20px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .banner-cta-btn:hover {
            background: rgb(255, 255, 255);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
            color: rgb(0, 0, 0);
        }

        .banner-cta-btn:active {
            transform: translateY(0);
        }

        /* Swiper 分页器样式 */
        .banner-swiper .swiper-pagination {
            bottom: 30px;
        }

        .banner-swiper .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 1;
            transition: all 0.3s ease;
        }

        .banner-swiper .swiper-pagination-bullet-active {
            background: #e74c3c;
            transform: scale(1.2);
        }

        .banner-swiper .swiper-pagination-bullet:hover {
            background: rgba(255, 255, 255, 0.8);
        }

        /* Swiper 导航按钮样式 */
        .banner-swiper .swiper-button-next,
        .banner-swiper .swiper-button-prev {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            color: white;
        }

        .banner-swiper .swiper-button-next:hover,
        .banner-swiper .swiper-button-prev:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .banner-swiper .swiper-button-next::after,
        .banner-swiper .swiper-button-prev::after {
            font-size: 20px;
            font-weight: bold;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .banner-section {
                height: 35vh;
                min-height: 250px;
            }

            .banner-slide {
                height: 35vh;
                min-height: 250px;
            }

            .banner-title {
                font-size: 1.8rem;
            }

            .banner-subtitle {
                font-size: 1rem;
            }

            .banner-cta-btn {
                padding: 6px 10px;
                font-size: 0.9rem;
            }

            .banner-swiper .swiper-button-next,
            .banner-swiper .swiper-button-prev {
                width: 40px;
                height: 40px;
            }

            .banner-swiper .swiper-button-next::after,
            .banner-swiper .swiper-button-prev::after {
                font-size: 16px;
            }
        }

        @media (max-width: 576px) {
            .banner-title {
                font-size: 2rem;
            }

            .banner-subtitle {
                font-size: 1rem;
            }

            .banner-cta-btn {
                padding: 10px 25px;
                font-size: 0.9rem;
            }

            .banner-swiper .swiper-pagination {
                bottom: 20px;
            }

            .banner-swiper .swiper-pagination-bullet {
                width: 10px;
                height: 10px;
            }
        }

        /* Product Display Component Styles */
        .product-display-section {
            color: white;
            padding: 40px 0;
            min-height: auto;
        }

        .product-display-section .product-display-grid {
            display: flex;
            flex-direction: row;
            /* Horizontal arrangement */
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .product-display-section .product-display-item {
            /* flex: 1;
            position: relative;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 30px 20px;
            /*  */
            transition: all 0.3s ease;
            /* 变手指 */
            cursor: pointer;
        }

        .product-display-section .product-display-item:hover {
            transform: translateY(-20px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }

        .product-display-section .product-display-image {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 200px;
        }

        .product-display-section .product-display-image img {
            width: auto;
            max-width: 100%;
            max-height: 900px;
            height: auto;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .product-display-section .product-display-text {
            text-align: center;
            top: -56px;
            margin-top: 1px;
            margin-bottom: 10px;
            font-size: 12px;
            font-weight: 500;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
            transform: rotate(-30deg);
            transform-origin: center;
            position: relative;
            line-height: 1;
        }

        /* .product-display-section .product-display-text::before {
            content: '';
            position: absolute;
            top: -5px;
            left: 50%;
            transform: translateX(-50%) rotate(-45deg);
            width: 60px;
            height: 2px;
            background: #f6ca52;
        } */


        /* Mobile Responsive */
        @media (max-width: 768px) {
            .product-display-section .product-display-text {
                margin-bottom: 0px;
                font-size: 12px;
            }

            .product-display-section .product-display-grid {
                flex-direction: row;
                /* Horizontal layout for mobile */
                gap: 15px;
                padding: 0 20px;
                overflow-x: auto;
                scroll-behavior: smooth;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }

            .product-display-section .product-display-grid::-webkit-scrollbar {
                display: none;
            }

            .product-display-section .product-display-item {
                flex: 0 0 auto;
                width: 200px;
                min-width: 200px;
            }

            .product-display-section .product-display-item:hover {
                transform: translateY(-5px);
            }

            .product-display-section .product-display-image {
                min-height: 150px;
            }

            .product-display-section .product-display-image img {
                max-width: 100%;
            }

            .product-display-section .product-display-text {
                font-size: 12px;
                margin-top: 10px;
            }

            /* Mobile Navigation Buttons */
            .product-display-section .mobile-nav-btn {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                background: rgba(255, 255, 255, 0.2);
                border: none;
                color: white;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                transition: all 0.3s ease;
                z-index: 10;
            }

            .product-display-section .mobile-nav-btn:hover {
                background: rgba(255, 255, 255, 0.3);
            }

            .product-display-section .mobile-nav-btn.prev {
                left: 10px;
            }

            .product-display-section .mobile-nav-btn.next {
                right: 10px;
            }

            .product-display-section .product-display-container {
                position: relative;
            }
        }

        @media (max-width: 576px) {

            .product-display-section .product-display-grid {
                gap: 10px;
            }

            .product-display-section .product-display-item {
                width: 180px;
                min-width: 180px;
                padding: 15px 10px;
            }

            .product-display-section .product-display-item:hover {
                transform: translateY(-3px);
            }

            .product-display-section .product-display-image {
                min-height: 120px;
            }

            .product-display-section .product-display-image img {
                max-width: 100%;
            }

            .product-display-section .product-display-text {
                margin-bottom: 0px;
                font-size: 9px;
            }

            .product-display-section .mobile-nav-btn {
                width: 35px;
                height: 35px;
            }
        }

        @media (max-width: 480px) {
            .product-display-section .product-display-text {
                margin-bottom: 0px;
                font-size: 9px;
            }
        }

        .product-display-section .all-products-btn {
            background-color: #000;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 0px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
            border: 1px solid #000;
        }

        .product-display-section .all-products-btn:hover {
            background-color: #fff;
            color: #000;
            border: 1px solid #000;
            transition: all 0.3s ease;
        }

/*product_aggregation*/
   /* 轮播图容器样式 */
        .product_aggregation .banner-swipers {
            width: 100%;
            height: 500px;
            position: relative;
            overflow: hidden;
            /*max-width: 1920px;*/
        }

        /* 大于992 */
        @media (min-width: 1200px) {

            .product_aggregation .slide-overlay {
                padding: 6rem !important;
            }
        }

        /* 手机端 */
        @media (max-width: 768px) {
            .product_aggregation .banner-swipers {
                height: 400px !important;
            }
        }

        /* 轮播图滑动项样式 */
        .product_aggregation .swiper-slide {
            position: relative;
            width: 100%;
            height: 100%;
        }

        /* 滑动内容容器 */
        .product_aggregation .slide-content {
            position: relative;
            width: 100%;
            height: 100%;
        }

        /* 轮播图片样式 */
        .product_aggregation .slide-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        /* 覆盖层样式 */
        .product_aggregation .slide-overlay {
            position: absolute;
            top: 50%;
            width: 40%;
            transform: translateY(-50%);
            /* background: rgba(0, 30, 50, 0.75); */
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }



        .product_aggregation .left {
            right: 0;
        }

        .product_aggregation .right {
            left: 0;
        }

        /* 小三角效果 */
        .product_aggregation .slide-overlay::before {
            content: '';
            position: absolute;
            left: -19px;
            top: 20%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-right: 19px solid rgba(0, 30, 50, 0.75);
            border-top: 22px solid transparent;
            border-bottom: 22px solid transparent;
            z-index: 5;
        }

        /* right的.product_aggregation .slide-overlay::before */
        .product_aggregation .right.slide-overlay::before {
            left: auto;
            right: -19px;
            border-right: none;
            border-left: 19px solid rgba(0, 30, 50, 0.75);
        }


        /* 覆盖层内容样式 */
        .product_aggregation .overlay-content {
            text-align: center;
            color: white;
            max-width: 100%;
        }

        /* 覆盖层标题样式 */
        .product_aggregation .overlay-title {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: white;
        }

        /* 覆盖层描述样式 */
        .product_aggregation .overlay-description {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        /* 覆盖层按钮样式 */
        .product_aggregation .overlay-btn {
            background: #ff6b3500;
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid white;

        }

        .product_aggregation .overlay-btn:hover {
            background: #ffffff;
            color: #232323;
            transform: translateY(-2px);
        }

        /* 分页器样式 */
        .product_aggregation .swiper-paginations {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }

        .product_aggregation .swiper-paginations-bullet {
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .product_aggregation .swiper-paginations-bullet-active {
            background: #ff6b35;
            transform: scale(1.2);
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .product_aggregation .banner-swipers {
                height: auto;
                min-height: 600px;
            }

            .product_aggregation .slide-content {
                display: flex;
                flex-direction: column;
                height: auto;
            }

            .product_aggregation .slide-image {
                height: 300px;
                order: 1;
            }

            .product_aggregation .slide-overlay {
                position: relative;
                width: 100%;
                background: rgba(0, 0, 0, 0);
                border-radius: 0;
                margin: 0;
                order: 2;
                transform: none;
                top: auto;
                right: auto;
            }

            /* 移动端隐藏小三角 */
            .product_aggregation .slide-overlay::before {
                display: none;
            }

            .product_aggregation .overlay-title {
                font-size: 1.5rem;
            }

            .product_aggregation .overlay-description {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .product_aggregation .banner-swipers {
                min-height: 500px;
            }

            .product_aggregation .slide-image {
                height: 250px;
            }

            .product_aggregation .overlay-title {
                font-size: 1.2rem;
            }

            .product_aggregation .overlay-description {
                font-size: 0.8rem;
                margin-bottom: 1.5rem;
            }

            .product_aggregation .overlay-btn {
                padding: 10px 25px;
                font-size: 0.9rem;
            }
        }

        /* 特性卡片样式 */
        .product_aggregation .features-banner {
            padding: 4rem 0;
            background: #f8f9fa;
        }

        .product_aggregation .feature-card {
            background: white;
            padding: 2rem;
            height: 100%;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .product_aggregation .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
        }

        .product_aggregation .card-icon {
            margin-bottom: 1.5rem;
        }

        .product_aggregation .card-icon i {
            font-size: 1.5rem;
            color: #ff6b35;
        }

        .product_aggregation .card-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .product_aggregation .card-description {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            margin: 0;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .product_aggregation .features-banner {
                padding: 3rem 0;
            }

            .product_aggregation .feature-card {
                padding: 1.5rem;
            }

            .product_aggregation .card-title {
                font-size: 1.3rem;
            }

            .product_aggregation .card-description {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .product_aggregation .features-banner {
                padding: 2rem 0;
            }

            .product_aggregation .feature-card {
                padding: 1.25rem;
            }

            .product_aggregation .card-title {
                font-size: 1.2rem;
            }

            .product_aggregation .card-description {
                font-size: 0.9rem;
            }
        }

        .product_aggregation .history {
            background-color: white;
        }

        .product_aggregation .history h2 {
            font-size: 2rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        /* related-section */

        /* 相关产品与服务卡片组件 */
        .product_aggregation .related-section {
            padding: 40px 0;
            background: #f5f5f5;
        }

        .product_aggregation .related-section .related-title {
            font-size: 2rem;
            font-weight: bold;
            color: #444;
            margin-bottom: 30px;
        }

        .product_aggregation .related-section .related-row {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }

        .product_aggregation .related-section .related-card {
            position: relative;
            width: calc(25% - 14px);
            min-width: 180px;
            height: 260px;
            flex: 0 0 calc(25% - 14px);
            box-sizing: border-box;
            background: #fff;

            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            overflow: hidden;
            cursor: pointer;
            transition: box-shadow 0.2s;
        }

        .product_aggregation .related-section .related-card:hover {
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
        }

        .product_aggregation .related-section .related-img-wrap {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 70%;
            background: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product_aggregation .related-section .related-img-wrap img {
            width: 100%;
            object-fit: contain;
        }

        .product_aggregation .related-section .related-info {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            background: #fff;
            padding: 18px 16px 12px 16px;
            min-height: 30%;
            box-sizing: border-box;
            transition: background 0.2s;
        }

        .product_aggregation .related-section .related-name {
            font-size: 1.1rem;
            font-weight: bold;
            color: #3b4a54;
            transition: transform 0.4s cubic-bezier(.4, 1.5, .5, 1), color 0.2s;
        }

        .product_aggregation .related-section .related-desc {
            font-size: 0.7rem;
            color: #7f8c8d;
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: opacity 0.4s, max-height 0.4s;
        }

        .product_aggregation .related-section .related-more {
            font-size: 0.8rem;
            margin-top: 8px;
        }

        .product_aggregation .related-section .related-card:hover .related-name {
            transform: translateY(-18px);
            color: #f39c12;
        }

        .product_aggregation .related-section .related-card:hover .related-desc {
            opacity: 1;
            max-height: 60px;
        }

        .product_aggregation .related-section .related-card {
            cursor: pointer;
        }

        /* 手机端描述常显，无动画 */
        @media (max-width: 768px) {
            .product_aggregation .related-section .related-row {
                flex-direction: column;
                gap: 16px;
            }

            .product_aggregation .related-section .related-card {
                width: 100% !important;
                min-width: 0;
                max-width: 100%;
                height: auto;
                margin-bottom: 0;
                display: flex;
                flex-direction: column;
                box-shadow: none;
                border-radius: 0;
                border: 1px solid #e0e0e0;
                background: #fff;
                overflow: hidden;
            }

            .product_aggregation .related-section .related-img-wrap {
                position: relative;
                width: 100%;
                height: 200px;
                background: #fff;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .product_aggregation .related-section .related-img-wrap img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .product_aggregation .related-section .related-info {
                position: relative;
                background: #fff;
                padding: 16px;
                min-height: unset;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
            }

            .product_aggregation .related-section .related-name {
                font-size: 1.1rem;
                font-weight: bold;
                color: #3b4a54;
                margin-bottom: 8px;
                transform: none !important;
            }

            .product_aggregation .related-section .related-desc {
                display: block;
                opacity: 1 !important;
                max-height: none !important;
                font-size: 0.9rem;
                color: #7f8c8d;
                margin-bottom: 8px;
                display: none;
            }

            .product_aggregation .related-section .related-more {
                opacity: 1 !important;
                max-height: none !important;
                transition: none;
                font-size: 0.8rem;
                margin-top: 0;
            }
        }

        /* characteristic */
        .product_aggregation .characteristic .characteristic-title {
            font-size: 1.5rem;
            font-weight: bold;
        }

        .product_aggregation .characteristic .characteristic-content {
            font-size: 1rem;
            color: #000000;
        }

        /* 挖掘机液压锤的相关服务和零件 */
        .product_aggregation .related-service-and-parts {
            padding: 40px 0;
            background: #f5f5f500;
        }

        .product_aggregation .related-service-and-parts .related-title {
            font-size: 2rem;
            font-weight: bold;
            color: #444;
            margin-bottom: 30px;
        }

        .product_aggregation .related-service-and-parts .related-row {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }

        .product_aggregation .related-service-and-parts .related-card {
            position: relative;
            width: calc(25% - 14px);
            min-width: 180px;
            height: 260px;
            flex: 0 0 calc(25% - 14px);
            box-sizing: border-box;
            background: #fff;

            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            overflow: hidden;
            cursor: pointer;
            transition: box-shadow 0.2s;
        }

        .product_aggregation .related-service-and-parts .related-card:hover {
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
        }

        .product_aggregation .related-service-and-parts .related-img-wrap {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 70%;
            background: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product_aggregation .related-service-and-parts .related-img-wrap img {
            width: 100%;
            object-fit: contain;
        }

        .product_aggregation .related-service-and-parts .related-info {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            background: #fff;
            padding: 18px 16px 12px 16px;
            min-height: 30%;
            box-sizing: border-box;
            transition: background 0.2s;
        }

        .product_aggregation .related-service-and-parts .related-name {
            font-size: 1.1rem;
            font-weight: bold;
            color: #3b4a54;
            transition: transform 0.4s cubic-bezier(.4, 1.5, .5, 1), color 0.2s;
        }

        .product_aggregation .related-service-and-parts .related-desc {
            font-size: 0.7rem;
            color: #7f8c8d;
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: opacity 0.4s, max-height 0.4s;
        }

        .product_aggregation .related-service-and-parts .related-more {
            font-size: 0.8rem;
            margin-top: 8px;
        }

        .product_aggregation .related-service-and-parts .related-card:hover .related-name {
            transform: translateY(-18px);
            color: #f39c12;
        }

        .product_aggregation .related-service-and-parts .related-card:hover .related-desc {
            opacity: 1;
            max-height: 60px;
        }

        .product_aggregation .related-service-and-parts .related-card {
            cursor: pointer;
        }

        /* 手机端描述常显，无动画 */
        @media (max-width: 768px) {
            .product_aggregation .related-service-and-parts .related-row {
                flex-direction: column;
                gap: 16px;
            }

            .product_aggregation .related-service-and-parts .related-card {
                width: 100% !important;
                min-width: 0;
                max-width: 100%;
                height: auto;
                margin-bottom: 0;
                display: flex;
                flex-direction: column;
                box-shadow: none;
                border-radius: 0;
                border: 1px solid #e0e0e0;
                background: #fff;
                overflow: hidden;
            }

            .product_aggregation .related-service-and-parts .related-img-wrap {
                position: relative;
                width: 100%;
                height: 200px;
                background: #fff;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .product_aggregation .related-service-and-parts .related-img-wrap img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .product_aggregation .related-service-and-parts .related-info {
                position: relative;
                background: #fff;
                padding: 16px;
                min-height: unset;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
            }

            .product_aggregation .related-service-and-parts .related-name {
                font-size: 1.1rem;
                font-weight: bold;
                color: #3b4a54;
                margin-bottom: 8px;
                transform: none !important;
            }

            .product_aggregation .related-service-and-parts .related-desc {
                display: block;
                opacity: 1 !important;
                max-height: none !important;
                font-size: 0.9rem;
                color: #7f8c8d;
                margin-bottom: 8px;
                display: none;
            }

            .product_aggregation .related-service-and-parts .related-more {
                opacity: 1 !important;
                max-height: none !important;
                transition: none;
                font-size: 0.8rem;
                margin-top: 0;
            }
        }

        .product_aggregation .related-service-and-parts .related-title {
            font-size: 2rem;
            font-weight: bold;
            color: #444;
            margin-bottom: 30px;
        }

        /* 相关产品 */
        .product_aggregation .related-section {
            padding: 40px 0;
            background: #f5f5f500;
        }

        .product_aggregation .related-section .related-title {
            font-size: 2rem;
            font-weight: bold;
            color: #444;
            margin-bottom: 30px;
        }

        .product_aggregation .related-section .related-row {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }

        .product_aggregation .related-section .related-card {
            position: relative;
            width: calc(25% - 14px);
            min-width: 180px;
            height: 260px;
            flex: 0 0 calc(25% - 14px);
            box-sizing: border-box;
            background: #fff;

            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            overflow: hidden;
            cursor: pointer;
            transition: box-shadow 0.2s;
        }

        .product_aggregation .related-section .related-card:hover {
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
        }

        .product_aggregation .related-section .related-img-wrap {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 70%;
            background: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product_aggregation .related-section .related-img-wrap img {
            width: 100%;
            object-fit: contain;
        }

        .product_aggregation .related-section .related-info {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            background: #fff;
            padding: 18px 16px 12px 16px;
            min-height: 30%;
            box-sizing: border-box;
            transition: background 0.2s;
        }

        .product_aggregation .related-section .related-name {
            font-size: 1.1rem;
            font-weight: bold;
            color: #3b4a54;
            transition: transform 0.4s cubic-bezier(.4, 1.5, .5, 1), color 0.2s;
        }

        .product_aggregation .related-section .related-desc {
            font-size: 0.7rem;
            color: #7f8c8d;
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: opacity 0.4s, max-height 0.4s;
        }

        .product_aggregation .related-section .related-more {
            font-size: 0.8rem;
            margin-top: 8px;
        }

        .product_aggregation .related-section .related-card:hover .related-name {
            transform: translateY(-18px);
            color: #f39c12;
        }

        .product_aggregation .related-section .related-card:hover .related-desc {
            opacity: 1;
            max-height: 60px;
        }

        .product_aggregation .related-section .related-card {
            cursor: pointer;
        }

        /* 手机端描述常显，无动画 */
        @media (max-width: 768px) {
            .product_aggregation .related-section .related-row {
                flex-direction: column;
                gap: 16px;
            }

            .product_aggregation .related-section .related-card {
                width: 100% !important;
                min-width: 0;
                max-width: 100%;
                height: auto;
                margin-bottom: 0;
                display: flex;
                flex-direction: column;
                box-shadow: none;
                border-radius: 0;
                border: 1px solid #e0e0e0;
                background: #fff;
                overflow: hidden;
            }

            .product_aggregation .related-section .related-img-wrap {
                position: relative;
                width: 100%;
                height: 200px;
                background: #fff;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .product_aggregation .related-section .related-img-wrap img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .product_aggregation .related-section .related-info {
                position: relative;
                background: #fff;
                padding: 16px;
                min-height: unset;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
            }

            .product_aggregation .related-section .related-name {
                font-size: 1.1rem;
                font-weight: bold;
                color: #3b4a54;
                margin-bottom: 8px;
                transform: none !important;
            }

            .product_aggregation .related-section .related-desc {
                display: block;
                opacity: 1 !important;
                max-height: none !important;
                font-size: 0.9rem;
                color: #7f8c8d;
                margin-bottom: 8px;
                display: none;
            }

            .product_aggregation .related-section .related-more {
                opacity: 1 !important;
                max-height: none !important;
                transition: none;
                font-size: 0.8rem;
                margin-top: 0;
            }
        }

        /* characteristic */
        .product_aggregation .characteristic {
            background-color: white;
        }

        .product_aggregation .characteristic h2 {
            font-size: 1.5rem;
            font-weight: bold;
            padding: 1.2rem 0;
        }

        .product_aggregation .characteristic .characteristic-content {
            font-size: 1rem;
            color: #000000;
        }

        /* 挖掘机液压锤的相关服务和零件 */
        .product_aggregation .related-products {
            padding: 40px 0;
            background: #f5f5f500;
        }

        .product_aggregation .related-products .related-title {
            font-size: 2rem;
            font-weight: bold;
            color: #444;
            margin-bottom: 30px;
        }

        .product_aggregation .related-products .related-row {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }

        .product_aggregation .related-products .related-card {
            position: relative;
            width: calc(25% - 14px);
            min-width: 180px;
            height: 260px;
            flex: 0 0 calc(25% - 14px);
            box-sizing: border-box;
            background: #fff;

            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            overflow: hidden;
            cursor: pointer;
            transition: box-shadow 0.2s;
        }

        .product_aggregation .related-products .related-card:hover {
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
        }

        .product_aggregation .related-products .related-img-wrap {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 70%;
            background: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product_aggregation .related-products .related-img-wrap img {
            width: 100%;
            object-fit: contain;
        }

        .product_aggregation .related-products .related-info {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            background: #fff;
            padding: 18px 16px 12px 16px;
            min-height: 30%;
            box-sizing: border-box;
            transition: background 0.2s;
        }

        .product_aggregation .related-products .related-name {
            font-size: 1.1rem;
            font-weight: bold;
            color: #3b4a54;
            transition: transform 0.4s cubic-bezier(.4, 1.5, .5, 1), color 0.2s;
        }

        .product_aggregation .related-products .related-desc {
            font-size: 0.7rem;
            color: #7f8c8d;
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: opacity 0.4s, max-height 0.4s;
        }

        .product_aggregation .related-products .related-more {
            font-size: 0.8rem;
            margin-top: 8px;
        }

        .product_aggregation .related-products .related-card:hover .related-name {
            transform: translateY(-18px);
            color: #f39c12;
        }

        .product_aggregation .related-products .related-card:hover .related-desc {
            opacity: 1;
            max-height: 60px;
        }

        .product_aggregation .related-products .related-card {
            cursor: pointer;
        }

        /* 手机端描述常显，无动画 */
        @media (max-width: 768px) {
            .product_aggregation .related-products .related-row {
                flex-direction: column;
                gap: 16px;
            }

            .product_aggregation .related-products .related-card {
                width: 100% !important;
                min-width: 0;
                max-width: 100%;
                height: auto;
                margin-bottom: 0;
                display: flex;
                flex-direction: column;
                box-shadow: none;
                border-radius: 0;
                border: 1px solid #e0e0e0;
                background: #fff;
                overflow: hidden;
            }

            .product_aggregation .related-products .related-img-wrap {
                position: relative;
                width: 100%;
                height: 200px;
                background: #fff;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .product_aggregation .related-products .related-img-wrap img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .product_aggregation .related-products .related-info {
                position: relative;
                background: #fff;
                padding: 16px;
                min-height: unset;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
            }

            .product_aggregation .related-products .related-name {
                font-size: 1.1rem;
                font-weight: bold;
                color: #3b4a54;
                margin-bottom: 8px;
                transform: none !important;
            }

            .product_aggregation .related-products .related-desc {
                display: block;
                opacity: 1 !important;
                max-height: none !important;
                font-size: 0.9rem;
                color: #7f8c8d;
                margin-bottom: 8px;
                display: none;
            }

            .product_aggregation .related-products .related-more {
                opacity: 1 !important;
                max-height: none !important;
                transition: none;
                font-size: 0.8rem;
                margin-top: 0;
            }
        }

        .product_aggregation .related-products .related-title {
            font-size: 2rem;
            font-weight: bold;
            color: #444;
            margin-bottom: 30px;
        }

        /* 产品图片视频卡片 */
        .product_aggregation .product-img-video {
            padding: 4rem 0;
            background: white;
        }

        .product_aggregation .product-card {
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }



        .product_aggregation .product-image {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .product_aggregation .card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.3s ease;
        }

        .product_aggregation .product-card:hover .card-img {
            transform: scale(1.05);
        }

        .product_aggregation .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product_aggregation .play-button {
            width: 35px;
            height: 35px;
            background: #ff6b35;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .product_aggregation .play-button i {
            color: white;
            font-size: 1rem;
            margin-left: 3px;
        }

        .product_aggregation .play-button:hover {
            background: #e55a2b;
            transform: scale(1.1);
        }

        .product_aggregation .product-label {
            padding: 1rem;
            font-weight: bold;
            font-size: 1.1rem;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 10;
            border-radius: 0;
        }

        .product_aggregation .product-label.blue {
            background: rgba(0,30,50,0.75);
            color: white;
        }

        .product_aggregation .product-label.yellow {
            background-color: #ffc72c;
            color: #1f2937;
        }

        @media (max-width: 768px) {
            .product_aggregation .product-img-video {
                padding: 3rem 0;
            }

            .product_aggregation .product-image {
                height: 180px;
            }

            .product_aggregation .play-button {
                width: 50px;
                height: 50px;
            }

            .product_aggregation .play-button i {
                font-size: 1.2rem;
            }

            .product_aggregation .product-label {
                padding: 0.8rem;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .product_aggregation .product-img-video {
                padding: 2rem 0;
            }

            .product_aggregation .product-image {
                height: 160px;
            }

            .product_aggregation .play-button {
                width: 45px;
                height: 45px;
            }

            .product_aggregation .play-button i {
                font-size: 1.1rem;
            }

            .product_aggregation .product-label {
                padding: 0.7rem;
                font-size: 0.9rem;
            }
        }

        /* 横向卡片组件 */
        .product_aggregation .gallery-section {
            padding: 40px 0;
            background: #fff;
        }

        .product_aggregation .gallery-section .gallery-header-row {
            margin-bottom: 30px;
        }

        .product_aggregation .gallery-section .gallery-title {
            font-size: 1rem;
            font-weight: bold;
            color: #444;
        }

        .product_aggregation .gallery-section .gallery-tags {
            display: flex;
            align-items: center;
        }

        .product_aggregation .gallery-section .gallery-tags-label {
            font-size: 0.8rem;
            font-weight: bold;
            color: #888;
            margin-right: 10px;
        }

        .product_aggregation .gallery-section .gallery-tag {
            font-size: 0.8rem;
            background: #f7c948;
            color: #444;
            padding: 5px;
        }

        .product_aggregation .gallery-section .gallery-row {
            display: flex !important;
            flex-wrap: wrap !important;
            gap: 18px;
            overflow-x: unset !important;
        }

        .product_aggregation .gallery-section .gallery-card {
            position: relative;
            width: calc(25% - 14px) !important;
            min-width: 180px;
            height: 200px;
            margin: 0;
            flex: 0 0 calc(25% - 14px) !important;
            box-sizing: border-box;
        }

        .product_aggregation .gallery-section .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product_aggregation .gallery-section .gallery-card-hover {
            position: relative;
        }

        .product_aggregation .gallery-section .gallery-hover-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .product_aggregation .gallery-section .gallery-hover-title {
            padding: 0 10px;
            font-weight: bold;
            color: #fff;
            margin-bottom: 10px;
        }

        .product_aggregation .gallery-section .gallery-hover-desc {
            padding: 0 10px;
            font-size: 0.8rem;
            color: #fff;
            margin-bottom: 16px;
        }

        .product_aggregation .gallery-section .gallery-hover-btn {
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            max-width: 150px;
            padding: 5px;
            background: #48a9c5;
            color: #fff;
            border: none;
            font-size: 0.7rem;
            cursor: pointer;
        }

        .product_aggregation .gallery-section .gallery-card-hover:hover .gallery-hover-overlay {
            opacity: 1;
        }

        @media (max-width: 991px) {
            .product_aggregation .gallery-section .gallery-card {
                width: calc(50% - 12px) !important;
                flex: 0 0 calc(50% - 12px) !important;
            }

            .product_aggregation .gallery-section .gallery-tag {
                font-size: 0.5rem;

            }
        }

        @media (max-width: 768px) {
            .product_aggregation .gallery-section .gallery-row {
                flex-wrap: nowrap !important;
                overflow-x: auto !important;
            }

            .product_aggregation .gallery-section .gallery-card {
                width: 80vw !important;
                min-width: 240px;
                max-width: 90vw;
                flex: 0 0 auto !important;
                margin-bottom: 0;
            }
        }



        