        .slider-section {
            position: relative;
            width: 100%;
            height: 500px;
            overflow: hidden;
        }

        /* 幻灯片 */
        .slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .slide.active {
            opacity: 1;
            z-index: 1;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: 100% 100%;
            display: block;
        }

        /* 底部索引条 */
        .slider-dots {
            position: absolute;
            left: 50%;
            bottom: 20px;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .slider-dots span {
            width: 80px;
            height: 5px;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dots span.active {
            background: #fff;
        }

        /* 解决方案 */
        .section-padding {
            padding: 240px 20px;
            margin: 0 auto;
        }

        .solutions-section {
            padding: 7.5rem;
            background: #f5f5f5;

        }

        .solutions-container {
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: 1fr 1fr;
            gap: 0;
        }

        .solutions-bg {
            grid-row: span 2;
            background: url('https://taizhen.oss-cn-hangzhou.aliyuncs.com/www/images/home/%E7%AC%AC%E4%BA%8C%E9%83%A8%E5%88%86-%E4%B8%AD%E9%97%B4/%E4%BB%B2%E8%A3%81%E9%99%A2%20%E9%85%8D%E5%9B%BE1.png') no-repeat;
            background-size: 100% 100%;
            position: relative;
        }

        .solutions-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .solutions-title {
            position: relative;
            z-index: 2;
            color: white;
            font-size: 48px;
            font-weight: 700;
            letter-spacing: .0625rem;
            margin: 0;
            padding: 7.5rem 2.5rem 0;
            text-align: left;
        }

        .solutions-chinese {
            position: relative;
            z-index: 2;
            color: white;
            font-size: 40px;
            font-weight: 600;
            margin: 0;
            padding: 0 2.5rem;
            text-align: left;
        }

        /* —— 所有卡片通用样式 */
        .solution-item {
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            color: #fff !important;

        }

        .solution-item-fayuan {
            background: url('https://taizhen.oss-cn-hangzhou.aliyuncs.com/www/images/home/%E7%AC%AC%E4%BA%8C%E9%83%A8%E5%88%86-%E4%B8%AD%E9%97%B4/%E4%BB%B2%E8%A3%81%E9%99%A2%20%E9%85%8D%E5%9B%BE2%EF%BC%88%E4%BE%9B%E9%80%89%E6%8B%A9%EF%BC%89.png') no-repeat;
            background-size: 100% 100%;
            position: relative;
            color: #fff !important;
            padding: 1.25rem;
            text-align: center;
        }

        /* 蒙层 */
        .solution-item-fayuan::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(56, 56, 56, 0.8);
            z-index: 1;
        }

        /* 文字内容要高于蒙层 */
        .solution-item-fayuan>* {
            position: relative;
            z-index: 2;
            color: #fff !important;
        }

        /* 文本卡片（如法院、通用行业） */
        .text {
            background: rgb(238 56 70);
            color: #fff !important;
            text-align: center;
            z-index: 2;

        }

        .text h3 {
            font-size: 28.8px;
            color: #fff !important;
            margin-bottom: .9375rem;
        }

        .text p {
            font-size: 15.2px;
            line-height: 1.6;
            margin-bottom: 1.25rem;
            color: #fff !important;
        }

        /* 图片卡片（如公安、科技球） */
        .image {
            width: 100%;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .image img {
            width: 100%;
            height: 100%;
        }

        /* 横跨两列的宽文本卡片（红色框） */
        .wide-text h3 {
            grid-column: span 2;
            color: #333;
            border: 1px solid #eee;
            text-align: center;

        }

        .wide-text h3 {
            color: #e5002b;
            font-size: 22.4px;
            margin-bottom: 10px;
        }

        .wide-text p {
            font-size: 14.4px;
            line-height: 1.6;
            margin-bottom: 15px;
            padding: 0 12px;
        }

        .toggle-btn {
            background: none;
            border: none;
            font-size: 24px;
            color: #e5002b;
            cursor: pointer;
            padding: 5px;
            float: right;
        }

        .news-card .content {
            padding: 16px 20px;
            text-align: left;
            min-height: 100px;
            /* 根据最长摘要调整 */
            display: flex;
            flex-direction: column;
        }

        .btn-more {
            display: inline-block;
            padding: .625rem 1.5625rem;
            background: white;
            color: #e5002b;
            text-decoration: none;
            border-radius: .25rem;
            font-weight: 600;
            margin-top: .625rem;
            transition: background 0.3s ease;
        }

        .btn-more:hover {
            background: #f0f0f0;
        }

        /* 新闻 */
        .news-section {
            padding: 60px 0;
        }

        .news-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .news-title p {
            color: #e74c3c;
            font-weight: bold;
        }

        /* 外层：控制滚动 */
        .news-scroll-wrapper {
            overflow-x: auto;
            overflow-y: hidden;
            padding-bottom: 10px;
        }

        /* 内层：横向排列 */
        .news-list {
            display: flex;
            flex-wrap: nowrap;
            /* 关键：不换行 */
            gap: 30px;
            padding: 0 60px;
        }

        /* 单个卡片 */
        .news-item {
            flex: 0 0 calc((100% - 90px) / 4);
            /* 一行 4 个 */
        }

        /* 日期 */
        .news-date {
            color: #999;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .news-date strong {
            display: block;
            font-size: 20px;
            color: #333;
        }

        /* 标题 */
        .news-item h3 {
            font-size: 16px;
            line-height: 1.5;
            height: 48px;
            /* 固定两行 */
            overflow: hidden;
            margin-bottom: 10px;
        }

        /* 描述 */
        .news-item p {
            font-size: 16px;
            color: #999;
            line-height: 1.6;
            height: 50px;
            /* 固定高度 */
            overflow: hidden;
            margin-bottom: 15px;
        }

        .news-more {
            font-size: 14px;
            color: #bbb;
            margin-bottom: 15px;
        }

        /* 图片 */
        .news-img {
            width: 99%;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            cursor: pointer;
        }

        .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .news-item:hover {
            color: #e74c3c;
        }


        /* 图片 */
        .news-img:hover {
            width: 100%;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            cursor: pointer;
        }

        /* 去掉滚动条（可选） */
        .news-scroll-wrapper::-webkit-scrollbar {
            display: none;
        }



        /* 移动端 */
        @media (max-width:37.5rem) {
            .slider-section {
                position: relative;
                width: 100%;
                height: 18.75rem;
                overflow: hidden;
            }

            .solutions-section {
                overflow: hidden;
                padding: 3.75rem 0;
            }

            .solutions-container {
                margin: 0 auto;
                display: grid;
                grid-template-columns: repeat(1, 1fr);
                grid-template-rows: 1fr 1fr;
                gap: 0;
            }
        }