.container-box {
    overflow-y: scroll;
    position: relative;
    height: calc(100vh - 200px);
    width: 90%;
    margin: 30px auto;
    border-radius: 16px;
    box-shadow: 2px 2px 20px 0 rgba(0, 0, 0, 0.1);
    padding: 30px;
    display: flex;
    gap: 35px;
    justify-content: center;
}

.top-section {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-direction: column;
    width: 570px;
}

.title-radio-group {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-title {
    font-size: 18px;
    font-weight: bold;
}

.content-section {
    align-items: center;
    gap: 30px;
}

.image-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.image-container img {
    width: 300px;
    height: 160px;
}

.news-list {
    height: 335px;
    overflow-y: scroll;
}


.news-list::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.news-list::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 5px;
}

.news-list::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

.news-list::-webkit-scrollbar-button {
    display: none;
}

.news-list:not(:hover)::-webkit-scrollbar {
    display: none;
}

.news-list-wrapper {
    position: relative;
}

.news-list::-webkit-scrollbar-corner {
    background-color: #f1f1f1;
    z-index: 1;
}

.news-list::-webkit-scrollbar-track-piece:end {
    position: absolute;
    width: 10px;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 0;
}

.news-item {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.new-li {
    padding: 5px;
}

.redian-title {
    color: #3d4242;
}

.redian-info {
    display: flex;
    gap: 20px;
    color: #889191;
}

.bottom-section {
    width: 850px;
}

.low-fans-news-list {
    display: flex;
    margin-top: 10px;
    height: 90%;
    overflow-y: scroll;
    padding: 10px;
}

.low-fans-news-list::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.low-fans-news-list::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 5px;
}

.low-fans-news-list::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

.low-fans-news-list::-webkit-scrollbar-button {
    display: none;
}

.low-fans-news-list:not(:hover)::-webkit-scrollbar {
    display: none;
}

.low-fans-news-list-wrapper {
    position: relative;
}

.low-fans-news-list::-webkit-scrollbar-corner {
    background-color: #f1f1f1;
    z-index: 1;
}

.low-fans-news-list::-webkit-scrollbar-track-piece:end {
    position: absolute;
    width: 10px;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 0;
}

.low-fans-news-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


.low-fans-news-list li {
    height: 250px;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/*.low-fans-news-list li:hover {*/
/*    transform: translateY(-2px);*/
/*}*/

.dfphoto img:hover {
    cursor: pointer;
}

.low-fans-news-item {
    flex: 1; /* 剩余空间分配给内容区域 */
    display: flex;
    flex-direction: column;
    padding: 12px;
    min-height: 110px; /* 确保最小内容高度 */
}

.news-title {
    font-size: 14px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
    height: 36px;
}

.news-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 3列 */
    grid-template-rows: repeat(3, auto); /* 2行 */
    gap: 8px 15px; /* 行间距 列间距 */
    width: 100%;
}

.news-meta span {
    overflow: hidden;
    align-items: center;
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 110px;
}

.dfphoto {
    flex: 0 0 120px; /* 固定图片区域高度 */
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.dfphoto img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.loading {
    position: sticky;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1200px) {
    .low-fans-news-list ul {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .low-fans-news-list ul {
        column-count: 1;
    }
}

.columns-container {
    display: flex;
    gap: 15px;
}

.columns-container .column {
    flex: 1;
}

.column ul{
    padding: 0 10px 0 0;
}

.el-popover.el-popper{
    height: 450px;
    overflow-y: scroll;
    overflow-x: hidden;
}

