:root {
  --theme: #d10007;
  --duration: 0.45s;
  --header-height: max(0.99rem, 70px);
  /* --- font40以下 */
  --font12: clamp(12px, 0.12rem, 12px);
  --font14: clamp(12px, 0.14rem, 14px);
  --font15: clamp(12px, 0.15rem, 15px);
  --font16: clamp(13px, 0.16rem, 16px);
  --font17: clamp(13px, 0.17rem, 17px);
  --font18: clamp(14px, 0.18rem, 18px);
  --font20: clamp(15px, 0.2rem, 20px);
  --font22: clamp(16px, 0.22rem, 22px);
  --font24: clamp(17px, 0.24rem, 24px);
  --font26: clamp(18px, 0.26rem, 26px);
  --font28: clamp(18px, 0.28rem, 28px);
  --font30: clamp(20px, 0.3rem, 30px);
  --font32: clamp(20px, 0.32rem, 32px);
  --font33: clamp(20px, 0.33rem, 33px);
  --font34: clamp(22px, 0.34rem, 34px);
  --font36: clamp(22px, 0.36rem, 36px);
  --font38: clamp(24px, 0.38rem, 38px);
  /* --- font40 */
  --font40: clamp(23px, 0.4rem, 40px);
  --font42: clamp(24px, 0.42rem, 42px);
  --font44: clamp(24px, 0.44rem, 44px);
  --font46: clamp(25px, 0.46rem, 46px);
  --font48: clamp(26px, 0.48rem, 48px);
  /* --- font50 */
  --font50: clamp(28px, 0.5rem, 50px);
  --font52: clamp(28px, 0.52rem, 52px);
  --font54: clamp(28px, 0.54rem, 54px);
  --font56: clamp(28px, 0.56rem, 56px);
  --font58: clamp(29px, 0.58rem, 58px);
  /* --- font60 */
  --font60: clamp(30px, 0.6rem, 60px);
  --font62: clamp(31px, 0.62rem, 62px);
  --font64: clamp(31px, 0.66rem, 64px);
  --font66: clamp(31px, 0.66rem, 66px);
  --font68: clamp(31px, 0.68rem, 68px);
  /* --- font70以及以上 */
  --font70: clamp(32px, 0.7rem, 70px);
  --font72: clamp(32px, 0.72rem, 72px);
  --font80: clamp(32px, 0.8rem, 80px);
  --font88: clamp(32px, 0.88rem, 88px);
  --font100: 1rem;
  --font120: 1.2rem;
  --font160: 1.6rem;
  --font230: 2.3rem;
  --font400: 4rem;
  --space-min: 30px;
  --space: 45px;
  --phone-title: 24px;
  --phone-sub-title: 18px;
}
html {
  font-size: calc(100vw / 19.2);
}
@media (min-width: 1921px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: calc(100vw / 15.36);
  }
}
@font-face {
  font-family: "SourceHanSansCN-Regular";
  src: url(../fonts/SourceHanSansCN-Regular.otf);
  font-display: swap;
}
@font-face {
  font-family: "SourceHanSansCN-Medium";
  src: url(../fonts/SourceHanSansCN-Medium.otf);
  font-display: swap;
}
@font-face {
  font-family: "SourceHanSansCN-Light";
  src: url(../fonts/SourceHanSansCN-Light.otf);
  font-display: swap;
}
body {
  font-family: "SourceHanSansCN-Regular", sans-serif;
  font-size: 14px;
  line-height: normal;
}
body.lock {
  overflow: hidden;
}
.wrap {
  max-width: 1500px;
  width: 86%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .wrap {
    width: 92%;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 99;
  background-color: #fff;
  transition: var(--duration);
}
header.scroll {
  transform: translateY(-100%);
}
header .head-wrap {
  display: flex;
  align-items: center;
  height: inherit;
  max-width: 1725px;
  width: 89.84375%;
  margin-left: auto;
  margin-right: auto;
}
header .head-wrap .logo {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
header .head-wrap .logo img {
  display: block;
  max-width: max(2.7rem, 200px);
  object-fit: contain;
}
header .head-wrap .pc-nav {
  display: flex;
  align-items: center;
  height: inherit;
  margin-left: auto;
}
header .head-wrap .pc-nav .nav-item {
  position: relative;
  z-index: 2;
  height: inherit;
}
header .head-wrap .pc-nav .nav-item:not(:last-child) {
  margin-right: 0.8rem;
}
header .head-wrap .pc-nav .nav-item.active .nav-top a,
header .head-wrap .pc-nav .nav-item.hover .nav-top a {
  color: #cd3327;
}
header .head-wrap .pc-nav .nav-item .nav-top {
  height: inherit;
}
header .head-wrap .pc-nav .nav-item .nav-top a {
  font-size: var(--font18);
  color: #333;
  transition: var(--duration);
  height: inherit;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
header .head-wrap .pc-nav .nav-item .nav-top a:hover {
  color: var(--theme);
}
header .head-wrap .pc-nav .nav-item .nav-bottom {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(120, 120, 120, 0.15);
  overflow: hidden;
  display: none;
  min-width: 150%;
}
header .head-wrap .pc-nav .nav-item .nav-bottom .bottom-item {
  display: block;
  font-size: var(--font14);
  color: #333;
  white-space: nowrap;
  text-align: center;
  padding: 10px;
  transition: var(--duration);
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
header .head-wrap .pc-nav .nav-item .nav-bottom .bottom-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: var(--theme);
  z-index: -1;
  transition: var(--duration);
}
header .head-wrap .pc-nav .nav-item .nav-bottom .bottom-item:hover {
  color: #fff;
}
header .head-wrap .pc-nav .nav-item .nav-bottom .bottom-item:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
header .head-wrap .other {
  display: flex;
  margin-left: max(0.76rem, 20px);
}
header .head-wrap .other .search {
  margin-right: max(0.31rem, 10px);
  user-select: none;
  cursor: pointer;
}

header .head-wrap .other .search img {
  width: 18px;
  object-fit: contain;
  vertical-align: middle;
}
header .head-wrap .other .lang {
  display: flex;
  align-items: center;
}
header .head-wrap .other .lang .icon {
  margin-right: 7px;
}
header .head-wrap .other .lang .icon img {
  display: block;
  width: 17px;
}
header .head-wrap .other .lang .text {
  display: flex;
  align-items: center;
}
header .head-wrap .other .lang .text a {
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #333333;
  display: flex;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
}
header .head-wrap .other .lang .text a:nth-child(1) {
  padding-right: 10px;
  border-right: 1px solid #bcbcbc;
}
header .head-wrap .other .lang .text a:nth-child(2) {
  padding-left: 10px;
}
header .head-wrap .head-search {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: auto;
  background-color: #fff;
  padding: 20px 15px;
  display: none;
}
header .head-wrap .head-search form {
  display: flex;
  align-items: center;
  width: 90%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 1px solid #cccccc;
  --height: 50px;
}
header .head-wrap .head-search form:focus-within {
  border-color: var(--theme);
}
header .head-wrap .head-search form input {
  flex: 1;
  min-width: 0;
  height: var(--height);
  transition: var(--duration);
  padding-left: 15px;
  padding-right: 15px;
  font-size: var(--font16);
  color: #333;
}
header .head-wrap .head-search form input::placeholder {
  color: #666666;
}
header .head-wrap .head-search form button {
  width: 60px;
  height: var(--height);
  user-select: none;
  cursor: pointer;
}
header .phone-btn {
  display: none;
}
footer {
  background: #eeeeee;
  padding-top: max(0.73rem, var(--space));
}
footer .foot-top {
  display: flex;
  align-items: flex-start;
  padding-bottom: 0.68rem;
  border-bottom: 1px solid rgba(100, 100, 100, 0.06);
  margin-bottom: max(0.48rem, 20px);
}
footer .foot-top .foot-logo img {
  display: block;
  max-width: max(3.5rem, 240px);
  object-fit: contain;
}
footer .foot-top .foot-nav {
  margin-left: auto;
  display: flex;
  column-gap: 1.96rem;
}
footer .foot-top .foot-nav .foot-item .item-t {
  margin-bottom: max(0.3rem, 15px);
}
footer .foot-top .foot-nav .foot-item .item-t .text {
  font-weight: 400;
  font-size: var(--font20);
  color: #000000;
  line-height: 1;
  white-space: nowrap;
  transition: var(--duration);
}
footer .foot-top .foot-nav .foot-item .item-t .icon {
  display: none;
}
footer .foot-top .foot-nav .foot-item .item-b .text:not(:last-child) {
  margin-bottom: 10px;
}
footer .foot-top .foot-nav .foot-item .item-b .text a {
  font-weight: 300;
  font-size: var(--font16);
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
  transition: var(--duration);
}
footer .foot-top .foot-nav .foot-item .item-b .text a:hover {
  color: var(--theme);
}
footer .foot-bottom .bottom-top-area {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  column-gap: max(0.8rem, 20px);
}
footer .foot-bottom .bottom-top-area .left {
  margin-right: 20px;
}
footer .foot-bottom .bottom-top-area .left .info-area .title {
  font-weight: 400;
  font-size: var(--font20);
  color: #000000;
  margin-bottom: max(0.33rem, 10px);
}
footer .foot-bottom .bottom-top-area .left .info-area .phone {
  display: block;
  font-size: var(--font46);
  color: #d10007;
  line-height: 1;
  white-space: nowrap;
  margin-bottom: max(0.34rem, 10px);
  font-family: SourceHanSansCN-Regular, sans-serif;
}
footer .foot-bottom .bottom-top-area .left .info-area .text {
  font-family: SourceHanSansCN-Light, sans-serif;
  font-size: var(--font18);
  color: #666666;
  line-height: 1.66666667;
  overflow-wrap: break-word;
}
footer .foot-bottom .bottom-top-area .right {
  min-width: 0;
}
footer .foot-bottom .bottom-top-area .right .title {
  font-size: var(--font20);
  color: #000000;
  line-height: 1;
  margin-bottom: max(0.27rem, 10px);
}
footer .foot-bottom .bottom-top-area .right .list {
  display: flex;
  justify-content: space-between;
  column-gap: max(0.3rem, 20px);
}
footer .foot-bottom .bottom-top-area .right .list .item .code {
  width: 115px;
  height: 115px;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  padding: 6px;
  margin-left: auto;
  margin-right: auto;
}
footer .foot-bottom .bottom-top-area .right .list .item .code img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
footer .foot-bottom .bottom-top-area .right .list .item .text {
  text-align: center;
  font-size: var(--font16);
  color: #666666;
  line-height: 1;
  margin-top: max(0.12rem, 10px);
}
footer .foot-bottom .hot-keyword {
  margin-top: 0.92rem;
  padding-bottom: max(0.24rem, 10px);
  border-bottom: 1px solid rgba(100, 100, 100, 0.06);
}
footer .foot-bottom .hot-keyword .keyword {
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #646464;
  line-height: 1.875;
}
footer .foot-bottom .hot-keyword .keyword:not(:last-child) {
  margin-right: max(0.16rem, 10px);
}
footer .foot-bottom .hot-keyword .keyword:first-child {
  margin-right: 6px;
}
footer .foot-copyright {
  padding-top: 20px;
  padding-bottom: max(0.25rem, 20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .foot-copyright .text-area {
  display: flex;
  align-items: center;
}
footer .foot-copyright .text-area .section:nth-child(1) {
  margin-right: max(10px, 0.62rem);
}
footer .foot-copyright .text-area .section:nth-child(2) {
  margin-right: max(10px, 0.89rem);
}
footer .foot-copyright .text-area .text {
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #707070;
  line-height: 1.875;
  margin-right: 6px;
}
footer .foot-copyright .text-area .text.black {
  color: #000;
}
footer .foot-copyright .icon-list {
  display: flex;
  align-items: center;
}
footer .foot-copyright .icon-list .item {
  position: relative;
}
footer .foot-copyright .icon-list .item:not(:last-child) {
  margin-right: max(0.2rem, 10px);
}
footer .foot-copyright .icon-list .item:hover .icon {
  border-color: #cd3327;
}
footer .foot-copyright .icon-list .item:hover .icon .default {
  display: none;
}
footer .foot-copyright .icon-list .item:hover .icon .hover {
  display: block;
}
footer .foot-copyright .icon-list .item:hover .qrcode {
  transform: translateX(-50%) scale(1, 1);
}
footer .foot-copyright .icon-list .item .icon {
  --w: max(0.5rem, 35px);
  width: var(--w);
  height: var(--w);
  border-radius: 50%;
  border: 1px solid transparent;
  transition: var(--duration);
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .foot-copyright .icon-list .item .icon img {
  display: block;
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}
footer .foot-copyright .icon-list .item .icon .hover {
  display: none;
}
footer .foot-copyright .icon-list .item .qrcode {
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(204, 204, 204, 0.7);
  padding: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) scale(0, 1);
  transition: var(--duration);
}
footer .foot-copyright .icon-list .item .qrcode img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
footer .foot-aside {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 67;
  background: linear-gradient(0deg, #cd3327 0%, #cd3327 100%);
  border-radius: 10px 0px 0px 10px;
  user-select: none;
  cursor: pointer;
}
footer .foot-aside .aside-item {
  position: relative;
  z-index: 10;
}
footer .foot-aside .aside-item:hover .hover-box {
  transform: translateY(-50%) scale(1, 1);
}
footer .foot-aside .aside-item .content {
  width: max(0.63rem, 50px);
  padding-top: max(0.13rem, 10px);
  padding-bottom: max(0.13rem, 10px);
}
footer .foot-aside .aside-item .content:not(:last-child) {
  border-bottom: 1px solid rgba(243, 243, 243, 0.2);
}
footer .foot-aside .aside-item .content .icon img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 50%;
  object-fit: contain;
}
footer .foot-aside .aside-item .content .text {
  font-weight: 300;
  font-size: 12px;
  color: #ffffff;
  line-height: 1;
  margin-top: 3px;
  text-align: center;
}
footer .foot-aside .aside-item .hover-box {
  position: absolute;
  top: 50%;
  right: calc(100% + 2px);
  transform: translateY(-50%) scale(1, 0);
  font-size: 14px;
  transition: var(--duration);
}
footer .foot-aside .aside-item .qrcode {
  width: 100px;
  height: 100px;
  padding: 2px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 0 5px #cccccc;
}
footer .foot-aside .aside-item .qrcode img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
footer .foot-aside .aside-item .hover-phone {
  padding: 15px 10px;
  white-space: nowrap;
  color: #ffffff;
  background-color: var(--theme);
  border-radius: 10px;
}
@media (min-width: 1201px) {
  header .head-wrap .phone-nav {
    display: none !important;
  }
}
@media (max-width: 1600px) {
  header .head-wrap .pc-nav .nav-item:not(:last-child) {
    margin-right: 0.6rem;
  }
}
@media (max-width: 1200px) {
  header .head-wrap .pc-nav {
    display: none;
  }
  header .head-wrap .logo {
    margin-right: auto;
  }
  header .head-wrap .phone-btn {
    display: block;
    margin-left: 10px;
    user-select: none;
    cursor: pointer;
    --w: 24px;
  }
  header .head-wrap .phone-btn span {
    display: block;
    width: var(--w);
    height: 2px;
    background-color: var(--theme);
    margin-bottom: 5px;
    transition: all 0.6s ease;
  }
  header .head-wrap .phone-btn span:last-child {
    margin-bottom: 0;
  }
  header .head-wrap .phone-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
  }
  header .head-wrap .phone-btn.active span:nth-child(2) {
    display: none;
  }
  header .head-wrap .phone-btn.active span:nth-child(3) {
    transform: rotate(45deg);
  }
  header .head-wrap .phone-nav {
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #fff;
    width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    overflow-x: hidden;
    overflow-y: auto;
    padding-left: 7%;
    padding-right: 7%;
    padding-top: 30px;
    display: none;
  }
  header .head-wrap .phone-nav .nav-item {
    margin-bottom: 15px;
  }
  header .head-wrap .phone-nav .nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .head-wrap .phone-nav .nav-top.active a {
    color: var(--theme);
  }
  header .head-wrap .phone-nav .nav-top.active .icon img {
    transform: rotate(90deg);
    filter: none;
  }
  header .head-wrap .phone-nav .nav-top a {
    font-size: var(--font22);
    color: #333;
    transition: var(--duration);
  }
  header .head-wrap .phone-nav .nav-top a:hover {
    color: var(--theme);
  }
  header .head-wrap .phone-nav .nav-top .icon {
    width: 30px;
    user-select: none;
    cursor: pointer;
  }
  header .head-wrap .phone-nav .nav-top .icon img {
    filter: grayscale(100%) brightness(0.2);
    display: block;
    transition: var(--duration);
    margin-left: auto;
    margin-right: auto;
    width: 10px;
  }
  header .head-wrap .phone-nav .nav-bottom {
    margin-top: 20px;
    padding-left: 1em;
    display: none;
  }
  header .head-wrap .phone-nav .nav-bottom .bottom-item {
    display: block;
    width: fit-content;
    font-size: var(--font18);
    color: #333;
    line-height: 1.5;
    transition: var(--duration);
  }
  header .head-wrap .phone-nav .nav-bottom .bottom-item:not(:last-child) {
    margin-bottom: 10px;
  }
  header .head-wrap .phone-nav .nav-bottom .bottom-item:hover {
    color: var(--theme);
  }
  header .head-wrap .phone-nav .lang-area {
    display: none;
  }
}
@media (max-width: 1200px) and (max-width: 768px) {
  header .head-wrap .phone-nav {
    padding-left: 4%;
    padding-right: 4%;
  }
}
@media (max-width: 992px) {
  footer .foot-copyright {
    flex-wrap: wrap;
    row-gap: 10px;
  }
}
@media (max-width: 768px) {
  footer .foot-aside {
    display: none;
  }
  footer .foot-top {
    flex-wrap: wrap;
  }
  footer .foot-top .foot-nav {
    width: 100%;
    margin-top: 30px;
    display: block;
  }
  footer .foot-top .foot-nav .foot-item {
    margin-bottom: 10px;
  }
  footer .foot-top .foot-nav .foot-item .item-t {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  footer .foot-top .foot-nav .foot-item .item-t.active .text {
    color: var(--theme);
  }
  footer .foot-top .foot-nav .foot-item .item-t.active .icon::before,
  footer .foot-top .foot-nav .foot-item .item-t.active .icon::after {
    background-color: var(--theme);
  }
  footer .foot-top .foot-nav .foot-item .item-t.active .icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  footer .foot-top .foot-nav .foot-item .item-t .icon {
    --w: 20px;
    position: relative;
    width: 30px;
    height: 30px;
    user-select: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  footer .foot-top .foot-nav .foot-item .item-t .icon::before,
  footer .foot-top .foot-nav .foot-item .item-t .icon::after {
    content: "";
    background-color: #000;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  footer .foot-top .foot-nav .foot-item .item-t .icon::before {
    width: var(--w);
    height: 1px;
  }
  footer .foot-top .foot-nav .foot-item .item-t .icon::after {
    width: 1px;
    height: var(--w);
  }
  footer .foot-top .foot-nav .foot-item .item-b {
    display: none;
    margin-top: 10px;
  }
  footer .foot-bottom .bottom-top-area {
    flex-wrap: wrap;
    row-gap: 20px;
  }
  footer .foot-bottom .bottom-top-area .left {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  footer .foot-bottom .bottom-top-area .right {
    width: 100%;
  }
  footer .foot-bottom .bottom-top-area .right .list {
    justify-content: flex-start;
    column-gap: 20px;
  }
  footer .foot-copyright .text-area {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  footer .foot-copyright .icon-list {
    display: none;
  }
}
@media (max-width: 576px) {
  :root {
    --header-height: 60px;
  }
  header .head-wrap .logo img {
    max-width: 150px;
    object-fit: contain;
  }
  header .head-wrap .other .lang {
    display: none;
  }
  header .head-wrap .phone-nav .lang-area {
    display: block;
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-top: 20px;
  }
  header .head-wrap .phone-nav .lang-area a {
    font-size: var(--font16);
    width: fit-content;
    color: #333;
  }
  footer .foot-bottom .hot-keyword {
    display: none;
  }
  footer .foot-bottom .bottom-top-area .right .list .item {
    width: 30%;
  }
  footer .foot-bottom .bottom-top-area .right .list .item .code {
    width: 100%;
    height: auto;
  }
  footer .foot-copyright .text-area .text,
  footer .foot-copyright .text-area .block {
    display: block;
  }
}
