.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 .links {
  width: 100%;
  border-bottom: 1px solid #E5E5E5;
  padding: 15px 0;
  display: flex;
  flex-direction: row;
}
.home .container .main .links a, .home .container .main .links p {
  color: #333333;
  font-size: 14px;
  font-family: "SOURCEHANSANSCN-REGULAR";
  transition: all 600ms;
}
.home .container .main .links a:hover, .home .container .main .links p:hover {
  color: #F78001;
}
.home .container .main .content {
  margin: 60px auto;
}
.home .container .main .content .t1 {
  text-align: center;
  color: #333333;
  font-size: 26px;
  font-family: "SOURCEHANSANSCN-REGULAR";
}
.home .container .main .content .html {
  width: 80%;
  margin: 40px auto;
  color: #333333;
  font-size: 14px;
  font-family: "SOURCEHANSANSCN-LIGHT";
  line-height: 30px;
}
.home .container .main .content .html img {
  max-width: 100%;
  object-fit: contain;
  margin: 30px 0;
  height: auto;
}
.home .container .main .content .pager {
  border-top: 1px solid #E5E5E5;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 60px 0;
}
.home .container .main .content .pager .prev {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
}
.home .container .main .content .pager .prev span {
  display: block;
  width: 30px;
  height: 30px;
  background: #F4F4F5;
  text-align: center;
  line-height: 30px;
  transition: all 600ms;
}
.home .container .main .content .pager .prev p {
  margin: 0 20px;
  transition: all 600ms;
}
.home .container .main .content .pager .prev:hover span {
  background-color: #F67F00;
  color: white;
}
.home .container .main .content .pager .prev:hover p {
  color: #F67F00;
}
.home .container .main .content .pager .next {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
}
.home .container .main .content .pager .next span {
  display: block;
  width: 30px;
  height: 30px;
  background: #F4F4F5;
  text-align: center;
  line-height: 30px;
  transition: all 600ms;
  transform: rotateY(180deg);
}
.home .container .main .content .pager .next p {
  margin: 0 20px;
  transition: all 600ms;
}
.home .container .main .content .pager .next:hover span {
  background-color: #F67F00;
  color: white;
}
.home .container .main .content .pager .next:hover p {
  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 (max-width: 2000px) {
  .home .container .main .content .html {
    width: 90%;
  }
}
@media screen and (max-width: 1440px) {
  .home .container .main {
    width: 80%;
  }
  .home .container .main .content .html {
    width: 90%;
  }
  .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 .content {
    margin: 30px auto;
  }
  .home .container .main .content .t1 {
    font-size: 18px;
    line-height: 30px;
  }
  .home .container .main .content .html {
    width: 100%;
    margin: 20px auto;
  }
  .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%;
  }
  p {
    padding: 0 !important;
  }
  section {
    padding: 0 !important;
  }
}


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