.news_detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;

}

.news_detail .top_detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.news_detail .top_detail .data_box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.news_detail .top_detail .data_box .date {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-align: center;
}

.news_detail .top_detail .data_box .views_item {
    font-size: 14px;
    color: #666;
}

.news_detail .top_detail .top_title h1 {
    font-size: 28px;
    color: #333;
    margin: 0;
}

.news_detail .bottom_detail {
    margin-top: 20px;
}

.news_detail .bottom_detail .bottom_brief img {


    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.news_detail .bottom_detail .bottom_title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.news_detail .bottom_detail .contents {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    justify-content: center;
    display: grid;
    justify-items: center;
}

.news_detail .news_box {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 10px;

    left: 0;
}

.news_detail .news_box .item {
    flex: 1;
    text-align: center;
}

.news_detail .news_box .item .icon {
    font-size: 14px;
    color: #007bff;
    margin-bottom: 5px;
}
.news_detail .bottom_detail .contents img{

    border-radius: 5px;
    width: 100%;
}



.news_detail .news_box .item .title {
    font-size: 16px;
    color:#646b73;
    text-decoration: none;
}

.news_detail .news_box .item .title  a {
    font-size: 16px;
    margin-left: 10px;
    color: var(--textcolor);

}

.news_detail .news_box .item .title:hover {
    color: black;
}
@media (max-width: 1024px) {
    .news_detail .top_detail{
        display: block;!important;
    }

}