.home {
  width: 100%;
  overflow: hidden;
  -webkit-perspective: 2000px;
  perspective: 2000px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.home .top {
  position: fixed;
  right: 5%;
  bottom: 10%;
  z-index: 1000;
  cursor: pointer;
  transform: scale(1.5) translateY(40px);
  transition: all 600ms;
  opacity: 0;
}
.home .top i {
  color: #B3B3B3;
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 15px;
  transition: all 600ms;
  transform: translate(-50%, -55%);
}
.home .top:hover i {
  color: #E5042A;
}
.home .showTop {
  opacity: 1;
  transform: translateY(0) scale(1.5);
}
.home .nav {
  color: #37383a;
  vertical-align: baseline;
  position: fixed;
  z-index: 1000;
  height: 100vh;
  transition: all 700ms cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 25%;
  transform: translateX(280px);
  right: -25%;
  top: 0;
}
.home .nav .close {
  position: absolute;
  right: 30%;
  top: 10%;
  cursor: pointer;
}
.home .nav .close img {
  width: 30px;
}
.home .nav ul {
  position: absolute;
  top: 20%;
  overflow: hidden;
  height: 70%;
  margin: 0;
  padding: 0;
  list-style-type: none;
  left: 50px;
  width: calc( 100% - 100px );
  visibility: visible;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-style: normal;
  text-transform: none;
  font-size: 31px;
  line-height: 57px;
  letter-spacing: 0;
  color: #a2a2a2;
}
.home .nav ul li {
  -webkit-font-smoothing: antialiased;
  visibility: visible;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-style: normal;
  text-transform: none;
  line-height: 57px;
  letter-spacing: 0;
  color: #a2a2a2;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  margin-bottom: 10px;
  flex: 0 0 auto;
  display: block;
  position: relative;
  text-align: center;
  width: 100%;
  animation-delay: 200ms;
}
.home .nav ul li a {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  display: inline-block;
  line-height: inherit;
  font-size: 16px;
  transition: all 600ms;
}
.home .nav ul li a:hover {
  color: white;
}
.home .nav ul .active a {
  color: white;
}
.home .navShow {
  transform: translatex(0px);
  right: 0;
  background-color: black;
}
.home .header {
  width: 100%;
  background-color: #0E1215;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  transition: all 0.6s;
}
.home .header .dom1 {
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  align-items: center;
  padding: 30px 0;
}
.home .header .dom1 .r {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
}
.home .header .dom1 .r .lan {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.home .header .dom1 .r .lan p {
  color: white;
}
.home .header .dom1 .r .lan i {
  color: white;
  transform: rotate(-180deg);
}
.home .header .dom1 .r .lines {
  height: 30px;
  width: 20px;
  position: relative;
  margin-left: 10px;
  transform: translateY(3px);
}
.home .header .dom1 .r .lines span {
  display: inline-block;
  height: 1px;
  width: 20px;
  background-color: #fff;
  position: absolute;
  transition: 0.8s;
}
.home .header .dom1 .r .lines span:nth-child(1) {
  top: 5px;
  left: 0;
  animation: long 2s linear infinite;
}
.home .header .dom1 .r .lines span:nth-child(2) {
  left: 0;
  top: 12px;
  width: 15px;
  animation: long 2s linear infinite;
  animation-delay: 400ms;
}
.home .header .dom1 .r .lines span:nth-child(3) {
  left: 0;
  top: 19px;
  width: 10px;
  animation: long 2s linear infinite;
  animation-delay: 600ms;
}
@keyframes long {
  0% {
    width: 0;
  }
  25% {
    width: 10px;
  }
  50% {
    width: 20px;
  }
  75% {
    width: 10px;
  }
  100% {
    width: 0;
  }
}
.home .hcon {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  position: relative;
}
.home .hcon .banner {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.home .hcon .banner img {
  width: 100%;
  display: block;
  object-fit: cover;
  animation: big2 32s forwards linear;
}
@keyframes big2 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.home .hcon .banner .text {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
}
.home .hcon .banner .text .p1 {
  text-align: center;
  color: white;
  font-size: 38px;
  font-family: "SOURCEHANSANSCN-MEDIUM";
  animation-duration: 2s;
}
.home .hcon .banner .text .p2 {
  text-align: center;
  font-size: 18px;
  color: white;
  margin-top: 20px;
  animation-duration: 2s;
  animation-delay: 100ms;
}
.home .hcon .main {
  width: 100%;
  background-color: #EEEEF1;
  padding: 80px 0;
}
.home .hcon .main .navList {
  width: 70%;
  margin: 0 auto;
  padding: 35px 15%;
  display: flex;
  flex-direction: row;
}
.home .hcon .main .navList p, .home .hcon .main .navList a {
  color: #838383;
  font-size: 18px;
  margin-right: 40px;
}
.home .hcon .main .navList p {
  font-size: 22px;
  font-weight: 400;
  transform: translateY(-2px);
}
.home .hcon .main .navList a {
  transition: all 600ms;
}
.home .hcon .main .navList a:hover {
  color: #E60027;
}
.home .hcon .main .navList .active {
  color: #E60027;
}
.home .hcon .main .navList p {
  position: relative;
}
.home .hcon .main .navList p::after {
  position: absolute;
  right: -20px;
  top: 25%;
  height: 50%;
  width: 2px;
  background-color: #838383;
  content: "";
  display: inline-block;
}
.home .hcon .main .tt1 {
  width: 70%;
  margin: 60px auto;
  color: #101010;
  font-size: 42px;
  font-family: "SOURCEHANSANSCN-MEDIUM";
  text-align: center;
  border-top: 1px solid #E3E3E3;
  padding-top: 60px;
}
.home .hcon .main .intro {
  width: 50%;
  margin: 60px auto;
  text-align: center;
}
.home .hcon .main .intro .t1 {
  color: #101010;
  font-size: 24px;
  position: relative;
  padding-bottom: 15px;
}
.home .hcon .main .intro .t1::after {
  width: 87px;
  height: 1px;
  background-color: #373839;
  opacity: 0.2;
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.home .hcon .main .intro .t1::before {
  width: 26px;
  height: 1px;
  background-color: #E60027;
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.home .hcon .main .intro .des {
  color: #4B4B4B;
  font-size: 14px;
  line-height: 28px;
  margin: 40px 0;
}
.home .hcon .main .pics {
  width: 70%;
  margin: 60px auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
}
.home .hcon .main .pics .prev {
  position: absolute;
  left: 18%;
  bottom: 0;
  z-index: 1000;
  cursor: pointer;
}
.home .hcon .main .pics .prev i {
  color: #B3B3B3;
  position: absolute;
  left: 50%;
  font-size: 25px;
  top: 50%;
  transition: all 600ms;
  transform: translate(-50%, -55%) rotate(-90deg);
}
.home .hcon .main .pics .prev:hover i {
  color: #E5042A;
}
.home .hcon .main .pics .next {
  position: absolute;
  left: 24%;
  bottom: 0;
  z-index: 1000;
  cursor: pointer;
}
.home .hcon .main .pics .next i {
  color: #B3B3B3;
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 25px;
  transition: all 600ms;
  transform: translate(-50%, -55%) rotate(90deg);
}
.home .hcon .main .pics .next:hover i {
  color: #E5042A;
}
.home .hcon .main .pics .texts {
  width: 30%;
}
.home .hcon .main .pics .texts .t1 {
  color: #101010;
  font-size: 24px;
  position: relative;
  padding-bottom: 20px;
}
.home .hcon .main .pics .texts .t1::after {
  width: 261px;
  height: 1px;
  background-color: #373839;
  opacity: 0.1;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: inline-block;
}
.home .hcon .main .pics .texts .t1::before {
  width: 26px;
  height: 1px;
  background-color: #E60027;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: inline-block;
}
.home .hcon .main .pics .texts .des {
  color: #101010;
  font-size: 14px;
  line-height: 31px;
  margin-top: 40px;
}
.home .hcon .main .pics .right {
  width: 65%;
}
.home .hcon .main .pics .right .swiper-container {
  width: 100%;
}
.home .hcon .main .pics .right .swiper-container .swiper-wrapper .swiper-slide .item {
  width: 100%;
  overflow: hidden;
}
.home .hcon .main .pics .right .swiper-container .swiper-wrapper .swiper-slide .item img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: all 600ms;
}
.home .hcon .main .pics .right .swiper-container .swiper-wrapper .swiper-slide .item:hover img {
  transform: scale(1.05);
}
.home .hcon .main .table {
  width: 70%;
  margin: 60px auto;
  padding-top: 100px;
}
.home .hcon .main .table .t1 {
  color: #101010;
  font-size: 24px;
  position: relative;
  padding-bottom: 20px;
}
.home .hcon .main .table .t1::after {
  width: 100%;
  height: 1px;
  background-color: #373839;
  opacity: 0.1;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: inline-block;
}
.home .hcon .main .table .t1::before {
  width: 51px;
  height: 1px;
  background-color: #E60027;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: inline-block;
}
.home .hcon .main .table .texts {
  width: 40%;
  margin: 40px 0;
}
.home .hcon .main .table .texts .item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.home .hcon .main .table .texts .item span {
  display: inline-block;
  width: 33.3%;
  padding: 20px 0;
  text-indent: 20px;
  color: #4B4B4B;
  font-size: 14px;
  border-bottom: 1px solid #DADADA;
  border-right: 1px solid #DADADA;
}
.home .hcon .main .table .texts .item span:last-child {
  border-right: none;
}
.home .hcon .main .table .texts .item:nth-child(1) {
  background: #41464B;
  box-shadow: 4px 11px 21px 0px rgba(147, 147, 147, 0.25);
}
.home .hcon .main .table .texts .item:nth-child(1) span {
  color: white;
  font-size: 16px;
}
.home .hcon .main .table .texts .item:nth-child(1) span:nth-child(2) {
  border: 1px solid #E6E6E6;
}
.home .hcon .foot {
  width: 100%;
  background-color: #1C1D1E;
}
.home .hcon .foot .dom1 {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 60px 0;
}
.home .hcon .foot .dom1 .left {
  width: 15%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home .hcon .foot .dom1 .links {
  width: 55%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.home .hcon .foot .dom1 .links .item p {
  color: white;
}
.home .hcon .foot .dom1 .links .item .aList {
  margin-top: 50px;
}
.home .hcon .foot .dom1 .links .item .aList a {
  display: block;
  color: #878787;
  font-size: 14px;
  margin-top: 10px;
  transition: all 600ms;
}
.home .hcon .foot .dom1 .links .item .aList a:hover {
  color: #E60027;
}
.home .hcon .foot .dom1 .address {
  width: 15%;
}
.home .hcon .foot .dom1 .address .item p:nth-child(1) {
  color: white;
  font-size: 14px;
}
.home .hcon .foot .dom1 .address .item p:nth-child(2) {
  color: white;
  font-weight: bolder;
  font-family: "Ubuntu-Medium";
  font-size: 26px;
  margin-top: 30px;
}
.home .hcon .foot .dom1 .address .notice {
  margin-top: 100px;
}
.home .hcon .foot .dom1 .address .notice p {
  color: #878787;
  font-size: 14px;
}
.home .hcon .foot .dom1 .address .notice .icons {
  margin-top: 20px;
}
.home .hcon .foot .dom1 .address .notice .icons i {
  display: inline-block;
  margin-right: 20px;
  color: #AFAFAF;
  font-size: 20px;
  transition: all 600ms;
}
.home .hcon .foot .dom1 .address .notice .icons i:hover {
  color: #E60027;
}
.home .hcon .foot .dom2 {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0;
}
.home .hcon .foot .dom2 .l p, .home .hcon .foot .dom2 .l a {
  color: #878787;
  font-size: 14px;
}
.home .hcon .foot .dom2 .r a {
  color: #878787;
  font-size: 14px;
  transition: all 600ms;
}
.home .hcon .foot .dom2 .r a:hover {
  color: #E60027;
}
.home .showPage {
  -webkit-transform: rotateY(30deg);
  transform: rotateY(30deg);
  -webkit-transform-origin: 0 100% 0;
  transform-origin: 0 100% 0;
}
@media screen and (max-width: 1000px) {
  .home .header .dom1 {
    width: 90%;
    padding: 15px 0;
  }
  .home .header .dom1 .logo img {
    width: 100px;
  }
  .home .hcon .banner img {
    height: 500px;
  }
  .home .hcon .banner .text .p1 {
    font-size: 20px;
  }
  .home .hcon .main {
    padding: 30px 0;
  }
  .home .hcon .main .navList {
    width: 90%;
    padding: 20px 5%;
    flex-wrap: wrap;
  }
  .home .hcon .main .navList p {
    font-size: 14px;
  }
  .home .hcon .main .navList p::after {
    top: 3%;
  }
  .home .hcon .main .navList a {
    margin-right: 20px;
    margin-bottom: 20px;
    font-size: 14px;
  }
  .home .hcon .main .tt1 {
    width: 90%;
    margin: 30px auto;
    padding-top: 30px;
    margin-top: 0;
    font-size: 24px;
  }
  .home .hcon .main .intro {
    width: 90%;
    margin: 0 auto;
  }
  .home .hcon .main .intro .t1 {
    font-size: 18px;
  }
  .home .hcon .main .pics {
    width: 90%;
    flex-direction: column;
    margin: 30px auto;
  }
  .home .hcon .main .pics .texts {
    width: 100%;
  }
  .home .hcon .main .pics .texts .t1 {
    font-size: 18px;
  }
  .home .hcon .main .pics .right {
    width: 100%;
    margin-top: 30px;
  }
  .home .hcon .main .pics .prev {
    left: 65%;
    bottom: 50%;
  }
  .home .hcon .main .pics .next {
    left: 84%;
    bottom: 50%;
  }
  .home .hcon .main .table {
    width: 90%;
    margin: 30px auto;
    padding-top: 20px;
  }
  .home .hcon .main .table .t1 {
    font-size: 18px;
  }
  .home .hcon .main .table .texts {
    width: 100%;
  }
  .home .hcon .foot .dom1 {
    flex-direction: column;
    padding: 30px 0;
    text-align: center;
  }
  .home .hcon .foot .dom1 .left {
    width: 100%;
  }
  .home .hcon .foot .dom1 .left .code {
    margin: 15px 0;
  }
  .home .hcon .foot .dom1 .links {
    display: none;
  }
  .home .hcon .foot .dom1 .address {
    width: 100%;
  }
  .home .hcon .foot .dom1 .address .item p:nth-child(2) {
    margin-top: 20px;
  }
  .home .hcon .foot .dom1 .address .notice {
    margin-top: 20px;
  }
  .home .hcon .foot .dom2 {
    flex-direction: column;
    padding: 20px 0;
    width: 90%;
    text-align: center;
    line-height: 30px;
  }
}

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