.h_news {
  padding: 50px 0;
}
.h_news .h_tabs {
  display: flex;
  align-items: center;
  column-gap: 24px;
}

/* 修改整个滚动条颜色 */
.h_news .h_tabs::-webkit-scrollbar {
  background-color: transparent;
  opacity: 0;
}
 
/* 修改滚动条滑块的颜色 */
.h_news .h_tabs::-webkit-scrollbar-thumb {
  background-color: transparent;
  opacity: 0;
}

/* 修改滚动条轨道的颜色 */
.h_news .h_tabs::-webkit-scrollbar-track {
  background-color: transparent;
  opacity: 0;
}
.h_news .h_tabs{
    
/* 修改整个滚动条颜色 */
scrollbar-color: transparent transparent;
}
/* 修改整个滚动条颜色 */
.h_news .h_tabs.ms-scrollbar {
  background-color: transparent;
}
 
/* 修改滚动条滑块的颜色 */
.h_news .h_tabs.ms-scrollbar-thumb {
  background-color: transparent;
}
 
/* 修改滑块悬停时的颜色 */
.h_news .h_tabs.ms-scrollbar-thumb:hover {
  background-color: transparent;
}
 
/* 修改滚动条轨道的颜色 */
.h_news .h_tabs.ms-scrollbar-track {
  background-color:transparent;
}
.h_news .h_tabs a {
  width: 180px;
  padding: 0 10px;
  line-height: 48px;
  background: #E8E8E8;
  text-align: center;
  font-family: Regular;
  font-size: 15px;
  color: #555555;
}
.h_news .h_tabs a.h_active {
  background: var(--active-color);
  color: #fff;
}
.h_news .h_tabs a:hover {
  background: var(--active-color);
  color: #fff;
}
.h_news .h_newList {
  margin-top: 10px;
}
.h_news .h_newList .h_item {
  margin-top: 30px;
  display: flex;
  align-items: center;
  background: #FAFAFA;
}
.h_news .h_newList .h_item .h_text {
  width: calc(100% - 400px);
  padding: 20px 42px;
}
.h_news .h_newList .h_item.noimg .h_text{
    width: 100%;
  padding: 30px 42px;
}
.h_news .h_newList .h_item .h_text .h_time {
  display: flex;
  align-items: center;
  column-gap: 12px;
}
.h_news .h_newList .h_item .h_text .h_time img {
  width: 20px;
}
.h_news .h_newList .h_item .h_text .h_time span {
  font-family: Roboto-Regular;
  font-size: 13px;
  color: #AAAAAA;
}
.h_news .h_newList .h_item .h_text .h_title {
  font-family: Bold;
  font-size: 23px;
  color: #3D3D3D;
  margin-top: 18px;
}
.h_news .h_newList .h_item .h_text .h_desc {
  font-family: Regular;
  font-size: 15px;
  color: #888888;
  line-height: 24px;
  text-align: justify;
  margin-top: 18px;
}
.h_news .h_newList .h_item .h_text .h_more {
  margin-top: 30px;
  display: flex;
  align-items: center;
  column-gap: 8px;
  color: #A7A5A6;
}
.h_news .h_newList .h_item .h_text .h_more .h_icon {
  display: flex;
  align-items: center;
}
.h_news .h_newList .h_item .h_text .h_more .h_icon i {
  width: 10px;
}
.h_news .h_newList .h_item .h_text .h_more .h_icon i:first-child {
  opacity: 0.5;
}
.h_news .h_newList .h_item .h_text .h_more .h_icon i:nth-child(2) {
  opacity: 0.75;
}
.h_news .h_newList .h_item .h_text .h_more p {
  font-family: Regular;
  font-size: 14px;
}
.h_news .h_newList .h_item .h_img {
  width: 400px;
}
.h_news .h_newList .h_item:hover .h_text .h_title,
.h_news .h_newList .h_item:hover .h_text .h_more {
  color: var(--active-color);
}
.h_news .h_details {
  margin-top: 50px;
  font-family: Regular;
  font-size: 16px;
  color: #666;
  line-height: 30px;
}
.h_news .h_details img,
.h_news .h_details table,
.h_news .h_details video,
.h_news .h_details iframe {
  max-width: 100% !important;
  height: auto !important;
}
@media screen and (max-width: 767px) {
  .h_news .h_newList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .h_news .h_newList .h_item {
    flex-direction: column-reverse;
    flex-wrap: wrap;
    width: 48%;
  }
  .h_news .h_newList .h_item .h_text,
  .h_news .h_newList .h_item .h_img {
    width: 100%;
  }
  .h_news .h_newList .h_item.noimg .h_text,
  .h_news .h_newList .h_item .h_text {
    padding: 20px;
  }
  .h_news .h_newList .h_item .h_text .h_title {
    font-size: 20px;
    margin-top: 10px;
  }
  .h_news .h_newList .h_item .h_text .h_desc {
    margin-top: 10px;
  }
  .h_news .h_newList .h_item .h_text .h_more {
    margin-top: 16px;
  }
}
@media screen and (max-width: 480px) {
  .h_news .h_tabs {
    column-gap: 4%;
    overflow-x: auto;
  }
  .h_news .h_tabs a {
    min-width: 160px;
  }
  .h_news .h_newList{
      margin-top: 0;
  }
  .h_news .h_newList .h_item {
      margin-top: 18px;
    width: 100%;
  }
  .h_news{
      padding: 20px 0;
  }
  .h_news .h_details{
      margin-top: 20px;
  }
}
