/*默认基本颜色*/
/*默认基本字体颜色*/
.banner {
  position: relative;
}
.banner .navigation-btn {
  border-radius: 50%;
  background-color: transparent;
  height: 50px;
  width: 50px;
  transition: opacity 0.3s;
  opacity: 0.6;
  display: -webkit-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  /* 09版 */
  -webkit-box-align: center;
  /* 12版 */
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  /* 09版 */
  -webkit-box-pack: center;
  /* 12版 */
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}
.banner .navigation-btn:after {
  font-size: 42px;
}
.banner .navigation-btn:hover {
  opacity: 1;
}
.banner .navigation-btn.swiper-button-next {
  right: 25px;
}
.banner .navigation-btn.swiper-button-prev {
  left: 25px;
}
.banner > .swiper-container {
  width: 100%;
  min-width: 1200px;
  overflow: hidden;
}
.banner > .swiper-container .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
  bottom: 40px;
}
.banner > .swiper-container .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets .swiper-pagination-bullet {
  height: 2px;
  width: 60px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  margin: 0 16px;
}
.banner > .swiper-container .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets .swiper-pagination-bullet:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 2px;
  background-color: #45b7ab;
  border-radius: 6px;
  width: 0;
}
.banner > .swiper-container .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: rgba(255, 255, 255, 0.6);
  position: relative;
}
.banner > .swiper-container .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  animation: mymove 3s infinite;
  -webkit-animation: mymove 3s infinite;
  /* Safari 和 Chrome */
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  /*Safari and Chrome*/
  width: 60px;
}
@keyframes mymove {
  from {
    width: 0px;
  }
  to {
    width: 60px;
  }
}
@-webkit-keyframes mymove {
  /*Safari and Chrome*/
  from {
    width: 0px;
  }
  to {
    width: 60px;
  }
}
.banner > .swiper-container .swiper-slide {
  overflow: hidden;
  text-align: center;
  font-size: 18px;
  background: #fff;
  min-width: 1200px;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.banner > .swiper-container .swiper-slide img {
  object-fit: contain;
  object-position: center;
  width: 100%;
}
.category-container {
  background-color: #6dc6bd;
  padding: 20px 0;
}
.category-container .category-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}
.category-container .category-list .cate-item {
  flex: 1;
}
.category-container .category-list .cate-item:last-child a .img {
  border-right-color: transparent;
}
.category-container .category-list .cate-item a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.category-container .category-list .cate-item a .img {
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 2px solid #ffffff;
}
.category-container .category-list .cate-item a .img img {
  max-height: 100%;
}
.category-container .category-list .cate-item a .title {
  margin-top: 6px;
  color: #ffffff;
  font-size: larger;
}
.star-products-container {
  margin-top: 90px;
}
.star-products-container .title {
  font-size: 24px;
  font-weight: 600;
  color: #646464;
}
.star-products-container .star-products-list {
  margin-top: 60px;
}
.star-products-container .star-products-list .star-product-item {
  transition: transform linear 0.2s;
  overflow: hidden;
}
.star-products-container .star-products-list .star-product-item .bg {
  background-image: url("/static/images/star_product_bg.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  border-radius: 6px;
  text-align: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.star-products-container .star-products-list .star-product-item .t1 {
  font-size: 18px;
}
.star-products-container .star-products-list .star-product-item .t2 {
  margin-top: 5px;
  font-size: 16px;
}
.star-products-container .star-products-list .star-product-item .space {
  flex: 1;
}
.star-products-container .star-products-list .star-product-item .img {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}
.star-products-container .star-products-list .star-product-item .img img {
  max-height: 100%;
  max-width: 100%;
}
.star-products-container .star-products-list .star-product-item:hover {
  transform: translateY(-10px);
}
.star-products-container .star-products-list .star-product-item:hover .bg {
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.3);
}
.star-products-container .star-products-list .star-product-item:hover a {
  background-color: rgba(109, 198, 189, 0.6);
}
.star-products-container .star-products-list .star-product-item:hover .t1,
.star-products-container .star-products-list .star-product-item:hover .t2 {
  color: #ffffff;
}
.star-products-container .star-products-list .star-product-item a {
  display: block;
  position: relative;
  text-align: center;
  height: 100%;
  width: 100%;
  padding: 10px;
  background-color: rgba(0, 0, 255, 0.03);
}
.cert-container {
  margin-top: 60px;
}
.cert-container .title {
  margin-left: 30px;
  font-size: 24px;
  font-weight: 600;
  color: #969696;
}
footer {
  margin-top: 200px;
}
html[device=mobile] .banner > .swiper-container {
  min-width: auto;
}
html[device=mobile] .banner > .swiper-container .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
  bottom: 10px;
}
html[device=mobile] .banner > .swiper-container .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets .swiper-pagination-bullet {
  height: 2px;
  width: 20px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  margin: 0 16px;
}
html[device=mobile] .banner > .swiper-container .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets .swiper-pagination-bullet:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 2px;
  background-color: #45b7ab;
  border-radius: 6px;
  width: 0;
}
html[device=mobile] .banner > .swiper-container .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: rgba(255, 255, 255, 0.6);
  position: relative;
}
html[device=mobile] .banner > .swiper-container .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  animation: mymove 3s infinite;
  -webkit-animation: mymove 3s infinite;
  /* Safari 和 Chrome */
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  /*Safari and Chrome*/
  width: 20px;
}
@keyframes mymove {
  from {
    width: 0px;
  }
  to {
    width: 20px;
  }
}
@-webkit-keyframes mymove {
  /*Safari and Chrome*/
  from {
    width: 0px;
  }
  to {
    width: 20px;
  }
}
html[device=mobile] .banner > .swiper-container .swiper-slide {
  min-width: auto;
}
html[device=mobile] .banner > .swiper-container .swiper-slide img {
  width: 100%;
}
html[device=mobile] .category-container {
  padding: 6px 0;
}
html[device=mobile] .category-container .category-list {
  justify-content: space-between;
}
html[device=mobile] .category-container .category-list .cate-item {
  padding: 5px 0;
  flex: 0 0 auto;
  width: 33.3%;
}
html[device=mobile] .category-container .category-list .cate-item .img {
  height: 40px;
}
html[device=mobile] .category-container .category-list .cate-item .title {
  font-size: 14px;
}
html[device=mobile] .category-container .category-list .cate-item:nth-child(3n) a .img {
  border-right-color: transparent;
}
html[device=mobile] .star-products-container {
  margin-top: 40px;
}
html[device=mobile] .star-products-container .title {
  text-align: center;
  font-size: 20px;
}
html[device=mobile] .star-products-container .star-products-list {
  margin-top: 20px;
}
html[device=mobile] .star-products-container .star-products-list .star-product-item a {
  padding: 5px;
}
html[device=mobile] .star-products-container .star-products-list .star-product-item .t1 {
  font-size: 14px;
}
html[device=mobile] .star-products-container .star-products-list .star-product-item .t2 {
  font-size: 12px;
}
html[device=mobile] .cert-container {
  margin-top: 30px;
}
html[device=mobile] .cert-container .title {
  margin-left: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #969696;
}
html[device=mobile] footer {
  margin-top: 60px;
}
html[lang=ar-sa][device=mobile] .category-container .category-list .cate-item a .img {
  border-right: none;
  border-left: 2px solid #ffffff;
}
html[lang=ar-sa][device=mobile] .category-container .category-list .cate-item:nth-child(3n) a .img {
  border-left-color: transparent!important;
}
/*# sourceMappingURL=home-index.css.map */