.h_news {
  padding: 50px 0;
}
.h_news .h_tabs {
  display: flex;
  align-items: center;
  column-gap: 24px;
}
.h_news .h_tabs a {
  min-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 .h_item {
  margin-top: 30px;
  display: flex;
  align-items: center;
  background: #FAFAFA;
  padding: 32px;
  column-gap: 32px;
}
.h_news .h_newList .h_item .h_text {
  width: calc(100% - 292px);
}
.h_news .h_newList .h_item .h_text .h_time {
  display: flex;
  align-items: center;
  column-gap: 12px;
  margin-top: 14px;
}
.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;
}
.h_news .h_newList .h_item .h_text .h_desc {
  font-family: Regular;
  font-size: 15px;
  color: #888888;
  line-height: 24px;
  margin-top: 14px;
}
.h_news .h_newList .h_item .h_img {
  width: 260px;
}
.h_news .h_newList .h_item .h_img img {
  width: 100%;
}
.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_newsDetails .h_date {
  width: 140px;
  height: 140px;
  background: var(--active-color);
  box-shadow: 10px 10px #e621292b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.h_newsDetails .h_date p {
  color: #FFFFFF;
  font-size: 52px;
  font-weight: bold;
  line-height: 1.1;
}
.h_newsDetails .h_date .h_y-m {
  font-size: 24px;
  font-weight: normal;
}
.h_newsDetails .h_content {
  width: calc(100% - 200px);
}
.h_newsDetails .h_content .h_title {
  font-size: 24px;
  color: #222222;
  font-weight: bold;
}
.h_newsDetails .h_content .h_share {
  margin-top: 70px;
}
.h_newsDetails .h_content .h_share a {
  width: 30px;
  margin-right: 12px;
}
.h_newsDetails .h_content .h_hr {
  width: 100%;
  height: 1px;
  background: #D8D8D8;
  margin: 20px 0;
}
.h_newsDetails .h_content .h_text {
  font-size: 16px;
  color: #3D3D3D;
  line-height: 1.8;
}
.h_newsDetails .h_content .h_text img,
.h_newsDetails .h_content .h_text video,
.h_newsDetails .h_content .h_text table {
  max-width: 100%;
  max-height: auto !important;
}
.h_newsDetails .h_content .h_btom {
  row-gap: 15px;
}
.h_newsDetails .h_content .h_btom .h_L {
  width: calc(100% - 200px);
}
.h_newsDetails .h_content .h_btom .h_L a {
  font-size: 16px;
  color: #3D3D3D;
  line-height: 22px;
  margin-top: 12px;
}
.h_newsDetails .h_content .h_btom .h_L a:first-child {
  margin: 0;
}
.h_newsDetails .h_content .h_btom .h_L a:hover {
  color: var(--active-color);
}
.h_newsDetails .h_content .h_btom .h_btn a {
  display: block;
  width: 163px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  background: var(--active-color);
  color: #fff;
  font-size: 17px;
}
.h_contact {
  padding: 50px 0;
}
.h_contact .layui-form .h_col4 {
  width: calc(33.3333% - (40px/3));
}
.h_contact .layui-form .h_col8 {
  width: calc(66.6666% - (40px/3) + 6px);
}
.h_contact .layui-form .h_col12 {
  width: 100%;
}
.h_contact .layui-form .layui-form-item {
  margin: 0;
}
.h_contact .layui-form .layui-form-item .layui-inline {
  width: 100%;
  margin: 0;
}
.h_contact .layui-form .layui-form-item .layui-inline .layui-form-label {
  padding: 8px 4px;
}
.h_contact .layui-form .layui-form-item .layui-inline .layui-input-inline {
  margin: 0;
  margin-left: -1px;
  width: calc(100% - 110px);
}
.h_contact .layui-form .layui-btn {
  background-color: var(--active-color);
}
@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%;
    padding: 20px;
  }
  .h_news .h_newList .h_item .h_text,
  .h_news .h_newList .h_item .h_img {
    width: 100%;
  }
  .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;
  }
  .h_contact .layui-form .h_col8,
  .h_contact .layui-form .h_col4 {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .h_contact,
  .h_news {
    padding: 32px 0;
  }
  .h_news .h_tabs {
    column-gap: 2%;
    overflow-x: auto;
  }
  .h_news .h_tabs a {
    min-width: 160px;
  }
  .h_news .h_newList .h_item {
    width: 100%;
    padding: 16px;
    margin-top: 16px;
  }
  .h_newsDetails .h_date {
    display: none;
  }
  .h_newsDetails .h_content {
    width: 100%;
  }
  .h_newsDetails {
    padding: 15px 0 0;
  }
  .h_newsDetails .h_content .h_title {
    font-size: 20px;
  }
  .h_newsDetails .h_content .h_share {
    margin-top: 12px;
  }
  .h_newsDetails .h_content .h_hr {
    margin: 15px 0;
  }
  .h_newsDetails .h_content .h_text {
    font-size: 15px;
  }
  .h_newsDetails .h_content .h_btom .h_L a {
    margin-top: 8px;
    font-size: 15px;
  }
  .h_newsDetails .h_content .h_btom .h_L {
    width: 100%;
  }
  .h_news .h_newList .h_item .h_text {
    margin-top: 5px;
  }
  .h_news .h_newList .h_item .h_text .h_time {
    margin-top: 10px;
  }
  .h_news .h_newList .h_item .h_text .h_title {
    font-size: 16px;
  }
  .h_news .h_newList .h_item .h_text .h_desc {
    font-size: 14px;
  }
  .h_contact .layui-form {
    --r-gap: 16px;
  }
}
