        /*styles\style-news.css*/
        /* 新闻列表样式 */
        .content-item ul {
            list-style: none;
            width: 100%;
        }

        .content-item li {
            border-bottom: 1px solid #eaeaea;
            padding: 20px 200px;
            transition: all 0.3s ease;
        }

        .content-item li:hover {
            background-color: #f9f9f9;
            transform: translateX(5px);
        }

        .content-item li a {
            display: flex;
            text-decoration: none;
            color: #333;
        }

        .news-pic {
            width: 180px;
            height: 120px;
            flex-shrink: 0;
            margin-right: 20px;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .news-pic img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .content-item li:hover .news-pic img {
            transform: scale(1.05);
        }

        .news-right {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .tit {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #2c3e50;
            line-height: 1.4;
        }

        .news-date {
            color: #7f8c8d;
            font-size: 14px;
        }

        .news-tag {
            display: inline-block;
            background: #9370DB;
            color: white;
            font-size: 12px;
            padding: 3px 8px;
            border-radius: 4px;
            margin-right: 8px;
        }

        /* 分页样式 */
        .yema {
            display: flex;
            width: 100%;
            justify-content: center;
            align-items: center;
            margin-top: 40px;
            flex-wrap: wrap;
            margin-bottom: 70px;
        }

        .yema a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 36px;
            height: 36px;
            margin: 0 5px;
            padding: 0 10px;
            background: #f8f9fa;
            color: #6c757d;
            text-decoration: none;
            border-radius: 6px;
            font-size: 14px;
            transition: all 0.3s ease;
            border: 1px solid #dee2e6;
        }

        .yema a:hover {
            background: #9370DB;
            color: white;
            border-color: #9370DB;
        }

        .yema a.select {
            background: #9370DB;
            color: white;
            border-color: #9370DB;
        }

        .yema a:first-child,
        .yema a:last-child {
            min-width: 60px;
        }

        /* 动画效果 */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .clearfix:after {
            content: "";
            display: table;
            clear: both;
        }