.home {
  position: relative
}

.home .banner {
  position: relative;
  overflow: hidden
}

.home .banner img {
  width: 100%;
  display: block;
  object-fit: cover;
  animation: pic_big 8s forwards linear
}

.home .banner .text {
  left: 15.625vw;
  position: absolute;
  bottom: 10.72917vw
}

.home .banner .text h1 {
  color: white
}

.home .banner .text .tag {
  color: white;
  line-height: 1.56;
  margin-top: 1.14583vw
}

.home .types {
  background: #FFF;
  box-shadow: 0px 5px 9px 0px rgba(52, 94, 184, 0.2);
  padding: 0 15.625vw;
  z-index: 50
}

.home .types .items {
  display: flex
}

.home .types .items .item {
  width: 12.5vw;
  display: flex;
  justify-content: center
}

.home .types .items .item a {
  line-height: 3.75vw;
  position: relative;
  text-align: center
}

.home .types .items .item a::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 0;
  height: .10417vw;
  background: #313059;
  transition: all 600ms
}

.home .types .items .item.on a::after,
.home .types .items .item:hover a::after {
  width: 5.41667vw
}

.home .wrap {
  padding: 7.5vw 15.625vw;
  padding-bottom: 3.125vw
}

.home .wrap .section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.82292vw
}

.home .wrap .section a {
  display: block;
  width: 100%;
  border-radius: .9375vw;
  box-shadow: 0px 4px 3.125vw 0px rgba(0, 28, 85, 0.08)
}

.home .wrap .section a .pic {
  overflow: hidden;
  border-radius: .9375vw .9375vw 0 0
}

.home .wrap .section a .pic img {
  width: 100%;
  height: 11.92708vw;
  object-fit: cover;
  border-radius: .9375vw .9375vw 0 0;
  transition: all 600ms
}

.home .wrap .section a .text {
  border-radius: .9375vw;
  padding: 2.5vw 1.35417vw;
  margin-top: -1.5625vw;
  position: relative;
  z-index: 10;
  background: #fff
}

.home .wrap .section a .text .name {
  color: #12141D;
  font-weight: 700;
  line-height: 1.4;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 3.125vw
}

.home .wrap .section a .text .time {
  margin: 1.25vw 0;
  color: #8A8A8A;
  line-height: 1.25
}

.home .wrap .section a .text .des {
  color: #8A8A8A;
  line-height: 1.375;
  /* text-align: justify; */
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  height: 4.7vw
}

.home .wrap .section a .text .more {
  color: #313059;
  line-height: 1.25;
  margin-top: 1.51042vw
}

.home .wrap .section a:hover .pic img {
  transform: scale(1.05)
}

.home .wrap .showMore {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: fit-content;
  margin: 3.125vw auto 0 auto
}

.home .wrap .showMore p {
  color: #707481;
  transition: all 600ms
}

.home .wrap .showMore:hover p {
  color: #313059
}

.home .wrap .showMore img {
  margin-left: .52083vw;
  display: block;
  margin-top: -.26042vw
}
@media screen and (max-width: 1480px) {
  .home .wrap .section a .text .name{
    height: calc(2 * 1.4em);
  }
  .home .wrap .section a .text .des{
    height: calc(4 * 1.375em);
  }
}
@media screen and (max-width: 768px) {
  .home .banner img {
    height: 300px
  }

  .home .banner .text {
    left: 5%;
    bottom: 60px;
    width: 80%
  }

  .home .banner .text .tag {
    margin-top: 11px
  }

  .home .types {
    padding: 0 5%;
    top: 60px
  }

  .home .types .items .item {
    width: 120px
  }

  .home .types .items .item a {
    line-height: 36px
  }

  .home .types .items .item a::after {
    height: 2px
  }

  .home .types .items .item.on a::after,
  .home .types .items .item:hover a::after {
    width: 52px
  }

  .home .wrap {
    padding: 30px 5% 60px 5%
  }

  .home .wrap .section {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 0
  }

  .home .wrap .section a {
    border-radius: 15px
  }

  .home .wrap .section a .pic {
    border-radius: 15px 15px 0 0
  }

  .home .wrap .section a .pic img {
    height: 150px;
    border-radius: 15px 15px 0 0
  }

  .home .wrap .section a .text {
    border-radius: 15px;
    padding: 24px 13px
  }

  .home .wrap .section a .text .name {
    height: 50px
  }

  .home .wrap .section a .text .time {
    margin: 12px 0
  }

  .home .wrap .section a .text .des {
    height: 80px
  }

  .home .wrap .section a .text .more {
    margin-top: 15px
  }

  .home .wrap .showMore {
    margin: 30px auto 0 auto
  }

  .home .wrap .showMore img {
    margin-left: 5px;
    margin-top: -3px
  }
}