  /* 跑马灯容器 */
 /* 跑马灯容器（适配原有页面样式） */
.marquee-wrapper {
    width: 100%;
    margin: 20px 0;
    overflow: hidden;
    background: transparent;
    position: relative;
}

.marquee-wrapper-activity {
    height: 283px; /* 固定高度，与图片一致 */
}

/* 跑马灯内容容器 */
.marquee-content {
    display: flex;
    height: 100%;
    will-change: transform;
}

/* 图文项容器（关键：固定尺寸 + 相对定位） */
.marquee-item {
    position: relative;
    width: 400px;          /* 固定宽度 */
    height: 283px;         /* 固定高度 */
    margin: 0 12px;        /* 间距 */
    flex-shrink: 0;        /* 禁止压缩 */
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;      /* 确保蒙版不溢出 */
}

/* 图片样式：填充容器 */
.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* 裁剪填充，保持比例 */
    display: block;
}

/* 蒙版层（仅用于活动回顾） */
.marquee-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0000006e;
    padding: 10px 8px;
    color: white;
    font-size: 14px;
    text-align: center;
    line-height: 1.4;
    box-sizing: border-box;
}

.marquee-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

    /* 悬停图片放大效果（可选） */
    /*.marquee-wrapper:hover .marquee-item {*/
    /*    transform: scale(1.03);*/
    /*}*/

  
    /*@media (max-width: 767px) {*/
    /*        .notice-board {*/
    /*  height: 100px;*/
    /*}*/
    /*    .scroll-track img {*/
    /*  height: 80px;*/
    /*}*/

    /*}*/