body .home {
  background: linear-gradient(180deg, #000D1E 0%, #072031 100%);
}

body .home .section {
  padding: 5.7291666667vw 8.3333333333vw;
}

body .home .section .dt {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body .home .section .dt h1 {
  color: #FFF;
  font-weight: 600;
  text-transform: uppercase;
}

body .home .section .dt .tags {
  display: flex;
  align-items: center;
}

body .home .section .dt .tags .item {
  border-radius: 50px;
  border: 1px solid #FFF;
  padding: 1.0416666667vw 1.5625vw;
  color: #FFF;
  font-weight: 600;
  letter-spacing: 0.6px;
  line-height: 1.5;
  cursor: pointer;
  transition: all 600ms;
}

body .home .section .dt .tags .item:first-child {
  margin-right: 1.3541666667vw;
}

body .home .section .dt .tags .item:hover {
  background: rgba(255, 255, 255, 0.4);
}

body .home .section .dt .tags .item.on {
  background: #fff;
  color: #000;
}

body .home .section .list {
  margin: 3.5416666667vw 0 2.6041666667vw 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5625vw 0.9375vw;
}

body .home .section .list a {
  display: block;
  width: 100%;
  border-radius: 20px;
  border: 1px solid #02D1FF;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
}

body .home .section .list a .pic {
  padding: 5.3645833333vw 0 2.7083333333vw 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.53);
  background: rgba(255, 255, 255, 0.06);
}

body .home .section .list a .pic img {
  object-fit: contain;
  transition: all 600ms;
  height:11.375vw;
  max-width: 90%;
}

body .home .section .list a .text {
  padding: 2.7083333333vw 2.1875vw 2.1875vw 2.1875vw;
  color: white;
  transition: all 600ms;
  border-radius: 0 0 18px 18px;
  flex: 1;
}

body .home .section .list a .text .pt {
  line-height: 1.4;
  height: 3.90625vw;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

body .home .section .list a .text .des {
  opacity: .8;
  line-height: 1.3;
  margin: 1.0416666667vw 0 1.5625vw 0;
  /*height: 4.3229166667vw;*/
  /*text-overflow: ellipsis;*/
  /*display: -webkit-box;*/
  /*-webkit-box-orient: vertical;*/
  /*-webkit-line-clamp: 3;*/
  /*overflow: hidden;*/
  transition: all 600ms;
}

body .home .section .list a .text .size {
  opacity: .63;
  line-height: 1.5;
  transition: all 600ms;
}

body .home .section .list a:hover .pic img {
  transform: scale(1.05);
}

body .home .section .list a:hover .text {
  background: #fff;
  color: #021122;
}

body .home .section .list a:hover .text .des {
  color: #212E3E;
}

body .home .section .list a:hover .text .size {
  color: #021021;
  opacity: 1;
}

body .home .section .pager {
  display: flex;
  justify-content: center;
}

body .home .section .pager a {
  width: 2.0833333333vw;
  height: 2.0833333333vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 0.78125vw;
  transition: all 600ms;
}

body .home .section .pager a svg {
  width: 100%;
  height: 100%;
  display: block;
}

body .home .section .pager a.on,
body .home .section .pager a:hover {
  background: #fff;
  color: #0B1E30;
}

body .home .section .pager .next {
  transform: rotateY(180deg);
}

body .home .section .pager .prev,
body .home .section .pager .next {
  opacity: .4;
  transition: all 600ms;
}

body .home .section .pager .prev:hover,
body .home .section .pager .next:hover {
  opacity: 1;
  background: transparent;
}

@media screen and (max-width: 768px) {
  body .home .section {
    padding: 30px 5% 0 5%;
  }

  body .home .section .dt {
    display: block;
  }

  body .home .section .dt .tags {
    display: block;
  }

  body .home .section .dt .tags .item {
    padding: 10px 15px;
    width: 100%;
    text-align: center;
  }

  body .home .section .dt .tags .item:first-child {
    margin: 15px 0;
  }

  body .home .section .list {
    display: block;
    margin: 34px 0 25px 0;
  }

  body .home .section .list a {
    margin-bottom: 20px;
  }

  body .home .section .list a .pic {
    padding: 50px 0 26px 0;
  }

  body .home .section .list a .pic img {
    height: 160px;
  }

  body .home .section .list a .text {
    padding: 20px 15px;
  }

  body .home .section .list a .text .pt {
    height: auto;
  }

  body .home .section .list a .text .des {
    height: auto;
    margin: 10px 0 15px 0;
    font-size: 14px;
  }

  body .home .section .list a .text .size {
    font-size: 14px;
  }

  body .home .section .pager a {
    width: 30px;
    height: 30px;
    margin: 0 7px;
  }
}

/*# sourceMappingURL=products.css.map */