.content_container{
    min-width: 1440px;
    max-width: 1560px;
    padding: 40px 135px 0;
  
    overflow: hidden;
   
    margin: auto;
    box-sizing: border-box;
}
.container_box{
    display: flex;
    gap: 30px;
    text-align: left;
    padding-bottom: 100px;
}
.content_left{flex: 1;}

.hot_content{
    width: 345px;
    /* min-height: 700px; */
    background-color: rgb(242, 242, 242);
    padding: 20px 0px 0px;
}
.hot_title{
    font-family: PingFangSC-Medium;
    font-size: 20px;
    color: rgb(51, 51, 51);
    line-height: 20px;
    padding-left: 8px;
    border-left: 5px solid rgb(211, 47, 47);
}

.hot_list{
    padding: 0px 20px 20px;
}
.hot_item{
    display: flex;
    gap: 8px;
    margin-top: 30px;

}
.item_left{
    width: 115px;
    height: 65px;
    overflow: hidden;
}
.item_right{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.item_right .title{
    font-size: 14px;
    color: rgb(51, 51, 51);
    line-height: 21px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.time{
    color: rgb(153, 153, 153);
    font-size: 12px;
   
}
.news_next{
    display: flex;
    gap: 20px;
    
}
.content_footer{
    display: flex;
    gap: 30px;
    padding-bottom: 30px;
}
.footer_right{
    width: 345px;
}
.footer_left{
    flex: 1;
}
.next_left{
    width: 230px;
    height: 130px;
    overflow: hidden;
}
.next_right{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
}
.footer_left .next_title{
    font-family: PingFangSC-Regular;
    font-size: 16px;
    color: #666;
    line-height: 30px;
    padding-bottom: 6px;
   
}
.news_next{
    padding-top: 10px;
    border-top: 1px solid #ddd;
}
.news_next .next_right .author{
    opacity: .5;
    font-family: Helvetica;
    font-weight: 700;
    color: #666;
    line-height: 20px;
    font-size: 14px;
}
.news_next .next_right .title{
    font-family: Helvetica;
    font-weight: 700;
    color: #333;
    line-height: 20px;
    font-size: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.news_next .next_right .des{
    font-size: 14px;
    line-height: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #666;

}
.news_next_mobile{
    display: none;
}
.next_right .detail{
    font-size: 16px;
    font-family: Helvetica;
    color: rgb(102, 102, 102);
    line-height: 20px;
}




@media (max-width: 750px) {
  .content_container{
    max-width: 750px;
    min-width: auto;
    padding: 20px;
    flex-direction: column;
  }
  .hot_content{
    display: none;
  }
  .news_next{
    flex-direction: column;
  }
  .footer_right{
    display: none;
  }
  .next_right{
    gap: 6px;
  }
  .news_next_pc{
    display: none;
  }
  .news_next_mobile {
    display: block;
  }
  .news_next_mobile .title{
    font-size: 12px;
    opacity: .5;
    color: #666;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .news_next_mobile .des{
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    color: #333;
    -webkit-box-orient: vertical;
  }
  .news_next_mobile .next_left{
    width: 100%;
    text-align: right;
  }
  .news_next_mobile .next_left img{
    width: 230px;
    height: 130px;
  }

}
@media (min-width: 750px) and (max-width: 1080px) {
  .content_container{
    min-width: auto;
  }
  .hot_content{
    display: none;
  }
}
[v-cloak] {
    display: none;
}

