.home {
  width: 100%;
  position: relative;
}
.home .header {
  position: fixed;
  height: 80px;
  background: white;
  box-shadow: 0px 0px 23px 6px rgba(66, 40, 6, 0.1);
  border-radius: 0px 40px 0px 40px;
  width: 70%;
  margin: 0 auto;
  left: 10%;
  transform: translateY(20px);
  padding: 0 5%;
  z-index: 1000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  transition: all 600ms;
}
.home .header .links {
  width: 65%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.home .header .links a {
  color: #333333;
  font-family: "SOURCEHANSANSCN-REGULAR";
  position: relative;
  transition: all 600ms;
}
.home .header .links a::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -28px;
  width: 0;
  height: 2px;
  background: #F67F00;
  transition: all 600ms;
}
.home .header .links a:hover {
  color: #F78001;
}
.home .header .links a:hover::after {
  width: 100%;
}
.home .header .links .active {
  color: #F78001;
}
.home .header .links .active::after {
  width: 100%;
}
.home .header .chose {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.home .header .chose .lan {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 30px;
  cursor: pointer;
}
.home .header .chose .lan p {
  color: #333333;
  font-family: "SOURCEHANSANSCN-REGULAR";
  margin-right: 15px;
}
.home .header .chose .search {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}
.home .header .chose .search::before {
  width: 1px;
  height: 15px;
  background: #727272;
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 2px;
}
.home .activeHeader {
  width: 90%;
  padding: 0 5%;
  border-radius: 0;
  left: 0;
  transform: translateY(0);
}
.home .container {
  width: 100%;
}
.home .container .banner {
  width: 100%;
  height: 150px;
}
.home .container .main {
  width: 70%;
  margin: 60px auto;
}
.home .container .main .navList {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.home .container .main .navList a {
  color: #333333;
  font-family: "SOURCEHANSANSCN-REGULAR";
  transition: all 600ms;
}
.home .container .main .navList a:hover {
  color: #F67F00;
}
.home .container .main .navList .active {
  color: #F67F00;
}
.home .container .main .content {
  width: 100%;
  margin: 60px auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  padding-bottom: 80px;
}
.home .container .main .content .bgPic {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.home .container .main .content .bgPic img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 100%;
  opacity: 0.2;
}
.home .container .main .content .left {
  width: 20%;
  position: relative;
}
.home .container .main .content .left .t1 {
  padding-top: 120px;
}
.home .container .main .content .left .t1 p:nth-child(1) {
  color: #333333;
  font-size: 40px;
  font-family: "Montserrat-Regular";
  font-weight: bolder;
  text-transform: uppercase;
}
.home .container .main .content .left .t1 p:nth-child(2) {
  color: #333333;
  font-size: 20px;
  font-family: "SOURCEHANSANSCN-REGULAR";
  position: relative;
  padding: 30px 0;
}
.home .container .main .content .left .t1 p:nth-child(2)::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #333333;
  position: absolute;
  left: 0;
  bottom: 0;
}
.home .container .main .content .left .prev {
  width: 38px;
  height: 38px;
  background: #EEEEEE;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #F67F00;
  position: absolute;
  left: 0;
  bottom: 10%;
  cursor: pointer;
  z-index: 1000;
  transition: all 600ms;
}
.home .container .main .content .left .prev i {
  font-size: 25px;
}
.home .container .main .content .left .prev:hover {
  background-color: #F67F00;
  color: white;
}
.home .container .main .content .left .next {
  width: 38px;
  height: 38px;
  background: #EEEEEE;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #F67F00;
  position: absolute;
  left: 60px;
  bottom: 10%;
  transform: rotateY(180deg);
  cursor: pointer;
  z-index: 1000;
  transition: all 600ms;
}
.home .container .main .content .left .next i {
  font-size: 25px;
}
.home .container .main .content .left .next:hover {
  background-color: #F67F00;
  color: white;
}
.home .container .main .content .allImgs {
  width: 70%;
  padding-top: 120px;
}
.home .container .main .content .allImgs .swiper-container {
  width: 100%;
  height: 900px;
  padding: 20px 0;
}
.home .container .main .content .allImgs .swiper-container .swiper-wrapper .swiper-slide .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 66%;
  margin: 0 auto;
  /*margin-top: 108px;*/
}
.home .container .main .content .allImgs .swiper-container .swiper-wrapper .swiper-slide .item .pic {
  width: 30%;
  overflow: hidden;
}
.home .container .main .content .allImgs .swiper-container .swiper-wrapper .swiper-slide .item .pic img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: all 600ms;
}
.home .container .main .content .allImgs .swiper-container .swiper-wrapper .swiper-slide .item .text {
  width: 60%;
  background: #FFFFFF;
  box-shadow: 0px 0px 35px 8px rgba(63, 63, 63, 0.1);
  border-radius: 0px 30px 30px 0px;
  padding: 20px 5%;
}
.home .container .main .content .allImgs .swiper-container .swiper-wrapper .swiper-slide .item .text .t1 {
  color: #333333;
  font-size: 18px;
  font-family: "SOURCEHANSANSCN-REGULAR";
  transition: all 600ms;
}
.home .container .main .content .allImgs .swiper-container .swiper-wrapper .swiper-slide .item .text .des {
  color: #333333;
  font-size: 14px;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.home .container .main .content .allImgs .swiper-container .swiper-wrapper .swiper-slide .item .time {
  position: absolute;
  right: -130px;
  top: 50%;
  transform: translateY(-50%);
  color: #333333;
  font-size: 18px;
  font-family: "Montserrat-Regular";
  transition: all 600ms;
}
.home .container .main .content .allImgs .swiper-container .swiper-wrapper .swiper-slide .item:hover .pic img {
  transform: scale(1.05);
}
.home .container .main .content .allImgs .swiper-container .swiper-wrapper .swiper-slide .item:hover .text .t1 {
  color: #F67F00;
}
.home .container .main .content .allImgs .swiper-container .swiper-wrapper .swiper-slide .item:hover .time {
  color: #F67F00;
}
.home .container .foot {
  width: 100%;
  background: url("/images/fbg.png") no-repeat;
  background-size: cover;
  padding: 60px 0;
}
.home .container .foot .dom0 {
  width: 75%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(243, 243, 243, 0.1);
  padding-bottom: 30px;
}
.home .container .foot .dom0 .icons {
  display: none;
  flex-direction: row;
  align-items: center;
}
.home .container .foot .dom0 .icons a {
  color: #c5c5c5;
  display: block;
  margin-left: 20px;
  cursor: pointer;
  transition: all 600ms;
}
.home .container .foot .dom0 .icons a i {
  font-size: 25px;
}
.home .container .foot .dom0 .icons a:hover {
  color: white;
}
.home .container .foot .dom1 {
  width: 73%;
  margin: 0 auto;
  padding: 60px 1% 80px 1%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid rgba(243, 243, 243, 0.1);
}
.home .container .foot .dom1 .links {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.home .container .foot .dom1 .links .item {
  text-align: left;
}
.home .container .foot .dom1 .links .item a {
  color: white;
  font-family: "SOURCEHANSANSCN-NORMAL";
}
.home .container .foot .dom1 .links .item .aList {
  display: block;
  margin-top: 20px;
}
.home .container .foot .dom1 .links .item .aList a {
  display: block;
  color: rgba(218, 218, 218, 0.8);
  font-size: 14px;
  font-family: "SOURCEHANSANSCN-LIGHT";
  margin-bottom: 10px;
  transition: all 600ms;
}
.home .container .foot .dom1 .links .item .aList a:hover {
  color: white;
}
.home .container .foot .dom2 {
  width: 75%;
  margin: 0 auto;
  border-top: 1px solid rgba(243, 243, 243, 0.1);
  padding: 30px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.home .container .foot .dom2 .code .pic {
  text-align: center;
}
.home .container .foot .dom2 .code .pic p {
  font-size: 14px;
  color: #DADADA;
  font-family: "SOURCEHANSANSCN-LIGHT";
  margin-top: 10px;
}
.home .container .foot .dom2 .r, .home .container .foot .dom2 a {
  color: rgba(255, 255, 255, 0.27);
  font-size: 14px;
  font-family: "SOURCEHANSANSCN-NORMAL";
  transition: all 600ms;
}
.home .container .foot .dom2 .r:hover, .home .container .foot .dom2 a:hover {
  color: white;
}
.home .container .foot .dom2 a {
  margin: 0 2px;
}
/*@media screen and (min-width: 2000px) {*/
/*  .home .container .main .content .allImgs .swiper-container .swiper-wrapper .swiper-slide .item .time {*/
/*    top: 35%;*/
/*  }*/
/*}*/
@media screen and (max-width: 1440px) {
  .home .container .main .content .allImgs .swiper-container {
    height: 500px;
  }
  /*.home .container .main .content .allImgs .swiper-container .swiper-wrapper .swiper-slide .item .time {*/
  /*  top: 58%;*/
  /*}*/
  .home .container .foot .dom0 {
    width: 80%;
  }
  .home .container .foot .dom1 {
    width: 80%;
  }
  .home .container .foot .dom2 {
    width: 80%;
  }
}
@media screen and (max-width: 1000px) {
  .home .header {
    display: none;
  }
  .home .container .banner {
    height: 0;
  }
  .home .container .main {
    width: 90%;
  }
  .home .container .main .navList {
    width: 90%;
  }
  .home .container .main .content {
    width: 90%;
    padding: 0 5%;
    flex-direction: column;
  }
  .home .container .main .content .bgPic {
    display: none;
  }
  .home .container .main .content .left {
    width: 100%;
  }
  .home .container .main .content .left .t1 {
    padding-top: 0;
  }
  .home .container .main .content .left .t1 p:nth-child(1) {
    font-size: 20px;
  }
  .home .container .main .content .left .t1 p:nth-child(2) {
    padding: 15px 0;
  }
  .home .container .main .content .left .prev {
    right: 60px;
    left: auto;
  }
  .home .container .main .content .left .next {
    right: 0;
    left: auto;
  }
  .home .container .main .content .allImgs {
    width: 100%;
    margin: 40px 0;
  }
  .home .container .main .content .allImgs .swiper-container {
    height: auto;
  }
  .home .container .main .content .allImgs .swiper-container .swiper-wrapper .swiper-slide .item {
    width: 100%;
    flex-direction: column;
  }
  .home .container .main .content .allImgs .swiper-container .swiper-wrapper .swiper-slide .item .pic {
    width: 100%;
  }
  .home .container .main .content .allImgs .swiper-container .swiper-wrapper .swiper-slide .item .text {
    width: 90%;
    border-radius: 0;
    padding: 30px 5%;
    box-shadow: none;
  }
  .home .container .main .content .allImgs .swiper-container .swiper-wrapper .swiper-slide .item .time {
    color: white;
  }
  .home .container .foot .dom1 {
    display: none;
  }
  .home .container .foot .dom2 {
    flex-direction: column;
    text-align: center;
  }
  .home .container .foot .dom2 .r {
    margin-top: 30px;
    line-height: 28px;
    display: flex;
    flex-wrap: wrap;
  }
  .home .container .foot .dom2 a {
    width: 100%;
  }
}

/*# sourceMappingURL=news.css.map */
<!--ºÄÊ±1775119946.9616Ãë-->