body .home .top1 {
  position: fixed;
  right: 4.0625vw;
  bottom: 20%;
  z-index: 50;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 600ms;
}

body .home .top1.on {
  opacity: 1;
  pointer-events: inherit;
}

body .home .top1 img {
  width: 3.6458333333vw;
}

body .home .container {
  padding: 7.65625vw 15.625vw 9.375vw 15.625vw;
  border-radius: 3.6458333333vw 3.6458333333vw 0 0;
  background: #FFF;
  margin-top: -6.25vw;
  z-index: 10;
  position: relative;
}

body .home .container .list {
  margin: 3.6458333333vw 0 4.6875vw 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.21875vw 3.3854166667vw;
}

body .home .container .list .item {
  width: 100%;
  cursor: pointer;
}

body .home .container .list .item .pic {
  width: 100%;
  border-radius: 1.0416666667vw;
  position: relative;
  overflow: hidden;
}

body .home .container .list .item .pic img {
  height: 21.7708333333vw;
  border-radius: 1.0416666667vw;
  width: 100%;
  object-fit: cover;
  transition: all 600ms;
}

body .home .container .list .item .pic .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

body .home .container .list .item .pic .play img {
  width: 2.6041666667vw;
  height: 2.6041666667vw;
}

body .home .container .list .item p {
  margin-top: 0.6770833333vw;
  color: #323232;
  text-align: center;
}

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

body .home .container .more {
  display: flex;
  width: 6.9270833333vw;
  height: 2.1354166667vw;
  justify-content: center;
  align-items: center;
  gap: 0.5208333333vw;
  border-radius: 1.5625vw;
  border: 1px solid #1D2088;
  margin: 0 auto;
  color: #1D2088;
  cursor: pointer;
  transition: all 600ms;
}

body .home .container .more:hover {
  background: #1D2088;
  color: #fff;
}

@media screen and (max-width: 768px) {
  body .home .top1 {
    right: 5%;
  }

  body .home .top1 img {
    width: 35px;
  }

  body .home .container {
    padding: 40px 5%;
    margin-top: -60px;
    border-radius: 35px 35px 0 0;
  }

  body .home .container .tabs {
    margin-bottom: 30px;
  }

  body .home .container .list {
    margin: 35px 0 40px 0;
    /* grid-template-columns: repeat(1, 1fr); */
    /* gap: 30px; */
  }

  body .home .container .list .item .pic {
    border-radius: 15px;
  }

  body .home .container .list .item .pic img {
    height: 190px;
    border-radius: 15px;
  }

  body .home .container .list .item .pic .play img {
    width: 50px;
    height: 50px;
  }

  body .home .container .list .item p {
    margin-top: 15px;
  }

  body .home .container .more {
    width: 120px;
    height: 35px;
    gap: 5px;
    border-radius: 20px;
  }
}

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