:root {
  --theme: #c92226;
  --duration: 0.45s;
  --header-height: max(1.19rem, 100px);
  /* --- font40以下 */
  --font12: 12px;
  --font14: 14px;
  --font15: clamp(14px, 0.15rem, 15px);
  --font16: 16px;
  --font17: clamp(16px, 0.17rem, 17px);
  --font18: clamp(16px, 0.18rem, 18px);
  --font20: clamp(16px, 0.2rem, 20px);
  --font22: clamp(16px, 0.22rem, 22px);
  --font23: clamp(16px, 0.23rem, 23px);
  --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);
  --font34: clamp(22px, 0.34rem, 34px);
  --font35: clamp(22px, 0.35rem, 35px);
  --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;
  --search-height: 68px;
}

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: Source Han Sans CN;
  src: url("https://font.fonwi.com/xinweb/commonFonts/SourceHanSansCN-Light.otf");
  font-display: swap;
  font-weight: 300;
}

@font-face {
  font-family: Source Han Sans CN;
  src: url("https://font.fonwi.com/xinweb/commonFonts/SourceHanSansCN-Regular.otf");
  font-display: swap;
  font-weight: 400;
}

body {
  line-height: normal;
  font-size: 16px;
  font-family: "Source Han Sans CN", sans-serif;
}

body.lock {
  overflow: hidden;
}

input,
textarea,
select,
button {
  font-family: inherit;
}

.wrap {
  width: 86%;
  max-width: 1536px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .wrap {
    width: 92% !important;
  }
}

header {
  background-color: #fff;
  position: relative;
  z-index: calc(99 * 4);
}

header .header-wrap {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
}

header .header-wrap .logo {
  width: max(2.07rem, 140px);
  flex-shrink: 0;
  align-self: center;
}

header .header-wrap .logo:focus {
  outline: none;
}

header .header-wrap .logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

header .header-wrap .header-info {
  margin-left: auto;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-top: 16px;
}

header .header-wrap .header-info .info-line {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: max(0.3rem, 20px);
}

header .header-wrap .header-info .info-line .lang-info {
  display: flex;
  align-items: center;
  white-space: nowrap;
  user-select: none;
  cursor: pointer;

}


header .header-wrap .header-info .info-line .lang-info:hover .text {
  color: var(--theme);
}

header .header-wrap .header-info .info-line .lang-info .icon {
  width: 12px;
  flex-shrink: 0;
}

header .header-wrap .header-info .info-line .lang-info .icon img {
  display: block;
  max-width: 100%;
  height: auto;
}

header .header-wrap .header-info .info-line .lang-info .text {
  font-weight: 300;
  font-size: var(--font12);
  color: #999999;
  margin-left: 8px;
  transition: var(--duration);
}

header .header-wrap .header-info .info-line .phone-info {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

header .header-wrap .header-info .info-line .phone-info .icon {
  width: 16px;
  flex-shrink: 0;
}

header .header-wrap .header-info .info-line .phone-info .icon img {
  display: block;
  max-width: 100%;
  height: auto;
}

header .header-wrap .header-info .info-line .phone-info .text {
  font-weight: bold;
  font-size: var(--font16);
  color: #2e3133;
  margin-left: 9px;
}

header .header-wrap .header-info .nav-line {
  margin-top: max(0.28rem, 15px);
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

header .header-wrap .header-info .nav-line .search-btn {
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
  flex-shrink: 0;
  margin-left: max(0.41rem, 20px);
  margin-top: 7px;
  user-select: none;
  transition: var(--duration);
}

header .header-wrap .header-info .nav-line .search-btn.clicked {
  cursor: pointer;
}

header .header-wrap .header-info .nav-line .search-btn.light {
  opacity: 1;
}

header .header-wrap .header-info .nav-line .search-btn.light img {
  filter: brightness(0);
}

header .header-wrap .header-info .nav-line .search-btn img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

header .header-wrap .header-info .nav {
  display: flex;
  justify-content: flex-end;
  column-gap: max(0.7rem, 20px);
}

header .header-wrap .header-info .nav .nav-item.active .nav-item-top .text,
header .header-wrap .header-info .nav .nav-item.active .nav-item-top .text,
header .header-wrap .header-info .nav .nav-item:hover .nav-item-top .text {
  color: #c82126 !important;
}

header .header-wrap .header-info .nav .nav-item.active .nav-item-top .icon,
header .header-wrap .header-info .nav .nav-item.active .nav-item-top .icon,
header .header-wrap .header-info .nav .nav-item:hover .nav-item-top .icon {
  transform: rotate(-180deg) !important;
}

header .header-wrap .header-info .nav .nav-item-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1.44444444;
  padding-bottom: max(0.24rem, 10px);
}

header .header-wrap .header-info .nav .nav-item-top .text {
  font-weight: bold;
  font-size: var(--font18);
  color: #2e3133;
}

header .header-wrap .header-info .nav .nav-item-top .icon {
  flex-shrink: 0;
  display: block;
  width: 10px;
  height: auto;
  margin-left: 5px;
  transition: var(--duration);
}

header .header-wrap .header-info .nav .nav-item-bottom {
  display: none;
  position: absolute;
  left: 0;
  top: var(--header-height);
  width: 100%;
  height: auto;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  background-color: #f5f5f5;
  padding-top: max(0.71rem, 30px);
  z-index: calc(99 * 4);
}

header .header-wrap .header-info .nav .nav-item-bottom .text-list {
  display: flex;
  align-items: flex-start;
  /* justify-content: space-between; */
  justify-content: flex-start;
  flex-wrap: wrap;
  row-gap: 30px;
  column-gap: 2%;
  padding-bottom: max(0.54rem, 30px);
}

header .header-wrap .header-info .nav .nav-item-bottom .text-list .col {
  width: 23%;
  flex-shrink: 0;
}

header .header-wrap .header-info .nav .nav-item-bottom .text-list .col .text-item:not(:last-child) {
  margin-bottom: max(0.24rem, 20px);
}

header .header-wrap .header-info .nav .nav-item-bottom .text-list .col .text-item .item-top .item-top-text {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: var(--font16);
  color: #333333;
  line-height: 1.44444444;
  width: fit-content;
  max-width: 100%;
}

header .header-wrap .header-info .nav .nav-item-bottom .text-list .col .text-item .item-top .item-top-text span {
  flex: 1;
  overflow-wrap: break-word;
  transition: background-size var(--duration);
  background-image: linear-gradient(to right, #333333, #333333);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: right bottom;
}

header .header-wrap .header-info .nav .nav-item-bottom .text-list .col .text-item .item-top .item-top-text img {
  display: block;
  flex-shrink: 0;
  width: 5px;
  margin-left: 5px;
}

header .header-wrap .header-info .nav .nav-item-bottom .text-list .col .text-item .item-top .item-top-text:hover span {
  background-size: 100% 1px;
  background-position: left bottom;
}

header .header-wrap .header-info .nav .nav-item-bottom .text-list .col .text-item .item-group {
  margin-top: 5px;
}

header .header-wrap .header-info .nav .nav-item-bottom .text-list .col .text-item .item-group .link {
  display: flex;
  align-items: center;
  font-size: var(--font14);
  font-weight: 400;
  color: #c82126;
  width: fit-content;
  max-width: 100%;
}

header .header-wrap .header-info .nav .nav-item-bottom .text-list .col .text-item .item-group .link span {
  flex: 1;
  overflow-wrap: break-word;
  transition: background-size var(--duration);
  background-image: linear-gradient(to right, #c82126, #c82126);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: right bottom;
}

header .header-wrap .header-info .nav .nav-item-bottom .text-list .col .text-item .item-group .link img {
  width: 4px;
  margin-left: 5px;
  display: block;
  flex-shrink: 0;
  margin-top: 0.1em;
}

header .header-wrap .header-info .nav .nav-item-bottom .text-list .col .text-item .item-group .link:hover span {
  background-size: 100% 1px;
  background-position: left bottom;
}

header .header-wrap .header-info .nav .nav-item-bottom .application-list {
  display: flex;
  align-items: flex-start;
  padding-top: max(0.35rem, 20px);
  padding-bottom: max(0.74rem, 20px);
  border-top: 1px solid #efeaea;
}

header .header-wrap .header-info .nav .nav-item-bottom .application-list .title {
  font-weight: 500;
  font-size: var(--font18);
  color: #333333;
  line-height: 1.44444444;
  white-space: nowrap;
  margin-right: max(0.61rem, 20px);
}

header .header-wrap .header-info .nav .nav-item-bottom .application-list .group {
  flex: 1;
  min-width: 0;
  column-gap: max(0.3rem, 20px);
  row-gap: 10px;
  display: grid;
  /* grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); */
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
}

header .header-wrap .header-info .nav .nav-item-bottom .application-list .group .item-text {
  display: flex;
  align-items: flex-start;
  font-weight: 300;
  font-size: var(--font16);
  color: #c82126;
  line-height: 1.5;
  overflow-wrap: break-word;
}

header .header-wrap .header-info .nav .nav-item-bottom .application-list .group .item-text span {
  transition: background-size var(--duration);
  background-image: linear-gradient(to right, #c82126, #c82126);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: right bottom;
}

header .header-wrap .header-info .nav .nav-item-bottom .application-list .group .item-text:hover span {
  background-size: 100% 1px;
  background-position: left bottom;
}

header .header-wrap .header-info .nav .nav-item-bottom .application-list .group .item-text img {
  display: block;
  flex-shrink: 0;
  width: 6px;
  margin-left: 10px;
  margin-top: 0.5em;
}

header .header-wrap .header-info .nav .nav-item-bottom .cate-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px max(0.3rem, 20px);
  padding-bottom: max(0.9rem, 30px);
}

header .header-wrap .header-info .nav .nav-item-bottom .cate-list .cate-item {
  overflow: hidden;
}

header .header-wrap .header-info .nav .nav-item-bottom .cate-list .cate-item:hover .pic img {
  transform: scale(1.05);
}

header .header-wrap .header-info .nav .nav-item-bottom .cate-list .cate-item:hover .text {
  color: var(--theme);
}

header .header-wrap .header-info .nav .nav-item-bottom .cate-list .cate-item .pic {
  position: relative;
  overflow: hidden;
}

header .header-wrap .header-info .nav .nav-item-bottom .cate-list .cate-item .pic::after {
  content: "";
  display: block;
  padding-bottom: 47.82608696%;
}

header .header-wrap .header-info .nav .nav-item-bottom .cate-list .cate-item .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration);
}

header .header-wrap .header-info .nav .nav-item-bottom .cate-list .cate-item .text {
  font-weight: 400;
  font-size: var(--font18);
  color: #333333;
  margin-top: 10px;
  line-height: 1.44444444;
  overflow-wrap: break-word;
  transition: var(--duration);
}

header .header-search-area {
  width: 100%;
  height: var(--search-height);
  background: #eeeded;
  position: absolute;
  left: 0;
  top: var(--header-height);
  z-index: calc(99 * 2);
}

header .header-search-area .main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

header .header-search-area .form {
  height: 45px;
  position: relative;
}

header .header-search-area .form .search-input {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  outline: none;
  border: none;
  padding-left: 52px;
  font-weight: 300;
  font-size: var(--font16);
  color: #333333;
}

header .header-search-area .form .search-input::placeholder {
  color: #999999;
}

header .header-search-area .form .btn {
  width: 15px;
  height: 15px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  outline: none;
}

header .header-search-area .form .btn img {
  display: block;
  max-width: 100%;
  height: auto;
}

header .header-search-area .search-list {
  display: none;
  background-color: #f7f7f7;
  padding: 40px 0 64px;
}

header .header-search-area .search-list .search-info-wrap .section-title {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.25;
  color: #000;
}

header .header-search-area .search-list .search-info-wrap .section1-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 20px;
}

header .header-search-area .search-list .search-info-wrap .section1-list .item {
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  user-select: none;
  cursor: pointer;
}

header .header-search-area .search-list .search-info-wrap .section1-list .item .pic {
  width: 80px;
  height: 80px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 20px;
}

header .header-search-area .search-list .search-info-wrap .section1-list .item .pic img {
  display: block;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

header .header-search-area .search-list .search-info-wrap .section1-list .item .text {
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
}

header .header-search-area .search-list .search-info-wrap .section1-list .item .text .text-title {
  font-size: 14px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: bold;
}

header .header-search-area .search-list .search-info-wrap .section1-list .item .text .text-title span {
  min-width: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}

header .header-search-area .search-list .search-info-wrap .section1-list .item .text .text-title img {
  display: block;
  width: 5px;
  flex-shrink: 0;
  margin-left: 10px;
}

header .header-search-area .search-list .search-info-wrap .section1-list .item .text .text-sub-title {
  font-size: 12px;
  color: #666a6b;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  margin-top: 6px;
}

header .header-search-area .search-list .search-info-wrap .section1-list .item .text .btn-list {
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
}

header .header-search-area .search-list .search-info-wrap .section1-list .item .text .btn-list .btn-type {
  font-size: 12px;
  color: #ea0000;
  display: flex;
  align-items: center;
}

header .header-search-area .search-list .search-info-wrap .section1-list .item .text .btn-list .btn-type:not(:last-child) {
  margin-right: 20px;
}

header .header-search-area .search-list .search-info-wrap .section1-list .item .text .btn-list .btn-type img {
  display: block;
  flex-shrink: 0;
  margin-left: 5px;
  width: 4px;
  margin-top: 0.1em;
}

header .header-search-area .more-btn {
  display: block;
  width: fit-content;
  min-width: 200px;
  padding: 10px 20px;
  text-align: left;
  text-decoration: none;
  background-color: #f5f5f5;
  border: 2px solid #666a6b;
  border-radius: 4px;
  transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  font-size: 14px;
  color: #2e3133;
  transition: var(--duration);
  margin-bottom: 30px;
}

header .header-search-area .more-btn:hover {
  color: #fff;
  background-color: var(--theme);
  border-color: transparent;
}

header .header-search-area .more-btn:hover img {
  filter: brightness(0) invert(1);
}

header .header-search-area .more-btn img {
  display: block;
  width: 7px;
  margin-left: 10px;
  transition: var(--duration);
  margin-top: 0.1em;
}

header .header-search-area .group {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 20px;
  row-gap: 20px;
}

header .header-search-area .group .item-text {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  color: var(--theme);
  line-height: 1.5;
  overflow: hidden;
}

header .header-search-area .group .item-text img {
  display: block;
  width: 5px;
  margin-left: 6px;
  margin-top: 0.5em;
  flex-shrink: 0;
}

header .header-search-area .group .item-text span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  background-image: linear-gradient(to bottom, var(--theme), var(--theme));
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0% 1px;
  transition: background-size var(--duration);
}

header.no-sticky {
  position: static;
}

header.no-sticky .header-search-area {
  display: none;
}

header.animate {
  animation: moveY 0.4s ease forwards;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: calc(99 * 2);
}

/* 这个类名跟bos-shadow绑定结合在一起 */
html.min-height {
  --header-height: 80px;
}

header.box-shadow {
  filter: drop-shadow(0 10px 20px rgba(46, 49, 51, 0.1));
}

header.box-shadow .header-wrap .header-info {
  padding-top: 0;
}

header.box-shadow .header-wrap .header-info .info-line {
  display: none;
}

header.box-shadow .header-wrap .header-info .nav-line {
  margin-top: 0;
  align-items: center;
}

header.box-shadow .header-wrap .header-info .nav-line .search-btn {
  margin-top: 0;
}

header.box-shadow .header-wrap .header-info .nav {
  align-self: flex-end;
}

header.box-shadow .header-wrap .header-info .nav .nav-item-top {
  padding-bottom: 27px;
}

@keyframes moveY {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  header {
    filter: drop-shadow(0 10px 20px rgba(46, 49, 51, 0.1));
    position: sticky;
    top: 0;
    z-index: calc(99 * 2);
  }
}

footer {
  background-color: #2e2e2e;
  padding-top: max(0.81rem, 30px);
}

footer .foot-logo {
  display: block;
}

footer .foot-logo img {
  display: block;
  width: max(145px, 1.75rem);
  height: auto;
}

footer .foot-top {
  display: flex;
  align-items: flex-start;
  margin-top: max(0.3rem, 20px);
  padding-bottom: max(0.82rem, 30px);
}

footer .foot-top .left {
  width: 32.29166667%;
}

footer .foot-top .left .company-name {
  font-weight: 400;
  font-size: var(--font24);
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 10px;
}

footer .foot-top .left .desc {
  font-weight: 300;
  font-size: var(--font16);
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 20px;
}

footer .foot-top .right {
  width: 29.296875%;
  margin-left: auto;
}

footer .foot-top .info-list {
  width: 100%;
}

footer .foot-top .info-list .info-item {
  display: flex;
  align-items: center;
}

footer .foot-top .info-list .info-item:not(:last-child) {
  margin-bottom: 10px;
}

footer .foot-top .info-list .info-item .icon {
  width: 16px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  margin-right: 12px;
}

footer .foot-top .info-list .info-item .icon img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  opacity: 0.3;
}

footer .foot-top .info-list .info-item .text {
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
  font-weight: 300;
  font-size: var(--font16);
  color: #ffffff;
  line-height: 1.5;
}

footer .foot-top .icon-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: max(0.52rem, 20px);
  margin-top: max(0.65rem, 20px);
}

footer .foot-top .icon-list .item {
  width: 29px;
  flex-shrink: 0;
}

footer .foot-top .icon-list .item .icon {
  width: 100%;
}

footer .foot-top .icon-list .item .icon img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
}

footer .foot-bottom {
  display: flex;
  column-gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

footer .foot-bottom .left {
  width: 32.29166667%;
}

footer .foot-bottom .left .text-title {
  font-weight: 500;
  font-size: var(--font32);
  color: #ffffff;
}

footer .foot-bottom .left .text-desc {
  font-weight: 300;
  font-size: var(--font16);
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.6);
  margin-top: max(0.3rem, 20px);
}

footer .foot-bottom .right {
  width: 29.296875%;
  margin-left: auto;
}

footer .foot-bottom .right .btn-list {
  --w: max(3.07rem, 180px);
}

footer .foot-bottom .right .btn-list .btn1 {
  width: var(--w);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

footer .foot-bottom .right .btn-list .btn1 .icon {
  width: 19px;
  flex-shrink: 0;
}

footer .foot-bottom .right .btn-list .btn1 .icon img {
  display: block;
  max-width: 100%;
  height: auto;
}

footer .foot-bottom .right .btn-list .btn1 .text {
  font-weight: 400;
  font-size: var(--font20);
  color: #ffffff;
  margin-left: max(0.4rem, 20px);
}

footer .foot-bottom .right .btn-list .btn2 {
  margin-top: max(0.3rem, 20px);
  width: var(--w);
  background: #4e4e4e;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 17px;
  padding-bottom: 17px;
}

footer .foot-bottom .right .btn-list .btn2 .icon {
  width: 49px;
  flex-shrink: 0;
}

footer .foot-bottom .right .btn-list .btn2 .icon img {
  display: block;
  max-width: 100%;
  height: auto;
}

footer .foot-bottom .right .btn-list .btn2 .text {
  margin-left: max(0.3rem, 20px);
}

footer .foot-bottom .right .btn-list .btn2 .text span {
  display: block;
}

footer .foot-bottom .right .btn-list .btn2 .text .text-type1 {
  font-weight: 400;
  font-size: var(--font20);
  color: #ffffff;
  line-height: 1.8;
}

footer .foot-bottom .right .btn-list .btn2 .text .text-type2 {
  font-weight: 300;
  font-size: var(--font16);
  color: #ffffff;
  line-height: 1.625;
}

footer .foot-copyright {
  padding-top: max(0.27rem, 20px);
  padding-bottom: max(0.27rem, 20px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

footer .foot-copyright .copyright-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .foot-copyright .text {
  font-weight: 300;
  font-size: var(--font14);
  color: rgba(255, 255, 255, 0.3);
}

.page-aside {
  position: fixed;
  right: max(0.23rem, 10px);
  top: 45%;
  transform: translateY(-50%);
  z-index: calc(99 * 2);
}

.page-aside .aside-item {
  position: relative;
  z-index: 20;
}

.page-aside .aside-item:hover .hover-content {
  opacity: 1;
  pointer-events: initial;
}

.page-aside .aside-item:hover .main {
  background-color: #c82126;
  color: #fff;
}

.page-aside .aside-item:hover .main img {
  filter: brightness(0) invert(1);
}

.page-aside .aside-item:not(:last-child) .main {
  margin-bottom: max(0.13rem, 10px);
}

.page-aside .aside-item .main {
  width: max(0.62rem, 45px);
  height: max(0.62rem, 45px);
  background: #ffffff;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-weight: 300;
  font-size: max(0.13rem, 10px);
  color: #666666;
  user-select: none;
  cursor: pointer;
  transition: var(--duration);
}

.page-aside .aside-item .main span {
  margin-top: 9px;
  line-height: 1;
}

.page-aside .aside-item .main img {
  width: auto;
  max-width: 35.48387097%;
}

.page-aside .aside-item .hover-content {
  position: absolute;
  top: 0;
  right: 100%;
  padding-right: max(0.36rem, 20px);
  transition: var(--duration);
  opacity: 0;
  pointer-events: none;
}

.page-aside .aside-item .hover-content .hover-contact-box {
  position: relative;
  width: 167px;
  background: #ffffff;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding-top: max(0.23rem, 20px);
  padding-bottom: max(0.25rem, 20px);
  padding-left: max(0.13rem, 10px);
  padding-right: max(0.13rem, 10px);
}

.page-aside .aside-item .hover-content .hover-contact-box:hover {
  opacity: 1;
  pointer-events: initial;
}

.page-aside .aside-item .hover-content .hover-contact-box::after {
  content: "";
  position: absolute;
  left: calc(100% - 10px);
  top: max(0.26rem, 18px);
  width: 20px;
  height: 20px;
  background-color: #fff;
  transform: rotate(45deg);
  filter: drop-shadow(0px 0px 18px rgba(0, 0, 0, 0.1));
  pointer-events: none;
}

.page-aside .aside-item .hover-content .hover-contact-box .contact-group {
  padding-bottom: max(0.2rem, 10px);
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
}

.page-aside .aside-item .hover-content .hover-contact-box .contact-group .item {
  display: flex;
  align-items: center;
}

.page-aside .aside-item .hover-content .hover-contact-box .contact-group .item:not(:last-child) {
  margin-bottom: max(0.18rem, 10px);
}

.page-aside .aside-item .hover-content .hover-contact-box .contact-group .item .icon {
  width: 32px;
  height: 32px;
  background: rgba(238, 238, 238, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-aside .aside-item .hover-content .hover-contact-box .contact-group .item .icon img {
  display: block;
  max-width: 43.75%;
  width: auto;
  height: auto;
}

.page-aside .aside-item .hover-content .hover-contact-box .contact-group .item .text {
  font-weight: 300;
  font-size: var(--font14);
  color: #666666;
  line-height: 1.28571429;
  margin-left: 12px;
}

.page-aside .aside-item .hover-content .hover-contact-box .contact-info {
  padding-top: max(0.2rem, 10px);
}

.page-aside .aside-item .hover-content .hover-contact-box .contact-info .contact-title {
  font-weight: 300;
  font-size: var(--font16);
  color: #666666;
  line-height: 1;
  text-align: center;
}

.page-aside .aside-item .hover-content .hover-contact-box .contact-info .contact-qrcode {
  width: 126px;
  height: 126px;
  background: #ffffff;
  border-radius: 3px;
  border: 1px solid rgba(204, 204, 204, 0.3);
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}

.page-aside .aside-item .hover-content .hover-contact-box .contact-info .contact-qrcode img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.page-aside .aside-item .hover-content .hover-contact-box .contact-info .contact-text {
  margin-top: 6px;
  text-align: center;
  font-weight: 300;
  font-size: var(--font14);
  color: #666666;
}

@media (max-width: 1600px) {
  footer .foot-top .left {
    width: 40%;
  }

  footer .foot-top .right {
    width: 40%;
  }

  footer .foot-bottom .right .btn-list .btn2 .icon {
    width: 35px;
  }
}

@media (min-width: 993px) {
  header .phone-btn {
    display: none !important;
  }

  header .phone-nav {
    display: none !important;
  }

  header .phone-search-btn {
    display: none !important;
  }

  header .phone-tel-btn {
    display: none !important;
  }
}

@media (max-width: 992px) {
  :root {
    --header-height: 70px;
  }

  header .header-wrap {
    justify-content: center;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  header .header-wrap .header-info .nav-line .pc-search-btn {
    display: none;
  }

  .phone-tel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .phone-tel-btn img {
    display: block;
    width: 16px;
    height: auto;
  }

  header .phone-search-btn {
    display: flex;
    align-items: center;
    opacity: 0.5;
    transition: var(--duration);
  }

  header .phone-search-btn.light {
    opacity: 1;
  }

  header .phone-search-btn.light img {
    filter: brightness(0);
  }

  header .phone-search-btn img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--duration);
  }

  header .header-wrap .header-info .nav {
    display: none;
  }

  header .header-wrap .header-info {
    padding-top: 0;
    display: flex;
    align-items: center;
  }

  header .header-wrap .header-info .info-line {
    display: none;
  }

  header .header-wrap .header-info .nav-line {
    display: flex;
    align-items: center;
    height: 100%;
  }

  header .header-wrap .header-info .nav-line .search-btn {
    margin-top: 0;
    margin-left: 0;
  }

  .phone-btn {
    width: 30px;
    user-select: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-right: 15px;
  }

  .phone-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
  }

  .phone-btn.active span:nth-child(2) {
    display: none;
  }

  .phone-btn.active span:nth-child(3) {
    transform: rotate(45deg);
  }

  .phone-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--theme);
    margin-bottom: 5px;
    transition: all 0.6s ease;
  }

  .phone-btn span:last-child {
    margin-bottom: 0;
  }

  header .header-wrap .logo {
    margin-left: auto;
    margin-right: auto;
  }

  header .header-wrap .header-info {
    margin-left: 0;
  }

  .page-aside {
    display: none;
  }

  header .header-search-area {
    display: none;
  }

  header .phone-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    background-color: #fff;
    z-index: calc(99 * 2);
    padding-left: 7%;
    padding-right: 7%;
    padding-top: 2vh;
    padding-bottom: 2vh;
    overflow-y: auto;
    display: none;
  }



  header .phone-nav .lang-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
    white-space: nowrap;
    margin-top: 30px;


  }

  header .phone-nav .lang-info .icon {
    width: 18px;
    flex-shrink: 0;
    margin-right: 10px;
  }


  header .phone-nav .lang-info .icon img {
    display: block;
    width: 100%;
    height: auto;
  }

  header .phone-nav .lang-info .text {
    font-size: var(--font16);
    color: #333333;
  }

  header .phone-nav .nav-item:not(:last-child) {
    margin-bottom: 20px;
  }

  header .phone-nav .nav-item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    line-height: 1.5;
  }

  header .phone-nav .nav-item-top.active .text {
    color: var(--theme);
  }

  header .phone-nav .nav-item-top.active img {
    filter: none;
    transform: none;
  }

  header .phone-nav .nav-item-top .text {
    color: #000;
    font-size: var(--font18);
    font-weight: bold;
  }

  header .phone-nav .nav-item-top img {
    filter: brightness(0);
    width: 14px;
    transform: rotate(-90deg);
    transition: var(--duration);
  }

  header .phone-nav .nav-item-bottom {
    padding-top: 20px;
    display: none;
  }

  header .phone-nav .text-list {
    min-width: 0;
    overflow-wrap: break-word;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  header .phone-nav .text-list .text-item {
    margin-bottom: 15px;
  }

  header .phone-nav .text-list .text-item .item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  header .phone-nav .text-list .text-item .item-top.active .item-top-text {
    color: #c82126;
  }

  header .phone-nav .text-list .text-item .item-top.active img {
    transform: rotate(90deg);
    filter: none;
  }

  header .phone-nav .text-list .text-item .item-top-text {
    font-size: 16px;
    color: #333333;
    transition: var(--duration);
  }

  header .phone-nav .text-list .text-item img {
    display: block;
    width: 6px;
    height: auto;
    transition: var(--duration);
    filter: brightness(0);
  }

  header .phone-nav .text-list .text-item .group-main {
    display: none;
  }

  header .phone-nav .text-list .text-item .item-group {
    padding-left: 1em;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 20px;
    padding-top: 20px;
  }

  header .phone-nav .text-list .text-item .item-group .link {
    font-size: 14px;
    color: #333333;
    min-width: 0;
    overflow-wrap: break-word;
  }

  header .phone-nav .text-list .text-item .item-group .link img {
    display: none;
  }

  header .phone-nav .application-list {
    width: 100%;
    border-top: 1px solid #efeaea;
    padding: 20px 1em;
  }

  header .phone-nav .application-list .title {
    font-size: 16px;
    font-weight: bold;
    color: var(--theme);
  }

  header .phone-nav .application-list .group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 15px;
    row-gap: 10px;
    margin-top: 20px;
  }

  header .phone-nav .application-list .group .item-text {
    font-size: var(--font14);
    color: #333333;
    overflow-wrap: break-word;
    line-height: 1.5;
  }

  header .phone-nav .application-list .group .item-text img {
    display: none;
  }

  header .phone-nav .cate-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
  }

  header .phone-nav .cate-list .pic {
    display: block;
    width: 100%;
    position: relative;
  }

  header .phone-nav .cate-list .pic::after {
    content: "";
    display: block;
    padding-bottom: 47.82608696%;
  }

  header .phone-nav .cate-list .pic img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: var(--duration);
  }

  header .phone-nav .cate-list .text {
    font-size: 14px;
    color: #000;
    text-align: center;
    margin-top: 10px;
  }

  header .header-search-area .search-list .search-info-wrap .section1-list {
    grid-template-columns: repeat(2, 1fr);
  }

  header .header-search-area .group {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  footer .foot-top {
    flex-wrap: wrap;
  }

  footer .foot-top .left {
    width: 100%;
  }

  footer .foot-top .right {
    width: 100%;
    margin-top: 20px;
  }

  footer .foot-bottom {
    flex-wrap: wrap;
  }

  footer .foot-bottom .left {
    width: 100%;
  }

  footer .foot-bottom .right {
    width: 100%;
    margin-top: 20px;
  }

  footer .foot-bottom .right .btn-list {
    display: flex;
    column-gap: 20px;
    align-items: center;
  }

  footer .foot-bottom .right .btn-list .btn2 {
    margin-top: 0;
  }

  footer .foot-bottom .right .btn-list .btn1,
  footer .foot-bottom .right .btn-list .btn2 {
    height: 75px;
  }

  footer .foot-bottom .right .btn-list .btn2 .text {
    margin-left: 10px;
  }

  header .phone-nav {
    padding-left: 4%;
    padding-right: 4%;
  }

  header .header-search-area .group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  header .header-wrap .logo {
    width: 100px;
  }

  header .phone-nav .text-list .col .text-item .item-group {
    grid-template-columns: repeat(2, 1fr);
  }

  header .phone-nav .application-list .group {
    grid-template-columns: repeat(2, 1fr);
  }

  header .phone-nav .cate-list {
    grid-template-columns: repeat(2, 1fr);
    padding-left: 4%;
    padding-right: 4%;
  }

  footer .foot-top .left .desc {
    font-size: 14px;
    line-height: 1.5;
  }

  footer .foot-top .info-list .info-item .text {
    font-size: 14px;
    line-height: 1.5;
  }

  footer .foot-top .icon-list .item {
    width: 18px;
  }

  footer .foot-bottom .left .text-title {
    font-size: 18px;
  }

  footer .foot-bottom .left .text-desc {
    font-size: 14px;
  }

  footer .foot-bottom .right .btn-list {
    --w: 160px;
  }

  footer .foot-bottom .right .btn-list .btn1,
  footer .foot-bottom .right .btn-list .btn2 {
    height: 60px;
  }

  footer .foot-bottom .right .btn-list .btn1 .text {
    font-size: 14px;
  }

  footer .foot-bottom .right .btn-list .btn2 .text .text-type1 {
    line-height: 1.5;
  }

  footer .foot-bottom .right .btn-list .btn2 .text .text-type2 {
    font-size: 14px;
  }

  footer .foot-bottom .right .btn-list .btn2 .icon {
    width: 20px;
  }

  footer .foot-copyright .copyright-wrap {
    flex-wrap: wrap;
  }

  header .phone-nav .text-list .text-item .item-top-text {
    font-size: 14px;
  }

  header .phone-nav .text-list .text-item .item-group {
    grid-template-columns: repeat(2, 1fr);
  }

  header .header-search-area .search-list .search-info-wrap .section1-list {
    grid-template-columns: repeat(1, 1fr);
  }

  header .header-search-area .search-list {
    height: calc(100vh - (var(--header-height) + var(--search-height)));
    height: calc(100dvh - (var(--header-height) + var(--search-height)));
    overflow-y: auto;
  }
}

.page-mask {
  position: fixed;
  z-index: calc(80 * 1);
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  height: calc(100dvh - var(--header-height));
  background-color: rgba(46, 49, 51, 0.8);
  transition: var(--duration);
  display: none;
}

html.hideSearch {
  --search-height: 0px;
}

body.mask .page-mask {
  display: block;
}



.lang-dialog {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: calc(99 * 7);
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: none;
  background-color: rgba(0, 0, 0, .5);
  backdrop-filter: blur(20px);
  padding-top: 10%;
}


.lang-dialog .close {
  display: block;
  width: 30px;
  margin-left: auto;
  margin-right: auto;
  user-select: none;
  cursor: pointer;
  margin-bottom: 30px;
}


.lang-dialog .close:hover img {
  filter: none;
}

.lang-dialog .close img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  transition: var(--duration);
  filter: brightness(0) invert(1);
}


.lang-dialog .lang-area {
  width: min(840px, 90%);
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  border-radius: 10px;
  padding: max(.6rem, 30px) max(.6rem, 20px);


}


.lang-dialog .lang-area .lang-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
}


.lang-dialog .lang-area .lang-list .lang-item {
  display: flex;
  align-items: center;
  width: fit-content;
}


.lang-dialog .lang-area .lang-list .lang-item:not(:last-child) {
  margin-right: max(.6rem, 20px);
}


.lang-dialog .lang-area .lang-list .lang-item:hover span {
  color: var(--theme);
}


.lang-dialog .lang-area .lang-list .lang-item .icon {
  width: 30px;
  flex-shrink: 0;

}


.lang-dialog .lang-area .lang-list .lang-item .icon img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}


.lang-dialog .lang-area .lang-list .lang-item span {
  font-size: var(--font16);
  color: #000;
  font-weight: bold;
  margin-left: 10px;
  white-space: nowrap;
  transition: var(--duration);
}