#slider {
    overflow: hidden;
}


/* 统战链接轮播样式 */
#linkSwiper {
    margin: 20px auto;
    width: 100%;
    position: relative;
    overflow: hidden;
}

#linkSwiper .swiper-slide {
    text-align: center;
    width: 25% !important;
    height: auto;
}

.link-item {
    padding: 10px 10px;
    margin: 5px 3px;
    background: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.link-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.link-item .zl_img_bg {
    width: 100%;
    height: 130px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 15%);
}

.link-item .zl_img_bg img {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.link-item:hover .zl_img_bg img {
    transform: scale(1.05);
}

/* 标题样式 - 宽度80% */
.link-item .title {
    text-align: center;
    margin: 5px auto 0;
    font-size: 15px;
    font-weight: bold;
    color: #333;
    line-height: 1.3;
    width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 摘要样式 - 宽度100% */
.link-item .summary {
    text-align: center;
    margin: 2px 0 5px 0;
    font-size: 13px;
    color: #666;
    line-height: 1.3;
    width: 100%;
    height: 34px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
} 


/* 统战人物标签样式 */
.tzrw {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 2000;
    width: 50px;
    height: 100%;
    background: #CD0401;
    /* opacity: 0.5; */
    color: white;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    cursor: pointer;
}

.tzrw a {
    color: #fff;
    text-decoration: none;
}

.tzrw:hover {
    background-color: #B80000;
} 