:root {
  --theme: #d11577;
  --duration: 0.45s;
  --header-height: max(0.98rem, 80px);
  /* --- 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);
  --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;
  --border: 1px solid rgba(204, 204, 204, 0.5);
  --header-color: #f8f8f8;
}
@font-face {
  font-family: "Source Han Sans CN";
  font-weight: 300;
  src: url("https://font.fonwi.com/xinweb/commonFonts/SourceHanSansCN-Light.otf");
  font-display: swap;
}
@font-face {
  font-family: "Source Han Sans CN";
  font-weight: 400;
  src: url("https://font.fonwi.com/xinweb/commonFonts/SourceHanSansCN-Regular.otf");
  font-display: swap;
}
@font-face {
  font-family: "BeautiqueDisplay";
  src: url("https://font.fonwi.com/xinweb/commonFonts/BeautiqueDisplay-Regular.otf");
  font-display: swap;
}
html {
  font-size: calc(100vw / 19.2);
}
@media (min-width: 1921px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw / 15.36);
  }
}
body {
  font-size: 16px;
  font-family: "Source Han Sans CN", sans-serif;
}
body.lock {
  overflow: hidden;
}
.wrap {
  max-width: 1536px;
  width: 86%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .wrap {
    width: 92%;
  }
}
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 99;
  transition: 0.6s linear;
}
.header-wrap {
  display: flex;
  align-items: center;
  height: 100%;
}
.header-wrap .logo {
  flex-shrink: 0;
}
.header-wrap .logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 131px;
  max-height: 60px;
  object-fit: contain;
}
.header-wrap .nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  margin-left: auto;
}
.header-wrap .nav .nav-item {
  position: relative;
  z-index: 10;
  height: inherit;
}
.header-wrap .nav .nav-item.active .item-top a,
.header-wrap .nav .nav-item.hover .item-top a,
.header-wrap .nav .nav-item:hover .item-top a {
  color: var(--theme) !important;
}
.header-wrap .nav .nav-item:not(:last-child) {
  margin-right: max(0.5rem, 20px);
}
.header-wrap .nav .nav-item .item-top {
  height: inherit;
}
.header-wrap .nav .nav-item .item-top a {
  display: block;
  height: inherit;
  font-weight: 300;
  font-size: var(--font18);
  color: #ffffff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: var(--duration);
}
.header-wrap .nav .nav-item .item-bottom {
  position: fixed;
  z-index: 99;
  left: 0;
  top: var(--header-height);
  width: 100%;
  height: auto;
  max-height: 65vh;
  overflow-y: auto;
  display: none;
  padding: 10px 0;
  background-color: var(--header-color);
}
.header-wrap .nav .nav-item .item-bottom .list {
  display: block;
  width: fit-content;
  max-width: 100%;
  opacity: 0;
}
.header-wrap .nav .nav-item .item-bottom .list.show {
  opacity: 1;
}
.header-wrap .nav .nav-item .item-bottom .bottom-item {
  position: relative;
  display: block;
  font-size: var(--font16);
  color: #333333;
  font-weight: 300;
  white-space: nowrap;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
  transition: var(--duration);
  line-height: 2;
  transition: var(--theme);
  overflow: hidden;
  margin-bottom: 6px;
}
.header-wrap .nav .nav-item .item-bottom .bottom-item:hover {
  color: var(--theme);
}
.header-wrap .nav .nav-item .item-bottom .bottom-item:hover span {
  background-size: 100% 1px;
  background-position: left bottom;
}
.header-wrap .nav .nav-item .item-bottom .bottom-item:hover .pic img {
  transform: scale(1.05);
}
.header-wrap .nav .nav-item .item-bottom .bottom-item .pic {
  display: block;
  width: 100%;
  padding-bottom: 75%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}
.header-wrap .nav .nav-item .item-bottom .bottom-item .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration);
}
.header-wrap .nav .nav-item .item-bottom .bottom-item span {
  background-image: linear-gradient(to right, var(--theme), var(--theme));
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: right bottom;
  transition: background-size var(--duration);
}
.header-wrap .other {
  margin-left: max(0.68rem, 20px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: inherit;
}
.header-wrap .other .search {
  width: 14px;
  user-select: none;
  cursor: pointer;
  margin-right: max(0.27rem, 20px);
}
.header-wrap .other .search img {
  display: block;
  max-width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  transition: var(--duration);
}
.header-wrap .other .lang {
  position: relative;
  z-index: 6;
  height: inherit;
}
.header-wrap .other .lang .lang-current {
  height: inherit;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: var(--font14);
  color: #fff;
  white-space: nowrap;
  user-select: none;
  cursor: pointer;
}
.header-wrap .other .lang .lang-current span {
  margin-left: 5px;
  margin-right: 5px;
}
.header-wrap .other .lang .lang-current .lang-icon,
.header-wrap .other .lang .lang-current .lang-down {
  display: block;
  height: auto;
  filter: brightness(0) invert(1);
  transition: var(--duration);
}
.header-wrap .other .lang .lang-current .lang-icon {
  max-width: 16px;
}
.header-wrap .other .lang .lang-current .lang-down {
  max-width: 8px;
}
.header-wrap .other .lang .lang-list {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 150%;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(120, 120, 120, 0.15);
  display: none;
}
.header-wrap .other .lang .lang-list .lang-item {
  display: block;
  text-align: center;
  font-size: var(--font14);
  color: #333;
  transition: var(--duration);
}
.header-wrap .other .lang .lang-list .lang-item span {
  background-image: linear-gradient(to right, var(--theme), var(--theme));
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: right bottom;
  transition: background-size var(--duration);
  white-space: nowrap;
}
.header-wrap .other .lang .lang-list .lang-item:not(:last-child) {
  margin-bottom: 20px;
}
.header-wrap .other .lang .lang-list .lang-item:hover {
  color: var(--theme);
}
.header-wrap .other .lang .lang-list .lang-item:hover span {
  background-size: 100% 1px;
  background-position: left bottom;
}
.head-search {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: auto;
  background-color: var(--header-color);
  padding: 20px 15px;
  display: none;
  box-shadow: 0 2px 10px rgba(120, 120, 120, 0.15);
}
.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;
  position: relative;
}
.head-search .form:focus-within::after {
  width: 100%;
  left: 0;
  right: auto;
}
.head-search .form::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background-color: var(--theme);
  transition: var(--duration);
}
.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;
  border: none;
}
.head-search .form button {
  height: var(--height);
  user-select: none;
  cursor: pointer;
  padding-right: 10px;
}
.head-search .form button:hover img {
  filter: none;
}
.head-search .form button img {
  display: block;
  width: 20px;
  height: auto;
  filter: grayscale(1) opacity(0.7);
  transition: var(--duration);
}
header.active,
header.hover {
  background-color: var(--header-color);
}
header.active .header-wrap .nav .nav-item .item-top a,
header.hover .header-wrap .nav .nav-item .item-top a {
  color: #333333;
}
header.active .header-wrap .other .search img,
header.hover .header-wrap .other .search img {
  filter: none;
}
header.active .header-wrap .other .lang .lang-current .lang-icon,
header.hover .header-wrap .other .lang .lang-current .lang-icon {
  filter: none;
}
header.active .header-wrap .other .lang .lang-current span,
header.hover .header-wrap .other .lang .lang-current span {
  color: #666666;
}
header.active .header-wrap .other .lang .lang-current .lang-down,
header.hover .header-wrap .other .lang .lang-current .lang-down {
  filter: none;
}
header.scroll {
  transform: translateY(-100%);
}
footer {
  padding-top: max(1.23rem, var(--space));
  padding-bottom: max(1.21rem, var(--space));
  background-color: #fff;
  overflow: hidden;
}
footer .foot-top {
  display: flex;
  align-items: flex-start;
  column-gap: 30px;
  padding-bottom: max(0.6rem, 30px);
  border-bottom: var(--border);
}
footer .foot-top .left {
  width: 24.08854167%;
  flex-shrink: 0;
}
footer .foot-top .left .foot-logo {
  width: 146px;
  margin-bottom: 32px;
}
footer .foot-top .left .foot-logo img {
  display: block;
  max-width: 100%;
  height: auto;
}
footer .foot-top .left .info-list .item {
  font-family: "Source Han Sans CN", sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: rgba(51, 51, 51, 0.6);
  line-height: 1.5;
  display: flex;
  align-items: center;
}
footer .foot-top .left .info-list .item:not(:last-child) {
  margin-bottom: 6px;
}
footer .foot-top .left .info-list .item span:nth-child(1) {
  flex-shrink: 0;
  text-align: justify;
  text-align-last: justify;
}
footer .foot-top .left .icon-site {
  display: flex;
  align-items: center;
  margin-top: max(0.13rem, 10px);
}
footer .foot-top .left .icon-site .text {
  font-family: "Source Han Sans CN", sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: rgba(102, 102, 102, 0.6);
  margin-right: max(0.15rem, 10px);
  flex-shrink: 0;
  line-height: 1;
  text-align: justify;
  text-align-last: justify;
  display: flex;
  align-items: center;
}
footer .foot-top .left .icon-site .icon-list {
  display: flex;
  align-items: center;
}
footer .foot-top .left .icon-site .icon-list .icon-item {
  position: relative;
}
footer .foot-top .left .icon-site .icon-list .icon-item:hover .icon {
  background-color: var(--theme);
}
footer .foot-top .left .icon-site .icon-list .icon-item:hover .qrcode {
  transform: translateX(-50%) scale(1, 1);
}
footer .foot-top .left .icon-site .icon-list .icon-item:not(:last-child) {
  margin-right: 10px;
}
footer .foot-top .left .icon-site .icon-list .icon-item .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-color: #999;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--duration);
}
footer .foot-top .left .icon-site .icon-list .icon-item .icon img {
  display: block;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}
footer .foot-top .left .icon-site .icon-list .icon-item .qrcode {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(0, 1);
  pointer-events: none;
  top: calc(100% + 6px);
  width: 108px;
  height: 108px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--duration);
  padding: 6px;
}
footer .foot-top .left .icon-site .icon-list .icon-item .qrcode img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
footer .foot-top .right {
  flex: 1;
  min-width: 0;
}
footer .foot-top .right .foot-list {
  display: flex;
  justify-content: flex-end;
  column-gap: 0.75rem;
}
footer .foot-top .right .foot-list .item .item-top {
  font-family: "Source Han Sans CN", sans-serif;
  font-weight: 400;
  font-size: var(--font18);
  margin-bottom: max(0.3rem, 20px);
  color: #000;
}
footer .foot-top .right .foot-list .item .item-group .text {
  display: block;
  width: fit-content;
  font-family: "Source Han Sans CN", sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: rgba(0, 0, 0, 0.6);
  transition: var(--duration);
  line-height: 1.5;
}
footer .foot-top .right .foot-list .item .item-group .text:not(:last-child) {
  margin-bottom: 6px;
}
footer .foot-top .right .foot-list .item .item-group .text:hover {
  color: var(--theme);
}
footer .foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: max(0.31rem, 20px);
}
footer .foot-bottom .text {
  font-family: "Source Han Sans CN", sans-serif;
  font-weight: 400;
  font-size: var(--font14);
  color: rgba(51, 51, 51, 0.5);
}
footer .foot-bottom .left .text:not(:last-child) {
  margin-right: 10px;
}
footer .foot-bottom .right {
  display: flex;
  align-items: center;
  column-gap: max(0.6rem, 20px);
}
footer .foot-bottom .right .group .text:not(:last-child) {
  margin-right: max(0.2rem, 10px);
}
@media (min-width: 993px) {
  header .phone-btn,
  header .phone-nav {
    display: none !important;
  }
}
@media (max-width: 1500px) {
  footer .foot-top .left {
    width: 35%;
    flex-shrink: 0;
  }
  footer .foot-top .right .foot-list {
    column-gap: 0.6rem;
  }
}

@media (max-width: 1350px) {
  footer .foot-top .right .foot-list {
    flex-wrap: wrap;
    column-gap: 5%;
    row-gap: 20px;
  }
  footer .foot-top .right .foot-list .item {
    width: 30%;
    flex-shrink: 0;
  }
}
@media (max-width: 992px) {
  :root {
    --header-height: 70px;
  }
  .header-wrap .nav {
    display: none;
  }
  .header-wrap .logo img {
    height: 45px;
  }
  header .phone-btn {
    display: block;
    margin-left: 20px;
  }
  header .phone-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
  }
  header .phone-btn.active span:nth-child(2) {
    display: none;
  }
  header .phone-btn.active span:nth-child(3) {
    transform: rotate(45deg);
  }
  header .phone-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--theme);
    margin-bottom: 5px;
    transition: all 0.6s ease;
  }
  header .phone-btn span:nth-child(3) {
    margin-bottom: 0;
  }
  .header-wrap .other {
    margin-left: auto;
  }
  header .phone-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    background-color: #fff;
    width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    padding-left: 7%;
    padding-right: 7%;
    padding-top: 6vh;
    padding-bottom: 6vh;
  }
  header .phone-nav .nav-item:not(:last-child) {
    margin-bottom: 20px;
  }
  header .phone-nav .nav-item .item-top {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .phone-nav .nav-item .item-top.active a {
    color: var(--theme);
  }
  header .phone-nav .nav-item .item-top.active .icon {
    transform: rotate(45deg);
  }
  header .phone-nav .nav-item .item-top.active .icon::before,
  header .phone-nav .nav-item .item-top.active .icon::after {
    background-color: var(--theme);
  }
  header .phone-nav .nav-item .item-top a {
    font-size: 20px;
    color: #333;
    transition: var(--duration);
  }
  header .phone-nav .nav-item .item-top .icon {
    --unit: 22px;
    position: relative;
    width: var(--unit);
    height: var(--unit);
    cursor: pointer;
    user-select: none;
    transition: var(--duration);
  }
  header .phone-nav .nav-item .item-top .icon::before,
  header .phone-nav .nav-item .item-top .icon::after {
    content: "";
    background-color: #333;
    transition: var(--duration);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  header .phone-nav .nav-item .item-top .icon::before {
    width: var(--unit);
    height: 2px;
  }
  header .phone-nav .nav-item .item-top .icon::after {
    width: 2px;
    height: var(--unit);
  }
  header .phone-nav .nav-item .item-bottom {
    padding-left: 15px;
    padding-right: 15px;
    display: none;
  }
  header .phone-nav .nav-item .item-bottom .bottom-item {
    display: block;
    font-size: 18px;
    color: #333;
    line-height: 1.5;
    overflow-wrap: break-word;
  }
  header .phone-nav .nav-item .item-bottom .bottom-item:not(:last-child) {
    margin-bottom: 10px;
  }
  footer .foot-top {
    flex-wrap: wrap;
    row-gap: 20px;
  }
  footer .foot-top .left {
    width: 100%;
    order: 1;
  }
  footer .foot-top .right {
    flex: none;
    width: 100%;
    margin-left: 0;
  }
  footer .foot-top .right .foot-list {
    justify-content: space-between;
  }
  footer .foot-top .left .foot-logo {
    width: 95px;
  }
  footer .foot-bottom {
    flex-wrap: wrap;
  }
  footer .foot-bottom .right {
    flex-wrap: wrap;
    row-gap: 10px;
  }
}
@media (max-width: 768px) {
  header .phone-nav {
    padding-left: 5%;
    padding-right: 5%;
  }

  footer .foot-top .right .foot-list {
    flex-wrap: wrap;
    row-gap: 0px;
  }
  footer .foot-top .right .foot-list .item {
    width: 100%;
    margin-bottom: 10px;
  }
  footer .foot-top .right .foot-list .item .item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  footer .foot-top .right .foot-list .item .item-top.active {
    color: var(--theme);
  }
  footer .foot-top .right .foot-list .item .item-top.active .icon {
    transform: rotate(45deg);
  }
  footer .foot-top .right .foot-list .item .item-top.active .icon::before,
  footer .foot-top .right .foot-list .item .item-top.active .icon::after {
    background-color: var(--theme);
  }
  footer .foot-top .right .foot-list .item .item-top .icon {
    --unit: 16px;
    position: relative;
    display: block;
    width: var(--unit);
    height: var(--unit);
    transition: var(--duration);
  }

  footer .foot-top .right .foot-list .item .item-top .icon::before,
  footer .foot-top .right .foot-list .item .item-top .icon::after {
    content: "";
    background-color: #333;
    transition: var(--duration);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  footer .foot-top .right .foot-list .item .item-top .icon::before {
    width: var(--unit);
    height: 2px;
  }
  footer .foot-top .right .foot-list .item .item-top .icon::after {
    width: 2px;
    height: var(--unit);
  }
  footer .foot-top .right .foot-list .item .item-group {
    display: none;
    padding-left: 1em;
  }
  footer .foot-top .left .icon-site .icon-list .icon-item .qrcode {
    top: auto;
    bottom: calc(100% + 6px);
  }
}
@media (max-width: 576px) {
  header .phone-nav .nav-item:not(:last-child) {
    margin-bottom: 10px;
  }
  header .phone-nav .nav-item .item-top a {
    font-size: 18px;
  }
  header .phone-nav .nav-item .item-bottom .bottom-item {
    font-size: 16px;
  }
  footer .foot-top .left .info-list .item {
    font-size: 14px;
  }
}
