/* 文字列表滚动模块样式开始 */
.text_list-container{
    width: calc(100% - 32px);
    max-width: 100%;
    box-sizing: border-box;
    margin: 16px auto;
    padding: 10px 12px;
    background-color: #FFFFFF;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
}

.text_list-headline-label {
    display: inline-block;
    background: url("https://www.sztv.com.cn/ysz/upload/Image/mrtp/2025/11/21/7c407bf62e394acabfbdd8e0637d640c.png") no-repeat center center;
    background-size: 100% 100%;
    color: #FFFFFF;
    padding: 4px 10px;
    width:40px;
    height:20px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 2px;
}

.text_list-headline-wrapper {
    display: inline-block;
    position: relative;
    height: 30px;
    overflow: hidden;
    vertical-align: top;
    width: calc(100% - 16%);
}
.text_list-headline-wrapper::before{
    content: '';
    display: block;
    width: 1px;
    height: 65%;
    background-color: #CACACA;
    position: absolute;
    left: 0px;
    top:0;
    bottom:0;
    margin: auto;
}

.text_list-headline-list {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 0.6s ease-in-out;
    margin-left: 5px;
}


.text_list-headline-item {
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text_list-headline-item a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s;
}
/* 文字列表滚动模块样式结束 */

