/* 菜单栏 */

.btn-menu {
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  display: inline-block;
  width: 15px;
  height: 12px;
}

.btn-menu span {
  position: absolute;
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  -webkit-transition: top 0.2s 0.25s, opacity 0.2s 0.25s,
    -webkit-transform 0.2s 0s;
  transition: top 0.2s 0.25s, opacity 0.2s 0.25s, -webkit-transform 0.2s 0s;
  -o-transition: top 0.2s 0.25s, opacity 0.2s 0.25s, -webkit-transform 0.2s 0s;
  transition: top 0.2s 0.25s, opacity 0.2s 0.25s, transform 0.2s 0s;
  transition: top 0.2s 0.25s, opacity 0.2s 0.25s, transform 0.2s 0s,
    -webkit-transform 0.2s 0s;
  -moz-transition: top 0.2s 0.25s, opacity 0.2s 0.25s, -webkit-transform 0.2s 0s;
  -ms-transition: top 0.2s 0.25s, opacity 0.2s 0.25s, -webkit-transform 0.2s 0s;
}

.nav-area:hover .btn-menu span {
  background: #fff !important;
}

.btn-menu-active span {
  -webkit-transition: background 0.2s, top 0.2s, opacity 0.2s,
    transform 0.2s 0.25s;
  transition: background 0.2s, top 0.2s, opacity 0.2s,
    -webkit-transform 0.2s 0.25s;
  -o-transition: background 0.2s, top 0.2s, opacity 0.2s, transform 0.2s 0.25s;
  transition: background 0.2s, top 0.2s, opacity 0.2s, transform 0.2s 0.25s;
  transition: background 0.2s, top 0.2s, opacity 0.2s, transform 0.2s 0.25s,
    -webkit-transform 0.2s 0.25s;
  -moz-transition: background 0.2s, top 0.2s, opacity 0.2s, transform 0.2s 0.25s;
  -ms-transition: background 0.2s, top 0.2s, opacity 0.2s, transform 0.2s 0.25s;
}

.btn-menu span:nth-child(1) {
  top: 0;
}

.btn-menu span:nth-child(2) {
  top: 5px;
}

.btn-menu span:nth-child(3) {
  top: 10px;
}

.btn-menu-active span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn-menu span:nth-child(2) {
  top: 5px;
}

.btn-menu-active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.btn-menu-active span:nth-child(3),
.btn-menu-active span:nth-child(1) {
  top: 6px;
}

.btn-menu-active span:nth-child(2) {
  opacity: 0;
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 0 10px 10px;
  cursor: pointer;
}

.menu-btn .btn-remind {
  font-size: 18px;
  font-weight: 600;
  margin-left: 4px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  line-height: 19px;
}

.menu-btn .btn-remind span {
  display: block;
  text-align: right;
  font-size: 14px;
  height: 18px;
  overflow: hidden;
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}

.menu-btn .btn-remind .close {
  height: 0;
  transform: scaleY(0);
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
}

.menu-btn.on .btn-remind .menu {
  height: 0;
  transform: scaleY(0);
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
}

.menu-btn.on .btn-remind .close {
  height: 18px;
  transform: scaleY(1);
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
}

#nav-area {
  /* pointer-events: none; */
}
#nav-area a {
  display: block;
}
#nav-area a,
#nav-area .nav-item {
  /* pointer-events: auto; */
}

#nav-area .nav-list-area {
  position: relative;
  display: none;
  background: var(--background-color);
  height: 0;
  width: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  padding: 0 20px;
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  overflow: auto;
  transition-delay: 0s;
  color: #fff;
}
#nav-area .nav-list-area a {
  color: #fff;
}

#nav-area .nav-list-area .slogan {
  font-size: 11vw;
  line-height: 1.2;
  font-weight: bold;
}

#nav-area .nav-list-area .slogan > p {
  display: block;
  transition: all 1s ease 0.5s;
  -webkit-transition: all 1s ease 0.5s;
  -moz-transition: all 1s ease 0.5s;
  -ms-transition: all 1s ease 0.5s;
  -o-transition: all 1s ease 0.5s;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transform: translateY(80%);
  -webkit-transform: translateY(80%);
  -moz-transform: translateY(80%);
  -ms-transform: translateY(80%);
  -o-transform: translateY(80%);
}

#nav-area .nav-list-area .slogan > p:nth-child(2) {
  transition-delay: 0.6s;
}
#nav-area .nav-list-area .sloganbox {
  position: relative;
  -webkit-text-stroke: 1px #fff;
}

#nav-area .nav-list-area .slogan1 {
  position: absolute;
  left: 0;
  top: 0;
  color: transparent;
}

#nav-area .nav-list-area .nav-list {
  margin-top: 0.8rem;
}

#nav-area .nav-list-area .nav-item {
  font-size: 24px;
  opacity: 0;
  transform: translate3d(0, 50%, 0);
  transition: all 0.5s;
  margin-bottom: 3%;
}

#nav-area .nav-list-area .nav-item > a {
  display: block;
}
#nav-area.on .nav-list-area .nav-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
#nav-area.on .nav-list-area .nav-list .nav-item {
  transition: all 1s;
  transition-delay: 1.3s;
}
#nav-area.on .nav-list-area .nav-list .nav-item.on > a {
  color: var(--color);
}

#nav-area.on .nav-list-area .nav-list .nav-item:nth-child(2) {
  transition-delay: 1.4s;
}
#nav-area.on .nav-list-area .nav-list .nav-item:nth-child(3) {
  transition-delay: 1.5s;
}
#nav-area.on .nav-list-area .nav-list .nav-item:nth-child(4) {
  transition-delay: 1.6s;
}
#nav-area.on .nav-list-area .nav-list .nav-item:nth-child(5) {
  transition-delay: 1.7s;
}

#nav-area .nav-list-area .nav-item .title {
  display: inline-block;
}

#nav-area .nav-list-area .nav-item .title.en {
  font-family: "PxGrotesk";
  margin-left: 10px;
  font-size: 20px;
  opacity: 0.5;
  display: none;
}

#nav-area.on .nav-list-area {
  height: 100vh;
  padding: calc(60px + 1rem) 20px 4vw;
  transition-delay: 0.2s;
}

#nav-area .nav-list-area::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1rem;
  background: var(--color8);
  bottom: 0;
  -webkit-clip-path: polygon(0 59%, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 59%, 100% 0, 100% 100%, 0 100%);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition-delay: 0.3s;
}

#nav-area.on .nav-list-area::after {
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transition-delay: 0.6s;
}

#nav-area.on .nav-list-area .slogan > p {
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

#nav-area .side-button {
  position: absolute;
  z-index: 3;
  top: 50vh;
  padding: 10px;
  left: var(--side-width);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

#nav-area .side-button .bg-img-container {
  width: 20px;
  height: 20px;
}

#nav-area .side-button .bg-img-container .bg-img {
  background-size: contain;
  transition: all 0.5s ease 0.1s;
  -webkit-transition: all 0.5s ease 0.1s;
  -moz-transition: all 0.5s ease 0.1s;
  -ms-transition: all 0.5s ease 0.1s;
  -o-transition: all 0.5s ease 0.1s;
}

#nav-area .side-button .bg-img-container .bg-img.close {
  opacity: 0;
}

#nav-area .side-button.on .bg-img-container .bg-img {
  opacity: 0;
}

#nav-area .side-button.on .bg-img-container .bg-img.close {
  opacity: 1;
}

#nav-area .side-menu {
  /* pointer-events: auto; */
  position: absolute;
  padding: 0.5rem var(--side-width);
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transition: all 0.8s ease 0.2s;
  -webkit-transition: all 0.8s ease 0.2s;
  -moz-transition: all 0.8s ease 0.2s;
  -ms-transition: all 0.8s ease 0.2s;
  -o-transition: all 0.8s ease 0.2s;
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  opacity: 0;
}

#nav-area .side-menu.show {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

#nav-area .side-menu .logo {
  display: inline-block;
  max-width: 140px;
}

#nav-area .side-menu .logo img {
  width: 100%;
}

#nav-area .side-menu .side-list-area {
  height: 100%;
  padding-bottom: 0.8rem;
}

#nav-area .side-menu .side-menu-list {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
}

#nav-area .side-menu .side-menu-item {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.1rem;
  padding-left: 0;
  font-size: 0.48rem;
  transition: all 0.5s;
}

#nav-area .side-menu .side-menu-item .point {
  font-size: 0.54rem;
}

#nav-area .side-menu .side-menu-item .point {
  display: none;
}

#nav-area .side-menu .side-menu-item.on .title {
  display: none;
  color: var(--color);
  font-weight: 600;
}

#nav-area .side-menu .side-menu-item:hover {
  color: var(--color);
}

#nav-area .side-menu .side-menu-item.on .title.point {
  display: block;
}

@media only screen and (max-width: 768px) {
  #nav-area .nav-list-area {
    display: block;
  }
}

#nav-area {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
}

#nav-area .outer-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 3%;
  background-color: rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

#nav-area .outer-container .left-area .logo {
  width: 180px;
  display: block;
}

#nav-area .outer-container .left-area .logo > img {
  width: 100%;
}
#nav-area .outer-container .left-area .logo > svg {
  width: 100%;
  display: block;
}
#nav-area .outer-container .left-area .logo > svg * {
  fill: #fff;
}
#nav-area.bainav .outer-container .left-area .logo > svg * {
  fill: #0777ff;
}
#nav-area.bainav.on .outer-container .left-area .logo > svg * {
  fill: #fff;
}
#nav-area.bainav.on .btn-menu span {
  background-color: #fff;
}
#nav-area.bainav .outer-container {
  background-color: #fff;
  padding-right: 3%;
  padding-left: 3%;
}
#nav-area.bainav.on .outer-container {
  background-color: rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#nav-area.bainav .btn-menu span {
  background-color: #0b1b20;
}
#nav-area.bainav .outer-container .nav-item > a {
  color: #0b1b20;
}
#nav-area.bainav .menu-btn {
  color: #0b1b20;
}
#nav-area .menu-btn {
  color: #fff;
}
.menu-btn .btn-remind span.close {
  color: #fff;
}
#nav-area .right-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#nav-area .right-area.for-phone {
  display: none;
  /* pointer-events: auto; */
}

#nav-area .outer-container .nav-item {
  /* font-weight: 600; */
  text-align: center;
  display: inline-block;
  margin-left: 0.75rem;
}

#nav-area .outer-container .nav-item a {
  display: inline-block;
  line-height: 40px;
  height: 40px;
  color: #fff;
}

#nav-area .outer-container .nav-item a > .title {
  display: none;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  position: relative;
}

#nav-area .outer-container .nav-item.on a > .title.cn {
  display: inline-block;
}
/* #nav-area .outer-container .nav-item.on a>.title.en  */

#nav-area .outer-container .nav-item:not(.on) a > .title.cn {
  display: block;
}

#nav-area .outer-container .nav-item.on .title {
  /* font-family: "PxGrotesk"; */
  /* font-size: 18px; */
  color: var(--color);
  overflow: visible;
}
/* #nav-area .outer-container .nav-item:not(.on) a:hover>.title {
    color: var(--color);
    background-image: -webkit-linear-gradient(right, var(--color), var(--color2), var(--color));
    background-size: 1000%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: navTextBackground 2s infinite;
    -webkit-animation: navTextBackground 2s infinite;
    transition-delay: 0.6s;
} */

#nav-area .outer-container .nav-item > a:hover .title {
  color: var(--color);
}

#nav-area.bainav .outer-container .nav-item > a:hover .title {
  color: var(--color);
}
#nav-area .outer-container .nav-item a > .title::after {
  display: none;
  content: "";
  display: block;
  width: 0;
  height: 2px;
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  animation-delay: 0.2s;
  transition: all 0.2s ease 0.1s;
  -webkit-transition: all 0.2s ease 0.1s;
  -moz-transition: all 0.2s ease 0.1s;
  -ms-transition: all 0.2s ease 0.1s;
  -o-transition: all 0.2s ease 0.1s;
  background-color: #fff;
}

#nav-area .outer-container .nav-item:not(.on) a:hover > .title::after {
  display: none;
  background-color: var(--color);
  width: 120%;
  background-image: -webkit-linear-gradient(
    right,
    var(--color),
    var(--color2),
    var(--color)
  );
  background-size: 1000%;
  animation: navTextBackground 2s infinite;
  -webkit-animation: navTextBackground 2s infinite;
  transition: all 0.5s ease 0.1s;
  -webkit-transition: all 0.5s ease 0.1s;
  -moz-transition: all 0.5s ease 0.1s;
  -ms-transition: all 0.5s ease 0.1s;
  -o-transition: all 0.5s ease 0.1s;
}

@keyframes navTextBackground {
  0% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: 100%;
  }
}

@media only screen and (max-width: 1600px) {
  #nav-area .outer-container {
    padding: 10px 3%;
  }
}
@media only screen and (max-width: 1440) {
  #nav-area .outer-container {
    padding: 10px 3%;
  }
}
@media only screen and (max-width: 768px) {
  #nav-area .right-area.for-pc {
    display: none;
  }
  #nav-area .right-area.for-phone {
    display: block;
  }
  #nav-area .outer-container .left-area .logo {
    width: 130px;
  }
}
#nav-area .outer-container .nav-item {
  position: relative;
}

#nav-area .outer-container .nav-item:hover .snav-box {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
  transform: translate3d(0, 0, 0);
}

.snav-box {
  transition: all 0.3s;
  transition-delay: 0.1s;
  position: fixed;
  z-index: 99;
  width: 100vw;
  left: 0;
  top: 0;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 0.1rem 0.2rem 0 rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  background: #002f41;
}

.phone-snav-box.snav-box {
  width: 100%;
  position: relative;
  opacity: 1;
  visibility: visible;
  background: none;
  overflow: hidden;
  transition: all 0.4s;
  height: 0;
}
.nav-item[data-on="on"] .phone-snav-box.snav-box {
  height: 168vw;
}
.nav-item .snav-box.active {
}
.snav-box .snav-ul {
  width: 100%;
  float: left;
  display: flex;

  flex-wrap: nowrap;
}
.snav-box .snav-li {
  width: 25%;

  min-height: 3.4rem;
  padding: 0.6rem;
  text-align: left;
  position: relative;
  transform: translate3d(10%, 0, 0);
  transition: all 0.3s;
  opacity: 0;
  transition-delay: 0.1s;
}
.phone-snav-box.snav-box .snav-ul {
  float: unset;
  display: block;
}
.phone-snav-box.snav-box .snav-ul .snav-li {
  width: 100%;
  opacity: 1;
  transform: translate3d(0%, 0, 0);
  margin-top: 3vw;
  overflow: hidden;
  height: 53vw;
  padding: 5vw;
}

.snav-box .snav-li:nth-child(2) {
  transform: translate3d(15%, 0, 0);
}
.snav-box .snav-li:nth-child(3) {
  transform: translate3d(20%, 0, 0);
}
.snav-box .snav-li:nth-child(4) {
  transform: translate3d(25%, 0, 0);
}
/* #nav-area .outer-container .nav-item:hover .snav-box .snav-li:nth-child(2) {
  transition-delay: 0.1s;
}
#nav-area .outer-container .nav-item:hover .snav-box .snav-li:nth-child(3) {
  transition-delay: 0.2s;
}
#nav-area .outer-container .nav-item:hover .snav-box .snav-li:nth-child(4) {
  transition-delay: 0.3s;
} */
#nav-area .outer-container .nav-item:hover .snav-box .snav-li {
  transform: translate3d(0%, 0, 0);
  opacity: 1;
  transition-delay: 0s;
}

.snav-box .snav-text {
  position: relative;
  top: 50%;
  transform: translate(0, -25%);
  z-index: 1;
}

.phone-snav-box.snav-box .snav-text {
  height: 100%;
  top: 0;
  transform: unset;
}
.phone-snav-box.snav-box .snav-li .name {
  font-size: 5.3vw;
  line-height: 20.65vw;
  margin-bottom: 2vw;
}

#nav-area .outer-container .nav-item .snav-box .snav-li .name {
  font-size: 0.4rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.snav-box .snav-li a.name {
  display: inline-block;
  font-size: 0.4rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.phone-snav-box.snav-box .snav-li .desc a {
  font-size: 3.73vw;
  line-height: 8vw;
}

.snav-box .snav-li .desc {
  min-height: 0.4rem;
}
.snav-box .snav-li .desc a {
  position: relative;
  margin-right: 0.35rem;
}
.snav-box .snav-li .desc a .subname {
  padding-left: 0.2rem;
}
.snav-box .snav-li .desc a:before {
  position: absolute;
  content: "";
  left: 0;
  top: 49%;
  width: 0;
  height: 0;
  height: 0.08rem;
  width: 0.08rem;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg) translate(-50%, 0%);
  border-width: 0.02rem;
  border-style: solid;
  border-color: #fff;
  border-left: transparent;
  border-bottom: transparent;
}

.phone-snav-box.snav-box .yuan {
  top: 14.9vw;
  transform: translateY(-50%);
  right: 2.93vw;
}
.phone-snav-box.snav-box .yuan .img {
  width: 23.7vw;
  height: 23.7vw;
}
.phone-snav-box.snav-box .yuan .img img {
  width: 12.58vw;
  height: 12.58vw;
}
.snav-box .yuan {
  position: absolute;
  right: 0.2rem;
  top: 0.2rem;
}
.snav-box .yqbox {
  float: left;
}
.snav-box a.yuanquan {
  height: auto !important;
  float: left;
}
.snav-box .yuan .img {
  width: 1.3rem;
  height: 1.3rem;
  overflow: hidden;
  position: relative;
  opacity: 0.8;
}
.snav-box .yuan .img img {
  width: 0.8rem;
  height: 0.8rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.snav-box .yuan .q {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 100%;
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -50%;
  opacity: 0;
  transition: border 0.3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: snavyuan;
  animation-duration: 8s;
}
.snav-box .yuan .q.q1 {
  animation-delay: 0s;
}
.snav-box .yuan .q.q2 {
  animation-delay: 2s;
}
.snav-box .yuan .q.q3 {
  animation-delay: 4s;
}
.snav-box .yuan .q.q4 {
  animation-delay: 6s;
}
@keyframes snavyuan {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.25;
  }
  100% {
    opacity: 0;
    transform: scale(3);
  }
}

.snav-box .snav-li:nth-child(1) {
  background: #002f41;
}
.snav-box .snav-li:nth-child(2) {
  background: #a4c039;
}
.snav-box .snav-li:nth-child(3) {
  background: #425bdc;
}
.snav-box .snav-li:nth-child(4) {
  background: #00acb1;
}

.scroll-remind {
  position: fixed;
  font-size: 12px;
  padding: 10px;
  z-index: 4;
  cursor: pointer;
  left: var(--side-width);
  bottom: 10vh;
  transform-origin: left bottom;
  transform: rotate(90deg) translate(-50%);
  -webkit-transform: rotate(90deg) translate(-50%);
  -moz-transform: rotate(90deg) translate(-50%);
  -ms-transform: rotate(90deg) translate(-50%);
  -o-transform: rotate(90deg) translate(-50%);
}

.scroll-remind:hover {
  color: var(--color);
}

@media only screen and (max-width: 1660px) {
  #nav-area .side-button {
    left: 10px;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
  }
}

@media only screen and (max-width: 1024px) {
  #body-content {
    position: relative;
  }
  #nav-area .side-button {
    left: 0;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
  }
  #nav-area .side-menu .side-menu-list {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 768px) {
  .scroll-remind {
    left: 0;
  }
  #nav-area .side-button,
  #nav-area .side-menu {
    display: none;
  }
}
/* -------------------页脚部分------------------- */

.footer {
  padding: 1.4rem 0 0.7rem;
  position: relative;
  background-color: #09181e;
  margin-top: -2px;
  color: #fff;
  font-size: 16px;
}
.footer a {
  color: #fff;
  display: inline;
}
.footer .f-main {
  display: flex;
}
.footer .f-main:after {
  content: "";
  display: block;
  clear: both;
}

.footer .f-main .f-l {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.footer .f-main .f-l .f-logo {
  display: inline-block;
  margin-bottom: 20px;
}
.footer .f-main .f-l .f-logo:hover svg {
  fill: #fff;
}
.footer .f-main .f-l .f-logo svg {
  display: inline-block;
  fill: #0777ff;
  height: 30px;
  transition: fill 0.4s;
}
.footer .f-main .hanggao {
  line-height: 30px;
}
.footer .f-main .f-l .desc {
  font-size: 14px;

  color: rgba(255, 255, 255, 0.2);
}
.footer .f-main .f-l .desc a {
  font-size: 14px;

  color: rgba(255, 255, 255, 0.2);
}
.footer .f-main .f-l .desc a:hover {
  color: rgba(255, 255, 255, 0.4);
}
.footer .f-main .f-l .ge {
  flex: 1;
}
.footer .f-main .f-r {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
.footer .f-main .f-r .flex1 {
  flex: 1;
}
.footer .f-main .f-r .type-title {
  color: #066ce7;
  height: 50px;
  font-size: 18px;
  line-height: 20px;
  font-weight: 300;
}
.footer .f-main .f-r .menulist > a {
  display: block;
  margin-bottom: 20px;
}
.footer .f-main .f-r .menulist > a:hover {
  color: #0661cc;
}
.footer .f-main .f-r .f-contact .item {
  margin-bottom: 30px;
}
.footer .f-main .f-r .f-contact .item .iconfont {
  color: #0661cc;
  padding-right: 6px;
}

.footer .f-main .f-r .f-contact .item .tel {
  font-size: 2.5em;
  font-weight: 300;
  display: inline-block;
  position: relative;
  line-height: 1.4;
  margin-bottom: 20px;
}
.footer .f-main .f-r .f-contact .item .tel:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
.footer .f-main .f-r .f-contact .item:nth-last-child(1) {
  margin-bottom: 0;
}
.footer .f-main .quick-links-area {
  display: flex;
  position: relative;
  z-index: 5;
}
.footer .f-main .quick-links-area .links-item {
  height: 30px;
  margin-right: 0.39rem;
  position: relative;
}
.footer .f-main .quick-links-area .links-item .title {
  line-height: 30px;
  height: 30px;
  font-weight: 300;
}
.footer .f-main .quick-links-area .links-item .title .plus {
  color: #066ce7;
  padding-left: 10px;
}
.footer .f-main .quick-links-area .links-item .pop {
  position: absolute;
  left: -11px;
  bottom: 100%;
  border: 1px solid #066ce7;
  background-color: #0c2129;
  width: 400px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  max-height: 500px;
  overflow-y: auto;
}
.footer .f-main .quick-links-area .links-item .pop a:nth-child(1) {
  border: 0;
}
.footer .f-main .quick-links-area .links-item .pop a {
  display: block;
  padding: 10px;
  line-height: 1.4;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .f-main .quick-links-area .links-item .pop a:hover {
  background-color: #09181e;
}
/* 页面主体内容 */

#body-content {
  position: relative;
  z-index: 3;

  width: 100%;
  /* overflow: hidden; */
}
#body-content.fixed {
  top: 0;
  left: 0;
  position: fixed;
}

@media only screen and (max-width: 1600px) {
  .footer .f-main {
    font-size: 14px;
  }
  .snav-box .snav-li {
    padding: 3vw 0 3vw 2vw;
  }
}
@media only screen and (max-width: 1440px) {
  #nav-area .outer-container .nav-item a {
    font-size: 15px;
  }
}

@media only screen and (max-width: 1024px) {
  #body-content {
    position: relative;
  }
  .footer .f-main .f-r {
    width: 55%;
  }
  .footer .f-main .f-l {
    width: 42%;
  }
}

@media only screen and (max-width: 768px) {
  .footer {
    padding: 8% 0 8%;
  }
  #nav-area .right-area.for-pc {
    display: none;
  }
  .scroll-remind {
    display: none !important;
  }
  #nav-area .right-area.for-phone {
    display: block;
  }
  #nav-area .outer-container .left-area .logo {
    width: 130px;
  }
}
@media only screen and (max-width: 640px) {
  .footer .f-main {
    flex-direction: column-reverse;
  }
  .footer .f-main .f-r {
    width: 100%;
  }
  .footer .f-main .f-l {
    width: 100%;
    margin-top: 6%;
  }
  .footer .f-main .quick-links-area {
    display: none;
  }
}

@media only screen and (max-width: 500px) {
  .footer .f-main .f-r .f-menu {
    display: none;
  }
  .footer .f-main .f-r .flex1 {
    display: none;
  }
  .footer .f-main .f-r .f-contact {
    width: 100%;
  }
  .footer .f-main .f-r .type-title {
    height: 28px;
  }
  .footer .f-main .f-r .f-contact .item {
    margin-bottom: 5%;
  }
  .footer .f-main .f-r .f-contact .item .tel {
    margin-bottom: 4%;
    font-size: 28px;
  }

  .footer .f-main .f-l .f-logo {
    margin-bottom: 0%;
  }
  .footer .f-main .f-l .desc {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
  }
  .footer .f-main .f-l .desc a {
    color: rgba(255, 255, 255, 0.4);
  }
  .footer .f-main .f-l .f-logo svg {
    height: 22px;
  }
}

/*首页*/

.indexbanner {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: linear-gradient(
      153deg,
      #5100cb 0,
      #6500fc 42%,
      #9617c9 75%,
      #d33092 100%
    )
    right bottom no-repeat;
  animation-duration: 1000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: indexbannercolor;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

@keyframes indexbannercolor {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

.indexbanner .banner-slogan {
  width: 94%;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
  line-height: 1.4;
  color: #fff;
}

.indexbanner .banner-slogan .bigtitle {
  font-size: 0.6rem;
  font-weight: bold;
  overflow: hidden;
  display: inline-block;
  color: #fff;
}
.indexbanner:hover .banner-slogan .bigtitle > div > div,
.indexbanner:hover .banner-slogan .smalltitle > div > div {
  transition: all 0.3s;
}
/* .indexbanner .banner-slogan .bigtitle > div > div:hover,
.indexbanner .banner-slogan .smalltitle > div > div:hover {
  transform: translateY(-10%) !important;
} */
.indexbanner .banner-slogan .smalltitle {
  font-size: 0.3rem;
  font-weight: 300;
  overflow: hidden;
  display: inline-block;
  color: #fff;
}
/* banner新闻 */

.bannernews {
  position: absolute;
  bottom: 5.26%;
  width: 100%;
  left: 0;
  /* height: 0; */
}

.bannernewsb {
  padding: 0 var(--outer-padding);
  width: 94%;
}

.bannernewsbb {
  height: 0.548rem;
  overflow: hidden;
  max-width: 400px;
}

.bannernewsbb .swiper-slide {
  font-size: 0.16rem;
  height: 0.548rem;
}

.bannernewsbb .swiper-slide a {
  display: inline-block;
  line-height: 1.4;
  color: #fff;
  max-width: 100%;
}

.bannernewsbb .swiper-slide a .rq {
  margin-bottom: 0.1rem;
  opacity: 0.8;
}

.bannernewsbb .swiper-slide a .title {
  transition: all 0.5s;
}

.bannernewsbb .swiper-slide a:hover .title {
  padding-left: 0.16rem;
}

.bannernews-cz {
  height: 20px;
  position: relative;
  z-index: 2;
  margin-top: 10px;
}

.bannernews-cz .czbtn {
  display: inline-block;
  height: 20px;
  width: 20px;
  position: relative;
}

.bannernews-cz .czbtn.line {
  width: 1px;
}

.bannernews-cz .czbtn.line:after {
  content: "";
  display: block;
  height: 13px;
  width: 1px;
  top: 50%;
  margin-top: -6px;
  left: 0;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.6);
}

.bannernews-cz .czbtn.prev:after {
  height: 8px;
  width: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
  display: block;
  transform: rotate(-135deg);
  position: absolute;
  top: 50%;
  margin-top: -4px;
  left: 3px;
}

.bannernews-cz .czbtn.next:after {
  height: 8px;
  width: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
  display: block;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  margin-top: -4px;
  right: 3px;
}

.shubiaoicon {
  height: 40px;
  width: 40px;
  position: absolute;
  bottom: 5.26%;
  left: 50%;
  margin-left: -20px;
  z-index: 3;
}

.shubiaoicon svg {
  height: 100%;
  width: 100%;
}

.shubiaoicon .shape-color {
  fill: #fff;
}

.shubiaoicon .shape-color.yd {
  opacity: 0;
  transform: translateY(-5%);
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: shubiaogun;
  animation-duration: 1.4s;
}
/*indexabout*/

.index-about {
  min-height: 100vh;
  background-color: #14272f;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.index-about a {
  color: #fff;
}
.index-about .quan {
  /* mix-blend-mode: difference; */
  z-index: 5;
  top: 25%;
  left: var(--side-width);
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #a01dad;
  transition: opacity 0.5s;
  transition-delay: 2s;
  opacity: 0;
  /* transition-timing-function: cubic-bezier(0.46, 0.13, 0.43, 1.61); */
}
.index-about .quan.ed {
  transition-delay: 0s;
  transition: all 0.5s;
  /* mix-blend-mode: difference; */
}
.index-about[data-ed="1"] .quan[data-i="1"],
.index-about[data-ed="1"] .quan[data-i="2"],
.index-about[data-ed="1"] .quan[data-i="3"] {
  opacity: 0.8;
}
.index-about .bgbox {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.index-about .bgbox .bg {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-size: auto 100%;
  background-position: -10vw 9vw;
  background-repeat: no-repeat;
  transition: all 0.5s;
  opacity: 0;
  /* filter: blur(10px); */
}

.index-about .bgbox .bg1 {
  transition: all 10s;
  background-image: url(../images/1.png);
  background-position: 0vw 0vw;
}

.index-about .bgbox .bg2 {
  background-image: url(../images/2.png);
  transition-delay: 0.1s;
}

.index-about .bgbox .bg3 {
  background-image: url(../images/3.png);
  transition-delay: 0.2s;
}

.index-about .bgbox .bg4 {
  background-image: url(../images/4.png);
  transition-delay: 0.5s;
}

.index-about .bgbox .bg5 {
  background-image: url(../images/5.png);
  transition-delay: 0.6s;
}

.index-about .bgbox .bg6 {
  background-image: url(../images/6.png);
  transition: all 1.2s;
  transition-delay: 0.7s;
  /* filter: blur(20px); */
  background-position: 0vw 0vw;
}
.index-about[data-ed="1"] .quan {
  opacity: 1;
}
.index-about[data-ed="1"] .bgbox .bg {
  opacity: 1;
  background-position: 0vw 0vw;
  filter: blur(0px);
}
.index-about .about {
  display: flex;
  min-height: 100vh;
  padding-top: 0;
  padding-bottom: 0;
  width: 94%;
}
.index-about .left {
  flex: 1;
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.index-about .pointbox {
  opacity: 1;
}
.index-about .pointbox .item {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8%;
  padding-left: 120px;
  transition: all 0.5s;
}
.index-about .pointbox .item .yuan.s {
  opacity: 1;
}
.index-about .pointbox .item .yuan {
  width: 1rem;
  height: 1rem;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  left: 0;
}
.index-about .pointbox .item .yuan .yuanquan {
  position: absolute;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100%;
  width: 100%;
  height: 100%;
}
.index-about .pointbox .item .yuan .yqbox:before {
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: quanda1;
  animation-duration: 1.6s;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100%;
  width: 100%;
  height: 100%;
}
.index-about .pointbox .item .yuan img {
  width: 100%;
  height: 100%;
  transform: scale(0.4);
  position: relative;
  z-index: 1;
}
.index-about .pointbox .item .yuan .q {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -50%;
  opacity: 0;
  transition: border 0.3s;

  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: quanda;
  animation-duration: 6.4s;
}
.index-about .pointbox .item[data-d="on"] .yuan .q {
  border: 1px solid rgba(160, 29, 173, 0.8);
}
.index-about .pointbox .item .yuan .q.q1 {
  animation-delay: 1.6s;
}
.index-about .pointbox .item .yuan .q.q2 {
  animation-delay: 3.2s;
}
.index-about .pointbox .item .yuan .q.q3 {
  animation-delay: 4.8s;
}
.index-about .pointbox .item .yuan .q.q4 {
  animation-delay: 6.4s;
}
.index-about .pointbox .item.item1 .yuan .yqbox:before {
  background-color: #15c0c5;
}
.index-about .pointbox .item.item2 .yuan .yqbox:before {
  background-color: #4357dc;
}
.index-about .pointbox .item.item3 .yuan .yqbox:before {
  background-color: #e0471e;
}
.index-about .pointbox .item.item1[data-d="on"] .yuan .yqbox:before {
  background-image: linear-gradient(to bottom right, #a01dad, #15c0c5);
}
.index-about .pointbox .item.item2[data-d="on"] .yuan .yqbox:before {
  background-image: linear-gradient(to bottom right, #a01dad, #4357dc);
}
.index-about .pointbox .item.item3[data-d="on"] .yuan .yqbox:before {
  background-image: linear-gradient(to bottom right, #a01dad, #e0471e);
}

.index-about .pointbox .item.item1 {
  left: 48.8%;
  top: 25.26%;
}
.index-about .pointbox .item.item3 {
  left: 36.3%;
  top: auto;
  bottom: 20%;
  transform: translateY(0);
}

.index-about .pointbox .item .desc {
  opacity: 0;
  transform: translate3d(20px, 0, 0);
  transition: all 0.8s;
  /* filter: blur(20px); */
  font-size: 0.16rem;
}
.index-about .pointbox .item .desc .title {
  line-height: 1.4;
}
.index-about .pointbox .item .desc .nian {
  padding-top: 10px;
}
.index-about .pointbox .item .desc .nian img {
  height: 0.64rem;
  margin-right: 0.1rem;
}
.index-about .pointbox .item .desc .nian b {
  font-size: 1.4em;
}
.index-about[data-ed="1"] .pointbox .item .desc {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}
.index-about .pointbox .item.item1 .desc {
  transition-delay: 2s;
}
.index-about .pointbox .item.item2 .desc {
  transition-delay: 2.2s;
}
.index-about .pointbox .item.item3 .desc {
  transition-delay: 2.4s;
}

.index-about .pointbox .item .yqbox {
  position: absolute;

  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
/**/
@keyframes quanda1 {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.95;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes quanda {
  0% {
    opacity: 0;
    transform: scale(1);
    filter: blur(0px);
  }
  10% {
    opacity: 1;
  }
  75% {
    filter: blur(0px);
  }
  85% {
    opacity: 1;
  }
  99% {
    opacity: 0;
    transform: scale(2.05);
    filter: blur(10px);
  }

  100% {
    opacity: 0;
    transform: scale(1);
    filter: blur(0px);
  }
}

@keyframes shubiaogun {
  0% {
    opacity: 0;
    transform: translateY(-5%);
  }
  10% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  90% {
    opacity: 0;
    transform: translateY(30%);
  }
  100% {
    opacity: 0;
    transform: translateY(-5%);
  }
}

.index-about .right {
  width: 55%;
  /* max-width: 800px; */
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  z-index: 6;
}

.index-about .right .about-view {
  /* width: 94%; */
  transition: all 0.8s;
}

.index-about .right .about-view .title {
  font-size: 0.4rem;
  font-weight: 300;
  line-height: 1.4;
}
.index-about .right .about-view .title-blod {
  font-size: 0.4rem;
  font-weight: bold;
  color: #0777ff;
  line-height: 1.4;
  margin-bottom: 0.3rem;
}
.index-about .right .about-view .cc {
  font-size: 0.18rem;
}
.index-about .right .about-view .desc {
  margin-bottom: 1.4em;
}
.index-about .right .about-view .desc2 {
  display: none;
}
.aboutmore {
  margin-top: 1.8em;
  font-size: 0.875em;
  transition: all 0.4s;
  opacity: 0.6;
}
.aboutmore:hover {
  opacity: 1;
  visibility: visible;
}
.aboutmore.gun {
  opacity: 0;
  visibility: hidden;
  /* filter: blur(20px); */
}
/*手机图标*/
.aboutphone {
  position: absolute;
  bottom: -67px;
  right: 10%;
  z-index: 5;
  width: 230px;
  height: 230px;
}
.aboutphone .p {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #891ed6;
  transform: rotate(-24deg);
}
.aboutphone .p.p1 {
  z-index: 1;
}
.aboutphone .p.p1 .q {
  content: "";
  width: 13%;
  height: 13%;
  border-radius: 100%;
  display: block;
  border: 1px solid #891ed6;
  left: 8%;
  top: 8%;
  position: absolute;
}
.aboutphone .p.p2 {
  transform: rotate(-24deg) translate3d(-8%, -8%, 0);
}
.aboutphone .p.p3 {
  transform: rotate(-24deg) translate3d(-16%, -16%, 0);
}
/*首页服务*/
.index-service {
  background-color: #f5f6f6;
  color: #0b1b20;
  overflow: hidden;
  position: relative;
}
.index-service .service {
  min-height: 100vh;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  position: unset;

  width: 94%;
}
.index-service .service-m {
  min-height: calc(100vh - 1.5rem);
  display: flex;
  flex-direction: column;
}

.index-service .service .right-imgbox {
  bottom: 0;
  right: 0;
  width: 50%;
  position: absolute;
  height: 100%;
}

.index-service .service-m .type-title {
  font-size: 24px;
  position: relative;
  z-index: 2;
  margin-bottom: 26px;
}
.index-service .service-m .btnbox {
  font-size: 16px;
  position: relative;
  z-index: 2;
  color: #586168;
  display: flex;
  flex-wrap: wrap;
}
.index-service .service-m .btnbox .item {
  border: 1px solid #dcdcdc;
  background-color: #fff;
  border-radius: 28px;
  padding: 15px 28px;
  margin-right: 10px;
  margin-bottom: 10px;
  color: #586168;
  transition: all 0.5s;
  cursor: pointer;
  width: auto;
}
.index-service .service-m .btnbox .item:hover {
  border-color: #0777ff;
}
.index-service .service-m .btnbox .item.on {
  border-color: #0777ff;
  background-color: #0777ff;
  color: #fff;
}

.service-swiper {
  margin-top: 0.8rem;
  height: 180px;
  max-width: 600px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.service-swiper .bigtitle {
  font-size: 0.48rem;
  font-weight: 300;
  transition: all 0.7s;
  transform: translate3d(1em, 0, 0);
  opacity: 0;
  transition-delay: 0.3s;
}
.service-swiper .smalldesc {
  color: #586168;
  font-size: 0.18rem;
  transition: all 0.7s;
  transform: translate3d(1em, 0, 0);
  opacity: 0;
  transition-delay: 0.3s;
  margin-top: 1.3em;
}
.service-swiper .swiper-slide.swiper-slide-active .bigtitle {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.service-swiper .swiper-slide.swiper-slide-active .smalldesc {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transition-delay: 0.7s;
}

.index-service .right-imgbox .service-swiper-r {
  height: 100%;
}
.index-service .right-imgbox .service-swiper-r .swiper-slide {
  background-color: #f5f6f6;
  height: 100%;
}
.index-service .right-imgbox .service-swiper-r .itemimg {
  position: relative;
}
.index-service .right-imgbox .service-swiper-r .itemimg img {
  transition: all 0.8s;
  transform: translate3d(3%, 0, 0);
  opacity: 0;
  /* filter: blur(10px); */
}
.index-service
  .right-imgbox
  .service-swiper-r
  .itemimg.swiper-slide-active
  img {
  opacity: 1;
  transform: translate3d(0%, 0, 0);
  /* filter: blur(0px); */
}
.index-service .right-imgbox .service-swiper-r .itemimg .quanb {
  position: absolute;
  z-index: 3;
  border-radius: 100%;
  opacity: 0;
  transition: all 0.5s;
  transform: scale(0.00001);
  transition-timing-function: cubic-bezier(0.36, 0.17, 0.9, 1.86);
}
.index-service
  .right-imgbox
  .service-swiper-r
  .itemimg.swiper-slide-active
  .quanb {
  opacity: 1;
  transform: scale(1);
}

.index-service
  .right-imgbox
  .service-swiper-r
  .itemimg.swiper-slide-active
  .quanb:nth-child(2) {
  transition-delay: 0.4s;
}
.index-service
  .right-imgbox
  .service-swiper-r
  .itemimg.swiper-slide-active
  .quanb:nth-child(3) {
  transition-delay: 0.6s;
}
.index-service
  .right-imgbox
  .service-swiper-r
  .itemimg.swiper-slide-active
  .quanb:nth-child(4) {
  transition-delay: 0.8s;
}
.index-service
  .right-imgbox
  .service-swiper-r
  .itemimg.swiper-slide-active
  .quanb:nth-child(5) {
  transition-delay: 1s;
}
.index-service .right-imgbox .service-swiper-r .itemimg .quanb::before {
  padding-top: 100%;
  border-radius: 100%;
  content: "";
  display: block;
}
.index-service .right-imgbox .service-swiper-r .itemimg img {
  width: 100%;
  left: 0;
  bottom: 0;
  position: absolute;
}
.service-iconbox {
  width: 100%;
  max-width: 640px;
  margin-top: 1rem;
  overflow: hidden;
}
.service-iconbox .ib-type {
  font-size: 24px;
  line-height: 2.5;
  position: relative;
  display: flex;
}
.service-iconbox .ib-type .item {
  padding: 0 1em;
  transition: all 0.3s;
  color: #0b1b20;
  font-weight: 300;
}
.service-iconbox .ib-type .item.on {
  color: var(--color);
}
.service-iconbox .ib-type .line {
  width: 100%;
  height: 1px;
  background-color: #dcdcdc;
  position: absolute;
  bottom: 0;
  left: 0;
}
.service-iconbox .ib-type .line .l {
  height: 1px;
  width: 0;
  background-color: #0777ff;
  transition: width 0s;
  transition-timing-function: linear;
}

.service-iconbox .ib-type .line .l.on {
  width: 100%;

  transition: width 10s;
  transition-timing-function: linear;
}

.service-iconbox .itemimg-box {
  display: flex;
}
.service-iconbox .itemimg-box .it {
  width: 25%;
  text-align: center;
  padding: 0.24rem 0;
  font-size: 16px;
  transition: all 0.3s;
  transform: translate3d(10%, 0, 0);
  opacity: 0;
  /* filter: blur(5px); */
}
.service-iconbox .itemimg-box.swiper-slide-active .it {
  transform: translate3d(0%, 0, 0);
  opacity: 1;
  transition-delay: 0.6s;
  /* filter: blur(0px); */
}
.service-iconbox .itemimg-box.swiper-slide-active .it:nth-child(2) {
  transition-delay: 0.7s;
}
.service-iconbox .itemimg-box.swiper-slide-active .it:nth-child(3) {
  transition-delay: 0.8s;
}
.service-iconbox .itemimg-box.swiper-slide-active .it:nth-child(4) {
  transition-delay: 0.9s;
}
.service-iconbox .itemimg-box.swiper-slide-active .it:nth-child(5) {
  transition-delay: 1s;
}
.service-iconbox .itemimg-box .it .pic {
  margin-bottom: 10px;
}
.service-iconbox .itemimg-box .it .pic img {
  height: 0.68rem;
}
.bigboxmain {
  background-color: #0c2129;
  overflow: hidden;
}
/*首页案例*/
.index-case {
  overflow: hidden;
  /* min-height: 100vh; */
  padding: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.index-case .casebox {
  width: 94%;
  margin: auto;
  padding-bottom: 0;
}
.index-case .case-swiper {
  padding-top: 0.8rem;
}
.index-case .case-swiper .zimu {
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  -webkit-text-stroke: 1px #fff;
  z-index: 3;
  transition: all 0.2s;
}
.index-case .case-swiper .zimu.k {
  color: transparent;
  pointer-events: none;
  z-index: 5;
}
.index-case .case-swiper .zimu.k span {
  color: #fff;
}
.index-case .case-swiper .swiper-wrapper {
  z-index: 4;
  position: relative;
  /* transition-duration: 500ms !important; */
}
.index-case .case-swiper .swiper-slide {
  width: auto;
  margin-right: 0.4rem;
}
.index-case .case-swiper .swiper-slide a {
  display: block;
  font-size: 24px;
  color: #fff;
  transition: color 0.4s;
  padding-bottom: 13px;
}
.index-case .case-swiper .swiper-slide {
  width: 660px;
}
.index-case .case-swiper .swiper-slide a .pic {
  position: relative;
  overflow: hidden;

  padding-top: calc(410 / 660 * 100%);
}
.index-case .case-swiper .swiper-slide a .pic img {
  transition: all 1s;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
  display: block;
}
.index-case .case-swiper .swiper-slide a .pic:hover img {
  transform: scale(1.1) translate3d(0, 0, 0);
  transition: all 1s;
}
.index-case .case-swiper .swiper-slide a .title {
  margin-top: 1em;
}
.index-case .case-swiper .swiper-slide a h4 {
  font-weight: 300;
  transition: text-indent 0.5s;
}
/* .index-case .case-swiper .swiper-slide a h4:hover {
  text-indent: 1em;
} */
.index-case .case-swiper .swiper-slide a .desc {
  position: relative;
  padding-left: 10px;
  font-size: 16px;
  color: #0777ff;
  font-weight: 300;
  transition: color 0.4s;
  padding-top: 0.3em;
}
.index-case .case-swiper .swiper-slide a:hover {
  color: #0777ff;
}
.index-case .case-swiper .swiper-slide a:hover .desc {
  color: #fff;
}
.index-case .case-swiper .swiper-slide a .desc:after {
  content: "";
  display: block;
  width: 2px;
  height: 2px;
  border-radius: 100%;
  background-color: #0777ff;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1px;
}
.index-case .case-swiper:after {
  content: "";
  display: block;
  clear: both;
}
.index-case .case-swiper .case-swiper-scrollbar {
  width: 26vw;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
  bottom: auto;
  margin-top: 1rem;
  float: left;
}
.index-case .case-swiper .case-swiper-scrollbar .swiper-scrollbar-drag {
  height: 3px;
  top: -1px;
  background-color: #fff;
}
.index-case .case-swiper .case-swiper-scrollbar .swiper-scrollbar-drag:before {
  content: "";
  display: block;
  height: 21px;
  width: 100%;
  top: -9px;
  left: 0;
  position: absolute;
  cursor: move;
}
.index-case .case-swiper .morebtn {
  float: right;
  height: 58px;
  line-height: 58px;
  border-radius: 29px;
  width: 130px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  background-color: #0777ff;
  margin-top: calc(1rem - 29px);
}

/*首页头部企业*/
.index-top-company {
  background-color: #0c2129;
  padding: 0 0 1rem 0;
}

.index-top-company .list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.index-top-company .list .item {
  width: calc(100% / 7);
  position: relative;
}
.index-top-company .list .item .m {
  padding-top: 100%;
  position: relative;
}
.index-top-company .list .item .m:before {
  width: 111%;
  height: 111%;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  border-radius: 100%;
  border: 1px solid #203040;
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
}

.index-top-company .list .item[data-on="on"] .m:before {
  border-color: #0777ff;
  transition-delay: 0.8s;
  opacity: 0.5;
}

.index-top-company .list .item .m:after {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  /* filter: blur(20px); */
  opacity: 0;
  transition: all 0.5s;
  position: absolute;
  left: 0%;
  top: 0%;
  background-image: radial-gradient(#0777ff, #09a1ff);
  border-radius: 100%;
  transform: scale(0.00001);
}

.index-top-company .list .item[data-on="on"] {
  z-index: 8;
}
.index-top-company .list .item[data-on="on"] .m:after {
  opacity: 1;
  /* filter: blur(0); */
  transform: scale(1);
  transition-delay: 0.55s;
}
.index-top-company .list .quanquan {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 100%;
  /* filter: blur(0.05rem); */
  background-image: radial-gradient(#0777ff, #09a1ff);
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: all 0.5s;
  transform: translate3d(-50%, -50%, 0);
}
.index-top-company .list.on .quanquan {
  opacity: 1;
  transition-delay: 0.24s;
}
.index-top-company .list .item .m img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;

  z-index: 5;
}
@media only screen and (max-width: 1600px) {
  .index-case .case-swiper .swiper-slide {
    width: 515px;
  }
  .index-case .case-swiper .zimu {
    padding-left: var(--outer-padding);
  }
  .index-case .case-swiper .swiper-slide a {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1400px) {
  .index-case .case-swiper .swiper-slide a {
    font-size: 18px;
  }
  .aboutphone {
    width: 180px;
    height: 180px;
    bottom: -60px;
  }
  .index-about .right .about-view .cc {
    font-size: 15px;
  }
  .bannernewsbb .swiper-slide {
    font-size: 14px;
    height: 50px;
  }
  .bannernewsbb {
    height: 50px;
  }
  .shubiaoicon {
    width: 32px;
    height: 32px;
    margin-left: -16px;
  }
  .index-service .service-m .type-title {
    font-size: 20px;
  }
  .index-service .service-m .btnbox {
    font-size: 14px;
  }
  .index-service .service-m .btnbox .item {
    border-radius: 24px;
    padding: 12px 24px;
    margin-right: 8px;
  }
  .service-swiper {
    max-width: none;
    height: 130px;
  }
  .service-iconbox .ib-type .item {
    font-size: 20px;
  }
  .index-case .case-swiper .zimu {
    font-size: 1.2rem;
  }
  .index-case .case-swiper {
    padding-top: 0.6rem;
  }
  .index-case .case-swiper .swiper-slide {
    width: 450px;
  }
  .index-case .case-swiper .swiper-slide a {
    font-size: 18px;
  }
  .index-case .case-swiper .swiper-slide a .title {
    margin-top: 0.8em;
  }
  .index-case .case-swiper .swiper-slide a .desc {
    font-size: 13px;
  }
  .index-case .case-swiper .morebtn {
    height: 48px;
    line-height: 48px;
    border-radius: 24px;
    width: 110px;
    font-size: 14px;
    margin-top: calc(1rem - 24px);
  }
  .index-top-company .list .item {
    width: calc(100% / 6);
  }
}

@media only screen and (max-width: 1024px) {
  .index-service .service,
  .index-case .casebox {
    width: 94%;
    padding-right: 0;
    padding-left: 0;
    max-width: none;
  }
  .service-iconbox .itemimg-box .it {
    padding: 18px 0;
  }
  .service-iconbox .itemimg-box .it .pic img {
    height: 48px;
  }
  .service-iconbox {
    max-width: none;
  }
  .indexbanner .banner-slogan .bigtitle {
    font-size: 28px;
  }
  .indexbanner .banner-slogan .smalltitle {
    font-size: 16px;
  }
  .index-about .right .about-view .title-blod {
    margin-bottom: 0.8em;
  }
  .shubiaoicon {
    /* display: none; */
    margin: 0;
    right: 3%;
    left: unset;
  }
  .index-about {
    min-height: 0;
  }
  .index-about .about {
    flex-flow: column;
    min-height: 0;
  }
  .index-about .about .left {
    padding-top: 50%;
  }
  .index-about .about .right {
    padding-bottom: 10%;
    width: 100%;
  }
  .index-about .quan {
    width: 30px;
    height: 30px;
  }
  .index-about .right .about-view .title,
  .index-about .right .about-view .title-blod {
    font-size: 28px;
  }
  .aboutmore {
    display: none;
  }
  .index-about .pointbox .item .yuan {
    height: 80px;
    width: 80px;
  }
  .index-about .pointbox .item {
    padding-left: 105px;
  }
  .index-about .pointbox .item .desc .nian img {
    height: 50px;
  }
  .index-about .pointbox .item.item1 {
    left: 58%;
  }
  .index-about .pointbox .item.item3 {
    left: 50%;
    bottom: 10%;
  }
  .index-about .right .about-view .desc2 {
    display: block;
  }
  .index-service .service .right-imgbox {
    position: relative;
    right: auto;
    bottom: auto;
    height: auto;
    width: 100%;
  }
  .index-service .right-imgbox .service-swiper-r .itemimg img {
    position: relative;
    bottom: auto;
    left: auto;
  }
  .index-case {
    min-height: 0;
    padding: 8% 0;
  }
  .index-case .case-swiper .zimu {
    font-size: 8vw;
  }
  .index-case .case-swiper {
    padding-top: 4vw;
  }
  .index-case .case-swiper .swiper-slide a {
    font-size: 16px;
  }
  .index-case .case-swiper .swiper-slide {
    width: 386px;
  }
  .index-top-company .list .item {
    width: calc(100% / 5);
  }
}
@media only screen and (max-width: 768px) {
  .index-about .pointbox .item .desc {
    font-size: 12px;
  }

  .bannernews {
    display: none;
  }
  .indexbanner {
    min-height: 200px;
    height: 100vh;
    /* height:120vw */
  }
  .indexbanner .banner-slogan {
    position: absolute;
    bottom: 16%;
    left: 0%;
  }
  /* .index-about .about,
  .index-service .service {
    width: 100%;
    max-width: none;
  } */
  .index-service .service {
    min-height: 0;
    padding-top: 10%;
    padding-bottom: 0;
  }
  .index-service .service-m .btnbox:after {
    content: "";
    display: block;
    clear: both;
  }
  .index-service .service-m .btnbox .item {
    display: block;
    float: left;
    width: 32%;
    margin-right: 2%;
    text-align: center;
  }
  /* .index-service .service-m .btnbox .item:nth-child(3n) {
    margin-right: 0;
  } */
  .index-service .service-m .type-title {
    font-size: 18px;
    margin-bottom: 4%;
    line-height: 1.4;
  }
  .service-swiper {
    margin-top: 4%;
  }
  .service-swiper .bigtitle {
    font-size: 24px;
  }
  .service-swiper .smalldesc {
    font-size: 14px;
    margin-top: 14px;
  }
  .index-top-company .list .item {
    width: calc(100% / 4);
  }
}
@media only screen and (max-width: 640px) {
  .service-iconbox .ib-type .item {
    font-size: 18px;
  }
  .index-about .about .left {
    padding-top: 75%;
  }
  .index-about .pointbox .item .yuan {
    height: 60px;
    width: 60px;
  }
  .index-about .pointbox .item {
    padding-left: 85px;
  }
  .index-about .pointbox .item .desc .nian img {
    height: 40px;
  }
  .index-about .pointbox .item.item1 {
    left: 58%;
  }
  .index-about .pointbox .item.item2 {
    top: 55%;
  }
  .index-about .pointbox .item.item3 {
    left: 50%;
    bottom: 10%;
  }
  .index-service .service-m .btnbox .item {
    padding: 12px 0px;
    font-size: 14px;
  }
  .index-case .case-swiper .swiper-slide {
    width: 322px;
  }
  .index-case .case-swiper .zimu {
    font-size: 10vw;
  }
  .index-case .case-swiper {
    padding-top: 5vw;
  }
  .index-case .case-swiper .morebtn {
    height: 36px;
    line-height: 36px;
    border-radius: 18px;
    width: 90px;
    font-size: 13px;
    margin-top: calc(1rem - 18px);
  }
  .index-top-company .list .item {
    width: calc(100% / 3);
  }
}
@media only screen and (max-width: 639px) {
  .index-about .about {
    width: 100%;
  }
  .index-about .bgbox {
    opacity: 0.5;
  }
  .index-about .about .left {
    padding-top: 100%;
    min-height: 500px;
  }
  .index-about .right .about-view .title,
  .index-about .right .about-view .title-blod {
    font-size: 24px;
  }
  .indexbanner .banner-slogan .bigtitle {
    font-size: 24px;
  }
  .indexbanner .banner-slogan .smalltitle {
    font-size: 14px;
  }

  .index-about .pointbox .item .yuan {
    height: 60px;
    width: 60px;
  }
  .index-about .pointbox .item .desc .nian img {
    height: 40px;
  }
  .index-about .pointbox .item.item1 {
    left: 40%;
  }
  .index-about .pointbox .item.item2 {
    top: 52%;
  }
  .index-about .pointbox .item.item3 {
    left: 22%;
    bottom: 10%;
  }
  .index-case .case-swiper .zimu {
    font-size: 12vw;
  }
  .index-case .case-swiper {
    padding-top: 6vw;
  }
}

/* =====================案例====================== */

.superShadow {
  text-shadow: 0 1px 0 hsl(174, 5%, 80%), 0 2px 0 hsl(174, 5%, 75%),
    0 3px 0 hsl(174, 5%, 70%), 0 4px 0 hsl(174, 5%, 66%),
    0 5px 0 hsl(174, 5%, 64%), 0 6px 0 hsl(174, 5%, 62%),
    0 7px 0 hsl(174, 5%, 61%), 0 8px 0 hsl(174, 5%, 60%),
    0 0 5px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.2),
    0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.2),
    0 10px 10px rgba(0, 0, 0, 0.2), 0 20px 20px rgba(0, 0, 0, 0.3);
}

#background-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#background-wave .background-image {
  background: url() no-repeat center center;
  background-size: 100% auto;
}

#background-wave .background-image.top {
  top: 0;
  right: 0;
  width: 100%;
  height: 180vh;
  background-position: top;
  background-size: 100% auto;
  opacity: 0.6;
}

#background-wave .background-image.above {
  top: 0;
  left: 0;
  width: 100%;
  height: 50vh;
  background-position: top right;
}

.footer a {
  transition: all 0.4s;
}

.footer a:hover {
  opacity: 0.8;
}

.footer::before {
  content: "";
  display: block;
  opacity: 0.5;
  position: absolute;
  z-index: -1;
  top: 70%;
  left: 0;
  width: 100%;
  height: 100vh;

  background-size: contain;
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
}

.banner-title {
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 6rem;
  margin-top: 50px;
  padding: 0 var(--side-width);
}

#cases .cases-list-area {
  margin: 0 auto;
  position: relative;
  max-width: 1540px;
  padding: 2rem var(--side-width) 0;
}

#cases .cases-list-area::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: 1620px;
  height: 100%;
  background-image: linear-gradient(#000, #000, rgba(0, 0, 0, 0));
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
}

#cases .cases-list-area .title-area .title {
  font-size: 0.6rem;
  overflow: hidden;
  height: 0.96rem;
  font-weight: 300;
}

#cases .cases-list-area .title-area .sub-title {
  font-size: 0.24rem;
  margin-top: 0.1rem;
  color: var(--color10);
  font-weight: 300;
}

#cases .cases-list-area .filter-selector {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.6rem;
}

#cases .cases-list-area .filter-selector .left-area {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  font-size: 14px;
  margin-left: -15px;
}

#cases .cases-list-area .filter-selector .left-area::before {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: #fff;
  opacity: 1;
  position: absolute;
  left: -62px;
  top: 50%;
  transform: translate(100%, -50%);
  -webkit-transform: translate(100%, -50%);
  -moz-transform: translate(100%, -50%);
  -ms-transform: translate(100%, -50%);
  -o-transform: translate(100%, -50%);
}

#cases .cases-list-area .filter-selector .left-area .industry-swiper a {
  opacity: 0.6;
  padding: 10px 15px;
  transition: all 0.5s;
}

#cases
  .cases-list-area
  .filter-selector
  .left-area
  .industry-swiper
  .swiper-slide {
  width: auto;
}

#cases .cases-list-area .filter-selector .left-area .industry-swiper a.on,
#cases .cases-list-area .filter-selector .left-area .industry-swiper a:hover {
  opacity: 1;
}

#cases .cases-list-area .filter-selector .right-area {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
}

#cases .cases-list-area .filter-selector .right-area > a {
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 10px;
  line-height: 24px;
  font-size: 24px;
  opacity: 0.6;
  transition: all 0.5s;
}

#cases .cases-list-area .filter-selector .right-area > a + a {
  border-left: 1px solid rgba(255, 255, 255, 0);
  margin-left: -1px;
}

#cases .cases-list-area .filter-selector .right-area > a.on,
#cases .cases-list-area .filter-selector .right-area > a:hover {
  opacity: 1;
  border-left-color: rgba(255, 255, 255, 0.6);
}

#cases .cases-list-area .cases-list {
  margin: 1rem -0.32rem 0.5rem;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

#cases .cases-list-area .case-item .casetitle {
  font-size: 0.48rem;
  font-weight: bold;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  position: absolute;
  max-width: 90%;
  top: 0;
  left: 5%;
  z-index: 5;
  transform: translateY(-0.384rem);
  transition: all 0.5s;
}

#cases .cases-list-area .case-item {
  padding: 0.6rem 0.32rem;
  width: calc(100% / 2);
}

#cases .cases-list-area .case-item:nth-child(2n) {
  transform: translateY(1.6rem);
  -webkit-transform: translateY(1.6rem);
  -moz-transform: translateY(1.6rem);
  -ms-transform: translateY(1.6rem);
  -o-transform: translateY(1.6rem);
}

#cases .cases-list-area .case-item .bg-img-container {
  padding-top: calc(523 / 701 * 100%);
  position: relative;
}

#cases .cases-list-area .case-item .bg-img-container::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 1.2rem;
  height: 8rem;
  min-width: 90px;
  min-height: 60px;
  opacity: 0;
  background: url(/phone/images/icon.png) no-repeat center center;
  background-size: contain;
  transform: translate(calc(-50% - 40px), -50%);
  -webkit-transform: translate(calc(-50% - 40px), -50%);
  -moz-transform: translate(calc(-50% - 40px), -50%);
  -ms-transform: translate(calc(-50% - 40px), -50%);
  -o-transform: translate(calc(-50% - 40px), -50%);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

#cases .cases-list-area .case-item .bg-img-container:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

#cases .cases-list-area .case-item .bg-img-container .bg-img {
  overflow: hidden;
}

#cases .cases-list-area .case-item .title-area {
  background: #212123;
  width: calc(100% - 0.9rem);
  padding: 0.3rem 0.46rem;
  margin-right: 0;
  margin-left: auto;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  pointer-events: none;
  transition: background 0.5s ease;
  -webkit-transition: background 0.5s ease;
  -moz-transition: background 0.5s ease;
  -ms-transition: background 0.5s ease;
  -o-transition: background 0.5s ease;
}

#cases .cases-list-area .case-item:hover .title-area {
  background: var(--color);
}

#cases .cases-list-area .case-item:hover .casetitle {
  color: var(--color);
}

#cases .cases-list-area .case-item .title-area .title {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  height: auto;
}

#cases .cases-list-area .case-item .title-area .text {
  color: var(--color5);
  font-size: 14px;
  margin-top: 14px;
}

#cases .cases-list-area .case-item .title-area .text .line {
  font-weight: 300;
  padding: 0 12px;
}

.page-control {
  text-align: center;
}

.all-Page-box {
  text-align: center;
}

.all-Page-box a {
  transition: all 0.4s;
}

.all-Page-box .next {
  display: block;
}

.all-Page-box .next span {
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  position: relative;
}

.all-Page-box .next span::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.1rem;
  min-height: 2px;
  background: #fff;
  transition: all 0.5s;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  -webkit-transform: translate(-50%, -100%);
  -moz-transform: translate(-50%, -100%);
  -ms-transform: translate(-50%, -100%);
  -o-transform: translate(-50%, -100%);
}

.all-Page-box .btn {
  display: inline-block;
  padding: 7px;
  font-size: 20px;
  text-decoration: underline;
}

.all-Page-box .btn.dian {
  text-decoration: none;
}

.all-Page-box .btn:hover span::after {
  background: var(--color);
}

.all-Page-box .btn:hover {
  color: var(--color);
}

@media only screen and (min-width: 1024px) {
  .all-Page-box .btn.next:hover span::after {
    background: #fff;
    /* width: 0; */
    bottom: -20px;
    box-shadow: 0 1px 0 #c9cfce, 0 2px 0 hsl(174, 5%, 75%),
      0 3px 0 hsl(174, 5%, 70%), 0 4px 0 hsl(174, 5%, 66%),
      0 5px 0 hsl(174, 5%, 64%), 0 6px 0 hsl(174, 5%, 62%),
      0 7px 0 hsl(174, 5%, 61%), 0 8px 0 hsl(174, 5%, 60%),
      0 0 5px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.2),
      0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.2),
      0 10px 10px rgba(0, 0, 0, 0.2), 0 20px 20px rgba(0, 0, 0, 0.3);
  }
  .all-Page-box .btn.next:hover {
    transform: translate3d(0, -5px, 0);
    color: #fff;
    text-shadow: 0 1px 0 #c9cfce, 0 2px 0 hsl(174, 5%, 75%),
      0 3px 0 hsl(174, 5%, 70%), 0 4px 0 hsl(174, 5%, 66%),
      0 5px 0 hsl(174, 5%, 64%), 0 6px 0 hsl(174, 5%, 62%),
      0 7px 0 hsl(174, 5%, 61%), 0 8px 0 hsl(174, 5%, 60%),
      0 0 5px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.2),
      0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.2),
      0 10px 10px rgba(0, 0, 0, 0.2), 0 20px 20px rgba(0, 0, 0, 0.3);
  }
}

.all-Page-box .btn.on {
  color: var(--color);
  text-decoration: none;
}

@media only screen and (max-width: 1600px) {
  #cases .cases-list-area .title-area .sub-title {
    font-size: 22px;
  }
}

@media only screen and (max-width: 1024px) {
  #cases .cases-list-area .title-area .sub-title {
    font-size: 18px;
  }
  #cases .cases-list-area .filter-selector {
    flex-direction: column;
  }
  #cases .cases-list-area .filter-selector > div {
    width: 100%;
  }
  #cases .cases-list-area .filter-selector .left-area .industry-swiper {
    margin-left: 0;
  }
  #cases .cases-list-area .filter-selector .right-area {
    margin-top: 0.3rem;
  }
  #cases .cases-list-area .case-item .title-area {
    width: 100%;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
  }
}

@media only screen and (max-width: 768px) {
  #cases .cases-list-area .case-item .casetitle {
    font-size: 32px;
    transform: translateY(0);
    top: 5%;
  }
  #cases .cases-list-area .title-area .sub-title {
    font-size: 16px;
  }
  #cases .cases-list-area .case-item {
    width: 100%;
  }
  #cases .cases-list-area .case-item:nth-child(2n) {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
  }
  #cases .cases-list-area {
    padding: 5% 0 0;
  }
  #cases .cases-list-area .title-area .title {
    font-size: 22px;
    height: 36px;
  }
  #cases .cases-list-area .title-area .sub-title {
    font-size: 14px;
  }
  #cases .cases-list-area .case-item .title-area {
    padding: 4vw 5%;
  }
  #cases .cases-list-area .case-item .title-area .text {
    margin-top: 3%;
  }
}

@media only screen and (max-width: 640px) {
  #cases .cases-list-area .case-item .casetitle {
    font-size: 22px;
    transform: translateY(0);
    top: 5%;
  }
}
/* =====================案例详情页====================== */

#cases-view {
  position: relative;
}

#cases-view .banner {
  position: relative;
  height: calc(100vh - 0.55rem);
}

#cases-view .banner .bg-img-container {
  height: 100vh;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cases-view .banner .title-area {
  position: relative;
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--side-width);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 1620px;
}

#cases-view .banner .title-area .title {
  font-size: 0.48rem;
  font-weight: 700;
  overflow: hidden;
  height: 1rem;
}

#cases-view .banner .title-area .sub-title {
  font-size: 16px;
  /* margin-top: 20px; */
  color: var(--color10);
}

#cases-view .banner .next-button {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 50%;
  transform: translate(calc(810px - 100px), 50%) rotate(90deg);
  -webkit-transform: translate(calc(810px - 100px), 50%) rotate(90deg);
  -moz-transform: translate(calc(810px - 100px), 50%) rotate(90deg);
  -ms-transform: translate(calc(810px - 100px), 50%) rotate(90deg);
  -o-transform: translate(calc(810px - 100px), 50%) rotate(90deg);
}

#cases-view .cases-view-info {
  background: #080329;
  padding: 0.9rem var(--side-width);
}

#cases-view .cases-view-info .outer-container {
  margin: 0 auto;
  max-width: 1460px;
  display: flex;
  justify-content: space-between;
}

#cases-view .cases-view-info .outer-container > div {
  width: 50%;
  min-width: 50%;
  max-width: 50%;
}

#cases-view .cases-view-info .outer-container .left-area .text-container {
  color: var(--color11);
  font-size: 14px;
}

#cases-view .cases-view-info .outer-container .left-area .text-container .line {
  font-weight: 300;
  opacity: 0.5;
  padding: 0 10px;
}

#cases-view .cases-view-info .outer-container .left-area {
  padding-right: 0.5rem;
}

#cases-view .cases-view-info .outer-container .left-area .link-area {
  margin-top: 0.4rem;
  color: var(--color11);
  font-size: 14px;
}

#cases-view .cases-view-info .outer-container .left-area .link-area .button {
  margin-top: 16px;
}

#cases-view .cases-view-info .outer-container .right-area .text-container {
  max-width: 530px;
  color: var(--color11);
  font-size: 14px;
}

#cases-view .cases-view-details {
  position: relative;
  padding: 0 var(--side-width);
}

#cases-view .cases-view-details .outer-container {
  margin: 1rem auto 1.4rem;
  max-width: 1460px;
}

#cases-view .cases-view-details .area-title {
  font-size: 0.9rem;
  font-weight: 600;
}

#cases-view .cases-view-details .text-container {
  margin-top: 10px;
  color: var(--color3);
}

@media only screen and (max-width: 1800px) {
  #cases-view .banner .next-button {
    left: auto;
    right: var(--side-width);
    transform: translate(0, 50%) rotate(90deg);
    -webkit-transform: translate(0, 50%) rotate(90deg);
    -moz-transform: translate(0, 50%) rotate(90deg);
    -ms-transform: translate(0, 50%) rotate(90deg);
    -o-transform: translate(0, 50%) rotate(90deg);
  }
}

@media only screen and (max-width: 639px) {
  #cases-view .banner {
    height: 50vh;
  }
  #cases-view .banner .next-button {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  #cases-view .cases-view-info .outer-container {
    flex-direction: column-reverse;
  }
  #cases-view .banner .title-area .title {
    font-size: 24px;
  }
  #cases-view .banner .title-area .sub-title {
    margin-top: 0;
    font-size: 14px;
  }
  #cases-view .cases-view-info .outer-container > div {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
  #cases-view .cases-view-info .outer-container .right-area .text-container {
    max-width: 100%;
  }
  #cases-view .cases-view-info .outer-container .left-area {
    padding-right: 0;
    margin-top: 0.5rem;
  }
}
/* ==============服务============== */

#service .service-list-area .service-item {
  display: flex;
  justify-content: flex-start;
  padding: 0 var(--side-width);
}

#service .service-list-area .service-item .title {
  font-size: 0.9rem;
  line-height: 1.2;
  height: 1.08rem;
  overflow: hidden;
}

#service .service-list-area .service-item .sub-title {
  font-size: 24px;
  margin-top: 8px;
  color: var(--color);
  height: 38px;
  overflow: hidden;
}

#service .service-list-area .service-item .text {
  line-height: 2;
  margin-top: 0.24rem;
  color: var(--color10);
}

#service .service-list-area .service-item .right-area {
  width: 4rem;
  margin-left: 0.5rem;
}

#service .service-list-area .service-item .right-area .bg-img-container {
  padding-top: 100%;
}

#service .service-list-area .service-item + .service-item {
  margin-top: 1.1rem;
}

#service .service-list-area .service-item:nth-child(2n) {
  justify-content: flex-end;
}

.advertising {
  line-height: 0;
}

@media only screen and (max-width: 768px) {
  #service .service-list-area .service-item,
  #service .service-list-area .service-item:nth-child(2n) {
    justify-content: space-between;
    align-items: center;
  }
  #service .service-list-area .service-item .right-area {
    width: 35vw;
  }
}
/* ==============关于我们============= */

#about .about-details .info-area {
  background: #000;
  padding: 2rem 0 0;
  display: flex;
  justify-content: space-between;
}

#about .about-details .left-area {
  --width: calc(520 / 1620 * 100%);
  width: var(--width);
  max-width: var(--width);
  min-width: var(--width);
}

#about .about-details .left-area .bg-img-container {
  padding-top: calc(1100 / 520 * 100%);
  z-index: 3;
}

#about .about-details .right-area {
  padding: 1.3rem 3rem 3.5rem 2.5rem;
}

#about .about-details .right-area .title {
  color: var(--color5);
  line-height: 1.1;
  font-size: 0.48rem;
  opacity: 0.5;
}

#about .about-details .right-area .sub-title {
  margin-top: 0.37rem;
  font-size: 18px;
  font-weight: 600;
  /* max-width: 400px; */
}

#about .about-details .right-area .text {
  margin-top: 0.37rem;
  font-size: 14px;
  line-height: 2;
  color: var(--color13);
}

#about .links-area {
  position: relative;
  background: var(--color14);
  padding-top: 3.2rem;
  margin-top: -1.9rem;
}

#about .links-area::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  background: var(--color14);
  bottom: 0;
  right: 0;
  width: 9999px;
  height: calc(100% + 2.1rem);
  transform: translate(100%, 0);
  -webkit-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate(100%, 0);
}

#about .links-area::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  background: var(--color14);
  top: 0;
  left: 0;
  width: 9999px;
  height: 100%;
  transform: translate(-100%, 0);
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
}

#about .links-area .outer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#about .link-item {
  width: 9999px;
  padding: 0 0.8rem 0.5rem;
  border-left: 1px solid var(--color15);
  border-right: 1px solid var(--color15);
  position: relative;
}

#about .link-item:before {
  content: "";
  display: block;
  z-index: 1;
  left: 0;
  top: 0;
  background-color: #fff;
  transition: all 0.5s;
  height: 100%;
  width: 0;
  position: absolute;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.8);
}

#about .link-item > div {
  position: relative;
  z-index: 2;
}

@media only screen and (min-width: 1025px) {
  #about .link-item:hover:before {
    width: 100%;
  }
  #about .link-item:hover .title {
    color: var(--color);
    transform: translate3d(0, 1em, 0);
  }
  #about .link-item:hover .sub-title {
    letter-spacing: 5px;
    opacity: 0.5;
    transform: translate3d(0, 0.8em, 0);
    color: var(--color);
  }
  #about .link-item:hover .more-button::after {
    width: 0;
    opacity: 0;
  }
}

#about .link-item + .link-item {
  border-left: none;
}

#about .link-item .title {
  font-size: 0.48rem;
  font-weight: 600;
  transition: all 0.5s;
}

#about .link-item .more-button::after {
  transition: all 0.5s;
}

#about .link-item .sub-title {
  margin-top: 0.1rem;
  font-size: 0.3rem;
  color: var(--color13);
  transition: all 0.5s;
}

#about .link-item .more-button {
  margin-top: 2.35rem;
  transition: all 0.5s;
}

#about .brand-details-area .area-title {
  padding: 1.5rem 0.8rem;
  position: relative;
  background: #000;
}

#about .brand-details-area .area-title::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  background: var(--color14);
  top: 0;
  left: 0;
  width: 9999px;
  height: 100%;
  transform: translate(-100%, 0);
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
}

#about .brand-details-area .area-title .title {
  font-size: 0.48rem;
  font-weight: 600;
}

#about .brand-details-area .area-title .title .point {
  color: var(--color);
  font-size: 0.5rem;
  line-height: 1;
}

#about .brand-details-area .area-title .sub-title {
  margin-top: 0.2rem;
  font-size: 0.48rem;
  color: var(--color12);
  line-height: 1;
}

#about .brand-details-area .model-item {
  display: flex;
  height: 100vh;
  position: relative;
}

#about .brand-details-area .model-item .img-area {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 2s ease 0.2s;
  clip-path: polygon(0 2%, 0 0, 0 100%, 0% 100%);
  -webkit-transition: all 2s ease 0.2s;
  -moz-transition: all 2s ease 0.2s;
  -ms-transition: all 2s ease 0.2s;
  -o-transition: all 2s ease 0.2s;
}

#about .brand-details-area .model-item:nth-child(2n) .img-area {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

#about .brand-details-area .model-item.show-img .img-area {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

#about
  .brand-details-area
  .model-item:nth-child(2)
  .img-area
  .bg-img-container
  .bg-img {
  background-color: #00000e;
}

#about
  .brand-details-area
  .model-item:nth-child(3)
  .img-area
  .bg-img-container
  .bg-img {
  background-color: #000000;
}

#about .brand-details-area .model-item .inner-container {
  max-width: 810px;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 auto 0 calc((100vw - 1460px) / 2);
  transition: all 0.8s ease;
  opacity: 0;
  visibility: hidden;
  transform: translate(-30%, 0%);
}

#about .brand-details-area .model-item.show-img .inner-container {
  opacity: 1;
  visibility: visible;
  transform: translate(0%, 0%);
}

#about .brand-details-area .model-item .info {
  margin-left: 0.1rem;
}

#about .brand-details-area .model-item .info .title {
  font-size: 0.36rem;
  font-weight: 700;
}

#about .brand-details-area .model-item .info .sub-title {
  margin-top: 10px;
  font-size: 18px;
  color: var(--color4);
}

#about .brand-details-area .model-item .info .text {
  margin-top: 0.18rem;
  color: var(--color);
  line-height: 2.2;
  font-size: 14px;
}

#about .brand-details-area .model-item .img-area .bg-img-container {
  height: 100%;
}

#about .brand-details-area .model-item .img-area .bg-img-container .bg-img {
  background-size: auto 100%;
  background-position: right;
}

#about
  .brand-details-area
  .model-item:nth-child(2n)
  .img-area
  .bg-img-container
  .bg-img {
  background-position: left;
}

@media only screen and (max-width: 639px) {
  #about .brand-details-area .model-item {
    max-height: 120vw;
  }
  #about .brand-details-area .model-item .img-area .bg-img-container .bg-img {
    background-position: -10% 50%;
  }
  #about
    .brand-details-area
    .model-item:nth-child(2n)
    .img-area
    .bg-img-container
    .bg-img {
    background-position: 150% 50%;
  }
  #about
    .brand-details-area
    .model-item:nth-child(4)
    .img-area
    .bg-img-container
    .bg-img {
    background-position: 50% 0;
  }
}

#about .brand-details-area .model-item:nth-child(2n) {
  flex-direction: row-reverse;
}

#about .brand-details-area .model-item:nth-child(2n) .inner-container {
  justify-content: flex-end;
  margin: 0 calc((100vw - 1460px) / 2) 0 auto;
  padding-left: 0;
}

@media only screen and (max-width: 1620px) {
  #about .brand-details-area .model-item .inner-container {
    margin: 0 auto 0 var(--side-width);
  }
  #about .brand-details-area .model-item:nth-child(2n) .inner-container {
    margin: 0 var(--side-width) 0 auto;
  }
}

@media only screen and (max-width: 1400px) {
  #about .about-details .right-area {
    padding: 1.3rem 2.5rem 3.5rem 2rem;
  }
  #about .about-details .left-area {
    --width: 25%;
  }
  #about .links-area {
    padding-top: 2rem;
  }
  #about .link-item .more-button {
    margin-top: 1.8rem;
  }
}

@media only screen and (max-width: 1200px) {
  #about .about-details .right-area {
    padding: 1.3rem 2rem 3.5rem 1rem;
  }
  #about .link-item .sub-title {
    font-size: 20px;
  }
  #about .brand-details-area .area-title .title,
  #about .link-item .title {
    font-size: 28px;
  }
  #about .brand-details-area .area-title .title .point,
  #about .about-details .right-area .title {
    font-size: 32px;
  }
  #about .brand-details-area .area-title .sub-title {
    font-size: 26px;
  }
}

@media only screen and (max-width: 1024px) {
  #about .about-details .right-area {
    padding: 1.3rem 1.5rem 3.5rem 1rem;
  }
}

@media only screen and (max-width: 768px) {
  #about .about-details .left-area {
    display: none;
  }
  #about .about-details .right-area {
    padding: 1rem var(--side-width);
  }
  #about .links-area {
    margin-top: 0;
    padding-top: 0;
  }
  #about .links-area .outer-container {
    flex-direction: column;
  }
  #about .link-item {
    width: calc(100% - var(--side-width) * 2);
    border-left: none;
    border-right: none;
    padding: 1rem 0;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  /* #about .link-item .title {
        font-size: 35px;
        font-weight: 100;
    } */
  #about .link-item + .link-item {
    border-top: 1px solid var(--color15);
  }
  #about .link-item .more-button {
    margin-top: 0.8rem;
    margin-left: auto;
    margin-right: 0;
  }
}
/* ==============关于-大事件============== */

#about .area-title.normal {
  position: relative;
  margin-top: 3rem;
  background: #000;
  padding: 2rem 0.8rem 3.4rem;
}

#about.history .area-title.normal::after {
  content: "";
  display: block;
  position: absolute;
  left: 0.8rem;
  bottom: 0;
  top: auto;
  width: 10px;
  height: 2.8rem;
  background: url(/phone/images/img25.png) no-repeat center center;
  background-size: contain;
  transform: translate(-50%, calc(100% - 1.5rem));
  -webkit-transform: translate(-50%, calc(100% - 1.5rem));
  -moz-transform: translate(-50%, calc(100% - 1.5rem));
  -ms-transform: translate(-50%, calc(100% - 1.5rem));
  -o-transform: translate(-50%, calc(100% - 1.5rem));
}

#about .area-title.normal::after {
  content: "";
  display: block;
  position: absolute;
  width: 9999px;
  height: 100%;
  left: 100%;
  top: 0;
  background: #000;
}

#about .area-title.normal .title {
  font-size: 1rem;
  line-height: 1.4;
}

#about .area-title.normal .sub-title {
  font-size: 0.3rem;
}

#about .area-title.normal .floag-img {
  position: absolute;
  width: 2.5rem;
  height: 100%;
  top: 0;
  left: calc(50% + 730px);
  transform: translate(-100%, 2rem);
  -webkit-transform: translate(-100%, 2rem);
  -moz-transform: translate(-100%, 2rem);
  -ms-transform: translate(-100%, 2rem);
  -o-transform: translate(-100%, 2rem);
}

#about.history .history-details-area {
  position: relative;
  margin-top: -1.5rem;
  display: flex;
  justify-content: center;
}

#about.history .history-details-area > div {
  width: 50%;
  max-width: 50%;
  min-width: 50%;
}

#about.history .history-details-area .left-area {
  position: relative;
  z-index: -1;
}

#about.history .history-details-area .left-area .bg-img-container {
  width: calc(760 / 960 * 100%);
  height: 100%;
}

#about.history .history-details-area .right-area {
  width: 9999px;
  padding: 4.3rem 0 2.3rem;
}

#about.history .history-details-area .right-area .history-list {
  max-width: 730px;
}

#about.history .history-details-area .right-area .history-list li {
  display: flex;
  justify-content: flex-start;
  font-size: 14px;
}

#about.history .history-details-area .right-area .history-list li + li {
  margin-top: 20px;
}

#about.history .history-details-area .right-area .history-list li .date {
  padding: 0 1rem 0 0.44rem;
}

#about .about-links-area {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 2.5rem 0.8rem;
}

#about .about-links-area .bg-title {
  width: 100%;
  height: 6rem;
}

#about .about-links-area .bg-title .svg-container {
  width: 100%;
  height: 100%;
}

#about .about-links-area .bg-title .svg-container .text {
  fill: transparent;
  stroke: var(--color);
  font-size: 3rem;
  line-height: 0.8;
  opacity: 0.35;
  dominant-baseline: middle;
}

#about .model-item .num-container {
  width: 2.5rem;
  min-width: 2.5rem;
  height: 3.5rem;
}

#about .model-item .num-container .svg-container {
  width: 100%;
  height: 100%;
}

#about .model-item .svg-container text {
  fill: transparent;
  text-anchor: middle;
  stroke-width: 1;
  stroke: var(--color);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

#about .model-item:nth-child(1) .inner-container:hover .svg-container text.num {
  fill: url("#rg1");
}

#about .model-item:nth-child(2) .inner-container:hover .svg-container text.num {
  fill: url("#rg2");
}

#about .model-item:nth-child(3) .inner-container:hover .svg-container text.num {
  fill: url("#rg3");
}

#about .model-item:nth-child(4) .inner-container:hover .svg-container text.num {
  fill: url("#rg4");
}

#about .model-item .svg-container text.shadow {
  opacity: 0.5;
  transform: translate3d(-10px, 0, 0);
  -webkit-transform: translate3d(-10px, 0, 0);
  -moz-transform: translate3d(-10px, 0, 0);
  -ms-transform: translate3d(-10px, 0, 0);
  -o-transform: translate3d(-10px, 0, 0);
}

#about .about-link-item {
  padding-left: 0.58rem;
}

#about .about-link-item.on {
  display: none;
}

#about .about-link-item + .about-link-item {
  margin-top: 0.9rem;
}

#about .about-link-item .title {
  position: relative;
  font-size: 0.9rem;
  line-height: 1.4;
  transition: all 0.5s;
}

#about .about-link-item:hover .title {
  color: var(--color);
}

#about .about-link-item:hover .title::after {
  border-color: var(--color);
}

#about .about-link-item .title::after {
  transition: border 0.5s;
  content: "\e705";
  position: absolute;
  top: 50%;
  left: -0.3rem;
  transform: translate(-100%, -50%);
  -webkit-transform: translate(-100%, -50%);
  -moz-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
  -o-transform: translate(-100%, -50%);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "iconfont";
  font-size: 0.24rem;
  font-weight: 700;
  width: 0.38rem;
  height: 0.38rem;
  border: 2px solid #fff;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
}

#about .about-link-item .sub-title {
  font-size: 18px;
  color: var(--color5);
}

@media only screen and (max-width: 1800px) {
  #about .area-title.normal .floag-img {
    left: auto;
    right: var(--side-width);
    transform: translate(0, 2rem);
    -webkit-transform: translate(0, 2rem);
    -moz-transform: translate(0, 2rem);
    -ms-transform: translate(0, 2rem);
    -o-transform: translate(0, 2rem);
  }
}

@media only screen and (max-width: 1600px) {
  #about.history .history-details-area .left-area {
    width: 40%;
    max-width: 40%;
    min-width: 40%;
  }
  #about.history .history-details-area .right-area {
    width: 100%;
    max-width: unset;
    min-width: unset;
  }
}

@media only screen and (max-width: 1400px) {
  #about.history .history-details-area .left-area {
    width: 35%;
    max-width: 35%;
    min-width: 35%;
  }
}

@media only screen and (max-width: 1200px) {
  #about.history .history-details-area .left-area {
    width: 30%;
    max-width: 30%;
    min-width: 30%;
  }
}

@media only screen and (max-width: 768px) {
  #about.history .history-details-area {
    margin-top: 0;
    flex-direction: column;
  }
  #about.history .history-details-area .left-area {
    width: 100%;
    max-width: unset;
    min-width: unset;
  }
  #about.history .history-details-area .left-area .bg-img-container {
    padding-top: 61.8%;
    width: 100%;
    padding-right: 0;
  }
  #about.history .history-details-area .right-area {
    padding: 1rem 0;
  }
}
/* ==============关于-品牌============== */

#about.brand .brand-details-area {
  position: relative;
}

#about.brand .brand-details-area .about-brand-swiper {
  position: absolute;
  transform: translateY(-50%);
  width: 100%;
  overflow: visible;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

#about.brand .brand-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#about.brand .brand-detail-item .left-area {
  --width: calc(290 / 1460 * 100%);
  width: var(--width);
  max-width: var(--width);
  min-width: var(--width);
  position: relative;
}

#about.brand .brand-detail-item .left-area .background-img {
  position: absolute;
  z-index: -1;
  height: 166%;
  width: auto;
  top: -33%;
  left: 100%;
  object-fit: contain;
  opacity: 0.1;
  transform: translateX(-15.45%);
  -webkit-transform: translateX(-15.45%);
  -moz-transform: translateX(-15.45%);
  -ms-transform: translateX(-15.45%);
  -o-transform: translateX(-15.45%);
  pointer-events: none;
}

#about.brand .brand-detail-item .left-area .bg-img-container {
  background-color: #009d88;
  padding-top: calc(178 / 300 * 100%);
}

#about.brand .brand-detail-item .left-area .bg-img {
  width: 60%;
  height: auto;
  top: 50%;
  left: 50%;
  filter: grayscale(100%) brightness(300%);
  -webkit-filter: grayscale(100%) brightness(300%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

#about.brand .brand-detail-item .right-area {
  padding: 0.3rem 0.56rem;
  font-size: 14px;
  line-height: 2.2;
  margin-right: 2.5rem;
}

#about.brand .brand-list-area {
  display: flex;
  justify-content: space-between;
}

#about.brand .brand-list-area .left-area {
  --width: calc(290 / 1460 * 100%);
  width: var(--width);
  max-width: var(--width);
  min-width: var(--width);
}

#about.brand .brand-list-area .right-area {
  width: 100%;
  background: #1b1b21;
  padding: 2.5rem 1.7rem 1rem;
  margin-right: 2.5rem;
  position: relative;
}

#about.brand .brand-list-area .right-area::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 9999px;
  height: calc(100% + 1.5rem);
  background: #1b1b21;
}

#about.brand .brand-list-area .brand-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  position: relative;
}

#about.brand .brand-list-area .brand-item {
  padding: 0.24rem;
  padding-left: 0;
}

#about.brand .brand-list-area .brand-item img {
  filter: grayscale(100%) brightness(250%);
  -webkit-filter: grayscale(100%) brightness(250%);
  transition: filter 0.3s ease;
  -webkit-transition: filter 0.3s ease;
  -moz-transition: filter 0.3s ease;
  -ms-transition: filter 0.3s ease;
  -o-transition: filter 0.3s ease;
}

#about.brand .brand-list-area .brand-item.on img,
#about.brand .brand-list-area .brand-item:hover img {
  filter: grayscale(0) brightness(100%);
  -webkit-filter: grayscale(0) brightness(100%);
}

#about.brand .brand-list-area .brand-list .next-button {
  position: absolute;
  top: 40%;
  left: 0;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

#about.brand .brand-list-area .brand-list .next-button:hover {
  background: #009d88;
}

@media only screen and (max-width: 1800px) {
  #about.brand .brand-list-area .right-area,
  #about.brand .brand-detail-item .right-area {
    margin-right: calc(2.5rem + var(--side-width));
  }
}

@media only screen and (max-width: 1600px) {
  #about.brand .brand-list-area .brand-list {
    padding-top: 3.5rem;
  }
  #about.brand .brand-detail-item .right-area {
    padding: 0.3rem 50px;
  }
}

@media only screen and (max-width: 1400px) {
  #about.brand .brand-list-area .brand-list {
    padding-top: 4.5rem;
  }
}

@media only screen and (max-width: 1024px) {
  #about.brand .brand-list-area .brand-list {
    padding-top: 5rem;
  }
}

@media only screen and (max-width: 768px) {
  #about .area-title.normal .floag-img {
    display: none;
  }
  #about.brand .brand-details-area .about-brand-swiper {
    position: relative;
    background: #000;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
  }
  #about.brand .brand-detail-item {
    flex-direction: column;
    align-items: start;
  }
  #about.brand .brand-detail-item .left-area {
    --width: calc(60% - var(--side-width) * 2);
    margin-left: var(--side-width);
  }
  #about.brand .brand-detail-item .right-area {
    margin-right: 0;
    padding: 0.3rem var(--side-width) 0.5rem;
  }
  #about.brand .brand-list-area .brand-list {
    padding-top: 1rem;
  }
  #about.brand .brand-list-area .brand-item {
    padding: 0.4rem 0.4rem 0.4rem 0;
  }
}
/* ==============关于-团队============== */

#about.team .team-details-area {
  margin-top: -1.3rem;
  padding: 0 0.8rem;
  position: relative;
}

#about.team .team-details-area .team-list {
  margin: 0 -0.65rem;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

#about.team .team-details-area .team-item {
  margin: 0 0.65rem 1.2rem;
  width: calc(100% / 3 - 1.3rem);
}

#about.team .team-details-area .team-item .bg-img-container {
  padding-top: calc(505 / 400 * 100%);
  overflow: hidden;
}

#about.team .team-details-area .team-item .canvas-box {
  width: 110%;
  height: 110%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

#about.team .team-details-area .team-item .canvas-box canvas {
  animation: imgShake 40s infinite;
  -webkit-animation: imgShake 40s infinite;
  transition: transform 1s ease 0.1s;
  -webkit-transition: transform 1s ease 0.1s;
  -moz-transition: transform 1s ease 0.1s;
  -ms-transition: transform 1s ease 0.1s;
  -o-transition: transform 1s ease 0.1s;
}

#about.team .team-details-area .team-item:nth-child(2) .canvas-box canvas {
  animation-delay: 1s;
}

#about.team .team-details-area .team-item:nth-child(3) .canvas-box canvas {
  animation-delay: -2s;
}

#about.team .team-details-area .team-item:nth-child(4) .canvas-box canvas {
  animation-delay: 3s;
}

#about.team .team-details-area .team-item:nth-child(5) .canvas-box canvas {
  animation-delay: -4s;
}

#about.team .team-details-area .team-item:nth-child(6) .canvas-box canvas {
  animation-delay: 5s;
}

@keyframes imgShake {
  0% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
  }
  10% {
    transform: translate(10px, 10px);
    -webkit-transform: translate(10px, 10px);
    -moz-transform: translate(10px, 10px);
    -ms-transform: translate(10px, 10px);
    -o-transform: translate(10px, 10px);
  }
  20% {
    transform: translate(0px, 10px);
    -webkit-transform: translate(0px, 10px);
    -moz-transform: translate(0px, 10px);
    -ms-transform: translate(0px, 10px);
    -o-transform: translate(0px, 10px);
  }
  30% {
    transform: translate(10px, 0px);
    -webkit-transform: translate(10px, 0px);
    -moz-transform: translate(10px, 0px);
    -ms-transform: translate(10px, 0px);
    -o-transform: translate(10px, 0px);
  }
  40% {
    transform: translate(-10px, 0px);
    -webkit-transform: translate(-10px, 0px);
    -moz-transform: translate(-10px, 0px);
    -ms-transform: translate(-10px, 0px);
    -o-transform: translate(-10px, 0px);
  }
  50% {
    transform: translate(0px, -10px);
    -webkit-transform: translate(0px, -10px);
    -moz-transform: translate(0px, -10px);
    -ms-transform: translate(0px, -10px);
    -o-transform: translate(0px, -10px);
  }
  60% {
    transform: translate(-10px, -10px);
    -webkit-transform: translate(-10px, -10px);
    -moz-transform: translate(-10px, -10px);
    -ms-transform: translate(-10px, -10px);
    -o-transform: translate(-10px, -10px);
  }
  70% {
    transform: translate(-15px, -10px);
    -webkit-transform: translate(-15px, -10px);
    -moz-transform: translate(-15px, -10px);
    -ms-transform: translate(-15px, -10px);
    -o-transform: translate(-15px, -10px);
  }
  80% {
    transform: translate(-15px, -15px);
    -webkit-transform: translate(-15px, -15px);
    -moz-transform: translate(-15px, -15px);
    -ms-transform: translate(-15px, -15px);
    -o-transform: translate(-15px, -15px);
  }
  90% {
    transform: translate(-10px, -10px);
    -webkit-transform: translate(-10px, -10px);
    -moz-transform: translate(-10px, -10px);
    -ms-transform: translate(-10px, -10px);
    -o-transform: translate(-10px, -10px);
  }
  100% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
  }
}

#about.team .team-details-area .team-item .name {
  position: relative;
  z-index: 2;
  font-size: 0.8rem;
  line-height: 1;
  margin-top: -0.4rem;
  color: var(--color);
}

#about.team .team-details-area .team-item .text {
  margin-top: 10px;
}

#about.team .team-details-area .team-item:nth-child(2) {
  transform: translate(0, -0.3rem);
  -webkit-transform: translate(0, -0.3rem);
  -moz-transform: translate(0, -0.3rem);
  -ms-transform: translate(0, -0.3rem);
  -o-transform: translate(0, -0.3rem);
}

#about.team .team-details-area .team-item:nth-child(5) {
  transform: translate(0, 0.3rem);
  -webkit-transform: translate(0, 0.3rem);
  -moz-transform: translate(0, 0.3rem);
  -ms-transform: translate(0, 0.3rem);
  -o-transform: translate(0, 0.3rem);
}

#about.team .area-title.normal .floag-img {
  width: 100%;
  height: 100%;
  right: 0;
  left: 0;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
}

@media only screen and (max-width: 1024px) {
  #about.team .team-details-area .team-item {
    width: calc(100% / 2 - 1.3rem);
  }
}

@media only screen and (max-width: 768px) {
  #about.team .team-details-area .team-item .name {
    margin-top: 0.2rem;
  }
}
/* ==============联系我们============== */

#contact .banner-title .sub-title {
  font-size: 14px;
  color: var(--color16);
}

#contact .contact-details-area {
  padding: 0 var(--side-width) 1.2rem;
  display: flex;
  justify-content: space-between;
  background-image: linear-gradient(
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.8)
  );
}

#contact .map-area {
  background: var(--color8);
}

#contact .contact-details-area > div {
  width: 50%;
  max-width: 50%;
  min-width: 50%;
  padding-right: 1.3rem;
}

#contact .contact-details-area .left-area .info-item .title {
  font-size: 20px;
}

#contact .contact-details-area .left-area .info-item + .info-item {
  margin-top: 0.4rem;
}

#contact .contact-details-area .left-area .info-item .text {
  margin-top: 15px;
  font-size: 14px;
  color: var(--color10);
  line-height: 2;
}

#contact .contact-details-area .left-area .qr-code {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

#contact .contact-details-area .left-area .qr-code-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

#contact .contact-details-area .left-area .qr-code-item + .qr-code-item {
  margin-left: 0.2rem;
}

#contact .contact-details-area .left-area .qr-code-item img {
  height: 90px;
}

#contact .contact-details-area .left-area .qr-code-item .text {
  font-size: 12px;
  margin-top: 6px;
  color: var(--color16);
}

#contact .contact-details-area .right-area .form-title {
  font-size: 0.24rem;
}

#contact .contact-details-area .right-area form {
  margin-top: 0.3rem;
}

#contact .contact-details-area .right-area form .title {
  font-size: 16px;
  color: var(--color17);
}

#contact .contact-details-area .right-area form .box-container {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 8px -12px 0;
}

#contact .contact-details-area .right-area form .check-item {
  font-size: 14px;
  margin: 0 12px;
  line-height: 2.2;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

#contact .contact-details-area .right-area form .check-box {
  width: 14px;
  height: 14px;
  border: 1px solid var(--text-color);
  margin-right: 5px;
  position: relative;
}

#contact .contact-details-area .right-area form .check-item .check-box::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  top: 72%;
  left: -58%;
  background: #fff;
  transform: rotate(63deg);
  transform-origin: top right;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

#contact .contact-details-area .right-area form .check-item .check-box::before {
  content: "";
  display: block;
  position: absolute;
  width: 160%;
  height: 3px;
  top: 82%;
  left: -130%;
  background: #fff;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform-origin: top right;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

#contact .contact-details-area .right-area form .check-item.checked {
  color: var(--color);
}

#contact .contact-details-area .right-area form .check-item.checked .check-box {
  border: 1px solid var(--color);
  background: var(--color);
}

#contact
  .contact-details-area
  .right-area
  form
  .check-item.checked
  .check-box::after,
#contact
  .contact-details-area
  .right-area
  form
  .check-item.checked
  .check-box::before {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

#contact
  .contact-details-area
  .right-area
  form
  .check-item.checked
  .check-box::after {
  transition: all 0.1s ease;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
}

#contact
  .contact-details-area
  .right-area
  form
  .check-item.checked
  .check-box::before {
  transition: all 0.2s ease 0.1s;
  -webkit-transition: all 0.2s ease 0.1s;
  -moz-transition: all 0.2s ease 0.1s;
  -ms-transition: all 0.2s ease 0.1s;
  -o-transition: all 0.2s ease 0.1s;
}

#contact .contact-details-area .right-area form .form-item + .form-item {
  margin-top: 0.3rem;
}

#contact .contact-details-area .right-area form .input-item {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color5);
}

#contact .contact-details-area .right-area form .input-item .remind {
  font-size: 16px;
  white-space: nowrap;
  margin-right: 10px;
  color: var(--color16);
}

#contact .contact-details-area .right-area form .input-item input {
  width: 9999px;
  padding: 15px 10px;
  background: none;
  color: var(--color);
}

#contact .contact-details-area .right-area form button {
  margin-top: 0.3rem;
  cursor: pointer;
}

#contact .contact-details-area .right-area form button .title {
  color: var(--color8);
  font-size: 18px;
  padding-left: 17px;
  padding-right: 17px;
}

#contact .map-area {
  height: 7.5rem;
}

#contact #baidu-map {
  width: 100%;
  height: 100%;
}

.BMap_Marker {
  animation: jump 1s linear infinite;
  -webkit-animation: jump 1s linear infinite;
}

.anchorBL {
  display: none;
}

@keyframes jump {
  0% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
  25% {
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
  }
  50% {
    transform: translateY(20px) scale(1.1, 0.9);
    -webkit-transform: translateY(20px) scale(1.1, 0.9);
    -moz-transform: translateY(20px) scale(1.1, 0.9);
    -ms-transform: translateY(20px) scale(1.1, 0.9);
    -o-transform: translateY(20px) scale(1.1, 0.9);
  }
  75% {
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}

@media only screen and (max-width: 1600px) {
  #contact .contact-details-area .right-area .form-title {
    font-size: 22px;
  }
}

@media only screen and (max-width: 1400px) {
  #contact .contact-details-area > div {
    padding-right: 0.8rem;
  }
  #contact .contact-details-area .right-area .form-title {
    font-size: 20px;
  }
}

@media only screen and (max-width: 768px) {
  #contact .contact-details-area {
    flex-direction: column-reverse;
    background-image: linear-gradient(
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 1)
    );
  }
  #contact .contact-details-area .right-area .form-title {
    font-size: 18px;
  }
  #contact .contact-details-area > div {
    width: 100%;
    min-width: unset;
    max-width: unset;
    padding-right: 0;
  }
  #contact .contact-details-area .right-area form button {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5vw;
  }
  #contact .contact-details-area .left-area {
    margin-top: 2rem;
    text-align: center;
  }
  #contact .contact-details-area .left-area .info-item + .info-item {
    justify-content: center;
  }
}
/* ==============新闻列表页============== */

#news {
  padding-bottom: 1rem;
}

#news .news-recommend-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#news .news-recommend-area .left-area {
  --width: calc(870 / 1460 * 100%);
  width: var(--width);
  max-width: var(--width);
  min-width: var(--width);
}

#news .news-recommend-area .left-area .bg-img-container {
  padding-top: calc(550 / 870 * 100%);
}

#news .news-recommend-area .right-area {
  width: 100%;
  padding: 0.5rem 0.2rem 0.5rem 1rem;
}

#news .news-recommend-area .right-area .date {
  color: var(--color17);
}

#news .news-recommend-area .right-area .title {
  font-size: 0.36rem;
  line-height: 1.4;
  transition: all 0.4s;
}

#news .news-recommend-area .right-area:hover .title {
  color: var(--color);
}

#news .news-recommend-area .right-area .next-button {
  margin-top: 0.7rem;
}

#news .news-list-area {
  margin-top: 1rem;
}

#news .news-list-area .filter-area {
  width: 100%;
  position: relative;
}

#news .news-list-area .filter-area .filte-list-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#news .news-list-area .filter-area .filte-list {
  width: 100%;
  height: 100%;
  padding: 1.2% calc(1.2% + 0.5rem);
  display: flex;
  justify-content: center;
  align-items: center;
}

#news .news-list-area .filter-area .filte-list .filter-list-swiper {
  width: 100%;
  height: 100%;
}

#news
  .news-list-area
  .filter-area
  .filte-list
  .filter-list-swiper
  .swiper-slide {
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

#news .news-list-area .filter-area .filter-item {
  font-size: 18px;
  height: 100%;
  padding: 0 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

#news .news-list-area .filter-area .filter-item:hover,
#news .news-list-area .filter-area .filter-item.on {
  color: var(--color17);
}

#news .news-list-area .filter-area .bottom-icon {
  transform: translate(1.2%, 90%);
  -webkit-transform: translate(1.2%, 90%);
  -moz-transform: translate(1.2%, 90%);
  -ms-transform: translate(1.2%, 90%);
  -o-transform: translate(1.2%, 90%);
}

#news .news-list-area .area-title {
  font-size: 1.2rem;
  margin-top: 0.6rem;
  line-height: 1;
}

#news .news-list-area + .page-control {
  margin-top: 3rem;
}

#news .news-list-area .news-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--color5);
  padding: 0.68rem 0;
}

#news .news-list-area .news-item .left-area {
  --width: 50%;
  margin-right: 0.5rem;
  width: var(--width);
  min-width: var(--width);
  max-width: var(--width);
}

#news .news-list-area .news-item .left-area .date {
  color: var(--color17);
}

#news .news-list-area .news-item .left-area .title {
  font-size: 0.3rem;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

#news .news-list-area .news-item:hover .left-area .title {
  color: var(--color);
  transition: all 0.5s;
}

#news .news-list-area .news-item .left-area .text {
  font-size: 14px;
  margin-top: 0.35rem;
  line-height: 2;
  color: var(--color13);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

#news .news-list-area .news-item .left-area .more-button {
  margin-top: 0.4rem;
}

#news .news-list-area .news-item .right-area {
  width: 100%;
  max-width: 445px;
}

#news .news-list-area .news-item .right-area .bg-img-container {
  padding-top: calc(334 / 446 * 100%);
}

@media only screen and (max-width: 1600px) {
  #news .news-recommend-area,
  #news .news-list-area {
    padding: 0 var(--side-width);
  }
  #news .news-list-area .news-item .left-area {
    --width: 60%;
  }
}

@media only screen and (max-width: 1200px) {
  #news .news-list-area .news-item .left-area .title {
    font-size: 20px;
  }
  #news .news-list-area .news-item .left-area {
    --width: 65%;
  }
  .footer .container1 {
    max-width: unset;
  }
}

@media only screen and (max-width: 1024px) {
  #news .news-recommend-area .right-area .title {
    font-size: 18px;
  }
  #news .news-recommend-area .right-area {
    padding: 0.5rem 0.2rem 0.5rem 0.8rem;
  }
  #news .news-list-area .news-item {
    align-items: center;
  }
}

@media only screen and (max-width: 768px) {
  #news .news-recommend-area .right-area .next-button {
    display: none;
  }
  #news .news-list-area .filter-area .filter-item {
    font-size: 16px;
    padding: 0 0;
    margin-right: 5vw;
  }
  #news .news-list-area .area-title {
    display: none;
  }
  #news .news-recommend-area,
  #news .news-list-area {
    flex-direction: column;
  }
  #news .news-recommend-area .left-area {
    --width: 100%;
  }
  #news .news-recommend-area .right-area {
    padding: 0.5rem 0;
  }
  #news .news-list-area .filter-area .border-box {
    opacity: 0;
  }
  #news .news-list-area .filter-area .filte-list {
    padding: 0;
  }
  #news .news-list-area .news-item {
    flex-direction: column-reverse;
  }
  #news .news-list-area .news-item .left-area {
    --width: 100%;
    margin-right: 0;
    margin-top: 0.3rem;
  }
  #news .news-list-area .news-item .right-area {
    max-width: unset;
  }
}
/* ==============新闻详情页============== */

#news.view {
  padding-bottom: 0.2rem;
}

#news.view .news-details-area {
  margin-top: 3rem;
  width: calc(100% - var(--side-width) * 2);
}

#news.view .news-details-area .title-area {
  text-align: center;
  max-width: 1010px;
  margin: 0 auto;
}

#news.view .news-details-area .title {
  font-size: 0.48rem;
  line-height: 1.4;
}

#news.view .news-details-area .info-area {
  margin-top: 0.24rem;
  font-size: 14px;
  color: var(--color17);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

#news.view .news-details-area .info-area .cut-line {
  color: #fff;
  font-weight: 100;
  margin: 0 12px;
}

#news.view .news-details-area .text {
  margin-top: 0.5rem;
  line-height: 2;
}

#news.view .sharea-area {
  display: flex;
  justify-content: center;
  margin-top: 1.3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color12);
  width: calc(100% - var(--side-width) * 2);
}

.bdshare-button-style0-32 a {
  width: 54px !important;
  height: 54px !important;
  border: 2px solid var(--color);
  background-size: 50%;
  background-position: center center !important;
  text-indent: none !important;
  filter: grayscale(100%) brightness(250%);
  -webkit-filter: grayscale(100%) brightness(250%);
  transition: filter 0.3s ease;
  -webkit-transition: filter 0.3s ease;
  -moz-transition: filter 0.3s ease;
  -ms-transition: filter 0.3s ease;
  -o-transition: filter 0.3s ease;
}

.bdshare-button-style0-32 a:hover {
  filter: grayscale(0) brightness(100%);
  -webkit-filter: grayscale(0) brightness(100%);
}

.bdshare-button-style0-32 a.bds_weixin {
  background-image: url(/phone/images/wxIcon.png) !important;
}

.bdshare-button-style0-32 a.bds_tsina {
  background-image: url(/phone/images/sinaIcon.png) !important;
}

.bdshare-button-style0-32 a.bds_sqq {
  background-image: url(/phone/images/qqIcon.png) !important;
}

.bdshare-button-style0-32 a.bds_more {
  background-image: url(/phone/images/plusIcon.png) !important;
}

#news.view .page-control-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  width: calc(100% - var(--side-width) * 2);
}

#news.view .page-control-area > a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--color17);
  font-size: 14px;
}

#news.view .page-control-area .remind {
  margin: 0 17px;
}

#news.view .page-control-area .iconfont {
  font-size: 20px;
  width: 53px;
  height: 53px;
  border: 2px solid var(--color17);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  #news.view .news-details-area .title {
    font-size: 24px;
  }
  #background-wave .background-image {
    background-position: top;
    background-size: 160% auto;
  }
  #about.brand .brand-list-area .right-area {
    margin-right: 0;
  }
  #about .area-title.normal {
    margin-top: 5rem;
    background: #000;
    padding: 1rem 0.8rem;
  }
  #about.brand .brand-list-area .left-area {
    width: 1.5rem;
    min-width: 0;
  }
  #about.team .team-details-area {
    margin-top: 1rem;
  }
}
/*手机跳转遮罩*/

#phonechange {
  position: fixed;
  z-index: 101;
  top: -280vw;
  left: -280vw;
  border-radius: 100%;
  width: 560vw;
  height: 560vw;
  opacity: 0.5;
  background: var(--color);
  display: none;
  transform: scale(0.0000000000000000001);
  transition: all 0.8s cubic-bezier(0.85, 0, 0.25, 1);
}

@media only screen and (max-width: 768px) {
  #phonechange {
    display: block;
  }
  #phonechange.change-page {
    opacity: 1;
    transform: scale(1.1);
  }
  @media only screen and (max-width: 640px) {
    #about.team .team-details-area .team-item {
      width: calc(100% / 2 - 6vw);
      margin: 0 0vw 1rem 4vw;
    }
  }
}
/* 鼠标圆点 */

.mouse-focus-small {
  width: 6px;
  height: 6px;
  background-color: var(--color);
  /* mix-blend-mode: difference; */
  position: fixed;
  z-index: 102;
  top: -5px;
  left: -5px;
  border-radius: 100%;
  transform: translate3d(-50%, -50%, 0);
  pointer-events: none;
  transition: background-color 0.5s;
}
/* .mouse-focus-small.click {
  width: 3px;
  height: 3px;
  top: -1px;
  left: -1px;
  opacity: 0.6;
} */
.mouse-focus {
  position: fixed;
  z-index: 101;
  transform: rotate(45deg);
  width: 24px;
  height: 24px;
  /*鼠标的圆环颜色*/
  border: 0 !important;
  border: 2px solid var(--color);
  /* border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%; */
  pointer-events: none;
  transition: top 0.5s ease, left 0.5s ease, bottom 0.5s ease, right 0.5s ease,
    width 0.5s ease, height 0.5s ease, opacity 0.8s ease, border-color 0.8s ease,
    background-color 0.8s ease, mix-blend-mode 0.5s;
}

.mouse-focus.f1 {
  top: -12px;
  left: -12px;
}
.mouse-focus.f2 {
  top: -12px;
  right: -12px;
}
.mouse-focus.f3 {
  bottom: -12px;
  left: -12px;
}
.mouse-focus.f4 {
  bottom: -12px;
  right: -12px;
}

/* .mouse-focus.click,
.mouse-focus.point {
  top: -35px;
  left: -35px;
  width: 70px;
  height: 70px;
  opacity: 0.2;
  border-width: 1px;
} */

/* .mouse-focus.rong,
.mouse-focus-small.rong {
  border-color: #fff;
  background-color: #fff;
  mix-blend-mode: difference;
  opacity: 1 !important;
} */

.mouse-focus-small.rong {
  border: 0;
}

/* .mouse-focus.rong.white {
  background-color: #fff;
  mix-blend-mode: difference;
  opacity: 1 !important;
  border-color: #fff;
} */

/* .mouse-focus.leave {
  width: 0;
  height: 0;
  left: 0;
  top: 0;
  opacity: 0;
} */

.mouse-focus-small.white {
  background-color: #fff;
}

.mouse-focus.white {
  border-color: #fff;
}

body.normal .mouse-focus {
  transition: all 0.5s, transform 0;
  -webkit-transition: all 0.5s, transform 0;
  -moz-transition: all 0.5s, transform 0;
  -ms-transition: all 0.5s, transform 0;
  -o-transition: all 0.5s, transform 0;
  transform: translate3d();
  -webkit-transform: translate3d();
  -moz-transform: translate3d();
  -ms-transform: translate3d();
  -o-transform: translate3d();
}

.mouse-focus.click,
.mouse-focus-small.click {
  transition: all 0.2s ease, transform 0.1s;
  -webkit-transition: all 0.2s ease, transform 0.1s;
  -moz-transition: all 0.2s ease, transform 0.1s;
  -ms-transition: all 0.2s ease, transform 0.1s;
  -o-transition: all 0.2s ease, transform 0.1s;
}

/* .mouse-focus.click.point {
  top: -20px;
  left: -20px;
  width: 40px;
  height: 40px;
  opacity: 1;
} */

.loadingshow {
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%);
  position: fixed;
  height: 30px;
  left: 50%;
  top: 50%;
  z-index: 10000000;
  /* pointer-events: none; */
  pointer-events: unset;
}

.loadingshow.change-page {
  opacity: 0.8;
  visibility: visible;
  mix-blend-mode: normal;
}

.mouse-focus img {
  display: none;
}

.mouse-focus.change-page img {
  display: block;
}

.mouse-focus.change-page.f1 {
  left: -250vw !important;
  top: -250vw !important;
}
.mouse-focus.change-page.f2 {
  right: -250vw !important;
  top: -250vw !important;
}
.mouse-focus.change-page.f3 {
  left: -250vw !important;
  bottom: -250vw !important;
}
.mouse-focus.change-page.f4 {
  right: -250vw !important;
  bottom: -250vw !important;
}

.mouse-focus.change-page {
  width: 500vw !important;
  height: 500vw !important;

  opacity: 1;
  background: var(--color);
  transition: top 0.8s cubic-bezier(0.85, 0, 0.25, 1),
    left 0.8s cubic-bezier(0.85, 0, 0.25, 1),
    right 0.8s cubic-bezier(0.85, 0, 0.25, 1),
    bottom 0.8s cubic-bezier(0.85, 0, 0.25, 1),
    width 0.8s cubic-bezier(0.85, 0, 0.25, 1),
    height 0.8s cubic-bezier(0.85, 0, 0.25, 1), opacity 0.8s ease,
    border-color 0.8s ease, background-color 0.8s ease, mix-blend-mode 0s;
}

@media only screen and (max-width: 768px) {
  /* .mouse-focus,
  .mouse-focus-small {
    display: none;
  } */
  html {
    cursor: default;
  }
  .index-top-company .list .item {
    display: none;
  }
  .index-top-company .list .item[data-i="0"],
  .index-top-company .list .item[data-i="1"],
  .index-top-company .list .item[data-i="2"],
  .index-top-company .list .item[data-i="3"],
  .index-top-company .list .item[data-i="4"],
  .index-top-company .list .item[data-i="5"],
  .index-top-company .list .item[data-i="6"],
  .index-top-company .list .item[data-i="7"] {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .index-case .case-swiper .swiper-slide {
    width: 100%;
    margin-right: 0;
    margin-bottom: 4vw;
    display: none;
  }
  .index-case .case-swiper .swiper-slide:nth-child(-n + 8) {
    display: block;
  }
  .index-case .case-swiper .swiper-slide a {
    font-size: 4vw;
  }
  .index-case .case-swiper .swiper-slide a .desc {
    font-size: 3.2vw;
  }
  .index-case .case-swiper .zimu {
    font-size: 10vw;
  }
  .index-case .case-swiper {
    padding-top: 5vw;
  }
  .index-top-company {
    padding-bottom: 10vw;
    padding-top: 4vw;
  }
  .index-case .case-swiper .morebtn {
    float: unset;
    display: block;
    margin: calc(1rem - 24px) auto 0;
    width: 40vw;
  }
}

@media only screen and (max-width: 640px) {
  .index-top-company .list .item {
    display: none !important;
  }
  .index-top-company .list .item[data-i="0"],
  .index-top-company .list .item[data-i="1"],
  .index-top-company .list .item[data-i="2"],
  .index-top-company .list .item[data-i="3"],
  .index-top-company .list .item[data-i="4"],
  .index-top-company .list .item[data-i="5"] {
    display: block !important;
  }
  .service-iconbox .itemimg-box .it .pic img {
    height: 9vw;
  }
  .service-iconbox .itemimg-box .it {
    font-size: 3vw;
  }
}

/*大屏*/
@media only screen and (min-width: 2500px) {
  #nav-area .outer-container {
    padding: 26px 3%;
  }
  #nav-area .outer-container .left-area .logo {
    width: 240px;
  }
  #nav-area .outer-container .nav-item a {
    line-height: 52px;
    height: 52px;
  }
  .service-swiper {
    height: 250px;
  }
  .index-about .pointbox .item {
    padding-left: 168px !important;
  }

  .index-service .service-m .type-title {
    font-size: 32px;
  }
  .service-iconbox {
    max-width: 844px;
  }
  .index-service .service-m .btnbox {
    font-size: 22px;
  }
  .index-service .service-m .btnbox .item {
    padding: 20px 36px;
    border-radius: 38px;
    margin-right: 13px;
  }
  .service-iconbox .ib-type {
    font-size: 32px;
  }
  .service-iconbox .itemimg-box .it {
    font-size: 22px;
  }
  .service-swiper {
    max-width: 780px;
  }
  .index-case .case-swiper .swiper-slide {
    width: 877px;
  }
  .index-case .case-swiper .swiper-slide a {
    font-size: 32px;
  }
  .index-case .case-swiper .swiper-slide a .desc {
    font-size: 22px;
  }
  .index-case .case-swiper .morebtn {
    height: 77px;
    line-height: 77px;
    border-radius: 39px;
    font-size: 22px;
    width: 180px;
  }
  .footer .f-main .f-l .f-logo svg {
    height: 40px;
  }
  .footer .f-main .f-l .desc {
    font-size: 18px;
  }
  .footer .f-main .f-r .type-title {
    height: 66px;
    font-size: 24px;
    line-height: 26px;
  }
  .footer .f-main .hanggao {
    line-height: 40px;
  }
  .footer {
    font-size: 22px;
  }
  .footer .f-main .quick-links-area .links-item .pop a {
    padding: 13px;
  }
  .footer .f-main .quick-links-area .links-item .pop {
    max-width: 680px;
    width: 560px;
  }
  .bannernewsbb {
    max-width: 800px;
  }
}

@media only screen and (max-width: 1600px) {
  .service-iconbox {
    max-width: 560px;
  }
}
@media only screen and (max-width: 1440px) {
  .service-iconbox {
    max-width: 480px;
  }
}
