.marqueeBox {
    width: 100%;
    position: relative;
    padding:10px 80px 10px 108px;
}


.marquee-container {
    position: relative;
    height: 24px;
    overflow: hidden;
}

.marquee-list {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    list-style: none;
    transition: top 0.5s ease;
    margin:0;
    padding:0;
}

.marquee-item {
    height: 24px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 14px;
    font-family: PingFang SC;
}

.marquee-item:last-child {
    border-bottom: none;
}

/*.marquee-item:hover {
    background-color: #f0f7ff;
}*/

.marquee-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    color: #333;
}

.controls {
    display: flex;
    justify-content: center;
    gap: 10px;
}


.indicator {
    display: flex;
    justify-content: center;
}

.marqueeTitle{
    position: absolute;
    top:12px;
    left: 16px;
}

.marqueeTitle img{
    width: 16px;
    margin-top: -2px;
    margin-right: 4px;
}

.marqueeMore{
    position: absolute;
    top:12px;
    right: 16px;
}