.scrolling-list-container {
    /* 背景色改为浅灰色 */
    background: #f0f1f5;
    
    /* 边框改为灰色 */
    border: 12px solid #f0f1f5;
    
    border-radius: 6px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    height: 700px;
}

.lotus-center {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #ffd700 0%, #ff9800 100%);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
}


/* 标题样式 */
.scrolling-title {
    text-align: center;
    padding: 12px 0 10px 0;
    
    /* 标题背景改为深灰色 */
    background: #4a4a4a;
    
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    border-bottom: 2px solid #f0f1f5;
    
    /* ✅ 新增：让标题居中 */
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* 滚动区域 */
.scroll-viewport {
    height: 240px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.scroll-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: top 0.6s ease-in-out;
}

 .scroll-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 15px;
            border-bottom: 1px solid #ddd;
            background-color: #ffffff; /* 改为纯白色 */
            margin: 0 8px;
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
.scroll-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    
    /* 高亮条改为中灰色 */
    background: #8a8a8a;
}

.scroll-item:hover {
    background-color: rgba(33, 35, 60, 1); /* 悬停时稍亮的深蓝 */
    transform: translateX(4px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.scroll-item.highlighted {
    background-color: #f9f9f9; /* 浅灰色背景 */
    border-left: 3px solid #4a4a4a; /* 深灰色边框 */
}

.name {
    font-size: 14px;
    font-weight: 600;
    color: #333333; /* 深灰色文字 */
    flex: 1;
    font-family: "SimSun", "STSong", serif;
}

.date {
    font-size: 12px;
    color: #666666; /* 中灰色文字 */
    font-style: italic;
    margin-left: 10px;
    font-family: "SimSun", "STSong", serif;
}
/* 底部信息样式 */
.scroll-bottom-info {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 10px;
    color: #8b4513;
    opacity: 0.6;
}
   /* 标题包装器 */
    .title-wrapper {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        position: relative;
    }
    
    /* 标题图标样式 */
    .title-icon {
        width: 20px;
        height: 20px;
        vertical-align: middle;
        filter: brightness(0) invert(1);
        position: relative;
        z-index: 20; /* 较高的层级 */
        opacity: 0.9;
        transition: opacity 0.3s ease;
    }
    
    .title-icon:hover {
        opacity: 1;
    }
    
    /* 左侧图标 */
    .left-icon {
        transform: rotate(0deg);
    }
    
    /* 右侧图标 */
    .right-icon {
        transform: rotate(0deg);
    }
    
    /* 标题文字 */
    .title-text {
        color: #ffffff;
        font-weight: bold;
        position: relative;
        z-index: 20;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }
    
    /* 调整标题容器，确保不遮盖图标 */
    .scrolling-title {
        text-align: center;
        padding: 12px 0 10px 0;
        background: #4a4a4a;
        color: #fff;
        font-size: 18px;
        letter-spacing: 2px;
        position: relative;
        z-index: 1;
        border-bottom: 2px solid #f0f1f5;
        overflow: visible; /* 重要：允许子元素超出容器 */
    }
    
    /* 如果还是被遮盖，可以添加这个 */
    .scrolling-title::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: inherit; /* 继承背景色 */
        z-index: 0; /* 背景在最下层 */
    }