    
        .container2 {
            max-width: 1400px;
            margin: 0 auto;
            padding: 00px;
        }
        
        /* 标题区域 */
        .section-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid #44AC50;
			width: 100%;
        }
        
        .section-header h1 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .section-header p {
            font-size: 1.1rem;
            color: #7f8c8d;
            max-width: 700px;
            margin: 0 auto 20px;
        }
        


        
        /* 案例展示区域 - 已修改：隐藏滚动条 */
        .cases-container {
            position: relative;
            margin-bottom: 40px;
        }
        
        .cases-scroll-wrapper {
            overflow-x: auto;
            overflow-y: hidden;
            padding: 20px 10px 25px 10px; /* 增加下边距，为隐藏滚动条留空间 */
            margin: 0 -10px;
            /* 隐藏滚动条 - 关键代码开始 */
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE 和 Edge */
        }
        
        /* 隐藏Chrome、Safari和Opera的滚动条 */
        .cases-scroll-wrapper::-webkit-scrollbar {
            display: none; /* 隐藏滚动条 */
            height: 0; /* 设置高度为0 */
            width: 0; /* 设置宽度为0 */
        }
        
        .cases-grid {
            display: flex;
            gap: 25px;
            width: max-content;
            padding-bottom: 5px; /* 稍微减少内边距 */
        }
        
        /* 案例卡片 */
        .case-card {
            width: 320px;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            flex-shrink: 0;
            position: relative;
        }
        
        .case-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .case-image {
            height: 220px;
            width: 100%;
            overflow: hidden;
            position: relative;
        }
        
        .case-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .case-card:hover .case-image img {
            transform: scale(1.05);
        }
        
        .case-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: rgba(68, 172, 80, 0.9);
            color: white;
            padding: 5px 12px;
            border-radius: 4px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .case-content {
            padding: 20px;
			
        }
        
        .case-content h3 {
            font-size: 1.4rem;
            color: #2c3e50;
            margin-bottom: 10px;
            line-height: 1.3;
			height: 20px;
        }
        
        .case-content p {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
			height: 60px;
        }
        
        .case-meta {
            display: flex;
            justify-content: space-between;
            color: #7f8c8d;
            font-size: 0.85rem;
            margin-bottom: 20px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }
        
        .case-btn {
            display: inline-block;
            background-color: #44AC50;
            color: white;
            text-decoration: none;
            padding: 10px 0px;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-align: center;
            width: 100%;
        }
        
        .case-btn:hover {
            background-color: #3a8f44;
        }
        
        /* 更多按钮区域 */
        .more-section {
            text-align: center;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px dashed #ddd;
        }
        
        .more-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: #44AC50;
            color: white;
            padding: 12px 30px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .more-btn:hover {
            background-color: #3a8f44;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(68, 172, 80, 0.3);
        }
        
        /* 导航按钮（左右滚动） */
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #44AC50;
            cursor: pointer;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            z-index: 10;
        }
        
        .nav-btn:hover {
            background-color: #44AC50;
            color: white;
        }
        
        .nav-btn.prev {
            left: 0px;
        }
        
        .nav-btn.next {
            right: 0px;
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .nav-btn.prev {
                left: 5px;
            }
            
            .nav-btn.next {
                right: 5px;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }
            
            .section-header h1 {
                font-size: 2rem;
            }
            

            
            .case-card {
                width: 280px;
            }
            
            .nav-btn {
                display: none;
            }
            
            .cases-grid {
                gap: 15px;
            }

            
            /* 在移动端允许触摸滑动 */
            .cases-scroll-wrapper {
                -webkit-overflow-scrolling: touch; /* 移动端平滑滚动 */
                cursor: grab; /* 显示抓取手势 */
            }
            
            .cases-scroll-wrapper:active {
                cursor: grabbing; /* 抓取时的手势 */
            }
        }
        
        @media (max-width: 480px) {
            .section-header h1 {
                font-size: 1.7rem;
            }
            
            .case-card {
                width: 260px;
            }
            
            .case-content h3 {
                font-size: 1.2rem;
            }
        }
        
        /* 悬浮按钮样式 */
        .floating-btns {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 100;
        }
        
        .floating-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #44AC50;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(68, 172, 80, 0.3);
            transition: all 0.3s ease;
        }
        
        .floating-btn:hover {
            transform: scale(1.1);
            background-color: #3a8f44;
        }
        
        /* 滚动提示（可选） */
        .scroll-hint {
            text-align: center;
            color: #7f8c8d;
            font-size: 0.9rem;
            margin-top: 10px;
            display: none; /* 默认隐藏，可根据需要显示 */
        }
        
        .scroll-hint i {
            margin-right: 5px;
        }
        
        /* 底部信息 */
        .footer-info {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            color: #7f8c8d;
            font-size: 0.9rem;
            border-top: 1px solid #eee;
        }