    /* 轮播图样式 */
        .carousel-container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        
        .carousel-item {
            height: 500px;
        }
        
        .carousel-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* 视频样式 */
        .carousel-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        /* 移动端隐藏视频，显示图片 */
        @media (max-width: 768px) {
            .carousel-video {
                display: none;
            }
            .carousel-mobile-image {
                display: block !important;
            }
            /* 确保移动端顶部栏始终固定 */
            .public-header,
            .public-header.nofixed {
                position: fixed !important;
                top: 0 !important;
                left: 0 !important;
                z-index: 999 !important;
            }
        }
        
        /* 桌面端隐藏移动端图片 */
        @media (min-width: 769px) {
            .carousel-mobile-image {
                display: none;
            }
        }
        
        /* 文字区域样式 */
        .carousel-caption {
            position: absolute;
            left: 5%;
            top: 50%;
            transform: translateY(-50%);
            text-align: left;
            max-width: 70%;
            z-index: 10;
            padding: 30px;
        }
        
        /* 文字颜色和间距调整 */
        .carousel-caption h1 {
            color: #333 !important;
            margin-bottom: 20px !important;
            font-weight: bold;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8), -1px -1px 2px rgba(255, 255, 255, 0.6);
        }
        
        .carousel-caption p {
            color: #444 !important;
            margin-bottom: 20px !important;
            line-height: 1.5;
            text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.7), -1px -1px 1px rgba(255, 255, 255, 0.5);
        }
        
        .carousel-caption .btn {
            margin-top: 20px;
            padding: 6px 40px;
            font-weight: 600;
            border-radius: 0;
            transition: all 0.3s ease;
            flex: 1;
            min-width: 0;
            text-align: center;
        }
        
        .carousel-caption .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        /* PC端按钮布局 - 铺满横屏 */
        @media (min-width: 769px) {
            .carousel-caption {
                display: flex;
                flex-direction: column;
            }
            
            .carousel-caption .btn {
                margin-right: 10px;
                margin-left: 0;
            }
            
            .carousel-caption .btn:last-child {
                margin-right: 0;
            }
        }
        
        /* 移动端按钮布局 - 左对齐文字边缘 */
        @media (max-width: 768px) {
            .carousel-caption .btn {
                margin: 15px 0 0 0;
                flex: 0 0 auto;
                max-width: 100%;
                align-self: flex-start;
            }
            
            .carousel-caption {
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                margin: 0 0;
            }
        }
        
        /* 动画效果 */
        .carousel-text-animation {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }
        
        .carousel-item.active .carousel-text-animation {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* 延迟动画，创建层次感 */
        .carousel-text-animation.title {
            transition-delay: 0.2s;
        }
        
        .carousel-text-animation.subtitle {
            transition-delay: 0.4s;
        }
        
        .carousel-text-animation.btn {
            transition-delay: 0.6s;
        }
        
        
        /* 定位到屏幕最左侧和最右侧 */
        .carousel-control-prev {
            left: 0;
            margin-left: 20px;
        }
        
        .carousel-control-next {
            right: 0;
            margin-right: 20px;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .carousel-item {
                height: 350px;
            }
            
            .carousel-caption {
                max-width: 95%;
                left: 2.5%;
                right: 2.5%;
                padding: 20px 15px;
            }
            
            /* 移动端文字大小和间距调整 */
            .carousel-caption h1 {
                font-size: 1.5rem !important;
                margin-bottom: 15px !important;
                color: #333 !important;
                text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9), -1px -1px 2px rgba(255, 255, 255, 0.7);
            }
            
            .carousel-caption p {
                font-size: 1rem !important;
                margin-bottom: 15px !important;
                color: #444 !important;
                text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8), -1px -1px 1px rgba(255, 255, 255, 0.6);
            }
            
            .carousel-caption .btn {
                font-size: 0.9rem;
                padding: 6px 20px;
                margin-top: 15px;
                border-radius: 0;
            }
        }

        /* 平板设备调整 */
        @media (min-width: 769px) and (max-width: 992px) {
            .carousel-caption h1 {
                font-size: 1.8rem;
            }
            
            .carousel-caption p {
                font-size: 1.1rem;
            }
        }


        
        /* 确保菜单按钮可点击 */
        .public-header-right-m-nav-btn {
            cursor: pointer;
            z-index: 10000;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 4px;
        }
        
        .public-header-right-m-nav-btn:hover {
            background-color: rgba(0, 0, 0, 0.05);
        }
        
        .public-header-right-m-nav-btn:active {
            transform: scale(0.95);
            background-color: rgba(0, 0, 0, 0.1);
        }
        

        
        /* 动画关键帧 */
        @keyframes fadeInRotate {
            from {
                opacity: 0;
                transform: rotate(-180deg);
            }
            to {
                opacity: 1;
                transform: rotate(0deg);
            }
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* 功能按钮区域样式 */
        .feature-buttons-section {
            background-color: #fff;
            border-top: 1px solid #f5f5f5;
        }
        
        .feature-button {
            text-decoration: none;
            color: #333;
            height: 100%;
            transition: background-color 0.3s ease;
        }
        
        .feature-button:hover {
            background-color: #fafafa;
            color: #007bff;
        }
        
        .feature-title {
            color: #222;
        }
        
        .feature-desc {
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* PC端大屏幕（≥992px）样式 */
        @media (min-width: 992px) {
            .feature-buttons-section .row {
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
                overflow: hidden;
            }
            
            .feature-button {
                border-radius: 0 !important;
                box-shadow: none !important;
            }
            
            .feature-button.border-start {
                border-width: 1px !important;
                border-color: #f0f0f0 !important;
            }
        }

        /* 平板设备（768px-991px）样式 */
        @media (min-width: 768px) and (max-width: 991px) {
            .feature-buttons-section .col-md-6 {
                padding: 0 8px;
                margin-bottom: 16px;
            }
            
            .feature-button {
                border-radius: 8px;
                box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
            }
        }

        /* 移动端（≤768px）样式 */
        @media (max-width: 768px) {
            .feature-buttons-section .col-md-6 {
                flex: 0 0 50%;
                max-width: 50%;
                padding: 0 4px;
                margin-bottom: 8px;
            }
            
            .feature-button {
                padding: 18px 12px !important;
                border-radius: 4px;
                box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
            }
            
            .feature-title {
                font-size: 1rem;
                margin-bottom: 6px;
                text-align: center;
            }
            
            .feature-desc {
                font-size: 0.8rem;
                text-align: center;
            }
        }

        /* 产品服务模块样式 */
        .product-service-section {
            background-color: #f8f9fa;
        }

        .nav-tabs .nav-link {
            color: #495057;
            border: none;
            border-bottom: 2px solid transparent;
            margin-bottom: -2px;
            font-weight: 500;
            padding: 10px 20px;
        }

        .nav-tabs .nav-link.active {
            color: #0d6efd;
            border-bottom: 2px solid #0d6efd;
            background-color: transparent;
        }

        .card {
            border: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background-image: url('../img/remoteL17131050291009.jpg');
            background-size: cover;
            background-position: right center;
            background-repeat: no-repeat;
            color: #333;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* 为卡片标题和文本添加阴影以提高可读性 */
        .card-title {
            color: #222;
            text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
        }

        .card-text {
            color: #444;
            text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
        }

        .badge.bg-light.text-dark.border {
            border: 1px solid #dee2e6 !important;
            color: #333 !important;
        }



        /* 为产品选项卡卡片添加更具体的选择器以确保样式生效 */
        .tab-content .card {
            background-position: right center !important;
        }

        /* 选项卡卡片滚动载入动画 - 初始隐藏状态 */
        .product-tabs-content .tab-pane .card {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        /* 选项卡卡片滚动载入动画 - 显示状态 */
        .product-tabs-content .tab-pane .card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* 为不同卡片添加延迟动画效果 */
        .product-tabs-content .tab-pane .card:nth-child(1) {
            transition-delay: 0.1s;
        }
        .product-tabs-content .tab-pane .card:nth-child(2) {
            transition-delay: 0.2s;
        }
        .product-tabs-content .tab-pane .card:nth-child(3) {
            transition-delay: 0.3s;
        }
        .product-tabs-content .tab-pane .card:nth-child(4) {
            transition-delay: 0.4s;
        }
        .product-tabs-content .tab-pane .card:nth-child(5) {
            transition-delay: 0.5s;
        }
        .product-tabs-content .tab-pane .card:nth-child(6) {
            transition-delay: 0.6s;
        }
        .product-tabs-content .tab-pane .card:nth-child(7) {
            transition-delay: 0.7s;
        }
        .product-tabs-content .tab-pane .card:nth-child(8) {
            transition-delay: 0.8s;
        }

        /* 产品服务模块响应式调整 */
        @media (max-width: 768px) {
            .nav-tabs {
                overflow-x: auto;
                justify-content: flex-start !important;
                padding-bottom: 10px;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            
            /* 隐藏滚动条 */
            .nav-tabs::-webkit-scrollbar {
                display: none;
            }
            
            .nav-tabs .nav-item {
                white-space: nowrap;
                margin-right: 10px;
            }
            
            /* 确保产品选项卡导航在展开时水平排列 */
            .product-service-container.expanded .product-tabs-nav {
                display: flex;
                flex-wrap: nowrap;
                overflow-x: auto;
                justify-content: flex-start !important;
                padding-bottom: 10px;
                -webkit-overflow-scrolling: touch;
            }
            
            /* 确保展开后的选项卡项不换行 */
            .product-service-container.expanded .product-tabs-nav .nav-item {
                flex-shrink: 0;
            }
            
            .product-service-section .text-center.mb-5 h2 {
                font-size: 1.5rem;
            }
        }
        
        /* 轮播指示器样式 */
        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            margin: 0;
            padding: 0;
            list-style: none;
        }
        
        .carousel-indicators button {
            position: relative;
            width: 12px;
            height: 12px;
            border-radius: 0;
            background-color: rgba(255, 255, 255, 0.5);
            border: none;
            cursor: pointer;
            overflow: hidden;
            padding: 0;
            margin: 0;
        }
        
        .carousel-indicators button.active {
            background-color: rgba(255, 255, 255, 0.8);
        }
        
        /* 进度条动画 */
        @keyframes progress-animation {
            0% {
                transform: scaleX(0);
            }
            100% {
                transform: scaleX(1);
            }
        }
        
        /* 进度条样式 */
        .carousel-indicators button .progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            width: 100%; /* 宽度设置为100%，由transform控制实际显示 */
            background-color: #007bff;
            transform-origin: left;
            opacity: 0;
            transform: scaleX(0); /* 初始状态为0宽度 */
        }
        
        .carousel-indicators button.active .progress-bar {
            opacity: 1;
        }
        
        /* 汉堡按钮样式 */
        .hamburger {
            cursor: pointer;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
        }

        .hamburger__line {
            width: 24px;
            height: 2px;
            background-color: #333;
            margin: 3px 0;
            transition: all 0.3s ease;
        }

        /* 汉堡按钮激活状态 */
        .menu-open .hamburger .hamburger__line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .menu-open .hamburger .hamburger__line:nth-child(2) {
            opacity: 0;
        }

        .menu-open .hamburger .hamburger__line:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* 移动端菜单样式 */
        .mobile-menu-overlay {
            position: fixed;
            top: 60px;
            left: 0;
            width: 100%;
            height: calc(100% - 60px);
            background-color: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            z-index: 9998;
        }

        /* 菜单激活状态 */
        .menu-open .mobile-menu-overlay {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-container {
            display: flex;
            height: calc(100vh - 60px);
        }

        /* 左侧菜单区域（占屏幕三分之一） */
        .mobile-menu-left {
        width: 33.33%;
        background-color: #fff;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 9999;
        padding: 0;
        overflow-y: auto;
        height: calc(100vh - 60px);
        box-shadow: 1px 0 4px rgba(0, 0, 0, 0.05);
    }

        /* 菜单激活时左侧菜单滑入 */
        .menu-open .mobile-menu-left {
            transform: translateX(0);
        }



        /* 右侧区域（占屏幕三分之二） */
        .mobile-menu-right {
            width: 66.66%;
            background-color: #fff;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: 35px 20px 20px;
            height: calc(100vh - 60px);
            transform: translateX(100%);
            transition: transform 0.3s ease;
        }

        /* 菜单激活时右侧菜单滑入 */
        .menu-open .mobile-menu-right {
            transform: translateX(0);
        }

        /* 右侧内容区域 */
        .mobile-menu-content {
            max-width: 400px;
            width: 100%;
        }

        /* 右侧标题 */
        .mobile-menu-title {
            font-size: 24px;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
        }

        /* 分割线 */
        .mobile-menu-divider {
            width: 50px;
            height: 3px;
            background-color: #007bff;
            margin-bottom: 20px;
        }

        /* 副标题 */
        .mobile-menu-subtitle {
            font-size: 16px;
            color: #666;
            margin-bottom: 15px;
        }

        /* 描述文本 */
        .mobile-menu-description {
            font-size: 14px;
            color: #999;
            line-height: 1.6;
        }

        /* 菜单项样式 */
        .mobile-menu-list {
            list-style: none;
            padding: 20px 0;
            margin: 0;
        }

        .mobile-menu-item {
            margin-bottom: 0;
        }

        .mobile-menu-link {
            display: block;
            padding: 15px 20px;
            font-size: 16px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .mobile-menu-link:hover {
            background-color: #f5f5f5;
            color: #007bff;
        }

        /* 菜单项右侧箭头 - 已注释去除 */
        /*.mobile-menu-link::after {
            content: '>';
            position: absolute;
            right: 20px;
            color: #999;
            font-size: 14px;
        }*/

        /* 移动端导航显示 */
        @media (max-width: 768px) {
            .public-header-right-nav {
                display: none;
            }
            
            .public-header {
                width: 100%;
                left: 0;
                right: 0;
            }
            
            .public-header .wrap {
                width: 100%;
                padding: 0 5px;
                margin: 0;
            }
            
            .public-header-right {
                justify-content: flex-end;
                width: 100%;
                margin-right: 0;
            }
            
            .public-header-right-m-nav {
                display: flex;
                align-items: center;
                justify-content: flex-end;
                margin-right: 0;
                padding-right: 10px;
            }
            
            .public-header-right-m-nav-btn {
                margin-right: 8px;
            }
            
            /* 确保汉堡按钮在最右侧 */
            .public-header-right-m-nav-btn.hamburger {
                order: 2;
            }
        }

		    /* 产品服务模块容器样式 */
		    .product-service-container {
		        max-width: 1400px; /* 比默认container的1280px更宽 */
		        width: 100%;
		        padding-left: 15px;
		        padding-right: 15px;
		        margin-left: auto;
		        margin-right: auto;
		    }
		    
		    /* 响应式调整 */
		    @media (max-width: 768px) {
		        .product-service-container {
		            max-width: 100%;
		        }
		    }
		    
		    @media (max-width: 992px) {
		        .product-service-container {
		            padding-left: 20px;
		            padding-right: 20px;
		        }
		        
		        /* 移动端默认隐藏产品内容 */
        .product-tabs-nav,
        .product-tabs-content {
            display: none;
        }
        
        /* 点击后显示产品内容 */
        .product-service-container.expanded .product-tabs-nav,
        .product-service-container.expanded .product-tabs-content {
            display: flex;
            flex-direction: row;
            overflow-x: auto;
        }

        /* 隐藏移动端产品选项卡导航的滚动条 */
		        .product-service-container.expanded .product-tabs-nav::-webkit-scrollbar {
		            display: none;
		        }
		        
		        /* 移动端菜单项样式 */
		        .product-service-container.expanded .product-tabs-nav .nav-item {
		            white-space: nowrap;
		            margin-right: 10px;
		        }
		        
		        /* 移动端产品卡片一行显示两个 */
		        .product-service-container.expanded .product-tabs-content .row {
		            display: flex;
		            flex-wrap: wrap;
		            margin: 0 -5px;
		        }
		        
		        .product-service-container.expanded .product-tabs-content .col {
		            flex: 0 0 50%;
		            max-width: 50%;
		            padding: 0 5px;
		            margin-bottom: 8px;
		        }
		    }

        /* PC端（≥992px）为什么选择我们动画 */
        @media (min-width: 992px) {
            /* 初始隐藏状态 - 奇数项从左侧滑入 */
            .chooseUs-container .chooseUs-itme {
                opacity: 0;
                transform: translateX(-50px) rotate(-5deg);
                transition: opacity 0.8s ease-out, transform 0.8s ease-out;
            }
            
            /* 偶数项从右侧滑入 */
            .chooseUs-container .chooseUs-itme:nth-child(even) {
                transform: translateX(50px) rotate(5deg);
            }

            /* 显示状态 */
            .chooseUs-container .chooseUs-itme.visible {
                opacity: 1;
                transform: translateX(0) rotate(0deg);
            }

            /* 为不同特性项添加递增的延迟动画 */
            .chooseUs-container .chooseUs-itme:nth-child(1) {
                transition-delay: 0.1s;
            }
            .chooseUs-container .chooseUs-itme:nth-child(2) {
                transition-delay: 0.2s;
            }
            .chooseUs-container .chooseUs-itme:nth-child(3) {
                transition-delay: 0.3s;
            }
            .chooseUs-container .chooseUs-itme:nth-child(4) {
                transition-delay: 0.4s;
            }
        }
	.container_bg1 {
	    background-color: #fff;
	    padding: 80px 0;
	}
	
	.comp_container_auto {
	    max-width: 1400px; /* 增加容器最大宽度 */
	    margin: 0 auto;
	    padding: 0 20px;
	}
	
	.sk-title-container {
	    text-align: center;
	    margin-bottom: 60px;
	}
	
	.sk-title {
	    font-size: 2.5rem;
	    color: #333;
	    margin-bottom: 15px;
	    font-weight: 700;
	}
	
	.sk-desc {
	    font-size: 1.1rem;
	    color: #666;
	    max-width: 800px;
	    margin: 0 auto;
	}
	
	.chooseUs-row-a {
	    display: grid;
	    grid-template-columns: repeat(2, 1fr);
	    gap: 20px; /* 减少间隙，让标签更宽 */
	}
	 .chooseUs-itme {
	     background-color: #fff;
	     border-radius: 8px;
	     border: 1px solid #e5e7eb;
	     padding: 35px 40px; /* 增加内边距，使标签更宽 */
	     display: flex;
	     align-items: center;
	     transition: all 0.3s ease;
	 }
	
	.chooseUs-itme:hover {
	    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
	    border-color: #0d6efd;
	    
	}
	
	.chooseUs-itme-main {
	    flex: 1;
	    padding-right: 20px;
	}
	.chooseUs-itme-title {
	    font-size: 1.5rem;
	    color: #222;
	    margin-bottom: 15px;
	    font-weight: 600;
	}

	.chooseUs-itme-desc {
	    font-size: 1rem;
	    color: #666;
	    line-height: 1.6;
	    margin-bottom: 20px;
	}
	.chooseUs-itme-label {
	    justify-content: center;
	    display: grid;
	    grid-template-columns: repeat(2, 1fr);
	    gap: 10px;
	}
	
	.chooseUs-itme-tag {
	    display: inline-block;
	    padding: 4px 12px;
	    background-color: #f1f5f9;
	    border-radius: 20px;
	    font-size: 0.85rem;
	    color: #475569;
	}
	
	.chooseUs-itme-icon {
	    flex-shrink: 0;
	    width: 60px;
	    height: 60px;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	}
	
	.chooseUs-itme-icon img {
	    max-width: 100%;
	    max-height: 100%;
	    object-fit: contain;
	}
	
	/* 响应式调整 */
	@media (max-width: 992px) {
	    .chooseUs-row-a {
	        grid-template-columns: repeat(2, 1fr);
	    }
	    
	    .sk-title {
	        font-size: 2rem;
	    }
	}
	
	@media (max-width: 768px) {
	    .container_bg1 {
	        padding: 30px 0;
	    }
	    
	    .sk-title-container {
	        margin-bottom: 30px;
	    }
	    
	    .sk-title {
	        font-size: 1.6rem;
	        line-height: 1.2;
	    }
	    
	    .chooseUs-row-a {
	        grid-template-columns: 1fr; /* 移动端一行显示一个卡片 */
	        gap: 15px; /* 调整卡片间距 */
	    }
	    .chooseUs-itme {
	        padding: 15px 15px; /* 减少内边距，缩小高度 */
	        flex-direction: row !important; /* 强制图标和文字水平排列 */
	        text-align: left !important; /* 文字左对齐 */
	    }
	    .chooseUs-itme-main {
	        flex: 1;
	        padding-right: 15px;
	    }
	    .chooseUs-itme-icon {
	        margin-top: 0 !important; /* 图标与文字之间的间距 */
	        flex-shrink: 0;
	    }
	    .chooseUs-itme-title {
	        font-size: 1.2rem !important; /* 减小标题字体大小 */
	        margin-bottom: 8px !important; /* 减少标题下边距 */
	        line-height: 1.2 !important;
	    }
	    .chooseUs-itme-desc {
	        font-size: 0.9rem !important; /* 减小描述字体大小 */
	        margin-bottom: 0 !important; /* 移除描述下边距 */
	        line-height: 1.3 !important;
	    }
	    .chooseUs-itme-label {
	        justify-content: center;
	        display: grid;
	        grid-template-columns: repeat(2, 1fr);
	        gap: 8px;
	    }
	    
	    .chooseUs-itme-tag {
	        width: 100%;
	        text-align: center;
	        box-sizing: border-box;
	        padding: 3px 10px;
	        font-size: 0.8rem;
	    }
	    
	    .sk-desc {
	        font-size: 1rem;
	    }
	}
	/* 基础重置 & 全局样式 */
	* {
	  margin: 0;
	  padding: 0;
	  box-sizing: border-box;
	  -webkit-tap-highlight-color: transparent; /* 移除移动端点击高亮 */
	}
	body {
	  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	}
	
	/* 产品服务展示模块样式覆盖 */
	.product-service-section {
	  background-color: #fff !important;
	}
	
	/* 新闻部分样式覆盖 */
	section.section.news {
	  background-color: #fff;
	}
	
	/* 外层容器：自适应宽度 */
	.section-content {
	  margin-top: 50px;
	  max-width: 1400px;
	  margin-left: auto;
	  margin-right: auto;
	  padding: 0 20px;
	  width: 100%;
	}
	
	/* 头部样式：响应式文字 */
	.section-header {
	  text-align: center;
	  margin-bottom: 40px;
	  width: 100%;
	}
	.section-header h2 {
	  font-size: clamp(24px, 5vw, 28px); /* 响应式字体：320px屏显24px，1400px屏显28px */
	  color: #2c3e50;
	  margin-bottom: 12px;
	  font-weight: 600;
	  margin-top: 0;
	}
	.section-header p {
	  font-size: clamp(14px, 3vw, 16px);
	  color: #6c757d;
	  margin: 0 auto;
	  max-width: 800px;
	  line-height: 1.5;
	  padding: 0 10px; /* 移动端文字不贴边 */
	}
	
	/* 合作展示部分样式 */
.partner-section {
  background-color: #fff;
  padding: 60px 0;
}

.partner-logo-container {
  overflow: hidden;
  position: relative;
  margin-top: 30px;
}

.partner-logo-container:hover .partner-logo-scroll {
  animation-play-state: paused;
}

.partner-logo-scroll {
  display: flex;
  animation: scroll 20s linear infinite;
  width: 200%; /* 因为我们复制了logo，所以需要两倍宽度 */
}

.partner-logo-item {
  flex: 0 0 auto;
  width: calc(100% / 12); /* 12个logo，每个占1/12宽度 */
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: none;
  transition: all 0.3s ease;
}

.partner-logo-item img:hover {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Logo滚动动画 */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* 滚动到一半，因为我们复制了logo */
  }
}

/* 响应式调整 */
@media (max-width: 768px) {
  .partner-section {
    display: none;
  }
}

/* 加入我们横幅样式 */
.join-banner {
  background-image: url("https://cloud.divcloud.cn/storage/uploads/68da80bd768dd.gif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.join-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.05) 20px,
    rgba(255, 255, 255, 0.05) 40px
  );
  z-index: 1;
}

.banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.banner-content h2 {
  font-size: 2.5rem;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

.join-button {
  background-color: #0055FF;
  color: white;
  border: none;
  padding: 10px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.join-button:hover {
  background-color: #0044CC;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 响应式调整 */
@media (max-width: 768px) {
  .join-banner {
    padding: 40px 0;
  }
  
  .banner-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .banner-content h2 {
    font-size: 1.5rem;
  }
}

/* 卡片容器：大屏横向，移动端纵向 */
	.news-container {
	  display: flex;
	  gap: clamp(20px, 3vw, 40px); /* 响应式间距 */
	  justify-content: center;
	  flex-wrap: wrap;
	  margin: 0 auto;
	  width: 100%;
	}
	
	/* 卡片样式：基础+响应式 */
	.news-box {
	  flex: 1;
	  min-width: 300px;
	  max-width: 800px;
	  background: #ffffff;
	  border-radius: clamp(8px, 2vw, 12px); /* 响应式圆角 */
	  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
	  padding: clamp(16px, 3vw, 24px);
	  transition: none; /* 取消过渡，移动端更流畅 */
	}
	
	/* 卡片头部 */
	.news-header {
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  padding-bottom: 16px;
	  margin-bottom: 16px;
	  border-bottom: 2px solid #f5f7fa;
	}
	.news-header h3 {
	  font-size: clamp(18px, 3vw, 20px);
	  color: #2c3e50;
	  font-weight: 600;
	  margin: 0;
	}
	
	/* 查看详情链接：移动端放大点击区域 */
	.more-link {
	  color: #4096ff;
	  text-decoration: none;
	  font-size: clamp(12px, 2vw, 14px);
	  display: flex;
	  align-items: center;
	  padding: 4px 8px; /* 放大点击区域 */
	  border-radius: 4px;
	  transition: color 0.2s ease;
	}
	.more-link:hover {
	  color: #1677ff;
	  text-decoration: none;
	}
	.more-link i {
	  font-size: 12px;
	  margin-left: 4px;
	  transition: transform 0.2s ease;
	}
	.more-link:hover i {
	  transform: translateX(2px);
	}
	
	/* 加载状态：移动端适配 */
	.loading {
	  text-align: center;
	  padding: clamp(20px, 5vw, 30px) 0;
	  color: #666;
	}
	.loading i {
	  font-size: clamp(18px, 4vw, 24px);
	  margin-right: 8px;
	  color: #4096ff;
	  animation: spin 1s linear infinite;
	}
	.loading p {
	  margin: 8px 0 0;
	  font-size: clamp(12px, 2vw, 14px);
	}
	
	/* 错误状态：移动端适配 */
	.error {
	  text-align: center;
	  padding: clamp(20px, 5vw, 30px) clamp(10px, 2vw, 20px);
	  color: #f5222d;
	  background-color: #fff1f0;
	  border-radius: clamp(6px, 2vw, 8px);
	  margin: 10px 0;
	  font-size: clamp(12px, 2vw, 14px);
	  line-height: 1.5;
	}
	
	/* 空内容状态：移动端适配 */
	.no-content {
	  text-align: center;
	  padding: clamp(20px, 5vw, 30px) 0;
	  color: #999;
	  background-color: #fafafa;
	  border-radius: clamp(6px, 2vw, 8px);
	  margin: 10px 0;
	  font-size: clamp(12px, 2vw, 14px);
	}
	
	/* 新闻/公告项：移动端优化 */
	.news-item {
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  padding: clamp(10px, 2vw, 12px) 0;
	  border-bottom: 1px solid #f0f0f0;
	  width: 100%;
	}
	.news-item:last-child {
	  border-bottom: none;
	}
	
	/* 新闻标题：移动端优化换行/截断 */
	.news-title {
	  flex: 1;
	  color: #333;
	  text-decoration: none;
	  overflow: hidden;
	  text-overflow: ellipsis;
	  white-space: nowrap;
	  margin-right: clamp(8px, 2vw, 12px);
	  font-size: clamp(12px, 2vw, 14px);
	  padding: 4px 0; /* 放大点击区域 */
	  transition: color 0.2s ease;
	}
	.news-title:hover {
	  color: #4096ff;
	  text-decoration: none;
	}
	
	/* 日期样式：移动端适配 */
	.news-date {
	  color: #999;
	  white-space: nowrap;
	  font-size: clamp(10px, 1.5vw, 12px);
	  background-color: #f5f7fa;
	  padding: 2px clamp(6px, 1.5vw, 8px);
	  border-radius: 4px;
	}
	
	/* 旋转动画 */
	@keyframes spin {
	  0% { transform: rotate(0deg); }
	  100% { transform: rotate(360deg); }
	}
	
	/* 响应式断点1：平板/小屏电脑（768px以下） */
	@media screen and (max-width: 768px) {
	  .news-container {
	    flex-direction: column !important;
	    gap: 20px !important;
	    align-items: stretch !important;
	    padding: 0 5px;
	  }
	  .news-box {
	    min-width: 100% !important;
	    max-width: 100% !important;
	    padding: 20px 16px !important;
	    margin: 0 auto !important;
	    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); /* 移动端更轻的阴影 */
	  }
	  .section-content {
	    max-width: 100% !important;
	    padding: 0 15px !important;
	    margin-top: 30px !important; /* 移动端减少顶部间距 */
	  }
	  .section-header {
	    margin-bottom: 25px !important; /* 移动端减少头部间距 */
	  }
	  /* 为什么选择我们模块 - 移动端样式 */
	  .chooseUs-row-a {
	    grid-template-columns: 1fr; /* 移动端一行显示一个卡片 */
	    gap: 15px; /* 调整卡片间距 */
	  }
	  .chooseUs-itme {
	    padding: 15px 15px; /* 减少内边距，缩小高度 */
	    flex-direction: row !important; /* 强制图标和文字水平排列 */
	    text-align: left !important; /* 文字左对齐 */
	  }
	  .chooseUs-itme-main {
	    flex: 1;
	    padding-right: 15px;
	  }
	  .chooseUs-itme-icon {
	    margin-top: 0 !important; /* 图标与文字之间的间距 */
	    flex-shrink: 0;
	  }
	}
	
	/* 响应式断点2：小屏手机（480px以下） */
	@media screen and (max-width: 480px) {
	  .news-item {
	    flex-wrap: wrap; /* 极端小屏时日期换行 */
	    gap: 8px;
	    padding: 12px 0;
	  }
	  .news-date {
	    width: fit-content;
	    margin-left: auto; /* 日期右对齐 */
	  }
	  .section-content {
	    padding: 0 10px !important;
	  }
	  .news-header {
	    padding-bottom: 12px;
	    margin-bottom: 12px;
	  }
	}
	/* 响应式断点3：超小屏手机（320px以下） */
	@media screen and (max-width: 320px) {
	  .section-header h2 {
	    font-size: 20px !important;
	  }
	  .news-header h3 {
	    font-size: 16px !important;
	  }
	  .more-link {
	    font-size: 12px !important;
	  }
	}
