.newsTab a, .btnMore, .newsQueue .newsQueueList a{ color:; } 
.newsTab a.active{ color: ; } 
.newsQueue .newsQueueList a:after{ background: ; }
body, html,.warp{ overflow: visible; } 
.warp .head{ position: sticky; }
.page-container{ overflow: hidden; width: 7.5rem; height: 1100px; } 



.title {
    font-size: 32px;
    margin-left: 30px;
    font-weight: bold;
    /* 五彩渐变效果 */
    background-image: linear-gradient(
        90deg, 
        #ff0000,   /* 红 */
        #ffff00,   /* 黄 */
        #00ff00,   /* 绿 */
        #00ffff,   /* 青 */
        #0000ff,   /* 蓝 */
        #ff00ff,   /* 紫 */
        #ff0000    /* 红（循环） */
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; /* 使文字本身透明，显示背景渐变 */
    background-size: 200% auto;
    animation: rainbow 5s linear infinite; /* 动画效果 */
}

/* 彩虹动画 */
@keyframes rainbow {
    to {
        background-position: 200% center;
    }
}

.content {
    padding: 20px;

    width: fit-content;
}

.dec {
    margin-top: 10px;
    min-height: 20px;
}


