body {
    background-color: #F8F8F8;
}
.news {
    
}
.news_list {

}
.news_item {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    padding: 10px;
    box-sizing: border-box;
    transition: all 0.3s;
    margin-bottom: 20px;
}
.news_item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(89, 32, 10, 0.15);
}
.news_item_left {
    padding: .349rem 0 .156rem .188rem;
}
.news_item_title {
    font-size: 40px;
    color: #59200a;
    margin-bottom: 40px;
}
.news_item_desc {
    font-size: 18px;
    line-height: 33px;
    color: #59200a;
    margin-bottom: 98px;
}
.news_item_more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 186px;
	height: 54px;
	background-color: #ffffff;
	border-radius: 2px;
	border: solid 1px #ebebeb;
    color: #59200a;
    font-size: 14px;
    transition: all 0.3s;
}
.news_item_more i {
    font-size: 14px;
    margin-left: 10px;
}
.news_item:hover .news_item_more {
    background-color: #59200a;
    color: #fff;
}
.news_item:hover .news_item_more i {
    color: #fff;
}
.news_item_right {
    width: 3.646rem;
    height: 2.188rem;
    overflow: hidden;
    flex-shrink: 0;
    margin-left: .484rem;
}
.news_item_right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 新闻详情 */
.news_detail {
    background-color: #fff;
    padding: .469rem .208rem .432rem;
    box-sizing: border-box;
}
.news_detail_title {
    font-size: 40px;
    color: #59200a;
    margin-bottom: 40px;
    text-align: center;
}
.news_detail_time {
    font-size: 18px;
    color: #59200a;
    margin-bottom: 40px;
    text-align: center;
}
.news_detail_content {
    font-size: 18px;
    color: #59200a;
    line-height: 33px;
    padding: 48px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    min-height: 500px;
}
.news_detail_content img {
    /*width: 100%;*/
    height: auto;
    object-fit: contain;
}
.news_detail_content video {
    max-width: 100%;
    height: auto;
}
.news_detail_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 29px;
}
.news_item_more:hover {
    background-color: #59200a;
    color: #fff;
}
.news_item_more:hover i {
    color: #fff;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .news_item {
        flex-direction: column;
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .news_item:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 12px rgba(89, 32, 10, 0.12);
    }
    
    .news_item_left {
        padding: 0;
        width: 100%;
    }
    
    .news_item_title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .news_item_desc {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 20px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .news_item_more {
        width: 140px;
        height: 40px;
        font-size: 13px;
    }
    
    .news_item_more i {
        font-size: 13px;
        margin-left: 8px;
    }
    
    .news_item_right {
        width: 100%;
        height: 200px;
        margin-left: 0;
        margin-top: 15px;
        order: -1;
    }
    
    /* 新闻详情移动端 */
    .news_detail {
        padding: 20px 15px;
    }
    
    .news_detail_title {
        font-size: 22px;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .news_detail_time {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .news_detail_content {
        font-size: 14px;
        line-height: 26px;
        padding: 20px 0;
        min-height: 300px;
    }
    
    .news_detail_btn {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }
    
    .news_detail_btn .news_item_more {
        width: 100%;
    }
}
