.h_application .h_List .h_item {
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
  margin-top: 30px;
}
.h_application .h_List .h_item:first-child {
  margin: 0;
}
.h_application .h_List .h_item .h_img {
  width: 50%;
}
.h_application .h_List .h_item .h_text {
  width: 50%;
  padding: 40px;
}
.h_application .h_List .h_item .h_text .h_title {
  font-family: "Source Han Sans Bold";
  font-size: 34px;
  color: var(--active-color);
}
.h_application .h_List .h_item .h_text .h_line {
  width: 68px;
  height: 1px;
  background-color: #dcdcdc;
  margin: 20px 0;
}
.h_application .h_List .h_item .h_text .h_desc {
  font-size: 15px;
  color: #666666;
  line-height: calc(27/15);
}
.h_application .h_List .h_item .h_text .h_more {
  display: inline-flex;
  margin-top: 30px;
}
.h_application .h_List .h_item .h_text .h_more span {
  color: #777;
}
.h_application .h_List .h_item .h_text .h_more .h_icon {
  width: 52px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #777777;
  font-size: 18px;
  margin-left: 22px;
}
.h_application .h_List .h_item .h_text .h_more .h_icon .icon {
  color: inherit;
  font-size: inherit;
}
.h_application .h_List .h_item .h_text .h_more:hover span {
  color: var(--active-color);
}
.h_application .h_List .h_item .h_text .h_more:hover .h_icon {
  border-color: var(--active-color);
  color: #fff;
  background: var(--active-color);
}
.h_application .h_List .h_item:nth-child(2n) {
  flex-direction: row-reverse;
}
.social-share .social-share-icon {
  color: #999;
  border-color: #999;
}
.social-share .social-share-icon:hover {
  border-color: var(--color);
}
.h_appDetails .h_details .h_title {
  font-size: 40px;
  font-family: "Source Han Sans Bold";
  color: #111;
}
.h_appDetails .h_details .h_share {
  display: flex;
  align-items: center;
  color: #999;
}
.h_appDetails .h_details .h_date {
  margin-top: 15px;
  color: #999;
  padding-left: 28px;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: left center;
  background-image: url(../static/time.png);
}
.h_appDetails .h_details .h_hr {
  width: 100%;
  height: 1px;
  background-color: #e5e5e5;
  margin: 20px 0;
}
.h_appDetails .h_details .h_content {
  color: #3d3d3d;
  line-height: calc(28/16);
}
.h_appDetails .h_details .h_content img,
.h_appDetails .h_details .h_content table,
.h_appDetails .h_details .h_content video,
.h_appDetails .h_details .h_content iframe {
  width: auto;
  max-width: 100%;
  height: auto !important;
}
.h_appDetails .h_details .h_content p {
  margin: 9px 0;
}
.h_appDetails .h_details .h_bottom .h_tabs {
  margin-top: 30px;
  border-bottom: 1px solid #c8c8c8;
  display: flex;
}
.h_appDetails .h_details .h_bottom .h_tabs .h_tab {
  padding: 16px 0;
  flex: 1;
  color: #7d7d7d;
  font-size: 30px;
  text-align: center;
  position: relative;
  cursor: pointer;
}
.h_appDetails .h_details .h_bottom .h_tabs .h_tab:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #111;
  transition: all 0.3s ease-in-out;
  display: none;
}
.h_appDetails .h_details .h_bottom .h_tabs .h_tab.active {
  color: #111111;
  font-family: "Source Han Sans Medium";
}
.h_appDetails .h_details .h_bottom .h_tabs .h_tab.active:after {
  display: block;
}
.h_appDetails .h_details .h_bottom .h_contents .h_content {
  display: none;
}
.h_appDetails .h_details .h_bottom .h_contents .h_content:first-child {
  display: block;
}
.h_appDetails .h_details .h_udbox .h_links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 40px;
}
.h_appDetails .h_details .h_udbox .h_links a {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  color: #3d3d3d;
}
.h_appDetails .h_details .h_udbox .h_links a .label {
  color: #777;
  white-space: nowrap;
  margin-right: 15px;
}
.h_appDetails .h_details .h_udbox .h_links a .hide {
  display: none;
}
.h_appDetails .h_details .h_udbox .h_links a.next .label {
  margin: 0 0 0 15px;
}
.h_appDetails .h_details .h_udbox .h_links a:hover {
  color: var(--active-color);
}
.h_appDetails .h_details .h_udbox .h_back {
  margin-top: 10px;
  color: #3d3d3d;
}
.h_appDetails .h_details .h_udbox .h_back:hover {
  color: var(--active-color);
}
@media screen and (max-width: 1440px) {
  .h_appDetails .h_details .h_title {
    font-size: 32px;
  }
  .h_application .h_List .h_item .h_text .h_title {
    font-size: 28px;
  }
  .h_appDetails .h_details .h_bottom .h_tabs .h_tab {
    font-size: 26px;
  }
}
@media screen and (max-width: 1024px) {
  .h_application .h_List .h_item .h_text .h_more {
    display: none;
  }
  .h_application .h_List .h_item .h_text .h_title {
    font-size: 24px;
  }
  .h_appDetails .h_details .h_title {
    font-size: 26px;
  }
  .h_appDetails .h_details .h_bottom .h_tabs {
    margin-top: 10px;
  }
  .h_appDetails .h_details .h_bottom .h_tabs .h_tab {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .h_application .h_List .h_item .h_text {
    padding: 30px;
  }
  .h_application .h_List .h_item .h_text .h_title {
    font-size: 20px;
  }
  .h_application .h_List .h_item .h_text .h_line {
    display: none;
  }
  .h_application .h_List .h_item .h_text .h_desc {
    margin-top: 10px;
  }
}
@media screen and (max-width: 480px) {
  .h_application .h_List .h_item {
    flex-wrap: wrap;
  }
  .h_application .h_List .h_item .h_img {
    width: 100%;
  }
  .h_application .h_List .h_item .h_text {
    width: 100%;
    padding: 15px;
  }
  .h_application .h_List .h_item .h_text .h_title {
    font-size: 18px;
  }
  .h_application .h_List .h_item .h_text .h_desc {
    margin-top: 4px;
    font-size: 14px;
  }
  .h_appDetails .h_details .h_title {
    font-size: 18px;
  }
  .h_appDetails .h_details .h_share {
    margin-top: 7px;
  }
  .h_appDetails .h_details .h_date {
    margin-top: 7px;
  }
  .h_appDetails .h_details .h_hr {
    margin: 10px 0;
  }
  .h_appDetails .h_details .h_bottom .h_tabs .h_tab {
    font-size: 16px;
    padding: 4px 0 10px;
  }
  .h_appDetails .h_details .h_udbox .h_links a {
    flex: none;
    width: 100%;
    justify-content: flex-start;
  }
  .h_appDetails .h_details .h_udbox .h_links a.next .label.hide {
    display: block;
    margin: 0 15px 0 0;
  }
  .h_appDetails .h_details .h_udbox .h_links a.next .label {
    display: none;
  }
  .h_appDetails .h_details .h_content p {
    margin: 6px 0;
  }
}
