.home {
  width: 100%;
  background-color: #F0F0F3;
  position: relative;
  overflow: hidden;
  -webkit-perspective: 2000px;
  perspective: 2000px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.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 .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 .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: 15%;
  top: 50%;
  transform: translateY(-50%);
  width: 70%;
  display: flex;
  flex-direction: row;
}
.home .hcon .banner .text .l {
  color: #878787;
  font-size: 26px;
  font-family: "SairaCondensed-SemiBold";
  transform: translateY(10px);
}
.home .hcon .banner .text .r {
  color: white;
  font-size: 42px;
  font-family: "SOURCEHANSANSCN-MEDIUM";
  margin-left: 20px;
}
.home .hcon .main {
  width: 100%;
  padding: 150px 0 150px 0;
  background: url("../images/bga.jpg") no-repeat;
  background-size: cover;
}
.home .hcon .main .fenjie {
  width: 1400px;
  margin: 0 auto;
}
.home .hcon .main .fenjie .t1 {
  font-weight: 200;
  color: #ffffff;
  font-size: 36px;
  font-family: "SOURCEHANSANSCN-MEDIUM";
  text-align: center;
}
.home .hcon .main .fenjie .sanimate {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 30px 0;
}
.home .hcon .main .fenjie .sanimate .item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 20px;
  cursor: pointer;
}
.home .hcon .main .fenjie .sanimate .item img {
  transition: all 1s;
}
.home .hcon .main .fenjie .sanimate .item:hover img {
  transform: rotate(360deg);
}
.home .hcon .main .fenjie .sanimate .item i {
  color: #ffffff;
  font-size: 32px;
}
.home .hcon .main .fenjie .sanimate .item p {
  color: #ffffff;
  margin-left: 15px;
}
.home .hcon .main .fenjie .pics {
  width: 100%;
  margin: 120px auto;
  position: relative;
  margin-bottom: 0;
  height: 850px;
}
.home .hcon .main .fenjie .pics .pnt {
  width: 100%;
  transition: all 600ms;
  height: 850px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home .hcon .main .fenjie .pics .pnt img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}
.home .hcon .main .fenjie .pics .hintz2 {
  left: 47%;
  top: 42%;
}
.home .hcon .main .fenjie .pics .pnt {
  display: none;
}
.home .hcon .main .fenjie .pics .pnt:first-child {
  display: flex;
}
.home .hcon .main .fenjie .pics .prev {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotateY(180deg);
  cursor: pointer;
  z-index: 100;
  transition: all 600ms;
}
.home .hcon .main .fenjie .pics .prev img {
  color: #B3B3B3;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  transition: all 600ms;
  transform: translate(-50%, -55%) rotate(90deg);
}
.home .hcon .main .fenjie .pics .next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 100;
  opacity: 0.5;
  transition: all 600ms;
}
.home .hcon .main .fenjie .pics .next img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  transition: all 600ms;
  transform: translate(-50%, -55%) rotate(90deg);
}
.home .hcon .main .fenjie .pics .an {
  display: none;
}
.home .hcon .main .fenjie .pics .pic {
  position: absolute;
  opacity: 0;
}
.home .hcon .main .fenjie .pics .hinta1 {
  left: 69%;
  top: 60%;
}
.home .hcon .main .fenjie .pics .hinta2 {
  left: 11%;
  top: 42%;
}
.home .hcon .main .fenjie .pics .hinta3 {
  left: 56%;
  top: 44%;
}
.home .hcon .main .fenjie .pics .hinta4 {
  left: 67%;
  top: 39%;
}
.home .hcon .main .fenjie .pics .hinta5 {
  left: 67%;
  top: 60%;
}
.home .hcon .main .fenjie .pics .pic9 {
  left: 50%;
  transform: translateX(-50%);
  top: 41%;
  width: 70%;
  display: block;
  animation: move9 1s linear forwards;
  animation-delay: 500ms;
}
@keyframes move9 {
  from {
    opacity: 0;
    top: 41%;
  }
  to {
    opacity: 0.25;
    top: 0;
  }
}
.home .hcon .main .fenjie .pics .pic10 {
  left: 50%;
  transform: translateX(-50%);
  top: 24%;
  width: 70%;
  display: block;
  animation: move10 1s linear forwards;
  animation-delay: 500ms;
}
@keyframes move10 {
  from {
    opacity: 0;
    top: 41%;
  }
  to {
    opacity: 0.25;
    top: 24%;
  }
}
.home .hcon .main .fenjie .pics .pic11 {
  left: 50%;
  transform: translateX(-50%);
  top: 41%;
  width: 70%;
  display: block;
  animation: move11 1s linear forwards;
  animation-delay: 500ms;
}
@keyframes move11 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.home .hcon .main .fenjie .pics .pic12 {
  left: 50%;
  transform: translateX(-50%);
  top: 60%;
  width: 70%;
  display: block;
  animation: move12 1s linear forwards;
  animation-delay: 500ms;
}
@keyframes move12 {
  from {
    opacity: 0;
    top: 41%;
  }
  to {
    opacity: 0.25;
    top: 60%;
  }
}
.home .hcon .main .fenjie .pics .pic13 {
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  animation: move13 1s linear forwards;
  animation-delay: 500ms;
}
@keyframes move13 {
  from {
    opacity: 0;
    left: 53%;
  }
  to {
    opacity: 1;
    left: 10%;
  }
}
.home .hcon .main .fenjie .pics .pic14 {
  left: 25%;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  animation: move14 1s linear forwards;
  animation-delay: 500ms;
}
@keyframes move14 {
  from {
    opacity: 0;
    left: 53%;
  }
  to {
    opacity: 0.25;
    left: 25%;
  }
}
.home .hcon .main .fenjie .pics .pic15 {
  left: 25%;
  top: 28%;
  display: block;
  animation: move15 1s linear forwards;
  animation-delay: 500ms;
}
@keyframes move15 {
  from {
    opacity: 0;
    left: 53%;
  }
  to {
    opacity: 0.25;
    left: 25%;
  }
}
.home .hcon .main .fenjie .pics .pic16 {
  left: 25%;
  top: 63%;
  display: block;
  animation: move16 1s linear forwards;
  animation-delay: 500ms;
}
@keyframes move16 {
  from {
    opacity: 0;
    left: 53%;
  }
  to {
    opacity: 0.25;
    left: 25%;
  }
}
.home .hcon .main .fenjie .pics .pic17 {
  left: 53%;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  animation: move17 1s linear forwards;
  animation-delay: 500ms;
}
@keyframes move17 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.home .hcon .main .fenjie .pics .pic18 {
  left: 67%;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  animation: move18 1s linear forwards;
  animation-delay: 500ms;
}
@keyframes move18 {
  from {
    opacity: 0;
    left: 53%;
  }
  to {
    opacity: 1;
    left: 67%;
  }
}
.home .hcon .main .fenjie .pics .pic19 {
  left: 77%;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  animation: move19 1s linear forwards;
  animation-delay: 500ms;
}
@keyframes move19 {
  from {
    opacity: 0;
    left: 53%;
  }
  to {
    opacity: 0.25;
    left: 77%;
  }
}
.home .hcon .main .fenjie .pics .pic20 {
  left: 86%;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  animation: move20 1s linear forwards;
  animation-delay: 500ms;
}
@keyframes move20 {
  from {
    opacity: 0;
    left: 53%;
  }
  to {
    opacity: 0.25;
    left: 86%;
  }
}
.home .hcon .main .fenjie .pics .pic1 {
  top: 63%;
  left: 32%;
  animation: move1 1s linear forwards;
}
@keyframes move1 {
  from {
    top: 40%;
    left: 40%;
    opacity: 0;
  }
  to {
    top: 63%;
    left: 32%;
    opacity: 1;
  }
}
.home .hcon .main .fenjie .pics .pic2 {
  top: 52%;
  left: 36%;
  animation: move2 1s linear forwards;
}
@keyframes move2 {
  from {
    top: 40%;
    left: 40%;
    opacity: 0;
  }
  to {
    top: 52%;
    left: 36%;
    opacity: 0.3;
  }
}
.home .hcon .main .fenjie .pics .pic3 {
  top: 40%;
  left: 40%;
  animation: move3 1s linear forwards;
}
@keyframes move3 {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.3;
  }
}
.home .hcon .main .fenjie .pics .pic4 {
  top: 29%;
  left: 38%;
  animation: move4 1s linear forwards;
}
@keyframes move4 {
  from {
    top: 40%;
    left: 40%;
    opacity: 0;
  }
  to {
    opacity: 0.3;
    top: 29%;
    left: 38%;
  }
}
.home .hcon .main .fenjie .pics .pic5 {
  top: 14%;
  left: 40%;
  animation: move5 1s linear forwards;
  transition: all 600ms;
}
@keyframes move5 {
  from {
    top: 40%;
    left: 40%;
    opacity: 0;
  }
  to {
    top: 14%;
    left: 40%;
    opacity: 1;
  }
}
.home .hcon .main .fenjie .pics .pic6 {
  top: 49%;
  left: 23%;
  animation: move6 1s linear forwards;
}
@keyframes move6 {
  from {
    left: 50%;
  }
  to {
    left: 23%;
    opacity: 0.3;
  }
}
.home .hcon .main .fenjie .pics .pic7 {
  top: 49%;
  left: 71%;
  animation: move7 1s linear forwards;
}
@keyframes move7 {
  from {
    left: 50%;
  }
  to {
    left: 71%;
    opacity: 0.3;
  }
}
.home .hcon .main .fenjie .pics .pic8 {
  top: 72%;
  left: 50%;
  transform: translateX(-50%);
  animation: move8 1s linear forwards;
}
@keyframes move8 {
  from {
    top: 36%;
  }
  to {
    opacity: 0.3;
    top: 72%;
  }
}
.home .hcon .main .fenjie .hint1 {
  left: 38.5%;
  top: 72%;
}
.home .hcon .main .fenjie .hint1 .hint-content p {
  color: black;
  text-align: right;
}
.home .hcon .main .fenjie .hint1 .hint-content::before, .home .hcon .main .fenjie .hint1 .hint-content::after {
  background-color: rgba(0, 0, 0, 0.2) !important;
}
.home .hcon .main .fenjie .hint2 {
  left: 64%;
  top: 28%;
}
.home .hcon .main .fenjie .hint2 .hint-content p {
  color: black;
  text-align: right;
}
.home .hcon .main .fenjie .hint2 .hint-content::before, .home .hcon .main .fenjie .hint2 .hint-content::after {
  background-color: rgba(0, 0, 0, 0.2) !important;
}
.home .hcon .main .fenjie .hint3 {
  left: 59%;
  top: 20%;
}
.home .hcon .main .fenjie .hint3 .hint-content p {
  color: black;
  text-align: right;
}
.home .hcon .main .fenjie .hint3 .hint-content::before, .home .hcon .main .fenjie .hint3 .hint-content::after {
  background-color: rgba(0, 0, 0, 0.2) !important;
}
.home .hcon .main .fenjie .hint4 {
  left: 59%;
  top: 67%;
}
.home .hcon .main .fenjie .hint4 .hint-content p {
  color: black;
  text-align: right;
}
.home .hcon .main .fenjie .hint4 .hint-content::before, .home .hcon .main .fenjie .hint4 .hint-content::after {
  background-color: rgba(0, 0, 0, 0.2) !important;
}
.home .hcon .main .fenjie .phone {
  width: 100%;
  display: none;
}
.home .hcon .main .fenjie .phone img {
  width: 100%;
  display: block;
  object-fit: contain;
}
.home .hcon .main .pbg {
  width: 100%;
  height: 781px;
  margin: 60px 0;
  margin-bottom: 0;
  position: relative;
  display: block;
  cursor: pointer;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.home .hcon .main .pbg .cursor {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1000;
  height: 120px;
  width: 120px;
  transition: none;
  mix-blend-mode: exclusion;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}
.home .hcon .main .pbg .cursor .inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.home .hcon .main .pbg .cursor .circle {
  -webkit-transition: transform 0.3s ease-in-out;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  left: 0;
  top: 0;
  mix-blend-mode: exclusion;
  background: #fff;
  width: 80px;
  height: 80px;
  border-radius: 80px;
  -webkit-transform: scale(0.15);
  transform: scale(0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home .hcon .main .pbg .cursor .circle .cursor_text {
  display: block;
  font-size: 20px;
  color: black;
  opacity: 0;
  font-family: "book";
}
.home .hcon .main .pbg .is-active .inner .circle {
  background-color: white;
  opacity: 1;
  transform: scale(1);
}
.home .hcon .main .pbg .is-active .inner .circle .cursor_text {
  opacity: 1;
}
.home .hcon .main .content {
  width: 70%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 100px 15%;
  position: relative;
}
.home .hcon .main .content .left {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home .hcon .main .content .left .stitle .t1 {
  color: #101010;
  font-size: 42px;
  font-family: "SOURCEHANSANSCN-MEDIUM";
}
.home .hcon .main .content .left .stitle .t2 {
  color: #4B4B4B;
  font-size: 22px;
  margin-top: 15px;
}
.home .hcon .main .content .left .stitle .spic {
  margin-top: 80px;
  overflow: hidden;
}
.home .hcon .main .content .left .stitle .spic img {
  max-width: 100%;
  object-fit: contain;
  transition: all 600ms;
}
.home .hcon .main .content .left .stitle .spic:hover img {
  transform: scale(1.05);
}
.home .hcon .main .content .left .circles {
  width: 250px;
  height: 250px;
  border: 1px solid #E60027;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 200px;
}
.home .hcon .main .content .left .circles .cpic {
  width: 220px;
  height: 220px;
  animation: rotate 5s infinite linear;
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.home .hcon .main .content .left .circles .pic {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.home .hcon .main .content .left .circles i {
  font-size: 250px;
  display: block;
}
.home .hcon .main .content .right {
  width: 50%;
}
.home .hcon .main .content .right .item {
  border-bottom: 1px solid #B3B3B3;
  color: #999999;
  font-size: 26px;
  font-family: "SOURCEHANSANSCN-MEDIUM";
  padding-bottom: 60px;
}
.home .hcon .main .content .right .item2 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid #B3B3B3;
}
.home .hcon .main .content .right .item2 p:nth-child(1) {
  color: #4B4B4B;
  font-size: 34px;
  font-family: "SOURCEHANSANSCN-MEDIUM";
}
.home .hcon .main .content .right .item2 p:nth-child(1) span {
  font-size: 20px;
}
.home .hcon .main .content .right .item2 p:nth-child(2) {
  color: #999999;
  font-size: 18px;
}
.home .hcon .main .content .right .item3 .p1 {
  color: #101010;
  font-size: 26px;
  font-family: "SOURCEHANSANSCN-MEDIUM";
  margin: 60px 0 30px 0;
}
.home .hcon .main .content .right .item3 .des {
  color: #4B4B4B;
  line-height: 54px;
}
.home .hcon .main .download {
  width: 70%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 40px 0;
  align-items: center;
}
.home .hcon .main .download .folder {
  width: 30%;
}
.home .hcon .main .download .folder .d1 {
  color: #4B4B4B;
  font-size: 18px;
  font-family: "SOURCEHANSANSCN-MEDIUM";
  border-bottom: 1px solid rgba(75, 75, 75, 0.2);
  display: inline-block;
  padding: 20px 0;
}
.home .hcon .main .download .folder .lists {
  margin-top: 30px;
}
.home .hcon .main .download .folder .lists a {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 30px;
}
.home .hcon .main .download .folder .lists a span:nth-child(1) {
  width: 40px;
  height: 40px;
  border: 1px solid #959595;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #979797;
}
.home .hcon .main .download .folder .lists a span:not(:first-child) {
  color: #4B4B4B;
  display: inline-block;
  margin-left: 20px;
}
.home .hcon .main .download .text {
  width: 50%;
  color: #101010;
  font-size: 34px;
}
.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: 1440px) {
  .home .hcon .banner .text {
    left: 10%;
  }
  .home .hcon .banner .text .r {
    font-size: 30px;
  }
  .home .hcon .main .fenjie {
    width: 100%;
  }
  .home .hcon .main .fenjie .pics {
    width: 90%;
  }
  .home .hcon .main .fenjie .pics .pnt {
    opacity: 1;
  }
  .home .hcon .main .fenjie .pics .pnt img {
    display: block;
    object-fit: contain;
  }
  .home .hcon .main .content {
    width: 80%;
    padding: 100px 10%;
  }
  .home .hcon .main .content .left .stitle .t1 {
    font-size: 30px;
  }
}
@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 .r {
    font-size: 20px;
  }
  .home .hcon .main {
    padding: 100px 0 0 0;
  }
  .home .hcon .main .fenjie {
    width: 90%;
  }
  .home .hcon .main .fenjie .t1 {
    font-size: 20px;
  }
  .home .hcon .main .fenjie .sanimate, .home .hcon .main .fenjie .pics {
    display: none;
  }
  .home .hcon .main .fenjie .phone {
    display: block;
    margin: 40px auto;
  }
  .home .hcon .main .content {
    width: 90%;
    flex-direction: column;
    padding: 40px 5%;
  }
  .home .hcon .main .content .left {
    width: 100%;
  }
  .home .hcon .main .content .left .stitle {
    text-align: center;
  }
  .home .hcon .main .content .left .stitle .t1 {
    font-size: 20px;
  }
  .home .hcon .main .content .left .stitle .spic {
    margin-top: 40px;
  }
  .home .hcon .main .content .left .circles {
    margin: 40px auto;
  }
  .home .hcon .main .content .right {
    width: 100%;
  }
  .home .hcon .main .content .right .item {
    padding-bottom: 30px;
    font-size: 20px;
  }
  .home .hcon .main .content .right .item2 {
    padding: 30px 0;
  }
  .home .hcon .main .content .right .item2 p:nth-child(1) {
    font-size: 20px;
  }
  .home .hcon .main .content .right .item3 {
    margin: 30px 0;
  }
  .home .hcon .main .content .right .item3 .p1 {
    font-size: 22px;
  }
  .home .hcon .main .content .right .item3 .des {
    line-height: 40px;
  }
  .home .hcon .main .download {
    width: 90%;
    padding: 0;
    flex-direction: column;
  }
  .home .hcon .main .download .folder {
    width: 100%;
  }
  .home .hcon .main .download .text {
    width: 100%;
    font-size: 20px;
  }
  .home .hcon .main .pbg {
    height: 400px;
  }
  .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=proInfo5.css.map */
