.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;
  transition: all 0.6s;
  left: 0;
  top: 0;
  z-index: 100;
}
.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";
}
.home .hcon .banner .text .p2 {
  text-align: center;
  font-size: 50px;
  color: white;
  font-family: "SOURCEHANSANSCN-NORMAL";
  margin-top: 20px;
}
.home .hcon .main {
  width: 100%;
  background-color: #EEEEF1;
  padding: 80px 0;
}
.home .hcon .main .navList {
  width: 70%;
  margin: 0 auto;
  border-bottom: 1px solid #E3E3E3;
  padding-bottom: 60px;
  display: flex;
  flex-direction: row;
}
.home .hcon .main .navList p, .home .hcon .main .navList a {
  color: #838383;
  font-size: 18px;
  font-family: "SOURCEHANSANSCN-REGULAR";
  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 30px;
  color: #101010;
  font-size: 42px;
  font-family: "SOURCEHANSANSCN-MEDIUM";
}
.home .hcon .main .allItems {
  width: 70%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home .hcon .main .allItems .item {
  /* width: 48%; */
  width: 100%;
  display: block;
  /* margin-bottom: 20px; */
  position: relative;
}
.home .hcon .main .allItems .item .pic {
  width: 100%;
  overflow: hidden;
}
.home .hcon .main .allItems .item .pic img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: all 600ms;
  pointer-events: none;
}
.home .hcon .main .allItems .item .text {
  width: 100%;
  margin: 40px auto;
}
.home .hcon .main .allItems .item .text .t1 {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.home .hcon .main .allItems .item .text .t1 span {
  display: block;
  width: 15%;
  font-size: 12px;
  font-family: "ITCAvantGardeStd-Bk";
  color: #101010;
  transition: all 600ms;
}
.home .hcon .main .allItems .item .text .t1 p {
  width: 70%;
  color: #101010;
  font-size: 26px;
  font-family: "SOURCEHANSANSCN-NORMAL";
  transition: all 600ms;
}
.home .hcon .main .allItems .item .text .des {
  color: #4B4B4B;
  font-size: 14px;
  line-height: 23px;
  margin-left: 15%;
  width: 70%;
  margin-top: 30px;
  font-family: "SOURCEHANSANSCN-LIGHT";
}
.home .hcon .main .allItems .item:hover .pic img {
  transform: scale(1.05);
}
.home .hcon .main .allItems .item:hover .text .t1 span {
  color: #E60027;
}
.home .hcon .main .allItems .item:hover .text .t1 p {
  color: #E60027;
}
.home .hcon .main .btn {
  text-align: center;
}
.home .hcon .main .btn .magnet {
  transition: linear 0.15s color;
  touch-action: manipulation;
  text-align: center;
}
.home .hcon .main .btn .magnet .magnet_circle {
  transition: all 0.2s linear;
  display: inline-block;
  width: 110px;
  height: 111px;
  background: rgba(33, 33, 33, 0.5);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  vertical-align: middle;
  font-size: inherit;
}
.home .hcon .main .btn .magnet .magnet_circle .magnet_arrow {
  -webkit-font-smoothing: antialiased;
  color: inherit;
  pointer-events: none;
  transition: transform 0.2s linear;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home .hcon .main .btn .magnet .magnet_circle .magnet_arrow p {
  color: white;
  text-align: center;
  font-size: 14px;
}
.home .hcon .main .btn .magnet .magnet_circle .magnet_arrow i {
  color: white;
  font-size: 20px;
}
.home .hcon .main .btn .magnet:hover .magnet_circle {
  background-color: black;
  transition: all 0.2s ease-out;
}
.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;
  font-family: "SOURCEHANSANSCN-NORMAL";
}
.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;
  font-family: "SOURCEHANSANSCN-LIGHT";
  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;
  font-family: "SOURCEHANSANSCN-NORMAL";
}
.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;
  font-family: "SOURCEHANSANSCN-NORMAL";
}
.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;
  font-family: "SOURCEHANSANSCN-NORMAL";
}
.home .hcon .foot .dom2 .r a {
  color: #878787;
  font-size: 14px;
  font-family: "SOURCEHANSANSCN-NORMAL";
  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;
}
.home .hcon .main .allItems {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 60px 20px;
}


.home .hcon .main .allItems .item .text{
  margin-top: 12px;
  /* margin-top: 0; */
  margin-bottom: 0;
}
.home .hcon .main .allItems .item .text p{
  color: #101010;
}

.home .hcon .main .tab{
  width: 70%;
  margin: 0 auto 30px;
  display: flex;
}
.home .hcon .main .tab .item a{
  color: #838383;
  transition: all 1s;
  font-size: 16px;
}
.home .hcon .main .tab .item:not(:last-child){
  margin-right: 30px;
}
.home .hcon .main .tab .item.active a,
.home .hcon .main .tab .item:hover a{
  color: #E60027;
}

@media screen and (max-width: 1000px) {
  .home .hcon .main .allItems,
  .home .hcon .main .tt1{
    width: 90%;
  }
  .home .hcon .main .allItems {
    grid-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
  .home .hcon .main .btn .magnet .magnet_circle {
    margin-top: 30px;
  }

  .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: 40px 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%;
    font-size: 24px;
    margin: 30px auto;
  }
  .home .hcon .main .allItems {
    width: 90%;
    margin: 0 auto;
  }
  .home .hcon .main .allItems .item {
    width: 100%;
  }
  .home .hcon .main .allItems .item .text .t1 p {
    font-size: 16px;
  }
  .home .hcon .main .allItems .item .text .des {
    margin-top: 15px;
  }
  .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;
  }

  .home .hcon .main .tab{
    width: 90%;
  }
}

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