.home .banner {
  width: 100%;
  position: relative;
}
.home .banner video {
  display: block;
  object-fit: cover;
  width: 100%;
  max-height: 85vh;
}
.home .types {
  display: flex;
  justify-content: center;
  background: #F7F7F7;
}
.home .types a {
  display: block;
  color: #666666;
  font-size: 22px;
  position: relative;
  padding: 20px 0;
  margin: 0 40px;
}
.home .types a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  transition: all 600ms;
  height: 2px;
  background: #95251D;
}
.home .types a:hover::after {
  width: 100%;
}
.home .types .active::after {
  width: 100%;
}
.home .main .section1 {
  width: 84vw;
  margin: 5vw auto;
}
.home .main .section1 .t {
  display: flex;
  align-items: center;
}
.home .main .section1 .t p {
  font-size: 2.3vw;
  margin-left: 20px;
}
.home .main .section1 .two {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
.home .main .section1 .two a {
  display: block;
  position: relative;
  width: 48%;
  overflow: hidden;
}
.home .main .section1 .two a .bg {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: all 600ms;
}
.home .main .section1 .two a .nr {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 80%;
}
.home .main .section1 .two a .nr .t1 {
  display: flex;
  justify-content: space-between;
  color: white;
}
.home .main .section1 .two a .nr .t1 .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home .main .section1 .two a .nr .t1 .icon img {
  display: block;
  margin-top: 20px;
}
.home .main .section1 .two a .nr .t1 .text {
  width: calc(98% - 50px);
}
.home .main .section1 .two a .nr .t1 .text .p1 {
  font-size: 2.5vw;
}
.home .main .section1 .two a .nr .t1 .text .p2 {
  margin: 15px 0;
  font-size: 1.4vw;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.home .main .section1 .two a .nr .t1 .text .des {
  font-size: 1.1vw;
  line-height: 1.6;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.home .main .section1 .two a .nr .more {
  width: 194px;
  background: #90251c;
  text-align: center;
  line-height: 55px;
  color: white;
  font-size: 1.2vw;
  margin-top: 100px;
}
.home .main .section1 .two a:hover .bg {
  transform: scale(1.05);
}
.home .main .section2 {
  padding: 60px 8vw 8vw 8vw;
  background: url("../images/nbg2.png") no-repeat;
  background-size: cover;
}
.home .main .section2 .t {
  display: flex;
  align-items: center;
}
.home .main .section2 .t p {
  font-size: 2.3vw;
  margin-left: 20px;
}
.home .main .section2 .d1 {
  width: 100%;
  background: url("../images/dbg.png") no-repeat;
  background-size: cover;
  display: flex;
  justify-content: space-evenly;
  padding: 40px 0;
  margin: 50px 0;
}
.home .main .section2 .d1 .item {
  display: flex;
  align-items: center;
}
.home .main .section2 .d1 .item .text {
  margin-left: 30px;
}
.home .main .section2 .d1 .item .text .p1 {
  font-size: 3vw;
  color: white;
}
.home .main .section2 .d1 .item .text .p2 {
  font-size: 18px;
  color: white;
  font-weight: lighter;
  margin-top: 10px;
}
.home .main .section2 .list {
  width: 100%;
  margin: 40px 0;
}
.home .main .section2 .list a {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.home .main .section2 .list a .l {
  width: 27%;
  background: #8B211B;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 4%;
}
.home .main .section2 .list a .l .p1 {
  font-size: 32px;
  color: white;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.home .main .section2 .list a .l .line {
  width: 100%;
  height: 1px;
  margin: 30px 0;
  background: rgba(255, 255, 255, 0.39);
}
.home .main .section2 .list a .l .des {
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  line-height: 1.6;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.home .main .section2 .list a .l .more {
  margin-top: 80px;
  text-align: right;
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
}
.home .main .section2 .list a .pic {
  width: 65%;
  overflow: hidden;
}
.home .main .section2 .list a .pic img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 600ms;
}
.home .main .section2 .list a:hover .pic img {
  transform: scale(1.05);
}
.home .main .section2 .three {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.home .main .section2 .three a {
  display: block;
  width: calc(33% - 60px);
  background: white;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.16);
  padding: 30px;
  transition: all 600ms;
}
.home .main .section2 .three a .p1 {
  color: #333333;
  font-size: 22px;
  transition: all 600ms;
}
.home .main .section2 .three a .more {
  text-align: right;
  margin-top: 20px;
  color: #666666;
  font-size: 20px;
  transition: all 600ms;
}
.home .main .section2 .three a:hover {
  background: #95251D;
}
.home .main .section2 .three a:hover .p1, .home .main .section2 .three a:hover .more {
  color: white;
}
.home .main .section2 .three a:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home .main .section2 .three a:last-child .p2 {
  font-size: 36px;
  letter-spacing: 5px;
  color: #333333;
  transition: all 600ms;
}
.home .main .section2 .three a:last-child:hover {
  background: #95251D;
}
.home .main .section2 .three a:last-child:hover .p2 {
  color: white;
}
@media screen and (max-width: 1440px) {
  .home .main .section2 .list a .l .more {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .home .types {
    justify-content: space-evenly;
  }
  .home .types a {
    margin: 0;
    font-size: 14px;
  }
  .home .main .section1 {
    width: 90%;
  }
  .home .main .section1 .t img {
    width: 30px;
  }
  .home .main .section1 .t p {
    font-size: 20px;
  }
  .home .main .section1 .two {
    flex-direction: column;
  }
  .home .main .section1 .two a {
    width: 100%;
    margin-bottom: 20px;
  }
  .home .main .section1 .two a .nr .t1 .icon img {
    margin-top: 9px;
  }
  .home .main .section1 .two a .nr .t1 .text .p1 {
    font-size: 20px;
  }
  .home .main .section1 .two a .nr .t1 .text .p2 {
    font-size: 18px;
    margin: 10px 0;
  }
  .home .main .section1 .two a .nr .t1 .text .des {
    font-size: 14px;
  }
  .home .main .section1 .two a .nr .more {
    margin-top: 30px;
  }
  .home .main .section2 {
    padding: 30px 5%;
  }
  .home .main .section2 .t img {
    width: 30px;
  }
  .home .main .section2 .t p {
    font-size: 20px;
  }
  .home .main .section2 .d1 {
    flex-direction: column;
    margin: 25px 0;
  }
  .home .main .section2 .d1 .item {
    width: 100%;
    flex-direction: column;
    margin-bottom: 20px;
    text-align: center;
  }
  .home .main .section2 .d1 .item .text {
    margin-left: 0;
    margin-top: 20px;
  }
  .home .main .section2 .d1 .item .text .p1 {
    font-size: 20px;
  }
  .home .main .section2 .d1 .item .text .p2 {
    font-size: 16px;
  }
  .home .main .section2 .list {
    margin: 20px 0;
  }
  .home .main .section2 .list a {
    flex-direction: column-reverse;
    margin-bottom: 20px;
  }
  .home .main .section2 .list a .l {
    width: 90%;
    padding: 20px 5%;
  }
  .home .main .section2 .list a .l .p1 {
    font-size: 18px;
  }
  .home .main .section2 .list a .l .line {
    margin: 15px 0;
  }
  .home .main .section2 .list a .l .des {
    font-size: 16px;
  }
  .home .main .section2 .list a .pic {
    width: 100%;
  }
  .home .main .section2 .three {
    flex-direction: column;
  }
  .home .main .section2 .three a {
    width: 90%;
    padding: 30px 5%;
    margin-bottom: 20px;
  }
  .home .main .section2 .three a .p1 {
    font-size: 18px;
  }
  .home .main .section2 .three a .more {
    font-size: 16px;
  }
  .home .main .section2 .three a:last-child .p2 {
    font-size: 24px;
    letter-spacing: 3px;
  }
}

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