/* 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;

  font-family: Arial;


}

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

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;
}

.container {
  width: var(--bs-screen-xxl);
  margin: 0 auto;
}

.custom-title h2,
.custom-title h2 span {
  font-size: 2.38rem;
  color: #1A75BC;
}

.custom-title h2 span {
  color: #89C23C;
}

.custom-title p,
.step05 p {
  font-size: 2.08rem;
  color: #252525;
  line-height: 2.6rem;
  margin-top: 4rem;
}

.home-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;
}

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

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

/* 头部 */
.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%;
  /* width: 120rem; */
  height: 47.19rem;
  position: relative;
  /* top: 7.5rem; */
  left: 0;
  overflow: hidden;
}

.home-banner_img {
  /* position: absolute;
  z-index: 0; */
  width: 100%;
  height: 100%;
}

.home-banner_img img {
  /* display: block; */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-banner_content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}


.swiper-banner {
  height: 100%;
}


/* title */
.deatil-custom__header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 7.06rem;
  margin-bottom: 13.44rem;
}

.deatil-custom__title {
  position: relative;
  padding: 2.5rem 4.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%;
}

/* step01 */
.step01_list {
  display: flex;
  justify-content: space-between;
  margin-top: 2.44rem;
}

.step01_item {
  width: 28.14rem;
  height: 22.99rem;
  background: #FFFFFF;
  box-shadow: 0rem 0rem 1rem 0rem rgba(26, 117, 188, 0.3);
  padding: 2rem 2.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  transition: all .2s;
}

.step01_item:hover {
  transform: translateY(-1rem);
}

.step01_item img {
  width: 3.13rem;
  margin-bottom: 1.5rem;
}

.step01_item p {
  font-family: Arial;
  font-weight: 400;
  font-size: 1.82rem;
  color: #252525;
  line-height: 2.49rem;
  text-align: center;
}

.step01_item-title {
  position: absolute;
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 30.13rem;
  height: 7.63rem;
  background: url(../assets/imgs/flow/矩形\ 594.png);
  background-size: contain;
  background-repeat: no-repeat;
  font-weight: 400;
  font-size: 2.08rem;
  color: #FFFFFF;
  line-height: 7rem;
  text-align: center;
}

/* step */
.home-step {
  padding: 8.75rem 0 5.94rem 0;
}

.home-step__content {
  width: var(--bs-screen-xxl);
  margin: 0 auto;
}

.home-step .home-btn {
  margin: 0 auto;
}

.home-step__list {
  display: flex;
  /* align-items: center; */
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  margin: 0 auto;

}

.step06 {
  margin-top: 5rem;
}

.home-step__item {
  width: 12rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 6rem;
}

.home-step__item img {
  max-width: 70%;
}

.home-step__item p {
  font-weight: bold;
  font-size: 1.8rem;
  color: #000000;
  text-align: center;
  line-height: 2.16rem;
}

.home-step__arrow {
  margin: 0 3rem;
  padding-top: 2.3rem;
  width: 4.3rem;
}

.home-step__arrow img {
  display: inline-block;
  width: 100%;
}

.home-step__img-content {
  width: 100%;
  height: 7rem;
  margin-bottom: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  /* background-color: #1A75BC; */
}

.home-step__list li:nth-child(10) {
  position: absolute;
  left: 93%;
  top: 18rem;
  margin: 0;
  transform: rotate(90deg);
}

/* 
.home-step__list li:nth-child(10) img {
  transform: rotate(180deg);
} */

.home-step__list li:nth-child(12) img {
  transform: rotate(180deg);
}

.home-step__list li:nth-child(14) img {
  transform: rotate(180deg);
}

.home-step__list li:nth-child(16) img {
  transform: rotate(180deg);
}

.home-step__list li:nth-child(18) img {
  transform: rotate(180deg);
}

/* Step2 */
.custom-title--Step02 {
  margin-top: 11.31rem;
  margin-bottom: 5.12rem;
}

.step02_list {
  width: 100%;
  height: 29rem;
  display: flex;
  /* 主轴为垂直方向，起点在上沿 */
  flex-direction: column;
  flex-wrap: wrap;
  /*换行，第一行在上方*/
  justify-content: space-between;
  /*两端对齐*/
}

.step02_item {
  width: 50%;
  height: 33%;
  padding:1rem 0rem 2.5rem 1rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step02_item img {
  /* width: 100%;
  height: 100%; */
  width: 46.63rem;
  height: 7.75rem;
  object-fit: cover;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
}

.step02_item p {
  position: absolute;
  z-index: 10;
  /* top: 1.4rem;
  left: 8rem; */
  left: 8rem;
  width: 32.25rem;
  font-size: 1.82rem;
  color: #FFFFFF;
  /* font-weight: 400;
  line-height: 2.08rem; */
}

/* step3 */
.flow-custom__bg {
  position: absolute;
  width: 100%;
  pointer-events: none;
  z-index: -1;
}

.flow-custom {
  position: relative;
}

.custom-title--Step03 {
  margin-top: 10.19rem;
  margin-bottom: 5.06rem;
}

.step03_list {
  width: 100%;
  height: 29rem;
}

.step03_item {
  width: 100%;
  /* width:95rem; */
  height: 7rem;
  left: 0;
  margin-bottom: 3.63rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 1rem 1rem 4rem 1rem; */
}

.step03_item img {
  width:100%;
  height:100%;
  /* height: 7rem; */
  /* object-fit: cover; */
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
}

.step03_item p {
  position: absolute;
  z-index: 10;
  left:9.19rem;
  /* top: 2.3rem;
  left: 9.19rem; */
  /* width: 80%; */
  font-size: 2.08rem;
  color: #FFFFFF;
}

/* step7 */
.custom-title--Step07 {
  margin-top: 13.19rem;
  margin-bottom: 4.5rem;
}
.step07_list {
  margin-top: 3.44rem;
  width: 100%;
  height: 21.13rem;
  display: flex;
  justify-content: space-between;
}
.step07_item {
  width:45%;
  height: 21.13rem;
  /* padding-bottom: 3.63rem; */
  position: relative;
  text-align: center;
  color: #FFFFFF;
  font-size: 2.08rem;
  /* line-height:21.13rem; */
}
.step07_title {
  width:100%;
  height: 5rem;
  line-height:5rem;
  background: #8FC842;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
}
.step07_content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  text-align: left;
  line-height: 2.6rem;
  background: #1A75BC;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
}

.step07_btn {
  /* margin-top: 11rem;
  margin-bottom: 16.63rem; */
  width: 17.94rem;
  height: 3.56rem;
  margin: 11rem auto 16.63rem auto ;
  background: #8DC73F;
  border-radius: 0.31rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #FFFFFF;
  /* width: 12.81rem;
  height: 1rem;
  font-family: Arial; */
  font-size: 1.3rem;
  color: #FFFFFF;
  line-height: 1.25rem;
  transition: all .2s;
}

.step07_btn:hover {
  background: #a4e949;
}

.step07_btn--white {
  background: #FFFFFF;
  color: #000000;
}
.step07_btn i {
  margin-left: 1.13rem;
}


/* step04 */
.step04 {
  width: 95rem;
  height: 39.69rem;
   background-size: cover; 
  background-image: url(../assets/imgs/flow/组\ 16.png);
  background-repeat: no-repeat;
  padding: 8.63rem 4.25rem 10.6rem 4.25rem;
  margin-bottom: 12.5rem;
}

.step04-item {
  display: flex;
  margin-bottom: 4.5rem;
}

.step04-item p {
  font-weight: 400;
  font-size: 2.08rem;
  color: #252525;
}

.step04-item img {
  width: 2.56rem;
  height: 2.63rem;
  margin-right: 2rem;
}

.step05 .home-step__item {
  margin-bottom: 0;
}

.step05 {
  display: flex;
  justify-content: center;
  margin-top: 4.88rem;
  margin-bottom: 10rem;
}

.step05 .home-step__img-content {
  margin-bottom: 0;
  height: auto;
}

.step05 .home-step__item {
  width: 9rem;
}

.step05 .home-step__item:nth-child(2) {
  width: 10rem;
}

.step05 .home-step__arrow {
  margin: 0 1.38rem;
  padding-top: 3.3rem;
}

.step05 .home-step__item img {
  max-width: 100%;
}

/* 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;
  } */
  .xgplayer xg-start-inner {
    border-radius: 50% !important;

  }

  .xgplayer .xgplayer-start {
    left: 50%;
    top: 50%;
    z-index: 5;
    transform: translate(-50%, -50%);
  }

  #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 a{
    color: #FFF;
  } */
  .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>li a {
    color: #FFF;
  } */
  .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%;
  }

  .case-swiper .swiper-button-prev {
    left: 0%;
  }

  .case-swiper .swiper-button-next {
    right: 0%;
  }

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

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

  .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;
  }

  .home-banner {
    height: 32rem;
  }

  .home-product__list li:nth-child(4n+4) {
    margin-right: 3rem;
  }

  .home-product__list li:nth-child(2n+2) {
    margin-right: 0;
  }


  .home-banner_content li {
    margin-top: 0.75rem;
  }

  .home-about__info {
    width: var(--bs-screen-xxl);
    margin: 0 auto;
    position: static;
    margin-top: 5rem;
  }

.home-step__list {
    width: 69%;
    /* margin: 0 auto; */
  }

  .home-step__item {
    margin-bottom: 11rem;
  }

  /* .home-step__list li:nth-child(8){
    position: static;
    transform: rotate(0deg);
  } */

  .home-step__list li:nth-child(6) {
    position: absolute;
    left: 80%;
    top: 18rem;
    /* margin: 0; */
    transform: rotate(90deg);
  }

  .home-step__list li:nth-child(10) {
    /* position: absolute;
    left: 19%;
    top: 48rem;
    margin: 0;
    transform: rotate(90deg); */
    margin: 0 3rem;
    position: static;
    transform: none;
  }

  .home-step__list li:nth-child(12) {
    /* position: static;
    transform: none; */
    position: absolute;
    left: 8%;
    top: 48rem;
    margin: 0;
    transform: rotate(90deg);
  }

  .home-step__list li:nth-child(8) img {
    transform: rotate(180deg);
  }
  
  .home-step__list li:nth-child(10) img {
    transform: rotate(0deg);
  }

  /* .home-step__list li:nth-child(6) img {
    transform: rotate(180deg);
  } */

  .home-step__list li:nth-child(12) img {
    transform: rotate(0deg);
  }

  .home-step__list li:nth-child(14) img {
    transform: rotate(0deg);
  }

  .home-step__list li:nth-child(16) img {
    transform: rotate(180deg);
  }
  .home-step__list li:nth-child(18) {
    /* position: static;
    transform: none; */
    position: absolute;
    right: 9%;
    top: 72rem;
    margin: 0;
    transform: rotate(270deg);
  }

  .home-step__list li:nth-child(11) {
    position: absolute;
    right: 4%;
    top: 80rem;
  }

  .home-step__list {
    padding-bottom: 12rem;
  }

  /* 调整内容顺序 */
  .home-step__list li:nth-child(1) { order: 1; }
  .home-step__list li:nth-child(2) { order: 2; }
  .home-step__list li:nth-child(3) { order: 3; }  /* Order receiving */
  .home-step__list li:nth-child(4) { order: 4; }
  .home-step__list li:nth-child(5) { order: 5; }  /* Production planning */
  .home-step__list li:nth-child(6) { order: 6; }
  .home-step__list li:nth-child(19) { order: 7; }  /* Estimating */
  .home-step__list li:nth-child(8) { order: 8; }
  .home-step__list li:nth-child(9) { order: 9; }  /* Ordering fabric */
  .home-step__list li:nth-child(10) { order: 16; }
  .home-step__list li:nth-child(15) { order: 15; }/* Packing */
  .home-step__list li:nth-child(12) { order: 14; }
  .home-step__list li:nth-child(14) { order: 13; }/* Inspection */
  .home-step__list li:nth-child(17) { order: 12; }
  .home-step__list li:nth-child(7) { order: 11; }/* Folding */
  .home-step__list li:nth-child(16) { order: 10; }
  .home-step__list li:nth-child(13) { order: 17; }/* Stitching */
  .home-step__list li:nth-child(18) { order: 18; }
  .home-step__list li:nth-child(11) { order: 19; }/* Cutting */ 
  /* contact */
  .home-contact {
    height: 22.25rem;
  }

  .home-contact__list {
    margin: 1rem 1.5rem;
  }

  .home-contact__icon {
    width: 1.3rem;
    height: 1.16rem;
  }

  .home-contact__title {
    margin-top: 0.85rem;
    width: 14.1rem;
    font-size: 1rem;
    line-height: 1.17rem;
  }

  .home-contact__items {
    margin-top: 0.815rem;
  }

  .home-contact__item {
    height: 0.5rem;
  }

  .home-contact__item img {
    width: 0.65rem;
    height: 0.6rem;
  }

  .home-contact__item span {
    margin: 0 0.5rem;
    font-size: 0.585rem;
    line-height: 0.7rem;
  }

  .home-contact__table {
    margin-top: 1.65rem;
  }

  .home-contact__table p {
    height: 0.5rem;
    font-size: 0.65rem;
    line-height: 0.585rem;
  }

  .home-contact__table input {
    padding: 0 0.5rem;
    width: 15.28rem;
    height: 1.15rem;
    margin-top: 0.345rem;
    margin-bottom: 0.78rem;
    border-radius: 0.155rem;
    border: 0.5px solid #ccc;
    font-size: 0.475rem;
    line-height: 0.585rem;
  }

  .home-contact__table textarea {
    padding: 0.3rem 0.5rem;
    width: 15.28rem;
    height: 4rem;
    margin-top: 0.345rem;
    margin-bottom: 0.78rem;
    border-radius: 0.155rem;
    border: 0.5px solid #ccc;
    font-size: 0.475rem;
    line-height: 0.585rem;
  }

  .home-contact__button {
    margin-top: 0.3rem;
    width: 5.69rem;
    height: 1.25rem;
    border-radius: 0.315rem;
    font-size: 0.475rem;
    line-height: 0.585rem;
  }

  /* news */
  .home-news {
    height: 32.155rem;
  }

  .home-news__content {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }

  .home-news__content h1 {
    font-size: 1.565rem;
    margin-bottom: 3rem;
    text-align: center;
  }

  .home-news__item {
    width: 15.9rem;
    height: 15.9rem;
    border-radius: 0.47rem;
    border: 0.5px solid #939597;
    padding: 0.875rem 0.75rem;
    margin: 2.22rem 0.75rem 0rem 0.75rem;
  }

  .home-news__item:hover {
    transform: translateY(-2.22rem);
  }

  .home-news__item:hover .home-news__hover {
    margin: -0.875rem -0.75rem;
  }

  .home-news__item:hover .home-news__num {
    padding-left: 1rem;
    padding-top: 1rem;
  }

  .home-news__item:hover .home-news__date {
    padding-top: 0.75rem;
    padding-left: 0.75rem;
  }

  .home-news__hover {
    width: 4.6rem;
    height: 4.8rem;
  }

  .home-news__num {
    margin-left: 0.5rem;
    height: 1.25rem;
    font-size: 1.69rem;
    line-height: 1.05rem;
  }

  .home-news__date {
    margin-top: 1.25rem;
    height: 0.66rem;
    font-size: 0.845rem;
    line-height: 1.05rem;
  }

  .home-news__title {
    margin-top: 2.5rem;
    height: 0.815rem;
    font-size: 0.845rem;
    line-height: 1.05rem;
  }

  .home-news__line {
    margin-top: 0.625rem;
    width: 3.615rem;
    height: 0.08rem;
  }

  .home-news__des {
    margin-top: 0.75rem;
    width: 14.25rem;
    height: 2.155rem;
    font-size: 0.59rem;
    line-height: 0.845rem;
  }

  .home-news__item img {
    margin-top: 0.97rem;
    width: 1.44rem;
    height: 0.815rem;
  }

  .home-news__swiper-pagination {
    margin-top: 2.155rem;
  }

  .home-news__swiper-pagination .swiper-pagination-bullet {
    width: 0.285rem;
    height: 0.28rem;
    margin: 0 0.235rem;

  }

  .home-news__swiper-pagination .swiper-pagination-bullet-active {
    border: 1px solid #8DC73F;
  }

  .home-service__info {
    width: 100%;
  }

  .home-service__info,
  .home-service__tags {
    width: 100%;
  }

  .home-service {
    height: 96rem;
  }

  .home-service__tags {
    height: 48rem;
  }

  .home-service__content {
    flex-wrap: wrap;
  }

  .home-about__video--bg {
    width: 98%;
    /* margin: 0 auto; */
    /* border-radius: 3rem; */
  }

  #home-about__video {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #home-about__video--play {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .home-service__tags,
  .home-service__info {

    position: relative;

    width: calc(100% - 14%);
  }

  .home-service__tags {
    top: 38%;
    width: 100%;
    /* left: 7%; */
  }

  .home-service {
    height: 106rem;
  }

  .step04 {
    width: 100%;
    background-size: 100% 100%;
  }
  .deatil-custom__line {
    width: 9rem;
  }

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

  .deatil-custom__line2 {
    right: -28%;
  }
  .step01_list {
    flex-wrap: wrap;
    justify-content: center;
  }
  .step01_item {
    width: 90%;
    margin-bottom: 2rem;
    padding-bottom: 6rem;
  }
  .step01_item {
    height: 45rem;
  }
  .step01_item-title {
    width: 56rem;
    height: 14rem;
    top: 5rem;
  }
  .home-step__list {
    width: 100%;
  }

  /* Step2 */
  .step02_list {
    height: 70rem;
    justify-content: center;
  }

  .step02_item {
    width: 95%;
    height: 15%;
    margin: 0 auto;
  }

  .step02_item img {
    width: 100%;
  }

  .step02_item p {
    width: 38rem;
  }
  .step01_item img {
    width: 6rem;
  }
  /* step3 */
  .step03_list {
    height: 18rem;
  }
  .step03_item{
    height: 3.7rem;
  }
  .step03_item p {
    left:5rem;
    font-size: 1.3rem;
  }
  /* .step03_item {
    width: 100%;
    height: 7rem;
    /* margin-bottom: 3.63rem; */
  /* .step03_item img {
    width: 45rem;
    height: 7rem;
  } */
  /* step7 */
  .step07_list {
    height: 50rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .step07_item {
    width:100%;
    margin: 1rem auto;
  }
  .step07_btn {
    margin: 5.5rem auto 8.4rem auto ;
  }

}