
        /* --- 行业解决方案：横向滚动版式 --- */
        .uee-slider-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: #ffffff;
            padding: 50px 0;
            color: #111827;
            overflow: hidden;
        }

        .uee-slider-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 5%;
        }

        /* 顶部标题与箭头 */
        .uee-slider-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 35px;
        }

        .uee-title-box { text-align: left; }
        .uee-tag-mini {
            display: inline-block;
            background-color: #f0fdfa;
            color: #59B7B8;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 12px;
            border: 1px solid #ccfbf1;
        }
        .uee-title-box h2 {
            font-size: 40px;
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -1.8px;
            margin: 0 0 8px 0;
        }
        .uee-title-box p { font-size: 17px; color: #64748b; margin: 0; }

        /* 导航箭头 */
        .uee-arrows-group { display: flex; gap: 12px; margin-bottom: 5px; }
        .uee-nav-btn {
            width: 44px; height: 44px;
            border-radius: 50%;
            border: 1px solid #e2e8f0;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #1e293b;
            box-shadow: 0 2px 4px rgba(0,0,0,0.02);
        }
        .uee-nav-btn:hover { border-color: #59B7B8; color: #59B7B8; transform: scale(1.05); }

        /* 滚动轨道容器 */
        .uee-scroll-wrapper {
            padding: 10px 5% 40px 5%;
            margin: 0 -5%;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none; /* Firefox */
        }
        .uee-scroll-wrapper::-webkit-scrollbar { display: none; /* Chrome/Safari */ }

        .uee-scroll-track {
            display: flex;
            gap: 24px;
            width: max-content;
        }

        /* 卡片样式：极致紧凑版 */
        .uee-sector-card {
            flex: 0 0 360px; /* 固定卡片宽度 */
            background: #ffffff;
            border-radius: 24px;
            border: 1px solid #f1f5f9;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
            text-align: left;
        }
        .uee-sector-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }

        .uee-card-img { width: 100%; height: 180px; object-fit: cover; }

        .uee-card-body { padding: 25px; }
        .uee-card-title { font-size: 22px; font-weight: 800; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }

        .uee-card-list { list-style: none; padding: 0; margin: 0 0 30px 0; }
        .uee-card-list li {
            position: relative;
            padding-left: 18px;
            font-size: 14px;
            color: #4b5563;
            margin-bottom: 8px;
            font-weight: 600;
            line-height: 1.3;
        }
        .uee-card-list li::before {
            content: '';
            position: absolute;
            left: 0; top: 6px;
            width: 6px; height: 6px;
            background-color: #59B7B8;
            border-radius: 50%;
        }

        .uee-card-foot {
            border-top: 1px solid #f1f5f9;
            padding-top: 15px;
            display: flex;
            justify-content: space-between;
            font-size: 10px;
            font-weight: 700;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .uee-foot-link { text-decoration: none; color: inherit; transition: 0.2s; }
        .uee-foot-link:hover { color: #59B7B8; }

        /* 移动端适配 */
        @media (max-width: 768px) {
            .uee-sector-card { flex: 0 0 300px; }
            .uee-slider-header { flex-direction: column; align-items: flex-start; gap: 20px; }
            .uee-arrows-group { align-self: flex-end; }
        }
    