.home .container {
  padding: 13.3854166667vw 0 0 0;
}
.home .container .sec1 {
  padding: 0 15.8333333333vw 5.7291666667vw 14.2708333333vw;
}
.home .container .sec1 .tags {
  display: flex;
  gap: 1.3020833333vw;
  color: #003D96;
}
.home .container .sec1 .t {
  margin: 0.8333333333vw 0 3.125vw 0;
  font-weight: 700;
  line-height: 1.6;
}
.home .container .sec1 .html {
  color: #282828;
}
.home .container .sec1 .html img {
  width: auto !important;
}
.home .container .sec1 .pager {
  display: flex;
  justify-content: space-between;
  margin-top: 4.53125vw;
  border-top: 1px solid #E6E6E6;
  padding-top: 3.3333333333vw;
  align-items: center;
}
.home .container .sec1 .pager .prev,
.home .container .sec1 .pager .next {
  color: #003D96;
  font-weight: 700;
  line-height: 1.7;
  width: 21.875vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.home .container .sec1 .pager .next {
  text-align: right;
}
.home .container .sec1 .pager .back {
  padding: 1.0416666667vw 3.125vw;
  border-radius: 74px;
  background: #003D96;
  color: white;
  font-weight: 700;
}
.home .container .sec2 {
  background: #F2F2F2;
  padding: 5.7291666667vw 13.8020833333vw;
}
.home .container .sec2 .t {
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.5625vw;
  text-align: center;
}
.home .container .sec2 .news {
  width: 100%;
  position: relative;
}
.home .container .sec2 .news .prev {
  position: absolute;
  left: -6.25vw;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
}
.home .container .sec2 .news .prev svg {
  display: block;
  width: 0.8854166667vw;
}
.home .container .sec2 .news .prev svg path {
  transition: all 600ms;
}
.home .container .sec2 .news .prev:hover svg path {
  stroke: #003D96;
}
.home .container .sec2 .news .next {
  position: absolute;
  right: -6.25vw;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
}
.home .container .sec2 .news .next svg {
  display: block;
  width: 0.8854166667vw;
}
.home .container .sec2 .news .next svg path {
  transition: all 600ms;
  stroke: #000;
}
.home .container .sec2 .news .next:hover svg path {
  stroke: #003D96;
}
.home .container .sec2 .news .swiper1 {
  width: 100%;
  overflow: hidden;
}
.home .container .sec2 .news .swiper1 a {
  display: block;
  width: 100%;
  border-radius: 1.0416666667vw;
  background: #fff;
  overflow: hidden;
}
.home .container .sec2 .news .swiper1 a .pic {
  overflow: hidden;
}
.home .container .sec2 .news .swiper1 a .pic img {
  width: 100%;
  height: 10.15625vw;
  display: block;
  object-fit: cover;
  transition: all 600ms;
}
.home .container .sec2 .news .swiper1 a .text {
  padding: 1.5625vw 1.8229166667vw;
}
.home .container .sec2 .news .swiper1 a .text .time {
  color: #888;
  line-height: 1.5;
}
.home .container .sec2 .news .swiper1 a .text .pt {
  color: #282828;
  font-weight: 500;
  line-height: 1.4;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  height: 5.1041666667vw;
  margin-top: 0.5208333333vw;
}
.home .container .sec2 .news .swiper1 a .text .btn {
  margin-top: 2.96875vw;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 1.5625vw;
  display: flex;
  align-items: center;
  gap: 0.4166666667vw;
  color: #0C1629;
  line-height: 1.875;
  position: relative;
}
.home .container .sec2 .news .swiper1 a .text .btn::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 1px;
  background: #003D96;
  transition: all 600ms;
}
.home .container .sec2 .news .swiper1 a .text .btn img {
  width: 0.3645833333vw;
}
.home .container .sec2 .news .swiper1 a:hover .pic img {
  transform: scale(1.05);
}
.home .container .sec2 .news .swiper1 a:hover .text .btn::before {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .home .container {
    padding: 80px 0 0 0;
  }
  .home .container .sec1 {
    padding: 0 5% 40px 5%;
  }
  .home .container .sec1 .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .home .container .sec1 .t {
    margin: 20px 0;
    font-size: 18px;
  }
  .home .container .sec1 .html {
    color: #282828;
    line-height: 1.6;
  }
  .home .container .sec1 .html img {
    width: 100% !important;
    height: auto;
    margin: 15px 0;
  }
  .home .container .sec1 .pager {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
    border-top: 1px solid #E6E6E6;
    padding-top: 30px;
    align-items: stretch;
  }
  .home .container .sec1 .pager .prev,
  .home .container .sec1 .pager .next {
    color: #003D96;
    font-weight: 700;
    line-height: 1.7;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
  }
  .home .container .sec1 .pager .next {
    text-align: left;
    order: 2;
  }
  .home .container .sec1 .pager .back {
    padding: 12px 30px;
    border-radius: 37px;
    background: #003D96;
    color: white;
    font-weight: 700;
    text-align: center;
    font-size: 14px;
    order: 3;
  }
  .home .container .sec2 {
    background: #F2F2F2;
    padding: 30px 5%;
  }
  .home .container .sec2 .t {
    margin-bottom: 15px;
  }
  .home .container .sec2 .news {
    width: 100%;
    position: relative;
  }
  .home .container .sec2 .news .prev svg,
  .home .container .sec2 .news .next svg {
    width: 12px;
  }
  .home .container .sec2 .news .prev {
    left: -10px;
  }
  .home .container .sec2 .news .next {
    right: -10px;
  }
  .home .container .sec2 .news .swiper1 {
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
  }
  .home .container .sec2 .news .swiper1 a {
    border-radius: 12px;
  }
  .home .container .sec2 .news .swiper1 a .pic img {
    height: 180px;
  }
  .home .container .sec2 .news .swiper1 a .text {
    padding: 20px 15px;
  }
  .home .container .sec2 .news .swiper1 a .text .time {
    font-size: 12px;
  }
  .home .container .sec2 .news .swiper1 a .text .pt {
    height: 45px;
    -webkit-line-clamp: 2;
    margin-top: 8px;
    font-size: 16px;
  }
  .home .container .sec2 .news .swiper1 a .text .btn {
    margin-top: 20px;
    padding-top: 15px;
    font-size: 14px;
  }
  .home .container .sec2 .news .swiper1 a .text .btn img {
    width: 6px;
  }
}

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