/* 6px --- 0.375rem
8px --- 0.5rem
10px --- 0.625rem
12px --- 0.75rem
14px --- 0.875rem
1rem --- 1rem 
18px --- 1.125rem 
20px --- 1.25rem 
24rem --- 1.5rem 
26rem --- 1.65rem
28rem --- 1.75rem
30rem --- 1.875rem
32rem --- 2rem */

:root {
  --bs-screen-xxl: 85.2%
}

*,
body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

html {
  font-size: 16px;
  color: #000;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

h1 {
  font-weight: bold;
  font-size: 3.13rem;
  color: #000000;
  margin-bottom: 6rem;
  /* line-height: 2.38rem; */
  text-align: center;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-weight: bold;
  font-size: 1.63rem;
  color: #2A9597;
  line-height: 2.84rem;
  text-align: center;
}

h5 {
  width: 17.88rem;
  font-weight: 400;
  font-size: 1rem;
  color: #1E1E1E;
  line-height: 1.6rem;
  /* text-align: left; */
}

p {
  font-size: 1rem;
  color: #1F1F1F;
}


.detail-btn {
  display: inline-block;
  width: 12.69rem;
  height: 3.31rem;
  background: #8DC73F;
  border-radius: 0.31rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.14rem;
  color: #FFFFFF;
  line-height: 1.19rem;
  transition: all .2s;
}

.detail-btn i {
  margin-left: 0.38rem;
}

.home-btn:hover {
  background: #a4e949;
}

.home-btn--white {
  background: #FFFFFF;
  color: #000000;
}

.custom-container {
  width: 80%;
  margin: 0 auto;
}

/* 头部 */
.header {
  position: relative;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 1.125rem;
}

.header-top {
  height: 4.06rem;
  background: #1A75BC;
}

.header-top-right {
  display: flex;
}

.header-top-right {
  display: flex;
  align-items: center;
}

.header-email {
  margin-left: 1.2rem;
  display: flex;
  align-items: center;
}

.header-email img {
  width: 1.06rem;
  height: 0.81rem;
}

.header-email p {
  color: #FFF;
  margin-left: 0.5rem;
}

.header-bottom {
  height: 5.5rem;
  background-color: #FFF;
}

.header-download {
  width: 9.88rem;
  height: 2.81rem;
  background: #8DC73F;
  position: relative;
  /* 超出隐藏需要加上 */
  overflow: hidden;

}

.header-download img {
  width: 1rem;
  margin-right: 0.63rem;
}

.header-download__content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.81rem;
  color: #FFFFFF;
}

.header-download__line {
  /* 结合外层元素的相对定位 */
  position: absolute;
}

.header-download__line:nth-child(1),
.header-download__line:nth-child(5) {
  top: 0;
  left: 0;
  width: 70%;
  height: 0.1875rem;
  /* 加上渐变效果，方可形成拖尾效果 */
  background: linear-gradient(225deg, #EEEEEE 0%, #3F8AC8 100%);
  /* background: linear-gradient(90deg, transparent, orange); */
  animation: animate1 2s linear infinite;
}

/* 分别控制其上下左右的定位距离，从而形成线条跟随效果 */
@keyframes animate1 {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

.header-download__line:nth-child(2),
.header-download__line:nth-child(6) {
  top: -100%;
  right: 0;
  width: 0.1875rem;
  height: 100%;
  background: linear-gradient(225deg, #EEEEEE 0%, #3F8AC8 100%);
  /* background: linear-gradient(180deg, transparent, red); */
  animation: animate2 2s linear infinite;
  /* 注意要加上延时触发动画效果，这样线条才会依次触发 */
  animation-delay: .5s;
}

@keyframes animate2 {
  0% {
    top: -100%;
  }

  50%,
  100% {
    top: 100%;
  }
}

.header-download__line:nth-child(3),
.header-download__line:nth-child(7) {
  bottom: 0;
  right: 0;
  width: 70%;
  background: linear-gradient(225deg, #EEEEEE 0%, #3F8AC8 100%);
  /* background: linear-gradient(270deg, transparent, green); */
  animation: animate3 2s linear infinite;
  animation-delay: 1s;
}

@keyframes animate3 {
  0% {
    right: -100%;
    height: 0.1875rem;
  }

  50%,
  100% {
    height: 2px;
    right: 100%;
  }
}

.header-download__line:nth-child(4),
.header-download__line:nth-child(8) {
  bottom: -100%;
  left: 0;
  width: 0.1875rem;
  height: 100%;
  background: linear-gradient(225deg, #EEEEEE 0%, #3F8AC8 100%);
  /* background: linear-gradient(360deg, transparent, #3a86ff); */
  animation: animate4 2s linear infinite;
  animation-delay: 1.5s;
}

.header-download__line:nth-child(5) {
  animation-delay: 0;
}

.header-download__line:nth-child(6) {
  animation-delay: 1.5;
}

.header-download__line:nth-child(7) {
  animation-delay: .5s;
}

.header-download__line:nth-child(8) {
  animation-delay: 0;
}

@keyframes animate4 {
  0% {
    bottom: -100%;
  }

  50%,
  100% {
    bottom: 100%;
  }
}



.header-con {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  margin: 0 auto;
}

.header-menus {
  display: flex;
  align-items: center;
  height: 100%;
}

.header-menus>li {
  margin: 0 2rem;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;

  height: 100%;
}

.header-menus a {
  font-weight: bold;
  font-size: 1.45rem;
  color: #000000;
}

.header-menus a span {
  display: inline-block;
  transform: rotate(90deg);
  transition: all .2s;
}

.header-share {
  display: flex;
  align-items: center;
}

.header-share__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.14rem;
  height: 2.14rem;
  border-radius: 50%;
  border: 1px solid #FFFFFF;
  transition: all .2s;
}

.header-share img {
  height: 1.3rem;
}

.header-share__item {
  margin-right: 1.75rem;
}

.header-share__item:hover {
  background-color: #8DC73F;
  border-color: #8DC73F;
  transform: rotate(45deg);
}

.header-menus>li:hover>a {
  color: #1A75BC;
}

.header-menus>li:hover span {
  transform: rotate(270deg);
}

.header-menus li:hover .header-menus__second {
  display: block;
}

.header-email {
  display: flex;
  justify-content: center;
}

.header-email a {
  color: #FFF;
  font-size: 0.78rem;
  margin-left: 0.5rem;
}

.header-contact {
  color: #FFF;
  margin-right: 1.3rem;
}

.header-search img {
  display: inline-block;
  width: 1.3rem;
  height: 1.3rem;
}

.header-logo {
  width: 14.63rem;
}

.header-search {
  height: 2.77rem;
  display: flex;
}

.header-search input {
  width: 15.3rem;
  height: 100%;
  background: #EEEEEE;
  border: none;
  outline: none;
  padding: 0 0.75rem;
  font-weight: bold;
  font-size: 0.92rem;
  color: #929497;
}

.header-search input::placeholder {
  font-weight: bold;
  font-size: 0.92rem;
  color: #929497;
}

.header-search__btn {
  width: 3.62rem;
  height: 100%;
  background: #1A75BC;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-search__btn img {
  display: block;
  width: 1.94rem;
  height: 1.94rem;
}

#header-menu__expand {
  display: none;
  margin-right: 1rem;
  font-size: 3rem;
}

.header-main {
  display: flex;
  align-items: center;
}

#header-right {
  /* width: 100%; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 14.63rem);
  padding-left: 8.94rem;
  height: 100%;
}

.header-menus__second {
  display: none;
  width: fit-content;
  position: absolute;
  top: 5rem;
  background: #FFFFFF;
  box-shadow: 0rem 0rem 1rem 0rem rgba(12, 0, 5, 0.35);
}

.header-menus__second>li {
  height: 2.77rem;
  padding: 0 0.63rem;
}

.header-menus__second>li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 1.18rem;
  color: #5B5B5B;
  text-wrap: nowrap;
}

.header-menus__second>li:hover {
  background-color: #1A75BC;

}

.header-menus__second>li:hover a {
  color: #FFF;
}

.home-tool__detail>img {
  width: 50%;
}

.header-lang {
  color: #141414;
  display: flex;
  cursor: pointer;
  position: relative;
}

#header-lang__content {

  padding: 0 1.56rem;
  display: flex;
  width: 100%;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;

  width: 9.24rem;
  height: 2.63rem;
  color: #FFF;
}

.header-lang img {
  display: inline-block;
  width: 1.5rem;
}

#header-lang__content img {
  width: 1.06rem;
}

.header-lang__flag {
  background-image: url('../assets/imgs/lang.gif');
  position: relative;
  display: block;
  background-repeat: no-repeat;
  width: 1.325rem;
  height: 1rem;
  margin-right: 0.3rem;
}

.header-lang__en .header-lang__flag {
  background-position: 0 -256px !important
}

#header-lang__menus {
  width: 100%;
  display: none;
  /* display: block; */
  background-color: #FFF;
  color: #000;
  position: absolute;
  top: 2rem;
  right: 0rem;
  padding: 1rem 0;
  flex-wrap: wrap;
  box-shadow: 0px 0px 0.875rem #0000006e;
}

#header-lang__menus li {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dfdcdc;
  margin: 0 0.5rem;
}

.header-lang:hover #header-lang__menus {
  display: block;
}

.header-lang:hover .header-lang__triangle {
  transform: rotate(-90deg);
}

#header-lang__content p {
  color: #FFF;
}

#header-lang__menus li:hover p {
  color: #1A75BC;
}

.header-lang__triangle {
  font-size: 0.75rem;
  display: inline-block;
  transition: all .2s;

}

/* banner */
.home-banner {
  width: 100%;
  height: 47.19rem !important;
  position: relative;
  /* top: 7.5rem; */
  left: 0;
  overflow: hidden;
  /*background-image: url(../assets/imgs/detail/banner-bg.png);*/
  background-size: cover;
}

.home-banner__content {
  width: 100%;
  height: 100%;
  /*background-color: rgba(0, 0, 0, 0.72);*/
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-banner {
  width: 26%;
  /* width: 30.94rem; */
  height: auto !important;
  overflow: hidden;
  margin: 0 24%;
}

.swiper-banner img {
  display: block;
  width: 100%;
}

.home-banner__left,
.home-banner__right {
  display: block;
  width: 3.88rem;
  cursor: pointer;
}

/* custom */
.deatil-custom {
  position: relative;
  width: 100%;
}

.deatil-custom__bg {
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.deatil-custom {
  padding-top: 7rem;
}

.deatil-custom__header {
  display: flex;
  justify-content: center;
  align-items: center;
}

.deatil-custom__title {
  position: relative;
  padding: 2.5rem 2.25rem;

  width: fit-content;

}

.deatil-custom__title h1 {
  margin: 0;
}

.deatil-custom__title::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: '';
  width: 50%;
  height: 80%;
  border-top: 1px solid #252525;
  border-left: 1px solid #252525;
}

.deatil-custom__title::after {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  content: '';
  width: 50%;
  height: 80%;
  border-bottom: 1px solid #252525;
  border-right: 1px solid #252525;
}

.deatil-custom__title h1 {
  font-weight: bold;
  font-size: 3.65rem;
  color: #252525;
  line-height: 2.51rem;
  width: fit-content;
  line-height: 2.51rem;
}

.deatil-custom__title span {
  color: #1A75BC;
}

.deatil-custom__btn {
  width: 16.44rem;
  height: 1.63rem;
  background: #1A75BC;
  font-weight: 400;
  font-size: 0.9rem;
  color: #FFFFFF;
  line-height: 2.23rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -0.8rem;
  left: 1.13rem;
}

.deatil-custom__line {
  position: absolute;
  top: 50%;
  background: #D2D2D2;
  height: 0.25rem;
  width: 35rem;
  /* width: calc(100vw / 4); */
}

.deatil-custom__line1 {

  left: -100%;
}

.deatil-custom__line2 {

  right: -100%;
}

/*table,*/
/*th,*/
/*td {*/
/*  width: fit-content;*/
/*  border: 1px solid #252525;*/
/*  border-collapse: collapse;*/
  /* 移除单元格之间的间隔 */
/*}*/

/*table td,*/
/*table th {*/
/*  padding: 1.5rem 5rem;*/
/*  margin: 10px;*/
/*  font-weight: 400;*/
/*  font-size: 2.08rem;*/
/*  color: #252525;*/
/*  line-height: 2.73rem;*/
/*}*/

/*table th,*/
/*table tr td:first-child {*/
/*  color: #1A75BC;*/
/*}*/

.detail-custom__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.detail-custom__item h2 {
  margin-bottom: 2.94rem;
  font-weight: bold;
  font-size: 2.6rem;
  color: #252525;
  line-height: 2.6rem;
}

.detail-custom__moq {
  margin-top: 8.36rem;
}

.detail-custom__time {
  margin-top: 9.3rem;
}

.deatil-custom .detail-btn {
  margin: 0 auto;
  margin-top: 8.94rem;

}

/* color */
.detail-color {
  margin-top: 8.88rem;
}

.detail-title {
  position: relative;
  height: 4.88rem;
  display: flex;
  align-items: center;
}

.detail-title img {
  width: 4.88rem;
  position: absolute;
  top: 0;
  left: -2.44rem;
  z-index: -1;
}

.detail-title h3 {
  font-weight: bold;
  font-size: 2.08rem;
  color: #1A75BC;
  line-height: 2.6rem;
}

.detail-info p,
.detail-button .custom-container>p {
  font-weight: 400;
  font-size: 1.9rem;
  color: #252525;
  line-height: 2.6rem;
  margin-top: 2.63rem;
}

.detail-color__list img {
  display: block;
  width: 100%;
  margin-bottom: 3rem;
}

.detail-color .detail-btn {
  width: 9.81rem;
}

.detail-color__btn {
  display: flex;
  justify-content: flex-end;
}

.detail-color .detail-info {
  margin-bottom: 5.31rem;
}

/* label */
.detail-label,
.detail-pocket {
  position: relative;
}

.detail-label__img,
.detail-pocket__img {
  display: block;
  width: 34.38rem;
  position: absolute;
  left: 2.38rem;
  top: 0;
  z-index: -1;
}

.detail-label .detail-info {
  margin-bottom: 3.31rem;
}

.detail-list {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.detail-item {
  width: calc((100% - 2.7rem * 6) / 7);
  margin-right: 2.7rem;
  margin-bottom: 5rem;
}

.detail-label .detail-item:nth-child(7n) {
  margin-right: 0;
}

.detail-item__cover {
  width: 100%;
  overflow: hidden;
}

.detail-item__cover img {
  display: inline-block;
  width: 100%;
  transition: all .2s;
}

.detail-item__cover:hover img {
  transform: scale(1.1);
}

.detail-list p {
  font-weight: 400;
  font-size: 1.2rem;
  color: #252525;
  line-height: 2.09rem;
  margin-top: 1.38rem;
  letter-spacing: -0.2px;
  text-align: center;
}

/* collar */
.detail-collar .custom-container>img {
  display: block;
  width: 100%;
  margin-top: 3.13rem;
}

/* pocket */
.detail-pocket {
  margin-top: 11.5rem;
  margin-bottom: 4.94rem;
}

.detail-pocket .detail-info {
  margin-bottom: 3.37rem;
}

.detail-pocket .detail-item {
  width: calc((100% - 3.63rem * 5) / 5);
  margin-right: 3.63rem;
}

.detail-pocket .detail-item:nth-child(5n) {
  margin-right: 0;
}

/* button */
.detail-button {
  margin-bottom: 12.88rem;
}

.detail-button .detail-info {
  margin-bottom: 3.75rem;
}

.detail-button .detail-item {
  width: calc((100% - 1.75rem * 10) / 11);
  margin-right: 1.75rem;
}

.detail-button .detail-item:nth-child(11n) {
  margin-right: 0;
}

.detail-button .detail-item p {
  font-weight: 400;
  font-size: 1.04rem;
  color: #252525;
  line-height: 2.6rem;
  letter-spacing: -0.8px;
}

/* footer */
.home-footer {
  width: 100%;
  color: #FFF;
  background-image: url(../assets/imgs/home/footer-bg.png);
  background-size: cover;
  border-top: 0.88rem solid #1A75BC;
}

.home-footer p {
  color: #FFF;
}

.home-footer__content {
  width: 95%;
  margin: 0 auto;
}


.home-footer__content--main {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 3.1rem 15rem 2.2rem 5.5rem;
}


.footer-menu {
  margin-top: 1.75rem;
}

.footer-contact .contact-img {
  width: 8.75rem;
}
.footer-contact > li{
  height: 100%;
}
.footer-contact  ul {
  height: calc(100% - 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-menu li {
  margin-top: 0.75rem;
}

.footer-menu a,
.footer-menu li {
  font-size: 1.25rem;

}
.footer-menus {
  width: 20%;
  padding-right: 2.4rem;
}
.footer-menus:not(:last-child) {
  /* margin-right: 3%; */
}
.footer-menus .footer-title {
  font-weight: bold;
  font-size: 1.23rem;
  color: #FFFFFF;
}

.footer-information ul li {
  display: flex;
  align-items: flex-start;
}

.footer-information li img {
  width: 1.1rem;
  margin-right: 1.25rem;
  padding-top: 0.25rem;
}

.footer-contact ul li {
  display: flex;
}

.footer-contact ul li p {
  text-align: center;
}

.footer-contact ul li div {
  margin-right: 1.2rem;
}

.footer-contact li > img {
  width: 7.55rem;
}

.home-footer .footer-logo {
  /* margin-right: 5%; */
  /* width: 12rem; */
  padding-right: 3.5rem;
}

.footer-logo img {
  display: inline-block;
  width: 100%;
}

.footer-information {
  /* width: 22%; */
  /* margin: 0 0 0 3%; */
}

.home-footer__content--main a {
  color: #FFF;
}

.footer-menu a:hover {
  color: #1B75BC;
}

.home-footer__copyright {

  padding: 1.75rem 0 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.43);
}

.home-footer__copyright P {
  width: 100%;
  text-align: center;
  font-size: 1.3rem;
  color: #FFF;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1)
  }

  10%,
  20% {
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -6deg)
  }

  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 6deg)
  }

  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -6deg)
  }

  to {
    transform: scale3d(1, 1, 1)
  }
}



@media only screen and (max-width:640px) {
  :root {
    --bs-screen-xxl: 98%
  }

  #header-right {
    display: none;
    background-color: #FFF;
    position: absolute;
    top: 9.625rem;
    left: 0;
    width: 100%;
    padding: 2rem 3rem;
    flex-direction: column-reverse;
    align-items: flex-start;
    height: auto;
    /* min-height: 22rem; */
  }

  .header-menus {
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    margin-top: 1rem;
    width: 100%;
  }

  .header-search {
    width: 100%;
  }

  .header-menus>li {
    display: block;
  }

  .header-menus__second {
    position: static;
    /* display: block; */
    width: 100%;
    background-color: transparent;
    box-shadow: none;
  }

  .header-search input {
    width: calc(100% - 5rem);
  }

  .header-menus li {
    margin: 0.75rem 0;
    width: 100%;
  }


  .footer-menus--first {
    width: 100%;
  }

  .home-footer__content--top h1 {
    width: 100%;
  }

  .footer-menus {
    margin-bottom: 2rem;
  }

  .footer-menus {
    margin-bottom: 2rem;
  }

  .footer-menus {
    width: 50%;
    margin-right: 0;
    margin-left: 0;
  }

  .footer-information {
    padding-left: 10%;
    /* width: 40%; */
  }
  .color-menus {
    padding-right: 10%;
  }
  .footer-logo {
    margin-right: 10%;
    width: 40%;
  }
  .footer-menus:nth-child(2n) {
    display: flex;
    justify-content: flex-end;
  }
  #header-menu__expand {
    display: block;
    width: 3rem;
  }
  .footer-contact .header-share {
    margin-top: 3rem;
  }
  .home-footer__content--main {
    padding-right: 5.5rem;
  }


  /* banner */
  .home-banner {
    height: 30rem;
  }


  .deatil-custom__line {
    width: 9rem;
  }

  .deatil-custom__line1 {
    left: -28%;
  }

  .deatil-custom__line2 {
    right: -28%;
  }

  .detail-label .detail-item {
    width: calc((100% - 2.7rem * 3) / 4);
    /* margin-right: 2rem; */
  }

  .detail-label .detail-item:nth-child(7n) {
    margin-right: 2.7rem;
  }

  .detail-label .detail-item:nth-child(4n) {
    margin-right: 0;
  }

  .detail-pocket .detail-item {
    width: calc((100% - 3.63rem * 2) / 3)
  }

  .detail-pocket .detail-item:nth-child(5n) {
    margin-right: 3.63rem;
  }

  .detail-pocket .detail-item:nth-child(3n) {
    margin-right: 0;
  }

  .detail-button .detail-item {
    width: calc((100% - 1.75rem * 5) / 6);
  }

  .detail-button .detail-item:nth-child(11n) {
    margin-right: 1.75rem;
  }

  .detail-button .detail-item:nth-child(6n) {
    margin-right: 0;
  }

  table td,
  table th {
    padding: 1.5rem 3rem;
  }
}