body,
html {
  font-family: HarmonyOS_Sans_Bold;
  font-size: 19.2px;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd {
  /* 默认有边距，都要清除 */
  margin: 0;
  padding: 0;
  /*字体设置*/
  font-size: 14px;
  color: #ccc;
  /* 去掉列表的原点 */
  list-style: none;
  /* 默认鼠标 */
  cursor: default;
}

/*可选*/
html,
body {
  width: 100%;
  height: 100%;
  background-color: #f0f1f2;
}

/*行内块元素*/
input,
jimg {
  margin: 0;
  padding: 0;
  border: 0 none;
  outline-style: none;
}

/*行内元素*/
a,
a:active,
a:visited {
  /*下划线和颜色*/
  text-decoration: none;
  color: #ccc;
}

a:hover {
  color: #333;
}

textarea {
  /* 边框清零 */
  border: none;
  /* 轮廓线清零 */
  outline: none;
  /* 防止文本域被随意拖拽 */
  resize: none;
}

i {
  /*文字样式*/
  font-style: normal;
}

table {
  /*边框合并*/
  border-collapse: collapse;
  border-spacing: 0;
}

/* 使用伪元素清除浮动 */
.clearfix::before,
.clearfix::after {
  content: "";
  height: 0;
  line-height: 0;
  display: block;
  visibility: none;
  clear: both;
}

.clearfix {
  zoom: 1;
}

/* 版心*/
.w {
  max-width: 1400px;
  width: 80%;
  margin: 0 auto;
}

/*可选*/
/*单选框和复选框的配置，一般是分开的*/
input[type=radio],
input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  display: none;
}

.mb {
  display: none !important;
}

.no-select {
  user-select: none;
  /* 标准语法 */
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
}

.line-restrict-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* 显示的行数 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-restrict-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 显示的行数 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.main-contain {
  width: 100%;
  min-height: 100vh;
}

.main-contain section {
  position: relative;
}

.main-contain img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-contain .swiper {
  overflow: hidden;
}

.main-contain .swiper .swiper-button-next,
.main-contain .swiper .swiper-button-prev {
  display: none;
}

.main-contain .section {
  position: relative;
  overflow: hidden;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* swiper */
main .swiper .swiper-button-next,
main .swiper .swiper-button-prev {
  display: none;
}

.swiper .swiper-button {
  position: absolute;
  left: 2vw;
  top: calc(50% - 1.2vw);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.4vw;
  height: 2.4vw;
  border-radius: 50%;
  color: #fff;
  background-color: rgba(19, 19, 19, 0.4);
  opacity: 0;
  transition: transform 0.5s ease-in, opacity 0.7s cubic-bezier(0.15, 0, 0.2, 1) 0.1s;
  z-index: 2025;
  cursor: pointer;
  user-select: none;
}

.swiper .swiper-button svg {
  width: 1.2vw;
  height: 1.2vw;
}

.swiper .swiper-button-disabled {
  opacity: 0 !important;
}

.swiper:hover .button-prev,
.swiper:hover .button-next {
  background-color: rgba(19, 19, 19, 0.7);
  opacity: 1;
  transform: scale(1.1);
}

.swiper .button-next {
  right: 2vw;
  left: inherit;
}

.swiper .button-next svg {
  transform: rotate(180deg);
}

.mb-swiper .swiper-button {
  display: none;
}

.right-arrrow-icon {
  display: block;
  width: 1vw;
  height: 1vw;
  margin: 3px 0 0 3px;
}




/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid rgba(67, 70, 77, 0.1882352941);
  z-index: 250;
}

header .logo {
  width: 12vw;
}

header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .header-content .header-links .link {
  position: relative;
  font-family: HarmonyOS Sans SC;
  font-weight: 500;
  font-size: 1.2vw;
  color: #FFFFFF;
  padding: 1vw;
}

header .header-content .header-links .link-active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}

header .header-content .header-icons .icon {
  width: 1.4vw;
  height: 1.4vw;
  margin: 0 0.6vw;
}

header .header-content .header-icons .shop-icon {
  display: flex;
  align-items: center;
}

header .header-content .header-icons .shop-icon span {
  color: #fff;
}

header:hover .header-content .header-icons .shop-icon span {
  color: #015380;
}

.header-change .header-content .header-icons .shop-icon span {
  color: #000;
}

header:hover,
.header-change {
  background-color: #fff;
}

header:hover .logo path,
.header-change .logo path {
  fill: #015380 !important;
}

header:hover .header-content .header-links .link,
.header-change .header-content .header-links .link {
  color: #000;
}

header:hover .header-content .header-links .link-active::after,
.header-change .header-content .header-links .link-active::after {
  background: #015380;
}

header:hover .header-content .header-icons .icon path,
.header-change .header-content .header-icons .icon path {
  fill: #015380;
}

/* footer */
footer {
  position: relative;
  width: 100%;
  padding: 3.8vw 0;
  background-color: #015380;
  border-top: 10px solid #008260;
}

footer .footer-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 26vw;
}

footer .footer-content a:hover {
  color: #008A60;
}

footer .footer-content .footer-logo {
  width: 16vw;
  margin-bottom: 2vw;
}

footer .footer-content .footer-list {
  display: flex;
  flex-wrap: wrap;
}

footer .footer-content .footer-list .footer-item {
  display: flex;
  margin-right: 5vw;
}

footer .footer-content .footer-list .footer-item .footer-item-svg svg {
  width: 3vw;
  height: 3vw;
  transform: translateY(-25%);
}

footer .footer-content .footer-list .footer-item .footer-item-info {
  font-weight: 500;
  font-size: 1.04vw;
  color: #F9F7F8;
}

footer .footer-content .footer-list .footer-item .footer-item-info .footer-item-value {
  opacity: 0.8;
}

footer .footer-content .footer-list .footer-list-tp {
  display: flex;
  width: 100%;
  margin-bottom: 2.4vw;
}

footer .footer-content .footer-list .footer-list-tp .footer-menu {
  flex: 1;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  font-size: 1.04vw;
  color: #F5F8F7;
}

footer .footer-content .footer-list .footer-list-bt {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-top: 2.4vw;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}

footer .footer-content .footer-list .footer-list-bt .footer-item {
  margin-right: 0;
}

footer .footer-content .footer-list .footer-row {
  display: flex;
}

footer .footer-content .footer-bt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 100;
  font-size: 0.94vw;
  color: #F9F7F8;
}

footer::before {
  content: "";
  position: absolute;
  right: 2.6vw;
  top: 3.8vw;
  width: 6.6vw;
  height: 26vw;
  background: url(../assets/images/leagend/logo-16.svg) no-repeat center/cover;
  z-index: 1;
}

footer .footer-social-media {
  display: flex;
}

footer .footer-social-media .social-media-svg {
  position: relative;
  width: 1.4vw;
  height: 1.4vw;
  margin-right: 1vw;
  cursor: pointer;
}


footer .footer-social-media .social-media-svg .social-media-before {
  position: absolute;
  right: -11vw;
  top: -5vw;
  width: 10vw;
  height: 10vw;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
  z-index: -1;
}

footer .footer-social-media .social-media-svg:hover {
  z-index: 4;
}

footer .footer-social-media .social-media-svg:hover .social-media-before {
  opacity: 1;
  z-index: 5;
}


.right-action {
  position: fixed;
  bottom: 10vw;
  right: 2vw;
  z-index: 1000;
}

.right-action #back-to-top {
  width: 2.3vw;
  height: 2.3vw;
  background: url(https://cdn.shopify.com/s/files/1/0562/6567/0793/files/018.png) no-repeat center center/contain;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
  border: none;
  margin-bottom: 15px;
}

/* .right-action #back-to-top:hover {
  background: url(https://cdn.shopify.com/s/files/1/0562/6567/0793/files/020.png) no-repeat center center/contain;
} */

.right-action #contact-email {
  display: block;
  width: 2.3vw;
  height: 2.3vw;
  background: url(https://cdn.shopify.com/s/files/1/0562/6567/0793/files/019.png) no-repeat center center/contain;
  cursor: pointer;
}

@media screen and (min-width: 1920px) {
  .w {
    max-width: 1600px;
  }
}

@media screen and (max-width: 768px) {
  .mb {
    display: inline-block !important;
  }

  .pc {
    display: none !important;
  }

  .right-action #back-to-top,
  .right-action #contact-email {
    width: 8.3vw;
    height: 8.3vw;
  }

  /* swiper */
  .swiper .swiper-button {
    position: absolute;
    left: 2vw;
    top: calc(50% - 5vw);
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 8.4vw;
    height: 8.4vw;
    border-radius: 50%;
    color: #fff;
    opacity: 1;
    transition: transform 0.5s ease-in, opacity 0.7s cubic-bezier(0.15, 0, 0.2, 1) 0.1s;
    z-index: 2025;
    cursor: pointer;
    user-select: none;
  }

  .swiper .swiper-button svg {
    width: 2.4vw;
    height: 2.4vw;
  }

  .swiper .button-next {
    right: 2vw;
    left: inherit;
  }

  .swiper .button-next svg {
    transform: rotate(180deg);
  }


  /* header */
  header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2vw 0;
  }

  header .header-content .logo {
    width: 40vw;
  }

  header .header-content .header-links {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 10vw;
    background-color: #fff;
    transform: translateX(-100%);
    transition: all 0.3s ease-in-out;
    z-index: 2025;
  }

  header .header-content .header-links .title {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 5.8vw;
    color: #000;
    margin-bottom: 5vw;
  }

  header .header-content .header-links .title svg {
    width: 5.8vw;
    height: 5.8vw;
  }

  header .header-content .header-links .link {
    display: block;
    width: 100%;
    font-size: 4.2vw;
    font-weight: 600;
    color: #000;
    padding: 3vw 1vw;
    border-bottom: 1px dotted #000;
  }

  header .header-content .header-links .link-active {
    color: #015380;
  }

  header .header-content .open {
    transform: translateX(0);
  }

  header .header-content .header-icons {
    display: flex;
    align-items: center;
  }

  header .header-content .header-icons .icon {
    width: 6vw;
    height: 6vw;
    margin: 0 1.2vw;
  }

  header .header-content .shop-icon .icon {
    width: 10vw;
    height: 10vw;
  }

  header .header-content .header-icons .icon svg {
    fill: #fff;
  }



  /* footer */
  footer {
    position: relative;
    width: 100%;
    padding: 5vw 0;
    background-color: #015380;

  }

  footer .footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
  }

  footer .footer-content .footer-logo {
    width: 50vw;
    margin-bottom: 4vw;
  }

  footer .footer-content .footer-list {
    display: flex;
    flex-wrap: wrap;
  }

  footer .footer-content .footer-list .footer-item {
    display: flex;
    margin-right: 5vw;
  }

  footer .footer-content .footer-list .footer-item .footer-item-svg svg {
    width: 10vw;
    height: 10vw;
    transform: translateY(-25%);
  }

  footer .footer-content .footer-list .footer-item .footer-item-info {
    font-weight: 500;
    font-size: 1.04vw;
    color: #F9F7F8;
  }

  footer .footer-content .footer-list .footer-item .footer-item-info .footer-item-value {
    opacity: 0.8;
  }

  footer .footer-content .footer-list .footer-list-tp {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    margin-bottom: 2.4vw;
  }

  footer .footer-content .footer-list .footer-list-tp .footer-menu {
    flex: inherit;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    font-weight: 500;
    font-size: 3.4vw;
    color: #fff;
    margin-bottom: 3vw;
  }

  footer .footer-content .footer-list .footer-list-tp .footer-menu a {
    display: inline-block;
    width: 33%;
    padding: 3vw 0;
    border-bottom: 1px solid #F9F7F8;
  }

  footer .footer-content .footer-list .footer-list-bt {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding-top: 2.4vw;
    border-top: 1px solid #F9F7F8;
  }

  footer .footer-content .footer-list .footer-list-bt .footer-item {
    width: 100%;
    padding: 2vw 0;
    border-bottom: 1px solid #F9F7F8;
    margin-right: 0;
  }

  footer .footer-content .footer-list .footer-row {
    display: flex;
  }

  footer .footer-content .footer-bt {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-weight: 100;
    font-size: 3vw;
    color: #F9F7F8;
    padding: 8vw 0;
  }

  footer::before {
    display: none;
  }

  footer .footer-social-media {
    margin-top: 4vw;
  }

  footer .footer-social-media .social-media-svg {
    position: relative;
    width: 4.4vw;
    height: 4.4vw;
    margin-right: 4vw;
    cursor: pointer;
  }

  footer .footer-social-media .social-media-svg .social-media-before {
    position: absolute;
    right: -32vw;
    top: -15vw;
    width: 30vw;
    height: 30vw;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    z-index: -1;
  }
}