.news {
    width: 100%;
    min-height: calc(75vh + 60px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
}
.news .banner {
    height: 240px;
}
.list-page, .detail-page {
    width: 100%;
    max-width: 900px;
    padding: 40px 20px;
}
.list .item {
    cursor: pointer;
    padding: 30px 15px;
    border-bottom: 1px solid #f1f1f1;
}
.list .item:hover {
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}
.list .item .news-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}
.list .item .news-title:hover {
    color: #FC3C49;
}
.list .item .news-title img {
    height: 16px;
    width: 16px;
    margin-top: -2px;
    margin-right: 10px;
    vertical-align: middle;
}
.list .item .summary {
    font-size: 13px;
    color: #474747;
    margin-top: 10px;
}
.list .item .time {
    margin-top: 15px;
    color: #a0a0a9;
    font-weight: 500;
    font-size: 11px;
}
.is-top {
    font-weight: 600;
}

.empty {
    text-align: center;
    padding: 150px 20px;
}
.empty img {
    width: 64px;
}
.empty div {
    color: #8E8E8E;
    font-size: 16px;
}

.detail-page {
    width: 100%;
    max-width: 1000px;
    padding: 40px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.detail-page .line {
    width: 100%;
    height: 1px;
    margin: 20px 0;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}
.detail-page .detail-header button {
    cursor: pointer;
    border: none;
    background: none;
}
.detail-page .detail-header img {
    height: 28px;
}
.detail-page .detail-content {
    max-height: 900px;
    padding: 20px;
    overflow: scroll;
}
.detail-page .detail-content .news-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}
.detail-page .detail-content .news-time {
    margin-top: 15px;
    color: #666666;
    font-size: 10px;
}
.detail-page .detail-content .news-content {
    margin-top: 40px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}