body .home {
  background: url(../images/nbg.png) no-repeat;
  background-size: 100% 100%;
  position: relative;
  overflow: hidden;
}
body .home .container .bg_sec {
  background: url(../images/1.png) no-repeat;
  background-size: cover;
}
body .home .container .sec1 {
  display: flex;
  justify-content: space-between;
  position: relative;
}
body .home .container .sec1 .bg1 {
  position: absolute;
  left: 0;
  bottom: 0;
}
body .home .container .sec1 .bg1 img {
  width: 62.5vw;
}
body .home .container .sec1 .lbox {
  padding: 7.96875vw 0 0 6.6666666667vw;
  position: relative;
  z-index: 2;
}
body .home .container .sec1 .lbox .nr {
  width: 27.2395833333vw;
}
body .home .container .sec1 .lbox .nr .en {
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.5;
}
body .home .container .sec1 .lbox .nr .cn {
  font-weight: 500;
  line-height: 1;
  margin: 0.625vw 0 2.0833333333vw 0;
}
body .home .container .sec1 .lbox .nr .des {
  color: #222;
  font-weight: 300;
  line-height: 1.5;
}
body .home .container .sec1 .rbox {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
body .home .container .sec1 .rbox img {
  width: 48.9583333333vw;
  height: 34.1666666667vw;
  object-fit: cover;
  transition: all 600ms;
}
body .home .container .sec1 .rbox:hover img {
  transform: scale(1.05);
}
body .home .container .sec2 {
  padding: 4.1666666667vw 6.25vw 6.25vw 6.25vw;
  position: relative;
}
body .home .container .sec2::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: url(../images/4.png) no-repeat;
  height: 17.7083333333vw;
  background-size: cover;
  z-index: -1;
}
body .home .container .sec2 .types {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  gap: 2.0833333333vw;
  line-height: 1;
}
body .home .container .sec2 .types span {
  color: #222;
  padding-bottom: 0.4166666667vw;
  position: relative;
  display: block;
  cursor: pointer;
}
body .home .container .sec2 .types span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #E72116;
  transition: all 600ms;
}
body .home .container .sec2 .types span:hover::after, body .home .container .sec2 .types span.on::after {
  width: 100%;
}
body .home .container .sec2 .boxs .box{display: none;}
body .home .container .sec2 .boxs .box.on {
  display: block;
}
body .home .container .sec2 .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.0833333333vw 1.5625vw;
  margin: 2.0833333333vw 0 6.5625vw 0;
}
body .home .container .sec2 .list a {
  display: block;
  position: relative;
  overflow: hidden;
}
body .home .container .sec2 .list a.v_box img{
  height: 100%;
}
body .home .container .sec2 .list a img {
  width: 100%;
  height: 28.125vw;
  object-fit: cover;
  transition: all 600ms;
}
body .home .container .sec2 .list a .text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0.4166666667vw;
}
body .home .container .sec2 .list a.v_box .text{
  opacity: .65;
}
body .home .container .sec2 .list a .text .info {
  background: #fff;
  padding: 1.0416666667vw;
}
body .home .container .sec2 .list a .text .info .tag {
  background: #000;
  padding: 0.625vw 1.0416666667vw;
  color: #FFF;
  line-height: 1.5;
  width: fit-content;
}
body .home .container .sec2 .list a .text .info .pt {
  margin: 1.0416666667vw 0 0.8333333333vw 0;
  display: flex;
  align-items: center;
  height: 3.75vw;
  line-height: 1.5;
  font-weight: 500;
}
body .home .container .sec2 .list a .text .info .time {
  color: #222;
  line-height: 1.5;
}
body .home .container .sec2 .list a:hover img {
  transform: scale(1.05);
}
body .home .container .sec2 .pager {
  text-align: center;
}
body .home .container .sec2 .pager .p1 {
  color: rgba(0, 0, 0, 0.6);
}
body .home .container .sec2 .pager .progress {
  width: 10.4166666667vw;
  height: 2px;
  background: rgba(34, 34, 34, 0.2);
  margin: 0.5729166667vw auto 1.25vw auto;
  position: relative;
}
body .home .container .sec2 .pager .progress span {
  width: 0.2604166667vw;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgb(34, 34, 34);
}
body .home .container .sec2 .pager .more {
  padding: 0.625vw 1.4583333333vw;
  background: #000;
  color: #FFF;
  line-height: 1;
  margin: 0 auto;
  cursor: pointer;
  width: fit-content;
  transition: all 600ms;
}
body .home .container .sec2 .pager .more:hover {
  background: #E72116;
}
@media screen and (max-width: 768px) {
  body .home .container .sec1 {
    flex-direction: column;
  }
  body .home .container .sec1 .bg1 img {
    width: 100%;
  }
  body .home .container .sec1 .lbox {
    padding: 20px 5%;
    width: 100%;
  }
  body .home .container .sec1 .lbox .nr {
    width: 100%;
  }
  body .home .container .sec1 .lbox .nr .cn {
    margin: 6px 0 20px 0;
  }
  body .home .container .sec1 .lbox .nr .des {
    font-size: 14px;
  }
  body .home .container .sec1 .rbox {
    width: 100%;
  }
  body .home .container .sec1 .rbox img {
    width: 100%;
    height: auto;
  }
  body .home .container .sec2 {
    padding: 20px 5% 60px 5%;
  }
  body .home .container .sec2::after {
    height: 150px;
    background-size: 100% 100%;
  }
  body .home .container .sec2 .types {
    gap: 20px;
    flex-wrap: wrap;
  }
  body .home .container .sec2 .types span {
    padding-bottom: 10px;
    font-size: 14px;
  }
  body .home .container .sec2 .list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 20px 0 60px 0;
  }
  body .home .container .sec2 .list a img {
    height: 300px;
  }
  body .home .container .sec2 .list a .text {
    padding: 8px;
  }
  body .home .container .sec2 .list a .text .info {
    padding: 10px;
  }
  body .home .container .sec2 .list a .text .info .tag {
    padding: 6px 10px;
  }
  body .home .container .sec2 .list a .text .info .pt {
    margin: 8px 0 6px 0;
    height: 48px;
    font-size: 16px;
  }
  body .home .container .sec2 .pager .progress {
    width: 200px;
    margin: 11px auto 24px auto;
  }
  body .home .container .sec2 .pager .more {
    padding: 10px 20px;
    font-size: 14px;
  }
}

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