* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
}
.h_row {
  display: flex;
  align-items: center;
}
input:focus-visible,
textarea:focus-visible {
  outline: none;
}
textarea {
  resize: none;
}
input,
textarea,
button {
  border: none;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #999;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition-delay: 99999s;
  -webkit-transition: color 99999s ease-out, background-color 99999s ease-out;
}
img {
  vertical-align: middle;
}
.h_1600 {
  max-width: 1600px;
  width: 92%;
  margin: 0 auto;
}
.h_1400 {
  max-width: 1400px;
  width: 92%;
  margin: 0 auto;
}
.h_1200 {
  max-width: 1200px;
  width: 92%;
  margin: 0 auto;
}
.h_head {
  position: fixed;
  background: #fff;
  z-index: 9;
  width: 100%;
  box-shadow: inset 0px -1px 0px 0px rgba(255, 255, 255, 0.3);
}
.h_head .h_navWeb {
  justify-content: space-between;
  position: relative;
  padding: 12px 0;
}
.h_head .h_navWeb .h_logo {
  display: flex;
  align-items: center;
  height: 56px;
}
.h_head .h_navWeb .h_logo img {
  height: 100%;
}
.h_head .h_navWeb .h_navList ul {
  flex-wrap: nowrap;
}
.h_head .h_navWeb .h_navList ul > li {
  padding: 0 40px;
  transition: padding 0.3s linear;
}
.h_head .h_navWeb .h_navList ul > li:last-child::after {
  display: none;
}
.h_head .h_navWeb .h_navList ul > li > a {
  font-size: 16px;
  font-family: Poppins-Regular;
  font-weight: 400;
  color: #333333;
  white-space: nowrap;
  display: block;
  position: relative;
  line-height: 28px;
}
.h_head .h_navWeb .h_navList ul > li > a::after {
  content: '';
  position: absolute;
  left: 0;
  top: -26px;
  width: 100%;
  height: 1px;
  background: #C9212E;
  transform: scale(0);
  transition: transform 0.3s linear;
}
.h_head .h_navWeb .h_navList ul > li:hover > a::after {
  transform: scale(1);
}
.h_head .h_navWeb .h_navList ul > li.h_active > a::after {
  transform: scale(1);
}
.h_head .h_navWeb .h_navList .h_icon {
  padding-left: 7%;
  height: 100%;
}
.h_head .h_navWeb .h_navList .h_icon img {
  width: 24px;
  cursor: pointer;
}
.h_head .h_navWeb .h_form {
  padding-left: 10px;
  border-radius: 53px 53px 53px 53px;
  opacity: 1;
  border: 1px solid #A1A1A1;
}
.h_head .h_navWeb .h_form form {
  width: 135px;
  height: 26px;
  display: flex;
  align-items: center;
}
.h_head .h_navWeb .h_form form input {
  height: 26px;
  background: none;
  color: #A1A1A1;
  width: calc(100% - 30px);
  margin-right: 6px;
}
.h_head .h_navWeb .h_form form button {
  background: none;
}
.h_head .h_navWeb .h_form form button img {
  width: 18px;
  cursor: pointer;
  filter: grayscale(100%) brightness(220%);
}
.h_head .h_navWeb .h_form.h_focus {
  border: 1px solid #C9212E;
}
.h_head .h_navWeb .h_form.h_focus form input {
  color: #C9212E;
}
.h_head .h_navWeb .h_form.h_focus form button img {
  filter: none;
}
.h_head .h_navApp {
  position: relative;
  display: none;
}
.h_head .h_navApp .h_navTop {
  padding: 10px 4%;
  justify-content: space-between;
}
.h_head .h_navApp .h_navTop .h_logo {
  display: flex;
  align-items: center;
  height: 45px;
}
.h_head .h_navApp .h_navTop .h_logo img {
  height: 100%;
  vertical-align: auto;
}
.h_head .h_navApp .h_navTop .h_logo span {
  display: inline-block;
  width: 33px;
  font-size: 16px;
  font-family: MiSans-Medium, MiSans;
  font-weight: 500;
  color: #C9212E;
}
.h_head .h_navApp .h_navTop .h_menu .h_line {
  display: block;
  width: 30px;
  min-height: 3px;
  background-color: #222;
  margin-bottom: 5px;
  transition: ease-in-out 0.3s;
}
.h_head .h_navApp .h_navTop .h_menu .h_line:last-child {
  margin-bottom: 0;
}
.h_head .h_navApp .h_navTop .h_menu.h_active .h_line1 {
  transform: rotate(45deg);
  margin-bottom: -7px;
}
.h_head .h_navApp .h_navTop .h_menu.h_active .h_line2 {
  opacity: 0;
  transition: ease-in-out 0s;
}
.h_head .h_navApp .h_navTop .h_menu.h_active .h_line3 {
  transform: rotate(-45deg);
  margin-top: -4px;
}
.h_head .h_navApp .h_navList {
  width: 100%;
  position: absolute;
  top: 65px;
  right: -50%;
  transition: right 0.3s;
  z-index: 3;
}
.h_head .h_navApp .h_navList ul {
  position: absolute;
  right: 0;
  background-color: #fff;
  width: 50%;
  height: calc(100vh - 64px);
  z-index: 2;
  overflow: auto;
}
.h_head .h_navApp .h_navList ul > li {
  position: relative;
  padding: 0 20px;
}
.h_head .h_navApp .h_navList ul > li > a {
  display: block;
  padding: 10px 0;
  width: 100%;
  font-size: 15px;
}
.h_head .h_navApp .h_navList ul > li i {
  position: absolute;
  padding: 10px;
  transform: rotate(45deg);
  transition: transform 0.3s;
  font-size: 15px;
  right: 10px;
  top: 0;
}
.h_head .h_navApp .h_navList ul > li i.h_gb {
  transform: rotate(0);
}
.h_head .h_navApp .h_navList ul > li.h_active {
  background-color: #C9212E;
}
.h_head .h_navApp .h_navList ul > li.h_active > a {
  color: #fff;
}
.h_head .h_navApp .h_navList ul > li.h_active i {
  color: #fff;
}
.h_head .h_navApp .h_navList ul > li ol {
  display: none;
}
.h_head .h_navApp .h_navList ul > li ol li a {
  font-size: 15px;
  display: block;
  padding: 10px 16px;
}
.h_head .h_navApp .h_navList ul > li ol li.active a {
  color: #C9212E;
}
.h_head .h_navApp .h_navList ul .h_language {
  padding: 0 20px;
  position: relative;
}
.h_head .h_navApp .h_navList ul .h_language a {
  display: block;
  white-space: nowrap;
  padding: 10px 0;
  font-size: 14px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #3D3D3D;
}
.h_head .h_navApp .h_navList ul .h_language a img {
  width: 26px;
  margin-right: 5px;
}
.h_head .h_navApp .h_navList ul .h_language a:last-child {
  margin-right: 0;
}
.h_head .h_navApp .h_navList ul .h_language a:hover {
  color: #C9212E;
}
.h_head .h_navApp .h_navList ul .h_language a.h_active {
  color: #C9212E;
}
.h_head .h_navApp .h_navList .h_zzc {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  width: 100%;
  height: calc(100vh - 64px);
  background-color: #00000073;
  z-index: 1;
}
.h_head .h_navApp .h_navList.h_show {
  right: 0;
}
.h_head .h_navApp .h_navList.h_show .h_zzc {
  display: block;
}
.h_kong {
  height: 80px;
}
#productNumber {
  display: flex;
  margin-top: 50px;
}
#productNumber li {
  padding: 0 70px;
  transition: padding 0.5s cubic-bezier(0.47, 0, 1, 1);
  position: relative;
}
#productNumber li::before {
  content: '';
  position: absolute;
  left: 0;
  top: calc(50% - 28px);
  width: 2px;
  height: 56px;
  opacity: 0.07;
  background: #000000;
}
#productNumber li:first-child {
  padding-left: 0;
}
#productNumber li:first-child::before {
  display: none;
}
#productNumber li .h_desc {
  font-size: 19px;
  font-family: MiSans-Bold, MiSans;
  font-weight: 700;
  color: #C9212E;
}
#productNumber li .h_desc span {
  font-size: 49px;
}
#productNumber li .h_title {
  font-size: 16px;
  font-family: Source Han Sans CN-Normal, Source Han Sans CN;
  font-weight: 350;
  color: #3D3D3D;
  text-align: center;
}
.h_ggbanner {
  background: #C9212E;
  height: 500px;
  overflow: hidden;
}
.h_ggbanner .h_1400 {
  display: flex;
  height: 100%;
  align-items: center;
}
.h_ggbanner .h_1400 .h_text {
  width: 50%;
}
.h_ggbanner .h_1400 .h_text .h_title {
  font-size: 28px;
  font-family: Source Han Sans CN-Bold, Source Han Sans CN;
  font-weight: 700;
  color: #FFFFFF;
  position: relative;
  margin-bottom: 16px;
}
.h_ggbanner .h_1400 .h_text .h_title .h_icon {
  position: absolute;
  left: -36px;
  top: calc(50% - 10px);
  width: 21px;
  height: 21px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  justify-content: space-between;
}
.h_ggbanner .h_1400 .h_text .h_title .h_icon span {
  width: 8px;
  height: 8px;
  background: #fff;
}
.h_ggbanner .h_1400 .h_text .h_en {
  font-size: 18px;
  font-family: Source Han Sans CN-Regular, Source Han Sans CN;
  font-weight: 400;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.h_ggbanner .h_1400 .h_text .h_en span {
  margin-right: 10px;
  width: 25px;
  height: 1px;
  background: #FFFFFF;
}
.h_ggbanner .h_1400 .h_text .h_licon {
  width: 20px;
  height: 3px;
  background: #FFFFFF;
  position: relative;
}
.h_ggbanner .h_1400 .h_text .h_licon::after {
  position: absolute;
  content: '';
  opacity: 0.5;
  width: 1000px;
  height: 1px;
  top: 1px;
  left: -1000px;
  background: #FFFFFF;
}
.h_ggbanner .h_1400 .h_text .h_desc {
  margin-top: 20px;
  font-size: 14px;
  font-family: Source Han Sans CN-Normal, Source Han Sans CN;
  font-weight: 350;
  color: #FFFFFF;
  line-height: 28px;
  text-align: justify;
}
.h_ggbanner .h_1400 .h_text .h_dian {
  margin-top: 24px;
  display: flex;
  align-items: center;
}
.h_ggbanner .h_1400 .h_text .h_dian span {
  width: 6px;
  height: 6px;
  background: #FFFFFF;
  margin-right: 4px;
}
.h_ggbanner .h_1400 .h_img {
  height: 100%;
  width: 50%;
  position: relative;
}
.h_ggbanner .h_1400 .h_img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border: 190px solid transparent;
  border-top: 540px solid #C9212E;
  border-left: 46px solid #C9212E;
}
.h_ggbanner .h_1400 .h_img img {
  position: absolute;
  left: 59px;
  top: 0;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
}
.h_dqwz {
  line-height: 50px;
  box-shadow: inset 0px -1px 0px 0px rgba(0, 0, 0, 0.1);
}
.h_dqwz .h_row {
  justify-content: flex-end;
}
.h_dqwz .h_row img {
  width: 18px;
  margin-right: 14px;
}
.h_dqwz .h_row span {
  font-size: 14px;
  font-family: Source Han Sans CN-Normal, Source Han Sans CN;
  font-weight: 350;
  color: #999999;
}
.h_dqwz .h_row .h_icon {
  margin: 0 3px;
}
.h_dqwz .h_row a:hover span {
  color: #C9212E;
}
#h_fy {
  margin: 20px 0 0;
}
#h_fy .pagination {
  justify-content: flex-end;
}
#h_fy .pagination li {
  margin-right: 5px;
}
#h_fy .pagination li a,
#h_fy .pagination li span {
  display: block;
  width: 30px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  background: #fff;
  font-size: 13px;
  font-family: Normal;
  font-weight: 400;
  color: #71747B;
  box-shadow: inset 0 0 0 1px #ccc;
}
#h_fy .pagination li a i,
#h_fy .pagination li span i {
  font-size: 13px;
}
#h_fy .pagination li a:hover,
#h_fy .pagination li span:hover {
  color: #C9212E;
  box-shadow: inset 0 0 0 1px #C9212E;
}
#h_fy .pagination li.active a,
#h_fy .pagination li.active span {
  color: #C9212E;
  box-shadow: none;
}
#h_fy .pagination > p {
  font-size: 12px;
  font-family: Normal;
  font-weight: 400;
  color: #555555;
  margin-left: 15px;
}
#h_fy .pagination form {
  margin-left: 6px;
  display: flex;
  align-items: center;
}
#h_fy .pagination form p {
  font-size: 12px;
  font-family: Normal;
  font-weight: 400;
  color: #555555;
}
#h_fy .pagination form input {
  width: 50px;
  padding: 0 0 0 6px;
  height: 28px;
  margin: 0 5px;
  border-radius: 0;
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
}
#h_fy .pagination form button {
  background: none;
  font-size: 12px;
  font-family: Normal;
  font-weight: 400;
  color: #555555;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px #ccc;
  width: 43px;
  height: 28px;
}
#h_fy .pagination form button:hover {
  color: #fff;
  background: #C9212E;
  box-shadow: none;
}
.h_footer {
  box-shadow: inset 0px 1px 0px 0px rgba(0, 0, 0, 0.05);
  background: #fff;
}
.h_footer .h_footer1 {
  padding: 50px 0 30px;
  align-items: stretch;
  justify-content: space-between;
}
.h_footer .h_footer1 dl dt {
  margin-bottom: 26px;
}
.h_footer .h_footer1 dl dt a {
  font-size: 17px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #3D3D3D;
}
.h_footer .h_footer1 dl dt a:hover {
  color: #C9212E;
}
.h_footer .h_footer1 dl dd {
  margin-bottom: 16px;
}
.h_footer .h_footer1 dl dd a {
  font-size: 15px;
  font-family: Source Han Sans CN-Normal, Source Han Sans CN;
  font-weight: 350;
  color: #848484;
}
.h_footer .h_footer1 dl dd a:hover {
  color: #C9212E;
}
.h_footer .h_footer1 .h_left .h_logo {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.h_footer .h_footer1 .h_left .h_logo img {
  width: 56px;
  margin-right: 10px;
}
.h_footer .h_footer1 .h_left .h_logo span {
  font-size: 29px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #3D3D3D;
}
.h_footer .h_footer1 .h_left .h_p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 14px;
}
.h_footer .h_footer1 .h_left .h_p img {
  width: 20px;
  margin-right: 7px;
}
.h_footer .h_footer1 .h_left .h_p p {
  font-size: 15px;
  font-family: Source Han Sans CN-Normal, Source Han Sans CN;
  color: #848484;
}
.h_footer .h_footer1 .h_right img {
  width: 140px;
}
.h_footer .h_footer1 .h_right p {
  font-size: 14px;
  font-family: Source Han Sans CN-Normal, Source Han Sans CN;
  font-weight: 350;
  color: #3D3D3D;
  margin-top: 5px;
  text-align: center;
}
.h_footer .h_footer2 {
  box-shadow: inset 0px 1px 0px 0px rgba(0, 0, 0, 0.1);
  padding: 16px 0;
}
.h_footer .h_footer2 .h_1600 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.h_footer .h_footer2 p,
.h_footer .h_footer2 a {
  font-size: 13px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #848484;
}
.h_footer .h_footer2 a:hover {
  color: #C9212E;
}
@media screen and (max-width: 1280px) {
  .h_head .h_navWeb .h_navList ul > li {
    padding: 0 30px;
  }
  #productNumber li .h_desc span {
    font-size: 40px;
  }
  #productNumber li {
    padding: 0 56px;
  }
}
@media screen and (max-width: 1024px) {
  .h_head .h_navWeb .h_form {
    display: none;
  }
  .h_head .h_navWeb .h_navList ul > li {
    padding: 0 20px;
  }
  #productNumber li {
    padding: 0 40px;
  }
  #productNumber li .h_desc {
    font-size: 16px;
  }
  #productNumber li .h_desc span {
    font-size: 32px;
  }
  .h_footer .h_footer1 {
    padding: 60px 0;
  }
  .h_footer .h_footer1 dl {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .h_head .h_navWeb {
    display: none;
  }
  .h_head .h_navApp {
    display: block;
  }
  .h_kong {
    height: 65px;
  }
  #productNumber {
    flex-wrap: wrap;
    margin-top: 10px;
  }
  #productNumber li {
    width: 50%;
    text-align: center;
    padding: 0;
    margin-top: 20px;
  }
  #productNumber li:nth-child(3)::before {
    display: none;
  }
  .h_ggbanner {
    background: #c9212ee8;
  }
  .h_ggbanner .h_1400 {
    width: 100%;
    position: relative;
    justify-content: center;
  }
  .h_ggbanner .h_1400 .h_text {
    width: 80%;
  }
  .h_ggbanner .h_1400 .h_img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
  }
  .h_ggbanner .h_1400 .h_text .h_title .h_icon {
    left: -28px;
  }
  .h_ggbanner .h_1400 .h_img::after {
    display: none;
  }
  .h_ggbanner .h_1400 .h_img img {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 480px) {
  .h_footer .h_footer2 .h_1600 {
    justify-content: center;
    text-align: center;
  }
  .h_footer .h_footer1 {
    flex-wrap: wrap;
    padding: 40px 0;
  }
  .h_footer .h_footer1 .h_left {
    width: 100%;
  }
  .h_footer .h_footer1 .h_right {
    width: 100%;
    text-align: center;
  }
  .h_footer .h_footer1 .h_left .h_logo span {
    font-size: 22px;
  }
  #h_fy .pagination form {
    display: none;
  }
}
