body{
    background-color: #FFFFFF;
}
.mainWrapper{
    margin-top: 120px;
    min-height: 73vh;
}
.articleBox{
    width: 100%;
    padding-top: 50px;
    padding-bottom: 150px;
}
.articleWrapper{
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1400px;

}

.news-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

/* 新闻详情区域 */
.news-detail {
    width: 65%;
    background: #FFFFFF;
}
.news-title {
text-align: center;
margin-bottom: 15px;
font-size: 26px;
font-weight: 500;
letter-spacing: 0px;
line-height: 37.65px;
color: rgba(0, 0, 0, 1);
}

.news-meta {
    display: flex;
    color: rgba(128, 128, 128, 1);
    font-size: 14px;
    margin-bottom: 35px;  
    justify-content: center; 
}

.meta-item {
    margin-right: 40px;
    display: flex;
    align-items: center;
}

.meta-item span {
    margin-right: 5px;
    /* color: #999; */
}

.news-content {
font-size: 20px;
font-weight: 500;
letter-spacing: 0px;
line-height: 28px;
color: rgba(128, 128, 128, 1);

}

.news-content p {
    margin-bottom: 40px;
    text-align: justify;
}

/* 热门新闻区域 */
.hot-news {
    flex: 1;
    background: #FFFFFF;
}

.hot-news-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 1);
/* height: 28px; */
font-size: 22px;
font-weight: 500;
letter-spacing: 0px;
line-height: 28px;
color: rgba(0, 0, 0, 1);
display: flex;
align-items: center;
justify-content: start;
gap: 10px;
}
.hot-news-title-icon{
    width: 7px;
    height: 28px;
    background: rgba(26, 70, 214, 1);
}

.hot-news-list {
    list-style: none;
}

.hot-news-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(128, 128, 128, 1);
}

.hot-news-index {
    width: 26px;
    height: 26px;
    background:rgba(221, 221, 221, 1);
    color: rgba(128, 128, 128, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
    margin-right: 15px;
    flex-shrink: 0;
}

.hot-news-item:nth-child(-n+3) .hot-news-index {
    background: rgba(26, 70, 214, 1);;
    color: #FFFFFF;
}

.hot-news-item-title {
font-size: 18px;
font-weight: 400;
letter-spacing: 0px;
line-height: 26px;
color: rgba(128, 128, 128, 1);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.hot-news-item-time {
    flex: 1;
    margin-left: 10px;
font-size: 18px;
font-weight: 400;
letter-spacing: 0px;
line-height: 26px;
color: rgba(128, 128, 128, 1);
white-space: nowrap;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .news-container {
        flex-direction: column;
    }
    
    .news-detail, .hot-news {
        width: 100%;
    }
    
    .news-title {
        font-size: 22px;
    }
    .news-meta{
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    .news-content{
        font-size: 16px;
    }
    .hot-news-title-icon{
        width: 5px;
        height: 26px;
    }
    .hot-news-title{
        font-size: 20px;
    }
    .hot-news-index{
        width: 20px;
        height: 24px;
        font-size: 16px;
    }
    .hot-news-item-title{
        font-size: 16px;
    }
    .hot-news-item-time{
        font-size: 16px;
    }
}
