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


.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;
  box-shadow: 0 4px 5px rgba(211, 211, 211, 0.7);
}

.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: 61.88rem;
  position: relative;
  /* top: 7.5rem; */
  left: 0;
  overflow: hidden;
}

.home-banner_img {
  position: absolute;
  z-index: 0;
  width: 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%);
}

.home-banner_title {
  font-size: 1.93rem;
  color: #FFF;
  margin-bottom: 0.4rem;
}

.home-banner_content li {
  font-size: 1.93rem;
  color: #FFF;
  margin-top: 1.38rem;
  text-wrap: nowrap;
}

.banner-btns {
  display: flex;
  margin-top: 2.75rem;
}

.banner-btns .home-btn--white {
  margin-left: 4.69rem;
}

.swiper-banner {
  height: 100%;
}


/* 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: 91%;
  margin: 0 auto;
}

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

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

.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 4rem;
  padding-top: 5.3rem;
  width: 4.3rem;
}

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

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

.home-step__arrow--vertical {}

.home-step__list li:nth-child(8) {
  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);
}

/* product */
.home-product {
  background-color: #F1F1F1;
  padding: 6.5rem 0 5.25rem;
}

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

.home-product__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

}

.home-product__item {
  width: 23rem;
  height: 30.38rem;
  position: relative;
  margin-right: 3rem;
  margin-bottom: 2.06rem;
}

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

.home-product__item img {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
}

.home-product__item--content {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  border-radius: 1rem;
  transition: all .2s;
}

.home-product__item--content:hover {
  background-image: linear-gradient(180deg, #00000007 20%, #000000d2 100%);
}

.home-product__item--content>p {
  font-weight: bold;
  font-size: 2.6rem;
  color: #FFFFFF;
  /*line-height: 1.11rem;*/
  position: absolute;
  text-align: center;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  height: 7rem;
  padding: 0 1rem;
  line-height: 1.2;
}

.home-product__btn {
  width: 9.2rem;
  height: 4.64rem;
  background: #1A75BC;
  position: absolute;
  opacity: 0;
  bottom: -0.62rem;
  right: -0.56rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.home-product__item--content:hover .home-product__btn {
  opacity: 1;
}

.home-product__btn p {
  font-weight: 400;
  font-size: 0.86rem;
  color: #FFFFFF;
  line-height: 1.33rem;
  margin-bottom: 0.44rem;
}

.home-product__btn h3 {
  font-weight: 400;
  font-size: 1.48rem;
  line-height: 1.31rem;
  color: rgba(255, 255, 255, 0.07);
  position: relative;
}

.home-product__btn h3 i {
  position: absolute;
  right: -0.125rem;
  color: #FFFFFF;
}

.home-product__item--content {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  border-radius: 1rem;
  transition: all .3s;
  /* 默认状态下的渐变背景 */
  background-image: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
}

.home-product__item--content:hover {
  /* 悬浮状态下的全黑背景 */
  background: rgba(0,0,0,0.7);
}


/* 调整文字颜色，确保在背景上可见 */
/*.home-product__item--content > p {*/
/*  color: #FFFFFF;*/
/*  transition: all .3s;*/
/*}*/

/*.home-product__item--content:hover > p {*/
  /* 悬浮时可以稍微增加文字亮度 */
/*  color: #FFFFFF;*/
/*  text-shadow: 0 0 5px rgba(255,255,255,0.5);*/
/*}*/

/* VIEW DETAILS 按钮样式调整 */
/*.home-product__btn {*/
/*  opacity: 0;*/
/*  transition: all .3s;*/
/*  background: #1A75BC;*/
/*}*/

.home-product__item--content:hover .home-product__btn {
  opacity: 1;
}


/* about */
.home-about {
  background-image: url(../assets/imgs/home/about-bg.png);
  background-size: cover;
  padding: 9.44rem 0 8.3rem 0;
  position: relative;
}

.home-about__content {
  width: 100%;
  position: relative;
  padding-bottom: 3.57rem;
}

#home-about__video {
  border-radius: 0 13rem 13rem 0;
  width: 100%;
  position: relative;
}

.home-about__video--bg {
  width: 78%;
}

#home-about__video--play {
  position: absolute;
  z-index: 3;
  top: 40%;
  left: 20%;
  cursor: pointer;
  width: 8.19rem;
}

#home-about__video--content {
  background-color: #FFF;
  padding: 2rem;
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 2px 12px #0000002d;
  border-radius: 0.5rem;
  z-index: 4;
  display: none;
  margin: 0 auto;
  /* width: 90%; */
}

#home-about__video--close {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  cursor: pointer;
}

.home-about__info {
  position: absolute;
  width: 54%;
  right: 2.55%;
  top: 13rem;
  background-image: url(../assets/imgs/home/about-info-bg.png);
  background-size: cover;
  padding: 8.06rem 2.2rem 6.87rem 4.63rem;
}

.home-about__info>h1 {
  text-align: left;
  margin: 0;
}

.home-about__info p {
  font-size: 1.56rem;
  color: #252525;
  line-height: 1.99rem;
}

.home-about__info>p {
  margin: 2.25rem 0 2.88rem 0;

  text-wrap: wrap;
}

.home-about__data {
  display: flex;
  margin-bottom: 5rem;
}

.home-about__data h1 {
  margin-bottom: 1.5rem;
  text-align: left;
  font-weight: 400;
}

.home-about__data span {
  font-size: 2.63rem;
}

.home-about__data li {
  width: 33.3%;
}

.home-about__data p {
  font-size: 1.04rem;
}

.xgplayer .xgplayer-start {
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  padding: 1rem;
  width: 8.13rem;
  height: 8.13rem;
  left: 23.8%;
  transform: translateX(0);
}

.xgplayer xg-start-inner {
  background: transparent;
  border: 2px solid #FFFFFF;
}


/* news */
.home-news {
  width: 100%;
  height: 64.31rem;
  position: relative;
}

.home-news img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 0;
}

.home-news__content {
  position: relative;
  z-index: 5;
  margin-left: 7.4%;
  margin-right: 7.4%;
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.home-news__list {
  overflow: hidden;
}

.home-news__item {
  width: 31.8rem;
  height: 31.8rem;
  background: #FFFFFF;
  border-radius: 0.94rem;
  border: 1px solid #939597;
  padding: 1.75rem 1.5rem;
  margin: 4.44rem 1.5rem 0rem 1.5rem;
  cursor: pointer;
  transition: all .2s;
}

.home-news__item:hover {
  background-image: url(../assets/imgs/home/new-img.png);
  background-size: cover;
  transform: translateY(-4.44rem);
  border: 0px solid #939597;
}

.home-news__item:hover .home-news__hover {
  background-image: url(../assets/imgs/home/news-bg2.png);
  background-size: cover;
  margin: -1.75rem -1.5rem;
}

.home-news__item:hover .home-news__num {
  color: #FFFFFF;
  padding-left: 2rem;
  padding-top: 2rem;
}

.home-news__item:hover .home-news__date {
  color: #FFFFFF;
  padding-top: 1.5rem;
  padding-left: 1.5rem;
}

.home-news__item:hover img,
.home-news__item:hover .home-news__des,
.home-news__item:hover .home-news__line,
.home-news__item:hover .home-news__title {
  opacity: 0;
}


.home-news__hover {
  width: 9.13rem;
  height: 9.63rem;
}

.home-news__num {
  margin-left: 1rem;
  /* width: 3.13rem; */
  height: 2.5rem;
  font-weight: bold;
  font-size: 3.38rem;
  color: #939597;
  line-height: 2.1rem;
}

.home-news__date {
  margin-top: 2.5rem;
  /* width: 6.13rem; */
  height: 1.31rem;
  font-family: Arial;
  font-weight: 400;
  font-size: 1.69rem;
  color: #939597;
  line-height: 2.1rem;
}

.home-news__title {
  margin-top: 5rem;
  /* width: 18.25rem; */
  height: 1.63rem;
  font-family: Arial;
  font-weight: bold;
  font-size: 1.69rem;
  color: #000000;
  line-height: 2.1rem;
}

.home-news__line {
  margin-top: 1.25rem;
  width: 7.23rem;
  height: 0.16rem;
  background: #8DC73F;
}

.home-news__des {
  margin-top: 1.5rem;
  width: 28.5rem;
  height: 4.31rem;
  font-family: Arial;
  font-weight: 400;
  font-size: 1.18rem;
  color: #939597;
  line-height: 1.69rem;
}

.home-news__item img {
  margin-top: 1.94rem;
  width: 2.88rem;
  height: 1.63rem;
}

.home-news__swiper {
  visibility: hidden;
}
.home-news__swiper-pagination {
  margin-top: 4.31rem;
  left: 50%;
  transform: translateX(-50%);
}

.home-news__swiper-pagination .swiper-pagination-bullet {
  width: 0.57rem;
  height: 0.56rem;
  border-radius: 50%;
  margin: 0 0.47rem;
  background: #939597;

}

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


/* contact */
.home-contact {
  width: 100%;
  height: 44.5rem;
  display: flex;
}

.home-contact__img {
  width: 69.32%;
  height: 100%;
}

.home-contact__icon img,
.home-contact__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-contact__content {
  width: 30.68%;
  height: 100%;
}

.home-contact__list {
  margin: 2rem 3rem;
}

.home-contact__icon {
  width: 2.56rem;
  height: 2.31rem;
}

.home-contact__title {
  margin-top: 1.69rem;
  width: 28.19rem;
  font-weight: bold;
  font-size: 2.08rem;
  color: #252525;
  line-height: 2.34rem;
}

.home-contact__items {
  margin-top: 1.63rem;
  display: flex;
}

.home-contact__item {
  width: 50%;
  height: 1rem;
  display: flex;
  align-items: center;
}

.home-contact__item img {
  width: 1.3rem;
  height: 1.2rem;
  object-fit: cover;
}

.home-contact__item span {
  margin: 0 1rem;
  font-size: 1.17rem;
  color: #252525;
  line-height: 1.4rem;
}

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

.home-contact__table p {
  height: 1rem;
  font-size: 1.3rem;
  color: #252525;
  line-height: 1.17rem;
}

.home-contact__table input {
  padding: 0 1rem;
  width: 30.56rem;
  height: 2.31rem;
  outline: none;
  margin-top: 0.69rem;
  margin-bottom: 1.56rem;
  background: #E6E6E6;
  border-radius: 0.31rem;
  border: 1px solid #ccc;
  /* display: flex;
  align-items: center; */
  font-family: Arial;
  font-weight: 400;
  font-size: 0.95rem;
  color: #AAAAAA;
  line-height: 1.17rem;

}

.home-contact__table textarea {
  outline: none;
  padding: 0.6rem 1rem;
  width: 30.56rem;
  height: 7.81rem;
  margin-top: 0.69rem;
  margin-bottom: 1.56rem;
  background: #E6E6E6;
  border-radius: 0.31rem;
  border: 1px solid #ccc;
  font-family: Arial;
  font-weight: 400;
  font-size: 0.95rem;
  color: #AAAAAA;
  line-height: 1.17rem;
}

.home-contact__table input::placeholder,
.home-contact__table textarea::placeholder {
  color: #AAAAAA;
}

.home-contact__button {
  margin-top: 0.6rem;
  width: 11.38rem;
  height: 2.5rem;
  background: #8DC73F;
  border-radius: 0.63rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.95rem;
  color: #FFFFFF;
  line-height: 1.17rem;
  transition: all .2s;
}

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

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

/* service */
.home-service {
  background-image: url(../assets/imgs/home/service-bg.png);
  background-size: cover;
  width: 100%;
  height: 48rem;
  position: relative;

  overflow-x: hidden;
}

.home-service__content {

  
  position: relative;
  /* width: var(--bs-screen-xxl);
  margin: 0 auto; */
  display: flex;
  height: 48rem;
  width: 100%;
}

.home-service__info {
  width: 44%;
  position: absolute;
  top: 27%;
  left: 7%;
  /* transform: translateY(27%); */
}

.home-service__info h1 {
  text-align: left;
  margin: 0;
}

.home-service__info p {
  margin: 3.8rem 0 7.12rem 0;
  width: 90%;
}


.home-service__tags {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-image: url(../assets/imgs/home/service-chose.png);
  background-size: cover;
  /* position: relative; */
}

.home-service__circle {
  width: 2rem;
  height: 2rem;
  /*background: rgba(0, 0, 0, 0.62);*/
  border-radius: 50%;
  /* border: 0.6rem solid rgba(0, 0, 0, 0.62); */
  cursor: pointer;
  position: relative;
}

.home-service__circle::before {
  width: 0.8rem;
  height: 0.8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  /*background-color: #FFF;*/
  transform: translate(-50%, -50%);
  content: '';
  display: block;
  border-radius: 50%;
  transition: all .2s;
}


.home-service__tag {
  position: absolute;
  width: fit-content;
}

.home-service__tag-content:before {
  position: absolute;
  content: '';
  left: 30%;
  top: -1.4rem;
  width: 1.5rem;
  height: 1.5rem;
  transform: rotate(270deg);
  background: linear-gradient(45deg, rgb(255, 255, 255), rgb(255, 255, 255) 50%, transparent 50%, transparent 100%);
}

.home-service__tag-content {
  display: flex;
  position: relative;

  padding: 0.64rem;

  background-color: #FFF;
  border-radius: 0.63rem;
}

.home-service__tag-info {
  padding-top: 1.5rem;
  /* display: flex; */
  display: none;
  width: 20rem;
  /* background-color: #FFF; */
  position: absolute;
  /* border-radius: 0.63rem; */
  transform: translateX(-38%);
  top: 1.5rem;
  z-index: 3;
}
.home-service__tag-info:last-child {
  transform: translateX(-50%);
}
.home-service__tag-info:last-child .home-service__tag-content::before {
  
  left: 45%;
}
.home-service__tag-info img {
  display: inline-block;
  width: 7.48rem;
  margin-right: 0.7rem;
}

.home-service__tag--right h3 {
  font-weight: bold;
  font-size: 1.03rem;
  color: #3484C3;
}

.home-service__tag-stars i {

  color: yellow;
}

.home-service__tag-info p {
  font-weight: 400;
  font-size: 0.77rem;
  color: #000000;
  line-height: 1.09rem;
}

.home-service__tag1 {
  top: 43%;
  left: 8%;
}

.home-service__tag2 {
  top: 31%;
  left: 17%;
}

.home-service__tag3 {
  top: 38%;
  left: 24%;
}

.home-service__tag4 {
  top: 48%;
  left: 33%;
}

.home-service__tag5 {
  top: 40%;
  left: 43%;
}

.home-service__tag6 {
  top: 27%;
  left: 60%;
}

.home-service__tag7 {
  top: 50%;
  left: 82%;
}

.home-service__circle:hover::before {
  background: #8DC73E;
}

.home-service__circle:hover .home-service__tag-info {
  display: flex;
}

/* 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(4) {
    position: absolute;
    left: 85%;
    top: 19rem;
    margin: 0;
    transform: rotate(90deg);
  }

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

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

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

  .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(360deg);
  }

  /* 使用 order 属性重新排序 */
  .home-step__list li:nth-child(1) { order: 1; }  /* 01 */
  .home-step__list li:nth-child(2) { order: 2; }  
  .home-step__list li:nth-child(3) { order: 3; }  /* 02 */
  .home-step__list li:nth-child(4) { order: 4; }  
  .home-step__list li:nth-child(7) { order: 5; }  /* 03 */
  .home-step__list li:nth-child(6) { order: 6; }  
  .home-step__list li:nth-child(5) { order: 7; }  /* 04 */
  .home-step__list li:nth-child(8) { order: 8; }  
  .home-step__list li:nth-child(11) { order: 15; } /* 08 */
  .home-step__list li:nth-child(10) { order: 14; }
  .home-step__list li:nth-child(9) { order: 13; }/* 07 */
  .home-step__list li:nth-child(12) { order: 12; }
  .home-step__list li:nth-child(13) { order: 11; }/* 06 */
  .home-step__list li:nth-child(14) { order: 10; }
  .home-step__list li:nth-child(15) { order: 9; } /* 05 */ 

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