body{
    background:#eee;
}
.article_detail{
    padding: 0 12rem;
}
.detail_title{
    font-size: 2rem;
}
.detail_text{
    padding: 1rem 0;
}
.detail_list{
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}
.detail_list .lf{
    width: 69%;
    background-color: #fff;
    padding: 2rem;
}
.detail_list .rg{
    width: 29%;
    background-color: #fff;
    padding: 2rem;
}
/*热门文章0*/
.hot_ul li{
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    cursor: pointer;    
}
.hot_ul a{
    width: 100%;
}
.hot_title{
    font-size: 2rem;
    padding: 1rem;
    border-bottom: 2px solid #009FE8;
    position: relative;
}
.hot_title::after{
    content: "";
    height: 60%;
    width: 4px;
    background: #009FE8;
    position: absolute;
    left: 0;
    top: 20%;
}
.hot_img{
    width: 45%;
    height: 10rem;
    overflow: hidden;
}

.hot_con{
    width: 50%;
}
.hot_text{
    color: #777;
    font-size: 1.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.hot_record{
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #777;
    font-size: 1.4rem;
    margin-top: 0.5rem;
}
.hot_record img{
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 1rem;
}
.ups_btn{
    background: #009FE8;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10rem;
    border-radius: 2rem;
    padding: 0.5rem 0;
    margin: 6rem auto;
}   
.ups_btn img{
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.5rem;
}

@media(max-width:767px){
    .article_detail{
        padding: 0 1rem;
    }
    .detail_list .lf,.detail_list .rg{
        width: 100%;
        margin-bottom: 1rem;
    }
}