.home {
  width: 100%;
  position: relative;
  background-color: #F6F6F6;
}
.home .head {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  transition: all 600ms;
}
.home .head .content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto;
  padding: 40px 0;
  transition: all 600ms;
}
.home .head .content .logo {
  width: 206px;
  height: 44px;
  display: block;
}
.home .head .content .logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.home .head .content .allCon {
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.home .head .content .allCon .links {
  width: 88%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.home .head .content .allCon .links a {
  display: inline;
  width: 14%;
  text-align: center;
  color: white;
  font-family: "SOURCEHANSANSCN-NORMAL";
  opacity: 0.5;
  transition: all 600ms;
}
.home .head .content .allCon .links a:hover {
  opacity: 1;
}
.home .head .content .allCon .links .active {
  opacity: 1;
}
.home .head .content .allCon .lan {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.home .head .content .allCon .lan span {
  display: inline-block;
  animation: rotate 2s infinite linear;
}
.home .head .content .allCon .lan span img {
  width: 100%;
  display: block;
  object-fit: cover;
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.home .head .content .allCon .lan p {
  color: white;
  font-family: "SOURCEHANSANSCN-NORMAL";
  margin-left: 10px;
}
.home .hasBg {
  background-color: rgba(0, 0, 0, 0.5);
}
.home .hasBg .content {
  padding: 20px 0;
}
.home .topMenu {
  position: fixed;
  left: 0;
  top: 0;
  width: 8%;
  z-index: 101;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home .topMenu .lines {
  width: 41px;
  height: 41px;
  cursor: pointer;
  position: relative;
  border-radius: 50%;
}
.home .topMenu .lines div {
  width: 17px;
  height: 1px;
  background: #5E7AD3;
  position: absolute;
  left: 12px;
  top: 15px;
  transition: all 600ms;
}
.home .topMenu .lines div:nth-child(2) {
  top: 20px;
}
.home .topMenu .lines div:nth-child(3) {
  top: 25px;
}
.home .topMenu .lines .magnet {
  transition: linear 0.15s color;
  touch-action: manipulation;
  float: right;
}
.home .topMenu .lines .magnet .magnet_circle {
  transition: all 0.2s linear;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0);
  position: relative;
  cursor: pointer;
  vertical-align: middle;
  font-size: inherit;
}
.home .topMenu .lines .magnet .magnet_circle .magnet_arrow {
  -webkit-font-smoothing: antialiased;
  color: inherit;
  pointer-events: none;
  transition: transform 0.2s linear;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  position: absolute;
  font-family: Graphik, Arial, Helvetica, sans-serif;
}
.home .topMenu .lines .magnet:hover .magnet_circle {
  border: 1px solid rgba(94, 122, 211, 0.5);
  transition: all 0.2s ease-out;
}
.home .topMenu .active div:nth-child(1) {
  transform: rotate(135deg);
  top: 20px;
}
.home .topMenu .active div:nth-child(2) {
  width: 0;
  opacity: 0;
}
.home .topMenu .active div:nth-child(3) {
  transform: rotate(-135deg);
  top: 20px;
}
.home .menu {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  background-color: black;
  opacity: 0;
  transition: all 1s;
  pointer-events: none;
  transform: translateX(-40px);
}
.home .menu .waves {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.home .menu .waves::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  left: 0;
  top: 0;
}
.home .menu .mCon {
  width: 80%;
  position: absolute;
  left: 10%;
  height: 80%;
  top: 20%;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  z-index: 3;
}
.home .menu .mCon .links {
  width: 20%;
}
.home .menu .mCon .links ul {
  width: 100%;
  display: block;
  list-style: none;
}
.home .menu .mCon .links ul li {
  width: 100%;
  position: relative;
  padding-bottom: 50px;
}
.home .menu .mCon .links ul li .a1 {
  color: #939393;
  font-size: 24px;
  font-family: "SOURCEHANSANSCN-NORMAL";
  transition: all 600ms;
}
.home .menu .mCon .links ul li .aLinks {
  width: 100%;
  padding: 20px 0;
  display: none;
  padding-bottom: 0;
}
.home .menu .mCon .links ul li .aLinks a {
  color: #858585;
  font-family: "SOURCEHANSANSCN-LIGHT";
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  margin-bottom: 10px;
}
.home .menu .mCon .links ul li .aLinks a::before {
  width: 0;
  height: 2px;
  background: #FFFFFF;
  display: block;
  content: "";
  margin-right: 5px;
  transition: all 600ms;
}
.home .menu .mCon .links ul li .aLinks a:hover::before {
  width: 9px;
}
.home .menu .mCon .links ul li:hover .a1 {
  color: white;
}
.home .menu .mCon .pic {
  width: 412px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.home .menu .mCon .pic #holder {
  width: 100%;
  height: 524px;
  position: absolute;
  z-index: 1;
}
.home .menu .mCon .pic .active {
  animation: ani 1s cubic-bezier(0, 0, 0.25, 1.02) forwards;
}
@keyframes ani {
  0% {
    transform: rotateY(0);
    opacity: 1;
  }
  40%, 60% {
    transform: rotateY(90deg);
    opacity: 0;
  }
  100% {
    transform: rotateY(0);
    opacity: 1;
  }
}
.home .menu .mCon .pic #startDiv {
  background-color: #000;
  position: absolute;
  width: 100%;
  height: 524px;
}
.home .menu .mCon .pic #startDiv img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  display: none;
}
.home .menu .mCon .pic #startDiv img:nth-child(1) {
  display: block;
}
.home .menu .mCon .address {
  width: 30%;
}
.home .menu .mCon .address .item {
  padding: 50px 0;
}
.home .menu .mCon .address .item .p1 {
  color: #858585;
  font-family: "SOURCEHANSANSCN-NORMAL";
}
.home .menu .mCon .address .item .p2 {
  color: white;
  font-family: "SOURCEHANSANSCN-LIGHT";
  line-height: 30px;
  margin-top: 25px;
}
.home .menu .mCon .address .item:not(:first-child) .p2 {
  font-size: 19px;
}
.home .menu .mCon .address .item:nth-child(2) {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.home .activeMenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.home .banner {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.home .banner .onLine {
  width: 1px;
  height: 100%;
  position: absolute;
  left: 8%;
  background-color: rgba(255, 255, 255, 0.2);
  top: 0;
  z-index: 1000;
}
.home .banner img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 100vh;
  animation: big 6s forwards linear;
}
@keyframes big {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}
.home .banner .circle {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 8%;
  z-index: 100;
}
.home .banner .circle div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  animation: run 4s infinite linear;
}
.home .banner .circle div span {
  width: 10px;
  height: 10px;
  background: #FFFFFF;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
}
@keyframes run {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.home .banner .text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home .banner .text p {
  color: white;
}
.home .banner .text p:nth-child(1) {
  font-family: "AvantGardeLT-Medium";
  font-size: 59px;
  animation-duration: 2s;
}
.home .banner .text p:nth-child(2) {
  font-size: 24px;
  font-family: "SOURCEHANSANSCN-EXTRALIGHT";
  margin-top: 20px;
  animation-duration: 2s;
  animation-delay: 1s;
}
.home .main {
  width: 100%;
}
.home .main div {
  opacity: 0;
  transition: all 1s;
  transform: translateY(60px);
}
.home .main .show {
  opacity: 1;
  transform: translateY(0);
}
.home .main .navList {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.home .main .navList .item {
  display: inline-block;
  padding: 20px 0;
  margin: 0 3%;
  color: #171717;
  font-family: "SOURCEHANSANSCN-NORMAL";
  cursor: pointer;
  position: relative;
}
.home .main .navList .item::after {
  content: "";
  display: inline-block;
  width: 46px;
  height: 2px;
  background: #5E7AD3;
  transform-origin: 100%;
  visibility: hidden\9 ;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  bottom: -1px;
  transition: all 600ms;
}
.home .main .navList .item:hover::after {
  transform-origin: 0;
  visibility: visible;
  transform: translateX(-50%) scaleX(1);
}
.home .main .navList .active::after {
  transform-origin: 0;
  visibility: visible;
  transform: translateX(-50%) scaleX(1);
}
.home .main .intro {
  width: 80%;
  margin: 60px auto;
  margin-bottom: 0;
}
.home .main .intro .title p:nth-child(1) {
  font-size: 32px;
  color: #171717;
  font-family: "SOURCEHANSANSCN-MEDIUM";
}
.home .main .intro .title p:nth-child(2) {
  font-style: italic;
  color: #747575;
  font-size: 26px;
}
.home .main .intro .content {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 80px auto;
  margin-bottom: 0;
}
.home .main .intro .content .l {
  width: 48%;
}
.home .main .intro .content .l .nr {
  color: #171717;
  font-family: "SOURCEHANSANSCN-NORMAL";
  line-height: 46px;
}
.home .main .intro .content .l .count {
 display: flex;
    flex-direction: row;
    margin: 60px auto;
    flex-wrap: wrap;
    justify-content: space-between;
}
.home .main .intro .content .l .count .item{
  width:50%;
margin-bottom:30px;
}
.home .main .intro .content .l .count .item p:nth-child(1) {
  color: #434343;
  font-size: 35px;
  font-family: "SOURCEHANSANSCN-BOLD";
}
.home .main .intro .content .l .count .item p:nth-child(2) {
  color: #4E4E4F;
  font-size: 14px;
  font-family: "SOURCEHANSANSCN-NORMAL";
  margin-top: 10px;
}
.home .main .intro .content .l .count .item:last-child {

}
.home .main .intro .content .r {
  width: 48%;
}
.home .main .intro .content .r .swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.home .main .intro .content .r .swiper-container .swiper-wrapper {
  width: 100%;
}
.home .main .intro .content .r .swiper-container .swiper-wrapper .swiper-slide {
  overflow: hidden;
}
.home .main .intro .content .r .swiper-container .swiper-wrapper .swiper-slide img {
  width: 100%;
  display: block;
  object-fit: cover;
  cursor: pointer;
  transition: all 2s;
  height: 100%;
}
.home .main .intro .content .r .swiper-container .swiper-wrapper .swiper-slide:hover img {
  transform: scale(1.05);
}
.home .main .intro .content .r .swiper-container .swiper-pagination {
  position: absolute;
  width: 95%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  bottom: 20px;
  right: 0;
}
.home .main .intro .content .r .swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 34px;
  height: 34px;
  border: 1px solid transparent;
  border-radius: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  opacity: 1;
  margin: 0 5px;
  transition: all 600ms;
}
.home .main .intro .content .r .swiper-container .swiper-pagination .swiper-pagination-bullet::before {
  width: 5px;
  height: 5px;
  background: #FFFFFF;
  opacity: 0.4;
  border-radius: 50%;
  content: "";
  transition: all 600ms;
  display: inline-block;
}
.home .main .intro .content .r .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  border-color: #5E7AD3;
}
.home .main .intro .content .r .swiper-container .swiper-pagination .swiper-pagination-bullet-active::before {
  background-color: #5E7AD3;
}
.home .main .pics {
  width: 80%;
  display: flex;
  margin: 30px auto;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 60px;
}
.home .main .pics .item {
  width: 33%;
  cursor: pointer;
  overflow: hidden;
}
.home .main .pics .item img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: all 3s;
}
.home .main .pics .item:hover img {
  transform: scale(1.05);
}
.home .main .concept {
  width: 80%;
  padding: 100px 10%;
  background-color: white;
  position: relative;
}
.home .main .concept .title p:nth-child(1) {
  font-size: 32px;
  color: #171717;
  font-family: "SOURCEHANSANSCN-MEDIUM";
}
.home .main .concept .title p:nth-child(2) {
  font-style: italic;
  color: #747575;
  font-size: 26px;
}
.home .main .concept .text {
  margin-top: 60px;
}
.home .main .concept .text p:nth-child(1) {
  color: #282727;
  font-family: "AvantGarde-Book";
  font-size: 36px;
}
.home .main .concept .text p:nth-child(2) {
  color: #101010;
  font-size: 28px;
  font-family: "SOURCEHANSANSCN-REGULAR";
}
.home .main .concept .img {
  position: absolute;
  right: 10%;
  bottom: -150px;
  width: 40%;
}
.home .main .concept .img img {
  width: 100%;
  display: block;
  object-fit: contain;
}
.home .main .car {
  width: 100%;
  height: 1000px;
  background: url("../image/car.png") no-repeat;
  transition: none !important;
  opacity: 1 !important;
  background-attachment: fixed;
  background-size: cover;
  transform: translateY(0) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.home .main .car .c {
  position: absolute;
  left: 50%;
  top: 15%;
  height: 70%;
}
.home .main .car .c .img1 {
  max-width: 1px;
  height: 100%;
  display: block;
  object-fit: cover;
}
.home .main .car .c .sl {
  position: absolute;
  left: -36px;
  top: 20%;
  cursor: pointer;
}
.home .main .car .c .sr {
  position: absolute;
  right: -36px;
  top: 35%;
  cursor: pointer;
}
.home .main .car .mCon {
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.home .main .car .mCon .l {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home .main .car .mCon .l .t1 {
  width: 278px;
  height: 50px;
  border: 1px solid rgba(191, 191, 192, 0.1);
  line-height: 50px;
  text-align: center;
  color: #696969;
  font-size: 18px;
  font-family: "SOURCEHANSANSCN-NORMAL";
}
.home .main .car .mCon .l .down {
  margin: 40px 0;
}
.home .main .car .mCon .l .t2 {
  max-width: 100%;
  width: 426px;
  height: 57px;
  border: 1px dashed rgba(255, 255, 255, 0.36);
  color: white;
  text-align: center;
  line-height: 57px;
  font-family: "SOURCEHANSANSCN-LIGHT";
  margin-top: 80px;
}
.home .main .car .mCon .r {
  width: 40%;
}
.home .main .car .mCon .r .allItems {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.home .main .car .mCon .r .allItems .item {
  width: 32%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  cursor: pointer;
  align-items: center;
  margin-bottom: 80px;
}
.home .main .car .mCon .r .allItems .item .p1 {
  color: rgba(255, 255, 255, 0.1);
  font-size: 36px;
  font-style: italic;
  transition: all 1s;
}
.home .main .car .mCon .r .allItems .item .opic {
  margin-left: 20px;
}
.home .main .car .mCon .r .allItems .item .opic .p img {
  filter: grayscale(100%);
  transition: all 1s;
}
.home .main .car .mCon .r .allItems .item .opic p {
  color: #929292;
  font-family: "SOURCEHANSANSCN-NORMAL";
  margin: 10px 0;
  transition: all 1s;
}
.home .main .car .mCon .r .allItems .item:hover .p1 {
  color: white;
}
.home .main .car .mCon .r .allItems .item:hover .opic .p img {
  filter: grayscale(0);
}
.home .main .car .mCon .r .allItems .item:hover .opic p {
  color: white;
}
.home .main .car .mCon .r .t {
  width: 426px;
  height: 57px;
  border: 1px dashed rgba(255, 255, 255, 0.36);
  text-align: center;
  margin: 80px auto;
  line-height: 57px;
  max-width: 80%;
  color: white;
  font-family: "SOURCEHANSANSCN-NORMAL";
}
.home .main .car .centerCar {
  width: 50%;
  position: absolute;
  left: 10%;
  top: 0;
  height: 100%;
}
.home .main .car .bcar {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  background-size: cover;
  background-position: 0;
  background: url("../image/blackCar.jpg") no-repeat;
  height: 524px;
  width: 100%;
}
.home .main .honor {
  width: 80%;
  padding: 80px 10%;
  margin: 0 auto;
  background-color: white;
}
.home .main .honor .title p:nth-child(1) {
  font-size: 32px;
  color: #171717;
  font-family: "SOURCEHANSANSCN-MEDIUM";
}
.home .main .honor .title p:nth-child(2) {
  font-style: italic;
  color: #747575;
  font-size: 26px;
}
.home .main .honor .allImgs {
  width: 100%;
  margin: 40px auto;
}
.home .main .honor .allImgs .p1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  color: #434343;
  font-family: "SOURCEHANSANSCN-REGULAR";
}
.home .main .honor .allImgs .p1::after {
  width: 95%;
  content: "";
  background-color: #EAEAEA;
  height: 1px;
  display: inline-block;
}
.home .main .honor .allImgs .swiper-container {
  width: 100%;
  margin: 30px auto;
  padding-bottom: 80px;
}
.home .main .honor .allImgs .swiper-container .swiper-wrapper .swiper-slide .oImg {
  background: #F7F7F7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 260px;
  cursor: pointer;
  overflow: hidden;
  transition: all 600ms;
}
.home .main .honor .allImgs .swiper-container .swiper-wrapper .swiper-slide .oImg img {
  width: 80%;
  display: block;
  object-fit: contain;
  height: 200px;
  transition: all 1s;
}
.home .main .honor .allImgs .swiper-container .swiper-wrapper .swiper-slide p {
  text-align: center;
  color: #101010;
  font-family: "SOURCEHANSANSCN-REGULAR";
  font-size: 18px;
  margin: 20px 0;
}
.home .main .honor .allImgs .swiper-container .swiper-wrapper .swiper-slide:hover .oImg {
  background-color: transparent;
}
.home .main .honor .allImgs .swiper-container .swiper-wrapper .swiper-slide:hover .oImg img {
  transform: scale(1.3);
}
.home .main .honor .allImgs .swiper-container .swiper-pagination {
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  bottom: 0;
  right: 0;
}
.home .main .honor .allImgs .swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 34px;
  height: 34px;
  border: 1px solid transparent;
  border-radius: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  opacity: 1;
  margin: 0 5px;
  transition: all 600ms;
}
.home .main .honor .allImgs .swiper-container .swiper-pagination .swiper-pagination-bullet::before {
  width: 5px;
  height: 5px;
  background: #434343;
  opacity: 0.4;
  border-radius: 50%;
  content: "";
  transition: all 600ms;
  display: inline-block;
}
.home .main .honor .allImgs .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  border-color: #5E7AD3;
}
.home .main .honor .allImgs .swiper-container .swiper-pagination .swiper-pagination-bullet-active::before {
  background-color: #5E7AD3;
}
.home .main .history {
  width: 100%;
  background: url("../image/hbg.png") no-repeat;
  background-size: cover;
  padding: 80px 0;
}
.home .main .history .mCon {
  width: 80%;
  margin: 0 auto;
}
.home .main .history .mCon .title p:nth-child(1) {
  font-size: 32px;
  color: #171717;
  font-family: "SOURCEHANSANSCN-MEDIUM";
}
.home .main .history .mCon .title p:nth-child(2) {
  font-style: italic;
  color: #747575;
  font-size: 26px;
}
.home .main .history .mCon .swiper1 {
  /* width: 80%; */
  width: 90%;
  margin: 100px auto;
}
.home .main .history .mCon .swiper1 .swiper-container {
  width: 100%;
}
.home .main .history .mCon .swiper1 .swiper-container .swiper-wrapper .swiper-slide {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.home .main .history .mCon .swiper1 .swiper-container .swiper-wrapper .swiper-slide .pic {
  width: 45%;
  cursor: pointer;
  overflow: hidden;
}
.home .main .history .mCon .swiper1 .swiper-container .swiper-wrapper .swiper-slide .pic img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: all 2s;
}
.home .main .history .mCon .swiper1 .swiper-container .swiper-wrapper .swiper-slide .pic:hover img {
  transform: scale(1.02);
}
.home .main .history .mCon .swiper1 .swiper-container .swiper-wrapper .swiper-slide .text {
  width: 48%;
  position: relative;
}
.home .main .history .mCon .swiper1 .swiper-container .swiper-wrapper .swiper-slide .text .t1 {
  color: #0361AB;
  font-size: 48px;
  font-family: "AvantGardeLT-CondBold";
}
.home .main .history .mCon .swiper1 .swiper-container .swiper-wrapper .swiper-slide .text .t2 {
  color: #242424;
  font-family: "SOURCEHANSANSCN-NORMAL";
  line-height: 32px;
  margin: 30px auto;
}
.home .main .history .mCon .swiper1 .swiper-container .swiper-wrapper .swiper-slide .text .t3 {
  /* font-size: 300px; */
  font-size: 15.625vw;
  font-family: "AvantGardeLT-CondBold";
  color: #0361AB;
  opacity: 0.04;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  line-height: 200px;
}
.home .main .history .mCon .swiper2 {
  width: 100%;
  margin: 60px auto;
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
}
.home .main .history .mCon .swiper2 .swiper-container .swiper-wrapper .swiper-slide p {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  color: #898989;
  font-size: 14px;
  font-family: "AvantGardeLT-Medium";
}
.home .main .history .mCon .swiper2 .swiper-container .swiper-wrapper .swiper-slide p::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #B6B6B6;
  border-radius: 50%;
  margin-bottom: 15px;
}
.home .main .history .mCon .swiper2 .swiper-container .swiper-wrapper .swiper-slide-active p::before {
  background-color: #5E7AD3;
}
.home .main .history .mCon .swiper2 .swiper-container .swiper-wrapper .swiper-slide-active p::after {
  content: "";
  width: 0;
  height: 1px;
  background: #5E7AD3;
  position: absolute;
  /* left: 130px; */
  left: 50%;
  top: 2px;
  animation: long 4s infinite forwards;
}
@keyframes long {
  from {
    width: 0;
  }
  to {
    /* width: 116px; */
    width: 100%;
  }
}
.home .foot {
  width: 100%;
  position: relative;
  background: url("../image/fbg.png") no-repeat;
  background-size: cover;
  padding: 50px 0 30px 0;
}
.home .foot .content {
  width: 80%;
  margin: 0 auto;
}
.home .foot .content .logo {
  width: 100%;
  padding: 40px 0;
}
.home .foot .content .links {
  width: 100%;
  border-top: 1px solid rgba(243, 243, 243, 0.06);
  border-bottom: 1px solid rgba(243, 243, 243, 0.06);
  padding: 80px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.home .foot .content .links .item {
  width: 12%;
  display: flex;
  flex-direction: column;
}
.home .foot .content .links .item p {
  color: white;
  font-family: "SOURCEHANSANSCN-NORMAL";
  margin-bottom: 30px;
}
.home .foot .content .links .item a {
  color: #858585;
  font-size: 14px;
  font-family: "SOURCEHANSANSCN-LIGHT";
  display: inline;
  margin-top: 5px;
  transition: all 600ms;
}
.home .foot .content .links .item a:hover {
  color: white;
}
.home .foot .content .links .info {
  text-align: right;
  padding-top: 50px;
}
.home .foot .content .links .info p:nth-child(1) {
  font-size: 14px;
  color: white;
  font-family: "it";
}
.home .foot .content .links .info p:nth-child(2) {
  font-family: "Genome-Thin";
  color: #DADADA;
  font-size: 22px;
  margin-top: 15px;
}
.home .foot .content .beian {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 30px;
}
.home .foot .content .beian .l, .home .foot .content .beian a {
  color: rgba(218, 218, 218, 0.4);
  font-size: 14px;
  font-family: "SOURCEHANSANSCN-LIGHT";
}
.home .foot .content .beian a {
  transition: all 600ms;
}
.home .foot .content .beian a:hover {
  color: white;
}

.home .main .history .mCon .swiper2 .swiper-container .swiper-wrapper .swiper-slide:last-child p::after{
  display: none;
}
@media screen and (min-width: 2200px) {
  .home .main .concept {
    padding: 300px 10%;
    overflow: hidden;
  }
  .home .main .concept .img {
    bottom: -200px;
  }
}
@media screen and (max-width: 1680px) {
  .home .main .intro .content .l .nr {
    line-height: 36px;
  }
  .home .main .intro .content {
    margin: 40px auto;
  }
  .home .main .concept .img{
    bottom: -100px;
  }
  .home .main .concept .text p:nth-child(1) {
    font-size: 32px;
  }
  .home .main .concept .text p:nth-child(2) {
    font-size: 24px;
  }
  .home .main .history .mCon .swiper1 .swiper-container .swiper-wrapper .swiper-slide .text .t1 {
    font-size: 42px;
  }
  .home .main .history .mCon .swiper1 .swiper-container .swiper-wrapper .swiper-slide .text .t2 {
    margin: 20px auto;
  }
  .home .main .history .mCon .swiper1 {
    margin: 60px auto;
  }
  .home .main .honor .allImgs .swiper-container .swiper-pagination .swiper-pagination-bullet {
    width: 28px;
    height: 28px;
  }
}
@media screen and (max-width: 1440px) {
  .home .head .content {
    width: 90%;
  }
  .home .main .honor .allImgs .p1::after {
    width: 90%;
  }
  /* .home .main .history .mCon .swiper1 .swiper-container .swiper-wrapper .swiper-slide .text .t3 {
    font-size: 190px;
  } */
  .home .main .concept .img {
    bottom: -40px;
  }
  .home .main .history .mCon .swiper1 .swiper-container .swiper-wrapper .swiper-slide .text .t1 {
    font-size:36px;
  }
  .home .main .honor .allImgs .swiper-container .swiper-pagination .swiper-pagination-bullet {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 1000px) {
  .home {
    overflow: hidden;
  }
  .home .head .content {
    display: none;
  }
  .home .head .pContent {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 0;
    justify-content: space-between;
  }
  .home .head .pContent .logo {
    width: 60%;
  }
  .home .head .pContent .logo img {
    /* width: 100%; */
    object-fit: contain;
  }
  .home .head .pContent .lines {
    position: relative;
    width: 20px;
    height: 20px;
    margin-top: 5px;
  }
  .home .head .pContent .lines div {
    width: 20px;
    height: 1px;
    background-color: white;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 600ms;
  }
  .home .head .pContent .lines div:nth-child(2) {
    top: 6px;
  }
  .home .head .pContent .lines div:nth-child(3) {
    top: 12px;
  }
  .home .head .pContent .active div:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
  }
  .home .head .pContent .active div:nth-child(2) {
    left: -100%;
    opacity: 0;
  }
  .home .head .pContent .active div:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
  }
  .home .head .pNav {
    position: absolute;
    left: 0;
    top: 67.25px;
    width: 100%;
    height: calc( 100vh - 67.25px);
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 100;
    display: none;
  }
  .home .head .pNav a {
    display: block;
    width: 100%;
    text-align: center;
    color: white;
    margin-top: 40px;
    font-size: 14px;
    font-family: "SOURCEHANSANSCN-NORMAL";
  }
  .home .topMenu {
    display: none;
  }
  .home .banner .onLine {
    display: none;
  }
  .home .banner .text p:nth-child(1) {
    font-size: 20px;
  }
  .home .banner .text p:nth-child(2) {
    font-size: 18px;
    font-family: "SOURCEHANSANSCN-EXTRALIGHT";
  }
  .home .main .intro {
    width: 90%;
    margin: 30px auto;
  }
  .home .main .intro .title p:nth-child(1) {
    font-size: 20px;
  }
  .home .main .intro .content {
    margin: 15px auto;
    flex-direction: column;
  }
  .home .main .intro .content .l {
    width: 100%;
  }
  .home .main .intro .content .l .nr {
    line-height: 35px;
    font-size: 14px;
  }
  .home .main .intro .content .l .count {
    margin: 30px auto;
  }
  .home .main .intro .content .l .count .item p:nth-child(1) {
    font-size: 20px;
  }
  .home .main .intro .content .r {
    width: 100%;
  }
  .home .main .pics {
    width: 90%;
    padding-bottom: 30px;
  }
  .home .main .concept {
    width: 90%;
    padding: 40px 5%;
  }
  .home .main .concept .title p:nth-child(1) {
    font-size: 20px;
  }
  .home .main .concept .text {
    margin-top: 30px;
  }
  .home .main .concept .text p:nth-child(1) {
    font-size: 20px;
  }
  .home .main .concept .text p:nth-child(2) {
    font-size: 16px;
  }
  .home .main .car {
    height: 1200px;
  }
  .home .main .car .mCon {
    width: 90%;
    flex-direction: column;
  }
  .home .main .car .mCon .l {
    width: 100%;
  }
  .home .main .car .mCon .l .down {
    margin: 10px 0;
  }
  .home .main .car .mCon .l .t2 {
    margin-top: 30px;
    font-size: 13px;
  }
  .home .main .car .mCon .r {
    width: 100%;
    margin-top: 80px;
  }
  .home .main .car .mCon .r .allItems .item {
    width: 45%;
  }
  .home .main .car .mCon .r .t {
    margin: 40px auto;
    max-width: 100%;
    font-size: 14px;
  }
  .home .main .honor {
    width: 90%;
    padding: 40px 5%;
  }
  .home .main .honor .title p:nth-child(1) {
    font-size: 20px;
  }
  .home .main .honor .allImgs .p1::after {
    width: 75%;
  }
  .home .main .honor .allImgs .swiper-container .swiper-wrapper .swiper-slide p {
    font-size: 16px;
  }
  .home .main .history {
    padding: 40px 0;
    background-size: 105% 105%;
  }
  .home .main .history .mCon {
    width: 90%;
  }
  .home .main .history .mCon .title p:nth-child(1) {
    font-size: 20px;
  }
  .home .main .history .mCon .swiper1 {
    width: 100%;
    margin: 30px auto;
  }
  .home .main .history .mCon .swiper1 .swiper-container .swiper-wrapper .swiper-slide {
    flex-direction: column;
  }
  .home .main .history .mCon .swiper1 .swiper-container .swiper-wrapper .swiper-slide .pic {
    width: 100%;
  }
  .home .main .history .mCon .swiper1 .swiper-container .swiper-wrapper .swiper-slide .text {
    width: 100%;
  }
  .home .main .history .mCon .swiper1 .swiper-container .swiper-wrapper .swiper-slide .text .t1 {
    margin-top: 30px;
  }
  .home .main .history .mCon .swiper1 .swiper-container .swiper-wrapper .swiper-slide .text .t3 {
    font-size: 150px;
    line-height: 1;
  }
  .home .foot {
    padding: 10px 0;
  }
  .home .foot .content {
    width: 90%;
  }
  .home .foot .content .logo {
    padding-bottom: 0;
  }
  .home .foot .content .links {
    display: none;
  }
  .home .foot .content .beian {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 30px;
    text-align: center;
  }

  .home .main .intro .content .l .count .item {
    width: 33%;
  }
  .home .main .intro{
    margin: 0 auto;
    padding: 60px 0;
  }
  .home .main .intro .content .l .nr {
    line-height: 28px;
  }
  .home .main .history .mCon .swiper2 {
    margin: 30px auto;
  }
}

@media screen and (max-width: 540px) {
  .home .main .concept .img{
    position: static;
  }
  .home .main .concept{
    padding: 60px 5% 0px;
  }
  .home .main .honor .allImgs .swiper-container{
    padding-bottom: 40px;
  }
  .home .main .history .mCon .swiper1 .swiper-container .swiper-wrapper .swiper-slide .text .t3{
    font-size: 120px;
  }
  .home .main .history .mCon .swiper1 .swiper-container .swiper-wrapper .swiper-slide .text .t2 {
    margin: 10px auto;
  }
}
/*# sourceMappingURL=about.css.map */
