.h_main {
  padding-bottom: 30px;
}
.h_List .h_item {
  padding: 20px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  column-gap: 30px;
  transition: all 0.3s linear;
  box-shadow: 0 1px 20px #efefef;
}
.h_List .h_item .h_L {
  width: calc(100% - 160px);
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.h_List .h_item .h_L .h_img {
  width: 190px;
}
.h_List .h_item .h_L .h_img img {
  width: 100%;
}
.h_List .h_item .h_L .h_text {
  width: calc(100% - 210px);
}
.h_List .h_item .h_L .h_text .h_title {
  font-family: Regular;
  font-size: 18px;
  color: #222222;
  line-height: 25px;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.h_List .h_item .h_L .h_text .h_desc {
  font-family: Light;
  font-size: 15px;
  color: #959595;
  line-height: 26px;
  text-align: justify;
  margin-top: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.h_List .h_item .h_line {
  height: 60px;
  width: 1px;
  background-color: #D8D8D8;
}
.h_List .h_item .h_R .h_read {
  width: 96px;
  line-height: 37px;
  text-align: center;
  border-radius: 2px 2px 2px 2px;
  border: 1px solid #D8D8D8;
  display: inline-block;
  font-family: Light;
  font-size: 15px;
  color: #888888;
}
.h_List .h_item .h_R .h_read:hover {
  color: #fff;
  border-color: var(--active-color);
  background-color: var(--active-color);
}
.h_List .h_item .h_R .h_time {
  margin-top: 16px;
  font-family: Lato-Regular;
  font-size: 17px;
  color: #B2B0B3;
}
.h_List .h_item:hover {
  box-shadow: 0px 14px 10px -10px rgba(0, 0, 0, 0.05);
  border-radius: 10px 10px 10px 10px;
}
.h_List .h_item:hover .h_L .h_text .h_title {
  color: var(--active-color);
}
@media screen and (max-width: 767px) {
  .h_List .h_item .h_L {
    width: 100%;
  }
  .h_List .h_item .h_line,
  .h_List .h_item .h_R {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .h_List .h_item .h_L {
    flex-wrap: wrap;
    row-gap: 20px;
  }
  .h_List .h_item .h_L .h_img,
  .h_List .h_item .h_L .h_text {
    width: 100%;
  }
}
