
        /* --- 行业解决方案：横向滚动带箭头版式 --- */
        .uee-industry-slider-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #f9fafb;
            padding: 50px 0; /* 左右不加内边距，方便图片顶边滚动 */
            color: #111827;
            overflow: hidden;
        }

        .uee-slider-header-wrapper {
            max-width: 1200px;
            margin: 0 auto 30px auto;
            padding: 0 5%;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .uee-slider-title-area {
            text-align: left;
        }

        .uee-slider-title-area h2 {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -1.5px;
            margin: 0 0 10px 0;
            color: #0B1221;
        }

        .uee-slider-title-area p {
            font-size: 17px;
            color: #64748b;
            max-width: 550px;
            margin: 0;
            line-height: 1.4;
        }

        /* 箭头样式 */
        .uee-slider-arrows {
            display: flex;
            gap: 12px;
        }

        .uee-arrow-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid #e2e8f0;
            background: #fff;
            color: #0B1221;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .uee-arrow-btn:hover {
            background: #59B7B8;
            color: #fff;
            border-color: #59B7B8;
            box-shadow: 0 4px 12px rgba(89, 183, 184, 0.3);
        }

        .uee-arrow-btn svg {
            width: 20px;
            height: 20px;
        }

        /* 滚动容器 */
        .uee-slider-outer {
            padding: 0 5%;
            overflow: hidden;
        }

        .uee-slider-track {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none; /* Firefox */
            padding: 10px 0 30px 0; /* 为阴影留出空间 */
        }

        .uee-slider-track::-webkit-scrollbar {
            display: none; /* Chrome/Safari */
        }

        /* 卡片样式 */
        .uee-ind-card {
            flex: 0 0 350px; /* 固定卡片宽度 */
            background: #ffffff;
            border-radius: 24px;
            overflow: hidden;
            text-align: left;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
            border: 1px solid #f1f5f9;
            display: flex;
            flex-direction: column;
        }

        .uee-ind-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            border-color: #e2e8f0;
        }

        .uee-ind-img-box {
            width: 100%;
            height: 180px;
            overflow: hidden;
        }

        .uee-ind-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .uee-ind-body {
            padding: 24px;
        }

        .uee-ind-top {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .uee-ind-body h3 {
            font-size: 20px;
            font-weight: 700;
            margin: 0;
            color: #0B1221;
        }

        .uee-ind-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .uee-ind-list li {
            position: relative;
            padding-left: 18px;
            font-size: 14px;
            color: #4b5563;
            margin-bottom: 10px;
            line-height: 1.35;
        }

        .uee-ind-list li::before {
            content: '●';
            position: absolute;
            left: 0;
            color: #59B7B8;
            font-size: 10px;
            top: 1px;
        }

        /* 手机端适配 */
        @media (max-width: 768px) {
            .uee-ind-card { flex: 0 0 280px; }
            .uee-slider-header-wrapper { flex-direction: column; align-items: flex-start; gap: 20px; }
            .uee-slider-arrows { width: 100%; justify-content: flex-end; }
        }
    