.h_news .h_tabs {
  margin-bottom: 40px;
  gap: 20px;
}
.h_news .h_tabs a {
  min-width: 200px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  background-color: #ecf2fd;
  border-radius: 5px;
  font-size: 16px;
  padding: 0 10px;
}
.h_news .h_tabs a:hover {
  color: #fff;
  background: var(--active-color);
}
.h_news .h_tabs a.active {
  color: #fff;
  background: var(--active-color);
}
.h_news .h_list .h_item {
  box-shadow: -6px 6px 20px rgba(55, 99, 170, 0.1);
  margin-bottom: 32px;
  border: 2px solid #fff;
  padding: 24px;
  border-radius: 10px;
  background: linear-gradient(-165deg, #ebf1fd, #fff);
  transition: transform 0.3s, box-shadow 0.3s;
}
.h_news .h_list .h_item .h_text {
  width: calc(100% - 346px);
}
.h_news .h_list .h_item .h_text .h_name {
  font-size: 20px;
  color: #333;
  font-weight: 600;
  text-align: justify;
}
.h_news .h_list .h_item .h_text .h_desc {
  color: #898989;
  line-height: 1.8;
  margin-top: 6px;
  text-align: justify;
}
.h_news .h_list .h_item .h_text .h_msg {
  margin-top: 20px;
}
.h_news .h_list .h_item .h_text .h_msg .h_date {
  color: #898989;
  margin-right: 16px;
}
.h_news .h_list .h_item .h_text .h_msg .h_date img {
  width: 16px;
  margin: -4px 1px 0 0;
}
.h_news .h_list .h_item .h_img {
  width: 320px;
  border-radius: 10px;
  overflow: hidden;
}
.h_news .h_list .h_item .h_img img {
  width: 100%;
}
.h_news .h_list .h_item:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: -6px 6px 26px rgba(55, 99, 170, 0.2);
}
.h_news .h_list .h_item:hover .h_text .h_name {
  color: var(--active-color);
}
.h_contact {
  padding: 70px 0;
}
.h_contact .h_title {
  text-align: center;
  font-family: 'OPPOSans-Bold';
}
.h_contact .h_msg {
  margin-top: 36px;
}
.h_contact .h_msg .h_item {
  background: #f5f8ff;
  text-align: center;
  padding: 40px 20px 24px;
  transition: background 0.3s, transform 0.3s;
}
.h_contact .h_msg .h_item .h_icon img {
  width: 36px;
}
.h_contact .h_msg .h_item .h_title {
  font-family: Medium;
  font-size: 20px;
  color: #333333;
  margin-top: 25px;
}
.h_contact .h_msg .h_item .h_desc {
  font-size: 14px;
  color: #737373;
  margin-top: 10px;
  line-height: 26px;
}
.h_contact .h_msg .h_item:hover {
  transform: scale(1.05);
  border-radius: 4px;
}
.h_contact .h_msg .h_item:hover .h_desc,
.h_contact .h_msg .h_item:hover .h_title {
  color: var(--active-color);
}
.h_contact .h_form {
  margin-top: 56px;
}
.h_contact .h_form .h_title {
  text-align: center;
  font-family: Medium;
  font-size: 28px;
  color: #333333;
}
.h_contact .h_form form {
  margin-top: 40px;
}
.h_contact .h_form form .h_input {
  padding: 0 24px;
  margin-bottom: 22px;
  width: calc(50% - 13px);
  background: #f5f8ff;
  transition: 0.3s border;
  border: 1px solid transparent;
}
.h_contact .h_form form .h_input img {
  width: 20px;
}
.h_contact .h_form form .h_input input {
  height: 54px;
  width: calc(100% - 30px);
  font-size: 16px;
  font-family: 'OPPOSans-Regular';
}
.h_contact .h_form form .h_input:hover {
  border: 1px solid var(--active-color);
}
.h_contact .h_form form .h_input:hover input,
.h_contact .h_form form .h_input:hover textarea {
  color: var(--active-color);
}
.h_contact .h_form form .h_input:hover input::placeholder,
.h_contact .h_form form .h_input:hover textarea::placeholder {
  color: var(--active-color);
}
.h_contact .h_form form .h_input textarea {
  width: calc(100% - 30px);
  height: 240px;
  font-size: 16px;
  font-family: 'OPPOSans-Regular';
}
.h_contact .h_form form .h_textarea {
  width: 100%;
  padding: 18px 24px;
}
.h_contact .h_form form .h_btns {
  width: 100%;
}
.h_contact .h_form form .h_btns button {
  width: 160px;
  height: 48px;
  background: #FFBA00;
  font-size: 16px;
  color: #FFFFFF;
  transition: opacity 0.3s;
  opacity: 0.7;
}
.h_contact .h_form form .h_btns button.h_btn2 {
  margin-left: 20px;
  background-color: var(--active-color);
}
.h_contact .h_form form .h_btns button:hover {
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .h_contact {
    padding: 40px 0;
  }
  .h_contact .h_msg {
    --rown: 2;
  }
  .h_contact .h_form {
    margin-top: 40px;
  }
  .h_contact .h_form form {
    margin-top: 32px;
  }
  .h_contact .h_title {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .h_contact .h_form .h_title {
    font-size: 24px;
  }
  .h_contact {
    padding: 26px 0;
  }
  .h_contact .h_msg .h_item .h_title {
    margin-top: 13px;
  }
  .h_contact .h_msg .h_item .h_desc {
    margin-top: 4px;
    line-height: 24px;
  }
  .h_contact .h_form {
    margin-top: 32px;
  }
  .h_contact .h_form form {
    margin-top: 26px;
  }
  .h_news .h_list .h_item .h_img {
    border-radius: 10px;
    width: 140px;
  }
  .h_news .h_list .h_item .h_text {
    width: calc(100% - 156px);
  }
  .h_news .h_list .h_item .h_text .h_msg {
    display: none;
  }
  .h_news .h_list .h_item .h_text .h_desc {
    font-size: 15px;
    -webkit-line-clamp: 2;
  }
  .h_news .h_list .h_item {
    padding: 18px;
  }
}
@media screen and (max-width: 480px) {
  .h_contact {
    padding: 16px 0;
  }
  .h_contact .h_msg {
    --rown: 1;
    --r-gap: 16px;
  }
  .h_contact .h_form .h_title {
    font-size: 20px;
  }
  .h_contact .h_form form {
    margin-top: 16px;
  }
  .h_contact .h_form form .h_input {
    width: 100%;
    margin-bottom: 16px;
    padding: 0 14px;
  }
  .h_contact .h_form form .h_input input {
    height: 46px;
  }
  .h_contact .h_form form .h_textarea {
    padding: 14px;
  }
  .h_contact .h_form form .h_input textarea {
    height: 140px;
  }
  .h_contact .h_form form .h_btns {
    justify-content: center;
  }
  .h_contact .h_form form .h_btns button {
    width: calc(50% - 7px);
    height: 45px;
    margin: 0 !important;
  }
  .h_news .h_tabs {
    margin-bottom: 20px;
    gap: 15px;
  }
  .h_news .h_tabs a {
    width: calc(50% - 8px);
    min-width: unset;
  }
  .h_news .h_list .h_item {
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    background: linear-gradient(44deg, #ebf1fd, #fff);
  }
  .h_news .h_list .h_item .h_img {
    width: 100%;
    border-radius: 0;
  }
  .h_news .h_list .h_item .h_text .h_name {
    font-size: 17px;
  }
  .h_news .h_list .h_item .h_text {
    width: 100%;
    padding: 12px;
  }
  .h_contact .h_title {
    font-size: 24px;
  }
  .h_contact .h_msg {
    margin-top: 15px;
  }
  .h_contact .h_msg .h_item {
    padding: 20px;
  }
  .h_contact .h_form {
    margin-top: 20px;
  }
}
