        .news-wrapper {
            position: relative;
            margin: 0 -10px;
        }

        .news-list {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 10px;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .news-list::-webkit-scrollbar {
            display: none;
        }

        .news-item {
            flex: 0 0 calc(33.333% - 14px);
            min-width: 280px;
            padding: 24px;
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .news-item:hover {
            border-color: #3b82f6;
            box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
            transform: translateY(-4px);
        }

        .news-tag {
            display: inline-block;
            padding: 4px 12px;
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
            border-radius: 20px;
            font-size: 11px;
            color: #3b82f6;
            margin-bottom: 12px;
            font-weight: 500;
        }

        .news-item h4 {
            font-size: 15px;
            font-weight: 600;
            color: #1f2329;
            margin-bottom: 10px;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-item p {
            font-size: 13px;
            color: #8b95a5;
            line-height: 1.7;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* 新闻滑动按钮 */
        .news-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid #e5e7eb;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
            opacity: 0;
        }

        .news-wrapper:hover .news-nav-btn {
            opacity: 1;
        }

        .news-nav-btn:hover {
            background: #3b82f6;
            border-color: #3b82f6;
            box-shadow: 0 6px 25px rgba(59, 130, 246, 0.3);
        }

        .news-nav-btn:hover svg {
            stroke: #fff;
        }

        .news-nav-btn svg {
            width: 20px;
            height: 20px;
            stroke: #646a73;
            stroke-width: 2;
            fill: none;
            transition: stroke 0.3s;
        }

        .news-prev {
            left: -22px;
        }

        .news-next {
            right: -22px;
        }

        /* 新闻指示器 */
        .news-indicators {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 24px;
        }

        .news-indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #e5e7eb;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .news-indicator.active {
            background: #3b82f6;
            width: 24px;
            border-radius: 4px;
        }

        .news-indicator:hover {
            background: #93c5fd;
        }

        /* Contact */

@media (max-width: 768px) {
    .news-item {
        flex: 0 0 85%;
    }
    
    .news-nav-btn {
        opacity: 1;
    }
}
