﻿/* DEDECMS新闻列表向上滚动效果 - 限定在b_box38left区域 */
        .g_box2left {
            border: 1px solid #eaeaea;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
        }

        .t_1_left {
            background: #f8f9fa; /* 不透明背景 */
            padding: 15px 20px;
            border-bottom: 1px solid #eaeaea;
            font-size: 18px;
            font-weight: bold;
            color: #2c3e50;
            opacity: 1; /* 确保完全不透明 */
            position: relative;
            z-index: 10; /* 设置较高的z-index确保覆盖在其他元素之上 */
        }

        .b_box38left-container {
            height: 300px; /* 固定容器高度 */
            overflow: hidden; /* 隐藏超出部分 */
            position: relative;
        }

        .b_box38left {
            list-style: none;
            margin: 0;
            padding: 0;
            position: relative;
        }

        .b_box38left li {
            padding: 12px 20px;
            border-bottom: 1px dashed #eaeaea;
            transition: all 0.3s ease;
            font-size: 15px; /* 设置li元素字体大小为15px */
        }

        .b_box38left li:hover {
            background-color: #FFF5EE;
            transform: translateX(5px);
        }

        .b_box38left li a {
            text-decoration: none;
            color: #333;
            display: flex;
            align-items: center;
            font-size: 15px; /* 同时设置a标签字体大小 */
        }

        .b_box38left li a:before {
            content: "▶";
            color: #FF6A6A;
            margin-right: 10px;
            font-size: 12px;
        }

        .b_box38left li a:hover {
            color: #e74c3c;
        }

        /* 确保在DEDECMS中正常工作 */
        .b_box38left li:last-child {
            border-bottom: none;
        }