@charset "UTF-8";
@font-face {
  font-family: "AlibabaPuHuiTiL";
  src: url("../fonts/AlibabaPuHuiTi-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "AlibabaPuHuiTiR";
  src: url("../fonts/AlibabaPuHuiTi-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "BodoniBook";
  src: url("../fonts/Bodoni-16-Book-12.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
:root {
  --header-height: 1.2rem;
}

/** 通用样式 */
* {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  box-sizing: border-box;
}

*::after,
*::before {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 0.1rem;
}

::-webkit-scrollbar-thumb {
  background-color: #ccc;
  cursor: pointer;
  border-radius: 0.1rem;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
}

a:hover {
  color: inherit;
}

input,
textarea {
  border: none;
  outline: none;
  background-color: transparent;
}

body {
  font-family: "AlibabaPuHuiTiL";
  background-color: #fff;
  padding: 0;
  margin: 0;
  width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

video {
  max-width: 100%;
  height: auto;
}

hr {
  border: none !important;
}

* {
  font-size: 0.16rem;
  font-family: "AlibabaPuHuiTiL";
}

html {
  font-size: 100px;
}

img {
  max-width: 100%;
}

.wrapper {
  width: 17.6rem;
  margin: 0 auto;
}

.wow {
  animation-duration: 2s !important;
}

:is(li, .imgbox) img {
  object-fit: cover;
}

@media screen and (max-width: 2100px) {
  .wrapper {
    width: 100%;
  }
}
.header {
  width: 100%;
  padding: 0 0.5rem;
  height: var(--header-height);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 89.9%);
  position: fixed;
  top: 0;
  z-index: 99;
  transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo .sh {
  display: none;
}

.logo img {
  width: 2.41rem;
}

.header .navbox {
  width: 10rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header .nav-icon img {
  animation: rotate360 6s infinite;
  width: 0.56rem;
  cursor: pointer;
}

.header .nav-icon .sh {
  display: none;
}

@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.nav {
  width: 7.42rem;
  margin-right: 1.5rem;
  opacity: 0;
  transform: translateX(1rem);
  pointer-events: none;
  transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
}

.nav.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: inherit;
  transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
}

.nav ul {
  display: flex;
  justify-content: space-between;
}

.nav ul li {
  height: 22px;
  overflow: hidden;
}

.nav ul li a {
  color: #fff;
  font-size: 0.18rem;
  font-family: "AlibabaPuHuiTiR";
  display: flex;
  flex-direction: column;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.nav ul li a span {
  font-size: 18px;
}
@media screen and (max-width: 1600px) and (min-width: 997px) {
  .nav ul li a span {
    font-size: 16px;
  }
}
.nav ul li a:hover {
  transform: translateY(-50%);
}

.headerhover {
  background: #fff;
  box-shadow: none;
}

.headerhover .logo .sh {
  display: block;
}

.headerhover .logo .act {
  display: none;
}

.headerhover .nav ul li a {
  color: #333;
}

.headerhover .nav-icon .act {
  display: none;
}

.headerhover .nav-icon .sh {
  display: block;
}

.headactive {
  --header-height: 0.9rem;
  transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
}

.banner {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 15;
  top: 0;
}

.videocon {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.videocon video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

.banner .wz {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50vh;
  transform: translateY(-100%);
  z-index: 20;
}
.banner .wz h2 {
  color: #fff;
  font-size: 0.88rem;
  font-family: "AlibabaPuHuiTiR";
}
.banner .wz p {
  color: #fff;
  font-size: 0.64rem;
  letter-spacing: 0.38rem;
}

.banner-component {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  position: relative;
  width: 16rem;
  z-index: 99;
}
.banner-component .scorll {
  width: 112px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}
.banner-component .scorll .shub {
  width: 34px;
  height: 34px;
}
.banner-component .scorll .shub circle {
  animation: beat 3s infinite;
}
.banner-component .scorll p {
  color: #fff;
  font-family: "AlibabaPuHuiTiR";
  font-size: 14px;
  padding-left: 8px;
  white-space: nowrap;
}
.banner-component .scorll .sjx {
  padding-left: 4px;
}

@keyframes beat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}
.new-index-summery {
  margin-top: -1.5rem;
}

.line-store {
  min-width: 200px;
}

.line-store h2 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 12px;
}

.line-store ul {
  width: 100%;
  height: 38px;
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.line-store ul li {
  position: relative;
}

.line-store ul li img {
  height: 24px;
}

.line-store ul li::after {
  content: "";
  width: 0;
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: -2px;
  left: 50%;
  margin-left: -12px;
}

.line-store ul li:hover::after {
  width: 24px;
  transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
}

.index-summery {
  padding: 1rem 0 1.21rem;
  position: relative;
  min-height: 110vh;
  z-index: 25;
  background: #f5f4f4;
  overflow: hidden;
}

.syhead {
  width: 100%;
  text-align: center;
}

.syhead h3 {
  font-size: 14px;
  line-height: 142.857%;
}

.syhead span {
  display: block;
  width: 1px;
  height: 0.3rem;
  background: #b3ada6;
  margin: 0.08rem auto 0.19rem;
  opacity: 0.5;
}

.syhead h2 {
  font-size: 0.64rem;
  color: #333;
  margin-bottom: 1.14rem;
}

.sylist {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.sylist li {
  flex-grow: 1;
  width: max(3.06rem, 15.9375vw);
  margin-right: 0.15rem;
}

.sylist li:last-child {
  margin-right: 0;
}

.sylist li:nth-child(2) {
  margin-top: max(1.92rem, 10vw);
}

.sylist li:nth-child(3) {
  width: max(4.5rem, 23.4375vw);
}

.sylist li .imgbox {
  width: 100%;
  overflow: hidden;
}

.sylist li .imgbox img {
  width: 100%;
  height: 100%;
  transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.sylist li h2 {
  color: #333;
  font-size: 14px;
  font-family: "AlibabaPuHuiTiR";
  margin-top: 0.12rem;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sylist li:hover .imgbox img {
  transform: scale(1.1, 1.1);
  transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
}

@media screen and (max-width: 1600px) and (min-width: 997px) {
  .index-summery {
    padding: 1rem 1.2rem 1.21rem;
  }
  .sylist {
    width: 100%;
  }
  .sylist li:nth-of-type(2) {
    margin-top: 5.8vw;
  }
}
.symore {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1.24rem;
  height: 1.24rem;
  border-radius: 1.24rem;
  border: 1px solid #b3ada6;
}

.symore a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.symore img {
  width: 0.54rem;
  height: 0.23rem;
  transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
}

.symore:hover img {
  transform: translateX(10%);
  transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
}

.index-bg {
  display: none;
  width: 100%;
  height: 100vh;
  z-index: 15;
  position: fixed;
  top: 0;
  background: url(../images/bg.jpg) no-repeat top;
  background-size: cover;
  object-fit: cover;
}
.index-bg.active {
  display: block;
}

.index-spring {
  margin-top: 80vh;
}

.index-spring .sylist li:nth-child(1) {
  width: max(4.5rem, 23.4375vw);
}

.index-spring .sylist li:nth-child(3) {
  width: max(3.06rem, 15.9375vw);
}

.index-spring .sylist li:nth-child(2) {
  margin-top: 0;
}

.index-spring .sylist li:nth-child(3) {
  margin-top: 10vw;
}

.index-bg2 {
  width: 100%;
  height: 100vh;
  background: url(../images/bg1.jpg) no-repeat top;
  background-size: cover;
  object-fit: cover;
  position: fixed;
  z-index: 15;
  top: 0;
  display: none;
}

.index-bg2.active {
  display: block;
}

.index-club {
  width: 100%;
  padding: 0.8rem 0.8rem 1.46rem;
  background: #f5f4f4;
  margin-top: 80vh;
  position: relative;
  z-index: 15;
  overflow: hidden;
}

.sylist2 {
  margin: 0 auto;
  width: 90vw;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.sylist2 li {
  width: 15.9375vw;
  margin-right: 0.5729vw;
}

.sylist2 li:nth-child(5n) {
  margin-right: 0;
}

.sylist2 li .imgbox {
  width: 100%;
  height: 21.25vw;
  position: relative;
  overflow: hidden;
}

.sylist2 li .imgbox img {
  width: 100%;
  height: 100%;
  transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
}

.sylist2 li .imgbox h3 {
  width: 0.72rem;
  height: 0.28rem;
  line-height: 0.28rem;
  background: #a1968f;
  text-align: center;
  color: #fff;
  font-family: "AlibabaPuHuiTiR";
  font-size: 0.12rem;
  position: absolute;
  top: 0.16rem;
  right: 0.16rem;
}

.sylist2 li h2 {
  color: #333;
  font-size: 14px;
  font-family: "AlibabaPuHuiTiR";
  margin-top: 0.16rem;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.sylist2 li:nth-child(2) {
  margin-top: 10vw;
}

.sylist2 li:nth-child(4) {
  width: 23.4375vw;
}

.sylist2 li:nth-child(4) .imgbox {
  height: 31.25vw;
}

.sylist2 li:nth-child(7) {
  margin-top: 10vw;
}

.sylist2 li:nth-child(9) {
  margin-top: 10vw;
  margin-left: 7.5vw;
}

.sylist2 li:hover .imgbox img {
  transform: scale(1.1, 1.1);
  transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
}

.footer {
  width: 100%;
  padding: 0.3rem 0.5rem;
  background: #a1968f;
  position: relative;
  z-index: 15;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.foot-le {
  width: 5rem;
}

.foot-nav {
  display: flex;
  justify-items: flex-start;
}

.foot-nav li {
  margin-right: 0.3rem;
  height: 0.22rem;
  overflow: hidden;
}

.foot-nav li a {
  font-size: 0.16rem;
  line-height: 0.22rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

.foot-nav li a:hover {
  transform: translateY(-50%);
}

.foot-le p {
  color: #fff;
  font-size: 0.14rem;
  line-height: 160%;
  margin-top: 1.36rem;
}

.foot-le p a {
  font-size: 0.14rem;
}

.foot-center {
  width: 4.1rem;
  height: 1rem;
  position: absolute;
  left: 50%;
  margin-left: -2.05rem;
}

.foot-center img {
  width: 100%;
  height: 100%;
}

.foot-lx {
  position: absolute;
  bottom: 0.36rem;
  right: 0.5rem;
  z-index: 30;
}

.foot-lx ul li {
  float: left;
  margin-left: 0.2rem;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

.foot-lx li {
  position: relative;
}
.foot-lx li .lx-QRcode {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% + 12px);
  max-width: none;
  width: 1.1rem;
  height: 1.1rem;
  border: 0.01rem solid #efede8;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.foot-lx li .lx-icon {
  width: 0.32rem;
  height: 0.32rem;
}
.foot-lx li:hover {
  transform: translateY(-0.05rem);
}
.foot-lx li:hover .lx-QRcode {
  opacity: 1;
  visibility: visible;
}

.footer .scrollTop {
  width: 0.48rem;
  height: 0.48rem;
  position: absolute;
  top: 0.4rem;
  right: 0.5rem;
  cursor: pointer;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.footer .scrollTop:hover {
  transform: translateY(-0.05rem);
}

.footer .scrollTop img {
  width: 100%;
  height: 100%;
}

.product-nav {
  margin-top: 1.4rem;
  border-bottom: 1px solid rgba(179, 173, 166, 0.5);
}

.product-nav ul {
  display: flex;
  justify-content: center;
}

.product-nav ul li {
  width: 2.32rem;
  padding-bottom: 0.23rem;
  position: relative;
}

.product-nav ul li::before {
  content: "";
  width: 0.07rem;
  height: 0.07rem;
  border-radius: 0.07rem;
  background: #a1968f;
  position: absolute;
  bottom: -0.03rem;
  left: 50%;
  margin-left: -0.035rem;
}

.product-nav ul li a {
  color: #a1968f;
  font-size: 0.18rem;
  display: block;
  text-align: center;
}

.product-nav ul li.on::after {
  width: 2.1rem;
}

.product-nav ul li.on::before {
  width: 0.31rem;
  height: 0.31rem;
  background: url(../images/icon4.png) no-repeat center;
  background-size: cover;
  bottom: -0.15rem;
  left: 50%;
  margin-left: -0.155rem;
}

.product-nav ul li.on a {
  color: #333;
}

.product-bg {
  width: 8.52rem;
  position: fixed;
  top: 4.96rem;
  left: 50%;
  margin-left: -4.26rem;
  z-index: 1;
}

.product-bg img {
  width: 100%;
}

.container {
  padding: 0 0.8rem;
  position: relative;
  z-index: 15;
  overflow: hidden;
}

.product-title {
  width: 100%;
  text-align: center;
}

.product-title h2 {
  color: #333;
  font-size: 0.64rem;
  margin: 0.34rem 0 0.1rem;
}

.product-title p {
  color: #404040;
  font-size: 0.18rem;
  line-height: 0.32rem;
}

.product-video {
  width: 100%;
  margin-top: 0.38rem;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.product-video img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

.product-video::before {
  content: "";
  width: 0.96rem;
  height: 0.96rem;
  background: url(../images/icon5.png) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -0.48rem;
  margin-top: -0.48rem;
  cursor: pointer;
}

.product-video.no-video {
  pointer-events: none;
}
.product-video.no-video::before {
  display: none;
}

.product-video .videobox {
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
}

.product-video .videobox video {
  width: 100%;
  height: 100%;
}

.product-video .videobox {
  display: none;
}

.product-details {
  padding: 1rem 0 0.9rem;
}

.product-details h2 {
  color: #333;
  font-size: 0.48rem;
  line-height: 160%;
}

.product-zst {
  width: 100%;
  margin-top: 0.33rem;
  position: relative;
}

.product-zst .swiper-slide img {
  width: 5.9rem;
  height: 8rem;
}

.product-zst .swiper-button-prev,
.product-zst .swiper-button-next {
  width: 0.54rem;
  height: 0.23rem;
  top: -0.67rem;
}

.product-zst .swiper-button-prev {
  background: url(../images/prev.png) no-repeat center;
  background-size: cover;
  left: auto;
  right: 1.58rem;
}

.product-zst .swiper-button-next {
  background: url(../images/next.png) no-repeat center;
  background-size: cover;
  right: 0.8rem;
}

.product-wzph {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.product-wzph .left {
  width: 50%;
  height: 10.8rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-wzph .left h3 {
  color: #fff;
  font-size: 0.48rem;
  line-height: 113%;
  text-align: center;
  white-space: nowrap;
}

.product-wzph .right {
  width: 50%;
  height: 10.8rem;
  text-align: center;
  background: #a1968f;
}

.product-wzph .right p {
  width: 100%;
  text-align: center;
  color: #fff;
  font-family: "AlibabaPuHuiTiR";
  font-size: 0.16rem;
  line-height: 200%;
  margin-top: 1.13rem;
}

.product-wzph .right img {
  width: 5.18rem;
  height: 6.79rem;
  margin-top: 0.4rem;
}

.product-wzph .right h3 {
  width: 100%;
  text-align: center;
  color: #fff;
  font-family: "AlibabaPuHuiTiL";
  line-height: 150%;
  font-size: 0.2rem;
  margin-top: 0.4rem;
}

.product-looks {
  padding: 0.6rem 0 1.46rem;
}

.product-looks h2 {
  color: #333;
  font-size: 0.48rem;
  line-height: 160%;
}

.product-looks ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.product-looks ul li {
  margin-top: 1.5rem;
  width: 7rem;
  height: 9.36rem;
}

.product-looks ul li img {
  width: 100%;
  height: 100%;
}

.product-looks ul li:nth-child(1) {
  margin-top: 0.63rem;
  width: 13.2rem;
  height: 9.4rem;
}

.product-looks ul li:nth-child(2) {
  margin-left: 3.2rem;
}

.product-looks ul li:nth-child(4) {
  width: 8.8rem;
  height: 11.6rem;
  margin-right: 3rem;
}

.product-looks ul li:nth-child(5) {
  width: 6.2rem;
  height: 8rem;
  margin-top: 3.2rem;
}

.product-looks ul li:nth-child(6) {
  width: 10.4rem;
  height: 7.6rem;
}

.product-looks ul li:nth-child(7) {
  margin-left: 3.2rem;
}

.club-list {
  margin-top: 1.5rem;
  padding-bottom: 0.33rem;
}

.club-list ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.club-list ul li {
  width: 33.3333333333%;
  margin-bottom: 0.6rem;
  padding: 0 0.1rem;
}

.club-list ul li .imgbox {
  width: 100%;
  height: 7.75rem;
  overflow: hidden;
  position: relative;
}

.club-list ul li .imgbox img {
  width: 100%;
  height: 100%;
  transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
}

.club-list ul li .imgbox h3 {
  width: 0.72rem;
  height: 0.28rem;
  line-height: 0.28rem;
  text-align: center;
  background: #a1968f;
  font-family: "AlibabaPuHuiTiR";
  color: #fff;
  font-size: 0.12rem;
  position: absolute;
  right: 0.16rem;
  top: 0.16rem;
}

.club-list ul li h2 {
  color: #333;
  font-family: "AlibabaPuHuiTiR";
  font-size: 0.16rem;
  margin-top: 0.16rem;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.club-list ul li:hover .imgbox img {
  transform: scale(1.1, 1.1);
  transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
}

.brand-banner {
  margin-top: var(--header-height);
  width: 100%;
  padding: 0 0.8rem;
  transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
}

.brand-banner img {
  width: 100%;
  vertical-align: bottom;
}

.brand-banner.active {
  padding: 0;
  transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
}

.barnd-story {
  padding: 0.96rem 0 2.52rem;
}

.story-titbox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.story-titbox .title h2 {
  color: #a1968f;
  font-family: "BodoniBook";
  letter-spacing: 2.88px;
  font-size: 0.72rem;
}

.story-titbox .title h3 {
  color: #000;
  font-size: 0.64rem;
}

.story-titbox .title-center {
  width: 1.2rem;
  height: 1px;
  background: #b3ada6;
  position: absolute;
  left: 6.72rem;
  top: 0.86rem;
  opacity: 0.5;
}

.story-titbox .title-nr {
  width: 8.11rem;
}

.story-titbox .title-nr p {
  color: #333;
  font-size: 0.18rem;
  line-height: 0.32rem;
}

.story-conct {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 1.92rem;
}

.story-conct .story-conctimg {
  width: 50%;
  height: 6rem;
}

.story-conctnr {
  width: 50%;
  height: 6rem;
  padding: 0.96rem 0.96rem 0;
  background: rgba(239, 237, 232, 0.6);
  margin-top: 1.8rem;
  position: relative;
  z-index: 10;
}

.story-conctnr::after {
  content: "";
  width: 3.88rem;
  height: 9rem;
  background: url(../images/icon6.png) no-repeat center;
  background-size: cover;
  position: absolute;
  top: -1.8rem;
  left: 50%;
  margin-left: -1.94rem;
  z-index: -1;
}

.story-conctnr h2 {
  color: #a1968f;
  font-size: 0.48rem;
  font-family: "BodoniBook";
}

.story-conctnr h3 {
  color: #000;
  font-size: 0.64rem;
}

.story-conctnr span {
  display: block;
  width: 1px;
  height: 0.6rem;
  margin: 0.1rem 0;
  background: #b3ada6;
  opacity: 0.5;
}

.story-conctnr .wz p {
  color: #333;
  font-size: 0.18rem;
  line-height: 0.32rem;
  margin-bottom: 0.2rem;
}

.barnd-history {
  padding-bottom: 1.41rem;
}

.barnd-history .head {
  width: 100%;
}

.barnd-history .head h2 {
  color: #a1968f;
  font-size: 0.64rem;
  font-family: "BodoniBook";
  letter-spacing: 2.88px;
}

.barnd-history .head h3 {
  color: #000;
  font-size: 0.64rem;
}

.history-cont {
  width: calc(50vw + 8.8rem);
  margin-top: 0.4rem;
  position: relative;
}

.history-cont .swiper-slide {
  width: 100%;
  height: 3.6rem;
  background: rgba(239, 237, 232, 0.6);
  padding: 0.7rem 0.4rem 0;
}

.history-cont .swiper-slide h2 {
  color: #a1968f;
  font-size: 0.48rem;
  font-family: "BodoniBook";
  margin-bottom: 0.87rem;
  letter-spacing: 1.92px;
}

.history-cont .swiper-slide p {
  color: #333;
  font-size: 0.18rem;
  line-height: 150%;
}

.history-cont .swiper-button-prev,
.history-cont .swiper-button-next {
  width: 0.56rem;
  height: 0.56rem;
  top: -1.03rem;
}

.history-cont .swiper-button-prev {
  background: url(../images/prev1.png) no-repeat center;
  background-size: cover;
  right: 3.41rem;
  left: auto;
}

.history-cont .swiper-button-next {
  background: url(../images/next1.png) no-repeat center;
  background-size: cover;
  right: 2.65rem;
}

.history-cont .swiper-button-disabled {
  opacity: 1;
}

.history-cont .swiper-button-prev:hover {
  background: url(../images/prev2.png) no-repeat center;
  background-size: cover;
}

.history-cont .swiper-button-next:hover {
  background: url(../images/next2.png) no-repeat center;
  background-size: cover;
}

.history-cont .swiper-button-disabled {
  opacity: 0.5;
}

.history-bg {
  width: 100%;
  height: 0.4rem;
  background: url(../images/icon7.png) no-repeat left center;
  margin-top: 0.4rem;
}

.join-cont1 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1rem 0 1.3rem;
}

.join-nr {
  width: 9rem;
}

.join-nr .head {
  width: 100%;
}

.join-nr .head h2 {
  color: #a1968f;
  font-size: 0.64rem;
  font-family: "BodoniBook";
  letter-spacing: 2.88px;
}

.join-nr .head h3 {
  color: #000;
  font-size: 0.64rem;
  margin-bottom: 0.32rem;
}

.join-nr .head p {
  color: #333;
  font-size: 0.2rem;
  line-height: 0.36rem;
}

.join-nr .head span {
  width: 1px;
  height: 1.2rem;
  margin-top: 0.6rem;
  display: block;
  background: #b3ada6;
  opacity: 0.5;
}

.join-hez {
  width: 100%;
}

.join-hez .item {
  margin-top: 0.6rem;
}

.join-hez dl {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0.3rem;
}

.join-hez dl img {
  width: 0.48rem;
}

.join-hez dl h2 {
  color: #333;
  font-size: 0.36rem;
  margin-left: 0.12rem;
}

.join-hez p {
  color: #333;
  font-size: 0.18rem;
  line-height: 0.32rem;
  margin-top: 0.16rem;
}

.join-hez p:first-child {
  margin-top: 0;
}

.join-hez p b {
  font-family: "AlibabaPuHuiTiR";
  font-size: 0.2rem;
  font-weight: normal;
}

.join-hzlc {
  display: flex;
  justify-content: flex-start;
}

.join-hzlc li {
  padding-right: 0.4rem;
  margin-right: 0.16rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.join-hzlc li span {
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: #a1968f;
  color: #fff;
  font-size: 0.16rem;
  font-family: "AlibabaPuHuiTiR";
  display: flex;
  justify-content: center;
  align-items: center;
}

.join-hzlc li h3 {
  white-space: nowrap;
  color: #333;
  font-size: 0.2rem;
  margin-left: 0.08rem;
}

.join-hzlc li::after {
  content: "";
  width: 0.24rem;
  height: 0.24rem;
  background: url(../images/icon8.png) no-repeat center;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.12rem;
}

.join-hzlc li:last-child::after {
  display: none;
}

.join-kekafu {
  width: 6.4rem;
  margin-top: 3rem;
  position: relative;
}

.join-kekafu img {
  width: 100%;
}

.join-kekafu::after {
  content: "";
  width: 6.34rem;
  height: 0.74rem;
  background: url(../images/joinimg1.png) no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: -0.32rem;
  left: -1.1rem;
}

.join-cont2 {
  padding-bottom: 1.2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.join-cont2 .joimg {
  width: 9rem;
}

.join-cont2 .item {
  width: 7.6rem;
  padding-top: 0.84rem;
}

.join-cont2 .item img {
  width: 0.48rem;
  margin-bottom: 0.12rem;
}

.join-cont2 .item h2 {
  color: #333;
  font-size: 0.36rem;
  margin-bottom: 0.3rem;
}

.join-cont2 .item h3 {
  font-size: 0.2rem;
  font-family: "AlibabaPuHuiTiR";
  line-height: 0.32rem;
}

.join-cont2 .item p {
  color: #333;
  font-size: 0.18rem;
  line-height: 0.32rem;
  margin-bottom: 0.2rem;
}

.join-xsgy {
  padding: 1.02rem 0.8rem 0.88rem;
  background: rgba(239, 237, 232, 0.6);
}
.join-xsgy > .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.join-xsgy-left {
  width: 6.4rem;
}

.join-xsgy-left span {
  display: block;
  width: 0.84rem;
  height: 3px;
  background: #a1968f;
  margin: 0.44rem 0 0.26rem;
}

.join-xsgy-left h2 {
  color: #000;
  font-size: 0.48rem;
  font-family: "AlibabaPuHuiTiR";
}

.join-xsgy-left h3 {
  color: #333;
  font-size: 0.32rem;
  margin-bottom: 0.46rem;
}

.join-xsgy-left p {
  color: #333;
  font-size: 0.18rem;
  line-height: 150%;
  margin-bottom: 0.63rem;
}

.join-xsgy-left ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.join-xsgy-left ul li .ic {
  width: 0.32rem;
}

.join-xsgy-left ul li h4 {
  color: #333;
  font-size: 0.24rem;
  margin-left: 0.08rem;
}

.join-xsgy-left ul li .ewm {
  width: 140px;
  margin-top: 0.2rem;
}

.join-xsgy-right {
  width: 9.1rem;
}

.join-xsgy-right img {
  width: 100%;
}

.store-mdzs {
  padding: 0.9rem 0 1rem;
}

.store-mdzs .head h2 {
  font-family: "BodoniBook";
  letter-spacing: 2.88px;
  color: #a1968f;
  font-size: 0.64rem;
}

.store-mdzs .head h3 {
  color: #000;
  font-size: 0.64rem;
  margin-bottom: 0.4rem;
}

.sotre-mdzs-cont {
  position: relative;
}

.sotre-mdzs-cont .swiper-slide .imgbox {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.sotre-mdzs-cont .swiper-slide img {
  width: 100%;
}

.sotre-mdzs-cont .swiper-slide-active .imgbox {
  width: 100%;
  transition: all 0.5s ease-in-out;
}

.sotre-mdzs-cont .page {
  width: 1rem;
  height: 0.62rem;
  background: #efede8;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.15rem 0;
}

.sotre-mdzs-cont .page h5 {
  color: #a1968f;
  font-size: 0.3rem;
  line-height: 0.3rem;
  font-family: "BodoniBook";
}

.sotre-mdzs-cont .page p {
  font-size: 0.16rem;
  margin-left: 0.1rem;
  color: #333;
}

.sotre-mdzs-cont .swiper-button-prev,
.sotre-mdzs-cont .swiper-button-next {
  width: 0.56rem;
  height: 0.56rem;
  top: -0.76rem;
}

.sotre-mdzs-cont .swiper-button-prev {
  background: url(../images/prev1.png) no-repeat center;
  background-size: contain;
  right: 0.8rem;
  left: auto;
}

.sotre-mdzs-cont .swiper-button-next {
  background: url(../images/next1.png) no-repeat center;
  background-size: contain;
  right: 0;
}

.sotre-mdzs-cont .swiper-button-disabled {
  opacity: 0.5;
}

.sotre-mdzs-cont .swiper-button-prev:hover {
  background: url(../images/prev2.png) no-repeat center;
  background-size: contain;
}

.sotre-mdzs-cont .swiper-button-next:hover {
  background: url(../images/next2.png) no-repeat center;
  background-size: contain;
}

.store-addrees {
  padding: 0.7rem 1.6rem;
  background: #efede8;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.store-addrees-left h2 {
  color: #a1968f;
  font-size: 0.48rem;
  font-family: "BodoniBook";
  letter-spacing: 2.88px;
}

.store-addrees-left h3 {
  color: #000;
  font-size: 0.48rem;
}

.store-addrees-left .search {
  width: 6rem;
  margin-top: 0.4rem;
}

.store-addrees-left .search form {
  display: flex;
  justify-content: flex-start;
}

.store-addrees-left .search .inpt {
  width: 5.1rem;
  height: 0.9rem;
  background: #fff;
  padding: 0 0.35rem;
}

.store-addrees-left .search .inpt::-webkit-input-placeholder {
  color: #b3ada6;
  font-size: 0.2rem;
}

.store-addrees-left .search .sub {
  width: 0.9rem;
  height: 0.9rem;
  background: #a1968f url(../images/icon9.png) no-repeat center;
}

.store-addrees-right {
  width: 6.4rem;
  height: 7.6rem;
  background: #fff;
}

.store-addrees-right .title {
  width: 100%;
  padding: 0.5rem 0.6rem 0.3rem;
  display: flex;
  justify-content: flex-start;
}

.store-addrees-right .title img {
  width: 0.48rem;
}

.store-addrees-right .title h3 {
  color: #000;
  font-size: 0.36rem;
  margin-left: 0.12rem;
}

.store-address-cont {
  width: 100%;
  height: 6.3rem;
  overflow-y: scroll;
}

.store-address-cont::-webkit-scrollbar {
  width: 4px; /* 滚动条的宽度 */
  height: 100%; /* 滚动条的高度 */
}

.store-address-cont::-webkit-scrollbar-thumb {
  background-color: #a1968f; /* 滑块颜色 */
  border-radius: 10px; /* 滑块圆角 */
  border: 4px solid #a1968f; /* 滑块边框 */
}

.store-address-cont::-webkit-scrollbar-track {
  background: #fff; /* 轨道颜色 */
}

.store-address-cont ul li {
  width: 100%;
  padding: 0.4rem 0.6rem;
  position: relative;
}

.store-address-cont ul li h4 {
  color: #333;
  font-size: 0.24rem;
  font-family: "AlibabaPuHuiTiR";
}

.store-address-cont ul li p {
  color: #333;
  font-size: 0.18rem;
  margin-top: 0.11rem;
}

.store-address-cont ul li:hover {
  padding-left: 0.7rem;
  background: linear-gradient(90deg, #e6e3de 0%, #fff 100%);
  transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
}

.store-address-cont ul li::after {
  display: none;
  content: "";
  width: 0.32rem;
  height: 0.32rem;
  background: url(../images/icon11.png) no-repeat center;
  background-size: cover;
  position: absolute;
  right: 0.4rem;
  top: 50%;
  margin-top: -0.16rem;
}

.store-address-cont ul li:hover::after {
  display: block;
}

.store-xsdp {
  padding: 1.2rem 0 1.1rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.store-xsdp .head {
  position: relative;
}

.store-xsdp .head h2 {
  color: #a1968f;
  font-size: 0.48rem;
  font-family: "BodoniBook";
  letter-spacing: 2.88px;
}

.store-xsdp .head h3 {
  color: #000;
  font-size: 0.48rem;
}

.store-xsdp .head span {
  display: block;
  width: 5.2rem;
  height: 1px;
  background: #b3ada6;
  position: absolute;
  right: -6.3rem;
  top: 50%;
  opacity: 0.5;
}

.store-xsdp ul {
  width: 6.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.store-xsdp ul li {
  width: 0.96rem;
  height: 0.96rem;
  border-radius: 50%;
  background: #b3ada6;
  position: relative;
  transition: all 0.4s linear !important;
  -webkit-transition: all 0.4s linear !important;
  -moz-transition: all 0.4s linear !important;
  -o-transition: all 0.4s linear !important;
}

.store-xsdp ul li a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.store-xsdp ul li img {
  width: 0.48rem;
}

.store-xsdp h4 {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  text-align: center;
  margin-top: 0.1rem;
  font-size: 0.18rem;
  color: #333;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
}

.store-xsdp ul li:hover {
  background: #a1968f;
  transform: translateY(-0.1rem);
}
.store-xsdp ul li:hover h4 {
  visibility: visible;
  opacity: 1;
}

.lxwm {
  margin-top: 1.2rem;
  padding: 2rem 1.7rem 1.9rem;
  background: url(../images/bg2.jpg) no-repeat center;
  background-size: cover;
}

.lxwm-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.lxwm-top .head h2 {
  color: #b3ada6;
  font-size: 0.64rem;
  font-family: "BodoniBook";
  letter-spacing: 2.88px;
}

.lxwm-top .head h3 {
  color: #efede8;
  font-size: 0.64rem;
}

.lxwm-addrees {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 0.77rem;
}

.lxwm-addrees dl {
  margin-left: 1.12rem;
}

.lxwm-addrees dl h2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.18rem;
}

.lxwm-addrees dl h2 img {
  width: 0.24rem;
  margin-right: 0.04rem;
}

.lxwm-addrees dl p {
  color: #fff;
  font-size: 0.24rem;
  margin-top: 0.16rem;
}

.lxwm-bot {
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.lxwm-bot .tub {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: #a1968f;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lxwm-bot .tub img {
  width: 0.32rem;
}

.lxwm-bot p {
  color: #fff;
  font-size: 0.18rem;
  line-height: 150%;
  margin-top: 0.2rem;
  opacity: 0.7;
}

.lxwm-bot h2 {
  color: #fff;
  font-size: 0.36rem;
  line-height: 150%;
  margin-top: 0.04rem;
}

.lxwm-bot .ewm {
  width: 130px;
  text-align: center;
}

.lxwm-bot .ewm img {
  width: 100%;
  margin-bottom: 0.1rem;
}

.lxwm-bot .ewm h3 {
  color: #fff;
  font-size: 0.16rem;
  line-height: 150%;
}

.sjbrand-banner,
.sjfooter,
.sjnav {
  display: none;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.image-viewer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(128, 128, 128, 0.8);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-viewer img {
  max-width: 80vw;
  max-height: 80vh;
}