.home {
  width: 100%;
  position: relative;
}
.home .header {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 1000;
  display: flex;
  transition: all 600ms;
  flex-direction: row;
}
.home .header .logo {
  display: inline-block;
  margin: 20px;
  padding-top: 10px;
}
.home .header .links {
  width: 60%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-left: 15%;
  padding-top: 10px;
}
.home .header .links ul {
  width: 75%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.home .header .links ul li {
  cursor: pointer;
}
.home .header .links ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home .header .links ul li a span:nth-child(1) {
  color: white;
  font-family: "MicrosoftYaHei";
  display: inline-block;
  margin-bottom: 16px;
  position: relative;
  transition: all 600ms;
  transform: translateY(4px);
}
.home .header .links ul li a span:nth-child(1)::after {
  content: "";
  display: inline-block;
  width: 10px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  position: absolute;
  background-color: #F39800;
  height: 1px;
  transition: all 600ms;
  display: none;
}
.home .header .links ul li a span:nth-child(2) {
  color: #666666;
  font-size: 12px;
  font-family: "gothambook";
  text-transform: uppercase;
  transition: all 600ms;
  transform: translateY(-4px);
}
.home .header .links ul li a:hover span:nth-child(1) {
  transform: translateY(0);
}
.home .header .links ul li a:hover span:nth-child(1)::after {
  display: block;
}
.home .header .links ul li a:hover span:nth-child(2) {
  transform: translateY(0);
  color: white;
}
.home .header .links ul .active a span:nth-child(1) {
  transform: translateY(0);
}
.home .header .links ul .active a span:nth-child(1)::after {
  display: block;
}
.home .header .links ul .active a span:nth-child(2) {
  transform: translateY(0);
  color: white;
}
.home .header .links .phone a {
  display: flex;
  flex-direction: column;
}
.home .header .links .phone a span:nth-child(1) {
  color: #F39800;
  font-size: 18px;
  font-family: "gothambook";
  font-weight: bolder;
}
.home .header .links .phone a span:nth-child(2) {
  color: #666666;
  font-size: 14px;
  font-family: "MicrosoftYaHei";
  display: inline-block;
  margin-top: 4px;
}
.home .activeHeader {
  background-color: black;
  transform: translateY(-10px);
}
.home .banner {
  width: 100%;
  position: relative;
  height: 100vh;
}
.home .banner .bg {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.home .banner .bg img {
  width: 100%;
  display: block;
  object-fit: cover;
  animation: showBig 4s forwards linear;
}
@keyframes showBig {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
.home .banner .circles {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  z-index: 100;
  display: block;
}
.home .banner .circles .circle1 {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  z-index: 100;
  animation: rotate 2s linear infinite;
}
.home .banner .circles .circle2 {
  position: absolute;
  left: 0;
  top: 10px;
  width: 100%;
  height: 100%;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  z-index: 100;
  animation: rotate 2s linear infinite;
  animation-delay: 500ms;
}
.home .banner .circles .circle3 {
  position: absolute;
  left: 0;
  top: 20px;
  width: 100%;
  height: 100%;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  z-index: 100;
  animation: rotate 2s linear infinite;
  animation-delay: 800ms;
}
@keyframes rotate {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(5px, 5px);
  }
  50% {
    transform: translate(8px, 8px);
  }
  75% {
    transform: translate(5px, 5px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.home .banner .text {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
}
.home .banner .text .p1 {
  color: white;
  font-size: 48px;
  font-family: "FZCYSK--GBK1-0";
}
.home .banner .text .p2 {
  color: white;
  font-family: "FZCYSK--GBK1-0";
  margin-top: 20px;
  text-transform: uppercase;
  opacity: 0.5;
}
.home .banner .mouse {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.home .banner .mouse::after {
  height: 54px;
  content: "";
  display: inline-block;
  border: 1px dashed white;
  margin-top: 10px;
}
.home .main {
  width: 100%;
}
.home .main div {
  opacity: 0;
  transition: all 600ms;
  transform: translateY(20px);
}
.home .main .show {
  opacity: 1;
  transform: translateY(0);
}
.home .main .develop {
  width: 100%;
  margin: 80px auto;
  position: relative;
  padding: 100px 0;
}
.home .main .develop .title {
  text-align: center;
}
.home .main .develop .title p:nth-child(1) {
  color: #535353;
  font-size: 48px;
  font-family: "FZCYSK--GBK1-0";
}
.home .main .develop .title p:nth-child(2) {
  color: #888888;
  font-family: "FZCYSK--GBK1-0";
  margin-top: 30px;
}
.home .main .develop .des {
  color: #333333;
  font-size: 22px;
  font-family: "MicrosoftYaHei";
  line-height: 44px;
  margin: 60px auto;
  text-align: center;
  width: 50%;
}
.home .main .develop .allItems {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.home .main .develop .allItems .item {
  margin: 0 2%;
  text-align: center;
}
.home .main .develop .allItems .item .pic {
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home .main .develop .allItems .item p {
  color: #333333;
  font-size: 22px;
  font-family: "MicrosoftYaHei";
  margin: 20px auto;
}
.home .main .develop .y1 {
  position: absolute;
  right: 0;
  top: 0;
  animation: run 2s infinite linear;
}
.home .main .develop .y2 {
  position: absolute;
  left: 0;
  top: 0;
  animation: run 2s infinite linear;
}
.home .main .develop .y3 {
  position: absolute;
  left: 5%;
  bottom: 0;
  animation: run 2s infinite linear;
}
@keyframes run {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(10px, 10px);
  }
  50% {
    transform: translate(15px, 15px);
  }
  75% {
    transform: translate(10px, 10px);
  }
  100% {
    transform: translate(1px, 1px);
  }
}
.home .main .pt-tablecell {
  width: 100%;
  background: url("../images/wbg.png") no-repeat;
  background-size: cover;
  padding: 80px 0;
}
.home .main .pt-tablecell .overlay {
  background-color: rgba(14, 17, 24, 0.97);
}
.home .main .pt-tablecell .nr {
  max-width: 1140px;
  margin: 60px auto;
}
.home .main .pt-tablecell .nr .row {
  margin: 0 auto;
  max-width: 66.666667%;
}
.home .main .pt-tablecell .nr .row .title {
  text-align: center;
  margin: 60px auto;
}
.home .main .pt-tablecell .nr .row .title p {
  color: white;
}
.home .main .pt-tablecell .nr .row .title p:nth-child(1) {
  font-size: 48px;
  font-family: "FZCYSK--GBK1-0";
}
.home .main .pt-tablecell .nr .row .title p:nth-child(2) {
  color: #888888;
  font-family: "FZCYSK--GBK1-0";
  margin-top: 25px;
  font-size: 22px;
}
.home .main .pt-tablecell .nr .row .hexagon-menu::before, .home .main .pt-tablecell .nr .row .hexagon-menu::after {
  content: " ";
  display: table;
}
.home .main .pt-tablecell .nr .row .hexagon-menu::after {
  clear: both;
}
.home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item {
  cursor: pointer;
  width: 200px;
  height: 173.20508px;
  float: left;
  margin-left: -29px;
  z-index: 0;
  position: relative;
  -webkit-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  -o-transform: rotate(30deg);
  transform: rotate(30deg);
}
.home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item .hex-item {
  position: absolute;
  top: 0;
  left: 50px;
  width: 100px;
  height: 173.20508px;
}
.home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item .hex-item div {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  width: 100px;
  height: 173.20508px;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
}
.home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item .hex-item div::before, .home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item .hex-item div::after {
  background-color: #1e2530;
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  -o-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}
.home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item .hex-item div::before {
  top: 0;
}
.home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item .hex-item div::after {
  bottom: 0;
}
.home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item .hex-item div:nth-child(1) {
  transform: rotate(0deg);
}
.home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item .hex-item div:nth-child(2) {
  transform: rotate(60deg);
}
.home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item .hex-item div:nth-child(3) {
  transform: rotate(120deg);
}
.home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item .hex-item:first-child {
  z-index: 0;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item .hex-content {
  color: #fff;
  display: block;
  height: 180px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  transform: rotate(-30deg);
  width: 156px;
}
.home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item .hex-content .hex-content-inner {
  left: 50%;
  margin: -3px 0 0 2px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item .hex-content .hex-content-inner .title {
  display: block;
  font-size: 20px;
  font-family: "MicrosoftYaHei";
  letter-spacing: 1px;
  line-height: 24px;
  text-transform: uppercase;
  margin: 15px auto;
}
.home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item .hex-content svg {
  left: -7px;
  position: absolute;
  top: -13px;
  transform: scale(0.87);
  z-index: -1;
  -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  -o-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}
.home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item a {
  transition: all 0.3s ease 0s;
  text-decoration: none;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item a .icon {
  display: inline-block;
  position: relative;
}
.home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item a .icon img {
  display: block;
  transition: all 600ms;
}
.home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item a .icon img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
}
.home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item:hover {
  z-index: 1;
}
.home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item:hover .hex-item div::before, .home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item:hover .hex-item div::after {
  background-color: #ff0037;
}
.home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item:hover .hex-item:first-child {
  opacity: 1;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item:hover .hex-item:first-child div::before, .home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item:hover .hex-item:first-child div::after {
  height: 5px;
}
.home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item:hover .hex-item:first-child div::before, .home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item:hover .hex-item:first-child div::after {
  background-color: #ff0037;
}
.home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item:hover .hex-content svg {
  webkit-transform: scale(0.97);
  -moz-transform: scale(0.97);
  -ms-transform: scale(0.97);
  -o-transform: scale(0.97);
  transform: scale(0.97);
}
.home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item:hover .hex-content .hex-content-inner {
  animation: focus-in-contract 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item:hover a .icon img:nth-child(1) {
  opacity: 0;
}
.home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item:hover a .icon img:nth-child(2) {
  opacity: 1;
}
.home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item:first-child {
  margin-left: 0;
}
.home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item:nth-last-child(1), .home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item:nth-last-child(2), .home .main .pt-tablecell .nr .row .hexagon-menu .hexagon-item:nth-last-child(3) {
  -webkit-transform: rotate(30deg) translate(87px, -80px);
  -moz-transform: rotate(30deg) translate(87px, -80px);
  -ms-transform: rotate(30deg) translate(87px, -80px);
  -o-transform: rotate(30deg) translate(87px, -80px);
  transform: rotate(30deg) translate(87px, -80px);
}
@keyframes focus-in-contract {
  0% {
    letter-spacing: 1em;
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
.home .main .liuliang {
  width: 100%;
  margin: 80px auto;
  position: relative;
  padding-top: 60px;
}
.home .main .liuliang .title {
  text-align: center;
}
.home .main .liuliang .title p:nth-child(1) {
  color: #535353;
  font-size: 48px;
  font-family: "FZCYSK--GBK1-0";
}
.home .main .liuliang .title p:nth-child(2) {
  color: #888888;
  font-size: 24px;
  font-family: "FZCYSK--GBK1-0";
  margin: 30px 0;
}
.home .main .liuliang .allItems {
  width: 70%;
  margin: 60px auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.home .main .liuliang .allItems .item {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home .main .liuliang .allItems .item .pic {
  width: 146px;
  height: 146px;
  border: 1px solid #CECECE;
  border-radius: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.home .main .liuliang .allItems .item .pic::before {
  content: "";
  display: inline-block;
  background: #E70012;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  transition: all 600ms;
  transform: scale(1.2);
}
.home .main .liuliang .allItems .item .pic img {
  display: block;
  transition: all 600ms;
}
.home .main .liuliang .allItems .item .pic img:nth-child(2) {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.home .main .liuliang .allItems .item .pic:hover::before {
  opacity: 1;
  transform: scale(1);
}
.home .main .liuliang .allItems .item .pic:hover img:nth-child(1) {
  opacity: 0;
}
.home .main .liuliang .allItems .item .pic:hover img:nth-child(2) {
  opacity: 1;
}
.home .main .liuliang .allItems .item p {
  color: #010101;
  font-size: 18px;
  font-family: "MicrosoftYaHei";
  margin: 30px 0;
}
.home .main .liuliang .circle {
  position: absolute;
  background-color: #D8E4FE;
  height: 500px;
  width: 500px;
  border-radius: 50%;
  right: -300px;
  top: 5%;
}
.home .main .xiaochengxu {
  width: 100%;
  background-color: #151A28;
  padding: 100px 0;
  position: relative;
  height: 600px;
}
.home .main .xiaochengxu .nr {
  width: 60%;
  margin: 0 auto;
  margin-top: 100px;
}
.home .main .xiaochengxu .nr .l {
  width: 50%;
}
.home .main .xiaochengxu .nr .l .t1 {
  color: white;
  font-size: 48px;
  font-family: "FZCYSK--GBK1-0";
  line-height: 72px;
}
.home .main .xiaochengxu .nr .l .t2 {
  color: #9A9A9A;
  font-size: 20px;
  margin-top: 40px;
  line-height: 35px;
}
.home .main .xiaochengxu .r {
  position: absolute;
  right: 10%;
  width: 600px;
  top: 100px;
  height: 600px;
  pointer-events: none;
  transform: scale(0.8);
}
.home .main .xiaochengxu .r iframe {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home .main .xiaochengxu .r iframe canvas {
  width: 400px !important;
  height: 400px !important;
}
.home .balls {
  width: 100%;
  background: url("../images/baBg.png") no-repeat;
  background-size: cover;
  position: relative;
  height: 728px;
}
.home .balls .text {
  position: absolute;
  right: 20%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
.home .balls .text .p1 {
  color: #333333;
  font-size: 48px;
  font-family: "FZCYSK--GBK1-0";
}
.home .balls .text .btn {
  background-color: #D30011;
  color: white;
  padding: 10px 30px;
  font-size: 22px;
  display: inline-block;
  margin-top: 40px;
}
.home .foot {
  width: 90%;
  padding: 50px 5%;
  background-color: #121212;
}
.home .foot .d1 {
  text-align: center;
}
.home .foot .d1 p {
  color: #AAAAAA;
  font-size: 30px;
  font-family: "TimesNewRomanPSMT";
  margin-top: 20px;
}
.home .foot .d2 {
  padding: 40px 0;
  margin: 60px auto;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.home .foot .d2 .item {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.home .foot .d2 .item .pic {
  width: 60px;
  height: 60px;
  background: #121212;
  border: 1px solid #888888;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home .foot .d2 .item .text {
  margin-left: 20px;
}
.home .foot .d2 .item .text p {
  font-size: 14px;
  font-family: "MicrosoftYaHei";
}
.home .foot .d2 .item .text p:nth-child(1) {
  color: #888888;
}
.home .foot .d2 .item .text p:nth-child(2) {
  color: #666666;
}
.home .foot .d3 {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.home .foot .d3 .l {
  color: #555555;
  font-size: 13px;
  font-family: "MicrosoftYaHei";
  line-height: 25px;
}
.home .foot .d3 .l a {
  color: #555555;
  font-size: 13px;
  font-family: "MicrosoftYaHei";
}
.home .foot .d3 .r {
  color: #AAAAAA;
  font-size: 13px;
  font-family: "MicrosoftYaHei";
}
@media screen and (max-width: 1440px) {
  .home .main {
    overflow: hidden;
  }
}

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