@charset "UTF-8";
@font-face {
  font-family: "HelveticaNowDisplay";
  src: url(../fonts/HelveticaNowDisplay-Regular.ttf) format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: "HelveticaNowDisplay";
  src: url(../fonts/HelveticaNowDisplay-Medium.ttf) format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "HelveticaNowDisplay";
  src: url(../fonts/HelveticaNowDisplay-Bold.ttf) format("truetype");
  font-weight: bold;
}
@keyframes splash {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

.clearfix:after {
  content: " ";
  display: table;
  height: 0;
  clear: both;
  visibility: hidden;
}

p {
  margin: 0;
  padding: 0;
}

a, a:hover, a:visited {
  color: #000;
  text-decoration: none;
}

.slide {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  background-color: #333;
}

body {
  color: #000;
  font-family: "HelveticaNowDisplay", "PingFang SC", "Hiragino Sans GB", "冬青黑体", "Microsoft YaHei", "微软雅黑", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  background-color: #e6e6e6;
  font-size: 18px;
  line-height: 1.4;
  background-image: url(../imgs/bg.png);
  background-size: 100%;
  background-repeat: repeat-y;
  background-attachment: fixed;
}

.hide {
  display: none !important;
}

img {
  vertical-align: middle;
}

.flash-move {
  opacity: 0;
  filter: alpha(opacity=0);
  transform: translateY(100px);
  transition: all 0.8s;
}

.flash-move.move-on {
  opacity: 1;
  filter: alpha(opacity=100);
  transform: translateY(0);
  transition: all 0.7s;
}

.shadow {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: none;
}
.shadow.open {
  display: block;
  -webkit-animation-name: shadowShow;
  animation-name: shadowShow;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.shadow.close {
  display: block;
  -webkit-animation-name: shadowHide;
  animation-name: shadowHide;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.display-pc {
  display: block;
}

.not-display-pc {
  display: none;
}

.wrapper {
  width: 100%;
}
.wrapper .topbar {
  position: fixed;
  height: 3.125vw;
  width: 100%;
  z-index: 10;
  left: 0;
  top: 0;
  transition: top 0.4s;
}
.wrapper .topbar .topbar-w {
  padding: 0 3.125vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  height: 100%;
}
.wrapper .topbar .topbar-w .item {
  font-size: 40px;
  line-height: 30px;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}
.wrapper .topbar .topbar-w .item .splash_line {
  position: absolute;
  bottom: 0;
  right: -20px;
  height: 5px;
  width: 14px;
  background-color: #000;
  display: inline-block;
  opacity: 0;
}
.wrapper .topbar .topbar-w .item:hover .splash_line {
  animation: splash 0.6s linear infinite;
}
.wrapper .topbar .topbar-w .item:hover .item-subs {
  height: 200px;
}
.wrapper .topbar .topbar-w .item.no-splash:hover .splash_line {
  opacity: 0;
  animation: none;
}
.wrapper .topbar .topbar-w .item .item-subs {
  position: absolute;
  top: 34px;
  left: 0;
  width: 392px;
  font-weight: normal;
  line-height: 1;
  height: 0;
  overflow: hidden;
  transition: height 0.2s;
}
.wrapper .topbar .topbar-w .item .item-subs .item-s {
  display: block;
  text-transform: uppercase;
  position: relative;
}
.wrapper .topbar .topbar-w .item .item-subs .item-s .splash_line2 {
  position: absolute;
  bottom: 5px;
  right: 48px;
  height: 3px;
  width: 14px;
  background-color: #000;
  display: inline-block;
  opacity: 0;
}
.wrapper .topbar .topbar-w .item .item-subs .item-s:nth-child(2) .splash_line2 {
  right: 28px;
}
.wrapper .topbar .topbar-w .item .item-subs .item-s:nth-child(3) .splash_line2 {
  right: 48px;
}
.wrapper .topbar .topbar-w .item .item-subs .item-s:nth-child(4) .splash_line2 {
  right: 22px;
}
.wrapper .topbar .topbar-w .item .item-subs .item-s:nth-child(5) .splash_line2 {
  right: 284px;
}
.wrapper .topbar .topbar-w .item .item-subs .item-s:hover .splash_line2 {
  opacity: 1;
  animation: splash 0.6s linear infinite;
}
.wrapper .topbar.inner {
  top: calc(-3.125vw * 3);
}
.wrapper .topbar-inner {
  position: fixed;
  height: calc(3.125vw + 10px);
  width: 100%;
  z-index: 10;
  left: 0;
  top: 0;
  padding: 0 3.125vw 10px;
  font-size: 40px;
  line-height: 30px;
  font-weight: bold;
  transition: background-color 0.4s;
}
.wrapper .topbar-inner .inner-w {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  height: 100%;
}
.wrapper .topbar-inner .inner-w .logo img {
  height: 30px;
}
.wrapper .topbar-inner .inner-w .rp {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
}
.wrapper .topbar-inner .inner-w .rp .splash_line {
  height: 4px;
  width: 13px;
  background-color: #000;
  display: inline-block;
  margin: 0 1px;
}
.wrapper .topbar-inner.bg-wht {
  background-color: #fff;
}
.wrapper .menus-resp {
  display: none;
}
.wrapper .footer-lp {
  position: fixed;
  left: 3.125vw;
  bottom: 3.125vw;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  z-index: 2;
}
.wrapper .footer-lp .qrcode-opener {
  margin-right: 20px;
  position: relative;
  cursor: pointer;
}
.wrapper .footer-lp .qrcode-opener .op-w {
  width: 22px;
  text-align: center;
}
.wrapper .footer-lp .qrcode-opener .opener, .wrapper .footer-lp .qrcode-opener .close {
  height: 16px;
  margin-top: -5px;
}
.wrapper .footer-lp .qrcode-opener .close {
  height: 13px;
  display: none;
}
.wrapper .footer-lp .qrcode-opener .qrcode-w {
  width: 150px;
  height: 150px;
  position: absolute;
  background-color: #fff;
  left: 0;
  bottom: 40px;
  display: none;
}
.wrapper .footer-lp .qrcode-opener .qrcode-w .qrcode-ww {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.wrapper .footer-lp .qrcode-opener .qrcode-w .qrcode-ww img {
  width: 65px;
}
.wrapper .footer-lp .cp {
  font-size: 10px;
  line-height: 1;
}
.wrapper .ctime {
  position: fixed;
  right: 3.125vw;
  bottom: calc(3.125vw - 8px);
  font-weight: bold;
  font-size: 40px;
  line-height: 1;
  margin-top: 20px;
  z-index: 2;
}
.wrapper .index-w {
  width: 100%;
  height: 600%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}
.wrapper .index-w .bbw {
  width: 100%;
  height: calc(100% - 3 * 3.125vw);
  position: relative;
  top: 3.125vw;
}
.wrapper .index-w .bbw .bb {
  position: absolute;
}
.wrapper .index-w .bbw .bb.bb-pl {
  display: none;
}
.wrapper .index-w .bbw.srl {
  top: 0;
  overflow-x: scroll;
  height: 100% !important;
  padding: calc(3.125vw * 2) 3.125vw 0;
}
.wrapper .index-w .masonry-w {
  width: 100%;
  height: 100% !important;
  position: relative;
  display: none;
  padding: calc(3.125vw * 2) 3.125vw 3.125vw;
  overflow-x: scroll;
}
.wrapper .index-w .masonry-w .bb {
  margin: 0 3.125vw 3.125vw 0;
  position: absolute;
  left: 0;
  top: 0;
}
.wrapper .index-w .masonry-w .bb.bb-pl {
  width: 100%;
  height: 300px;
}
.wrapper .bb {
  cursor: pointer;
}
.wrapper .bb.bb-static {
  display: inline-block;
  background-color: #ff0000;
  width: 350px;
  height: 150px;
  font-weight: bold;
  padding-left: 40px;
}
.wrapper .bb.bb-static .bb-w {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.wrapper .bb.bb-static.bb-team {
  background-color: red;
}
.wrapper .bb.bb-static.bb-team .bb-w p {
  font-size: 35px;
  line-height: 1;
}
.wrapper .bb.bb-static.bb-about {
  background-color: #00ff12;
}
.wrapper .bb.bb-static.bb-about .bb-w img {
  height: 68px;
}
.wrapper .bb.bb-square {
  display: inline-block;
  position: relative;
}
.wrapper .bb.bb-square .bb-w {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px;
  z-index: 1;
}
.wrapper .bb.bb-square .bb-w .tt {
  font-size: 35px;
  line-height: 1;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.9);
}
.wrapper .bb.bb-square .bb-w .info {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.wrapper .bb.bb-square .bb-w .info .lp .line {
  font-size: 12px;
  line-height: 18px;
}
.wrapper .bb.bb-square .bb-w .info .lp .line .kk {
  font-weight: 300;
  width: 64px;
  display: inline-block;
}
.wrapper .bb.bb-square .bb-w .info .cat {
  font-size: 12px;
  line-height: 18px;
  font-weight: 300;
}
.wrapper .bb.bb-square .bb-hover {
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s;
}
.wrapper .bb.bb-square .bb-hover .bb-hover-w {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
}
.wrapper .bb.bb-square .bb-hover .bb-hover-w .btn-close {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
.wrapper .bb.bb-square .bb-hover .bb-hover-w .btn-close img {
  width: 12px;
  filter: invert(100%);
}
.wrapper .bb.bb-square .bb-hover .bb-hover-w .tt {
  font-size: 35px;
  line-height: 40px;
}
.wrapper .bb.bb-square .bb-hover .bb-hover-w .info {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.wrapper .bb.bb-square .bb-hover .bb-hover-w .info .lp .line {
  font-size: 12px;
  line-height: 18px;
}
.wrapper .bb.bb-square .bb-hover .bb-hover-w .info .lp .line .kk {
  width: 64px;
  display: inline-block;
}
.wrapper .bb.bb-square .bb-hover .bb-hover-w .info .cat {
  font-size: 12px;
  line-height: 18px;
  font-weight: bold;
}
.wrapper .bb.bb-square:hover .bb-hover {
  opacity: 1;
}
.wrapper .bb.bb-square.sqr {
  width: 350px;
  height: 350px;
}
.wrapper .bb.bb-square.tri-l {
  width: 350px;
  height: 450px;
}
.wrapper .bb.bb-square.tri-h {
  width: 450px;
  height: 300px;
}
.wrapper .bb.no-active {
  opacity: 0.5;
}
.wrapper .work-w {
  padding-top: calc(3.125vw * 2);
  width: 100%;
}
.wrapper .work-w .work-info {
  width: 100%;
  padding: calc(3.125vw * 3) calc(3.125vw * 2);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}
.wrapper .work-w .work-info.wht {
  color: #fff;
}
.wrapper .work-w .work-info.wht .col .splash_line {
  background-color: #fff;
}
.wrapper .work-w .work-info .col {
  width: 50%;
  min-height: 400px;
}
.wrapper .work-w .work-info .col .splash_line {
  height: 4px;
  width: 13px;
  background-color: #000;
  position: absolute;
  left: calc(3.125vw * 2);
  bottom: calc(3.125vw * 3 + 4px);
}
.wrapper .work-w .work-info .col .splash_line.slim {
  height: 1px;
}
.wrapper .work-w .work-info .col.col-tt {
  padding-right: calc(3.125vw * 4);
}
.wrapper .work-w .work-info .col.col-tt .tp .tt {
  font-size: 30px;
  line-height: 40px;
  font-weight: bold;
}
.wrapper .work-w .work-info .col.col-tt .tp .cat {
  font-size: 12px;
  margin-top: 30px;
}
.wrapper .work-w .work-info .col.col-tt .logo {
  position: absolute;
  left: calc(3.125vw * 2);
  bottom: calc(3.125vw * 3 + 4px);
  height: 30px;
}
.wrapper .work-w .work-info .col.col-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.wrapper .work-w .work-info .col.col-info .stt {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 180px;
}
.wrapper .work-w .work-info .col.col-info .stt b {
  font-size: 18px;
  line-height: 35px;
}
.wrapper .work-w .work-info .col.col-info .bp .blp .line {
  font-size: 12px;
  line-height: 18px;
}
.wrapper .work-w .work-info .col.col-info .bp .blp .line .kk {
  width: 64px;
  display: inline-block;
}
.wrapper .work-w .work-info .col.col-info .bp .splash_line {
  left: auto;
  right: calc(3.125vw * 2);
}
.wrapper .work-w .slides-w {
  width: 100%;
  position: relative;
  background-color: #fff;
  overflow: hidden;
}
.wrapper .work-w .slides-w .works-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.wrapper .work-w .slides-w .works-slide .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.wrapper .work-w .slides-w .works-slide .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
}
.wrapper .work-w .slides-w .works-slide .swiper-wrapper .swiper-slide .cover-w {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: relative;
}
.wrapper .work-w .slides-w .works-slide .swiper-wrapper .swiper-slide .cover-w .slide {
  background-color: #fff;
  background-size: contain;
  background-repeat: no-repeat;
}
.wrapper .work-w .slides-w .works-slide .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
  margin: 0 6px;
}
.wrapper .work-w .slides-w .slide-nav {
  position: absolute;
  width: 50%;
  height: 100%;
  cursor: pointer;
  top: 0;
  z-index: 5;
}
.wrapper .work-w .slides-w .slide-nav.nav-prev {
  left: 0;
}
.wrapper .work-w .slides-w .slide-nav.nav-next {
  right: 0;
}
.wrapper .work-w .gallery-list {
  width: 100%;
  background-color: #fff;
}
.wrapper .work-w .gallery-list .gallery-list-w {
  display: flex;
  flex-direction: column;
}
.wrapper .work-w .gallery-list .gallery-list-w img {
  width: 100%;
  margin-bottom: 20px;
}
.wrapper .work-w .gallery-list .gallery-list-w img:last-child {
  margin-bottom: 0;
}
.wrapper .work-w .detail-info {
  padding: 3.125vw 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #fff;
}
.wrapper .work-w .detail-info .lp {
  width: 50%;
  padding: 0 calc(3.125vw * 2);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.wrapper .work-w .detail-info .lp .tt {
  font-size: 35px;
  line-height: 1;
  font-weight: 300;
}
.wrapper .work-w .detail-info .lp .splash_line {
  height: 1px;
  width: 13px;
  background-color: #000;
  margin-top: 4px;
}
.wrapper .work-w .detail-info .rp {
  width: 50%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.wrapper .work-w .detail-info .rp .col {
  width: 50%;
  padding-right: 20px;
}
.wrapper .work-w .detail-info .rp .col .line {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 12px;
  line-height: 18px;
}
.wrapper .work-w .detail-info .rp .col .line .kk {
  font-weight: bold;
  width: 80px;
}
.wrapper .work-w .detail-info .rp .col .line .vv {
  width: calc(100% - 80px);
}
.wrapper .work-w .detail-info .rp .col:last-child .line .kk {
  width: 140px;
}
.wrapper .work-w .detail-info .rp .col:last-child .line .vv {
  width: calc(100% - 140px);
}
.wrapper .recommend-works {
  width: 100%;
  background-color: #f5f5f5;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.wrapper .recommend-works .tt {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 40px;
}
.wrapper .recommend-works .works {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}
.wrapper .recommend-works .works .bb {
  margin: 0 25px;
}
.wrapper .contact {
  padding: 60px 3.125vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.wrapper .contact .info {
  font-size: 12px;
  line-height: 18px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.wrapper .contact .info .col {
  margin-right: 3.125vw;
}
.wrapper .contact .tt {
  font-size: 40px;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
}
.wrapper .contact .tt.ctime {
  position: absolute;
  width: 100%;
  display: block;
  text-align: right;
  right: 3.125vw;
  bottom: auto;
  margin-top: 0;
}
.wrapper .about-w {
  padding-top: calc(3.125vw * 2);
  width: 100%;
}
.wrapper .about-w .about-info {
  background-color: #ffe100;
  width: 100%;
  padding: calc(3.125vw * 2) calc(3.125vw * 2) calc(3.125vw * 4);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}
.wrapper .about-w .about-info .col {
  width: 40%;
}
.wrapper .about-w .about-info .col .splash_line {
  height: 4px;
  width: 13px;
  background-color: #000;
  position: absolute;
  left: calc(3.125vw * 2);
  bottom: calc(3.125vw * 4);
}
.wrapper .about-w .about-info .col.col-tt .tp .tt-en {
  font-size: 50px;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
}
.wrapper .about-w .about-info .col.col-tt .tp .tt-zh {
  font-size: 30px;
  line-height: 40px;
  margin-top: 20px;
  font-weight: bold;
}
.wrapper .about-w .about-info .col.col-info {
  width: 60%;
}
.wrapper .about-w .about-info .col.col-info .slogans {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 150px;
}
.wrapper .about-w .about-info .col.col-info .slogans .s-col .img-w {
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.wrapper .about-w .about-info .col.col-info .slogans .s-col .img-w img {
  zoom: 0.5;
}
.wrapper .about-w .about-info .col.col-info .slogans .s-col .tt {
  font-size: 30px;
  line-height: 40px;
  font-weight: bold;
}
.wrapper .about-w .about-info .col.col-info .slogans .s-col .stt {
  font-size: 18px;
  line-height: 40px;
  position: relative;
}
.wrapper .about-w .about-info .col.col-info .slogans .s-col .stt .splash_line {
  height: 1px;
  left: 44px;
  bottom: 12px;
}
.wrapper .about-w .about-info .col.col-info .infos {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.wrapper .about-w .about-info .col.col-info .infos .info-bb {
  width: calc(50% - 25px);
}
.wrapper .about-w .about-info .col.col-info .infos .info-bb.info-zh {
  font-size: 16px;
  line-height: 28px;
}
.wrapper .about-w .about-info .col.col-info .infos .info-bb.info-en {
  font-size: 14px;
  line-height: 23px;
}
.wrapper .about-w .partner-info {
  width: 100%;
  background-color: #f5f5f5;
  padding: calc(3.125vw * 2) calc(3.125vw * 2);
}
.wrapper .about-w .partner-info .partner-cover {
  width: 100%;
  height: 550px;
  position: relative;
  margin-top: calc(-3.125vw * 4);
  margin-bottom: calc(3.125vw * 2);
}
.wrapper .about-w .partner-info .partners {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.wrapper .about-w .partner-info .partners .logos {
  max-width: 800px;
  width: calc(100% - 320px);
}
.wrapper .about-w .partner-info .partners .rp {
  text-align: right;
}
.wrapper .about-w .partner-info .partners .rp .tt-en {
  font-size: 50px;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.wrapper .about-w .partner-info .partners .rp .tt-zh {
  font-size: 30px;
  line-height: 40px;
  font-weight: bold;
}
.wrapper .about-w .partner-info .partners .rp .splash_line {
  height: 4px;
  width: 13px;
  background-color: #000;
  position: absolute;
  right: 0;
  bottom: 0;
}
.wrapper .team-w {
  padding-top: calc(3.125vw * 2);
  width: 100%;
}
.wrapper .team-w .team-info {
  background-color: #00ff12;
  width: 100%;
  padding: 0 calc(3.125vw * 2) calc(3.125vw * 2);
}
.wrapper .team-w .team-info .main-cover {
  width: 100%;
  margin-bottom: calc(3.125vw * 2);
}
.wrapper .team-w .team-info .team-members {
  width: 100%;
  position: relative;
}
.wrapper .team-w .team-info .team-members .tt-en {
  font-size: 50px;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.wrapper .team-w .team-info .team-members .tt-zh {
  font-size: 30px;
  line-height: 40px;
  font-weight: bold;
}
.wrapper .team-w .team-info .team-members .splash_line {
  height: 4px;
  width: 13px;
  background-color: #000;
  position: absolute;
  right: 0;
  top: 4px;
}
.wrapper .team-w .team-info .team-members .members-w {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 56px;
}
.wrapper .team-w .team-info .team-members .members-w .member {
  width: calc(25% - 22.5px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
  margin-right: 30px;
}
.wrapper .team-w .team-info .team-members .members-w .member:nth-child(4n) {
  margin-right: 0;
}
.wrapper .team-w .team-info .team-members .members-w .member .avatar {
  width: 200px;
  height: 200px;
  position: relative;
  margin-bottom: 20px;
}
.wrapper .team-w .team-info .team-members .members-w .member .name-en {
  font-size: 21px;
  line-height: 30px;
  font-weight: bold;
  white-space: nowrap;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.wrapper .team-w .team-info .team-members .members-w .member .name-zh {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 10px;
}
.wrapper .team-w .team-info .team-members .members-w .member .name-zh .splash_line {
  height: 1px;
  width: 13px;
  background-color: #000;
  position: relative;
  display: inline-block;
  margin-left: 4px;
  margin-bottom: 2px;
}
.wrapper .team-w .team-info .team-members .members-w .member .intro {
  font-size: 14px;
  line-height: 23px;
  height: 115px;
  overflow: hidden;
}
.wrapper .team-w .join-w {
  width: 100%;
  background-color: #f5f5f5;
  padding: calc(3.125vw * 2) calc(3.125vw * 2);
}
.wrapper .team-w .join-w .join-cover {
  width: 100%;
  height: 550px;
  position: relative;
  margin-top: calc(-3.125vw * 4);
  margin-bottom: calc(3.125vw * 2);
}
.wrapper .team-w .join-w .join-tt {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}
.wrapper .team-w .join-w .join-tt .lp {
  width: calc(100% - 200px);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  flex-wrap: wrap;
}
.wrapper .team-w .join-w .join-tt .lp .tt-w {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 20px;
}
.wrapper .team-w .join-w .join-tt .lp .tt-w .tt {
  font-size: 30px;
  line-height: 40px;
  font-weight: bold;
}
.wrapper .team-w .join-w .join-tt .rp {
  text-align: right;
}
.wrapper .team-w .join-w .join-tt .rp .tt-en {
  font-size: 50px;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.wrapper .team-w .join-w .join-tt .rp .tt-zh {
  font-size: 30px;
  line-height: 40px;
  font-weight: bold;
}
.wrapper .team-w .join-w .jobs {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.wrapper .team-w .join-w .jobs .job-w {
  width: calc(50% - 50px);
  margin-right: 100px;
  margin-bottom: 50px;
  cursor: pointer;
}
.wrapper .team-w .join-w .jobs .job-w .tt {
  width: 100%;
  font-size: 18px;
  line-height: 40px;
  margin-bottom: 30px;
  font-weight: bold;
}
.wrapper .team-w .join-w .jobs .job-w .tt .splash_line {
  height: 1px;
  width: 13px;
  background-color: #000;
  position: relative;
  display: inline-block;
  margin-left: 4px;
  margin-bottom: -1px;
}
.wrapper .team-w .join-w .jobs .job-w .job-cont {
  background-color: #fff;
  padding: 50px 30px;
  font-size: 14px;
  line-height: 23px;
  transition: background-color 0.4s;
}
.wrapper .team-w .join-w .jobs .job-w:nth-child(2n) {
  margin-right: 0;
}
.wrapper .team-w .join-w .jobs .job-w:hover .job-cont {
  background-color: #00ff12;
}

@media screen and (max-width: 1200px) {
  .wrapper .team-w .join-w .jobs .job-w {
    width: calc(50% - 25px);
    margin-right: 50px;
  }
  .wrapper .work-w .detail-info .lp {
    width: 35%;
  }
  .wrapper .work-w .detail-info .rp {
    width: 65%;
  }
  .wrapper .recommend-works .works .bb {
    margin: 0 10px;
  }
}
@media screen and (max-width: 960px) {
  body {
    background-image: url(../imgs/bg-resp.png);
  }

  .display-pc {
    display: none;
  }

  .display-600 {
    display: block;
  }

  .not-display-600 {
    display: none;
  }

  .wrapper .topbar {
    display: none !important;
  }
  .wrapper .topbar-inner {
    display: none !important;
  }
  .wrapper .topbar-resp {
    position: fixed;
    height: calc(5vw * 3);
    width: 100%;
    z-index: 10;
    left: 0;
    top: 0;
    padding: 0 5vw 5vw;
    font-size: 6vw;
    line-height: 0.666;
    font-weight: bold;
    transition: background-color 0.4s;
  }
  .wrapper .topbar-resp .inner-w {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
  }
  .wrapper .topbar-resp .inner-w .logo img {
    height: 7vw;
  }
  .wrapper .topbar-resp .inner-w .menu-opner {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    width: calc(5vw * 2);
    height: calc(5vw * 2);
  }
  .wrapper .topbar-resp .inner-w .menu-opner img {
    width: 40%;
  }
  .wrapper .topbar-resp.bg-wht {
    background-color: #fff;
  }
  .wrapper .menus-resp {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 11;
    padding: 0 5vw 5vw;
    display: none;
  }
  .wrapper .menus-resp .inner-w {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    height: calc(5vw * 2);
    font-size: 6vw;
    line-height: 0.666;
    font-weight: bold;
  }
  .wrapper .menus-resp .inner-w .menu-close {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    width: calc(5vw * 2);
    height: calc(5vw * 2);
    padding-bottom: 2vw;
  }
  .wrapper .menus-resp .inner-w .menu-close img {
    width: 40%;
  }
  .wrapper .menus-resp .menus {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: calc(5vw * 1.5);
  }
  .wrapper .menus-resp .menus .menu-item {
    font-size: 6vw;
    line-height: 1;
    font-weight: bold;
  }
  .wrapper .menus-resp .menus .sub-menus {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 2vw 0 4vw;
  }
  .wrapper .menus-resp .menus .sub-menus .item-s {
    font-size: 4vw;
    line-height: 1.5;
    text-transform: uppercase;
  }
  .wrapper .index-w .bbw {
    top: calc(5vw * 2);
  }
  .wrapper .index-w .masonry-w {
    padding: calc(5vw * 3) 5vw calc(5vw * 3);
  }
  .wrapper .index-w .masonry-w .bb {
    margin: 0 5vw 5vw 0;
    position: absolute;
    left: 0;
    top: 0;
    width: calc(5vw * 18) !important;
    height: calc(5vw * 10) !important;
  }
  .wrapper .index-w .masonry-w .bb.bb-pl {
    height: calc(5vw * 3) !important;
  }
  .wrapper .bb.bb-static {
    width: calc(5vw * 9);
    height: calc(5vw * 4);
    padding-left: calc(5vw * 1.5);
  }
  .wrapper .bb.bb-static.bb-team .bb-w p {
    font-size: 5vw;
  }
  .wrapper .bb.bb-static.bb-about .bb-w img {
    height: calc(5vw * 2);
  }
  .wrapper .bb.bb-square .bb-w {
    padding: 5vw;
  }
  .wrapper .bb.bb-square .bb-w .tt {
    font-size: 5vw;
  }
  .wrapper .bb.bb-square .bb-w .info .lp .line {
    font-size: 2.3vw;
    line-height: 1.4;
  }
  .wrapper .bb.bb-square .bb-w .info .lp .line .kk {
    width: 12vw;
  }
  .wrapper .bb.bb-square .bb-w .info .cat {
    font-size: 2.3vw;
    line-height: 1.4;
  }
  .wrapper .bb.bb-square .bb-hover .bb-hover-w {
    padding: 5vw;
  }
  .wrapper .bb.bb-square .bb-hover .bb-hover-w .tt {
    font-size: 5vw;
    line-height: 1.4;
  }
  .wrapper .bb.bb-square .bb-hover .bb-hover-w .info .lp .line {
    font-size: 2.3vw;
    line-height: 1.4;
  }
  .wrapper .bb.bb-square .bb-hover .bb-hover-w .info .lp .line .kk {
    width: 12vw;
  }
  .wrapper .bb.bb-square .bb-hover .bb-hover-w .info .cat {
    font-size: 2.3vw;
    line-height: 1.4;
  }
  .wrapper .bb.bb-square:hover .bb-hover {
    opacity: 0;
  }
  .wrapper .bb.bb-square.active .bb-hover {
    opacity: 1;
  }
  .wrapper .bb.bb-square.sqr {
    width: calc(5vw * 11);
    height: calc(5vw * 11);
  }
  .wrapper .bb.bb-square.tri-l {
    width: calc(5vw * 11);
    height: calc(5vw * 13);
  }
  .wrapper .bb.bb-square.tri-h {
    width: calc(5vw * 14);
    height: calc(5vw * 10);
  }
  .wrapper .footer-lp {
    left: 5vw;
    bottom: 5vw;
  }
  .wrapper .footer-lp .qrcode-opener {
    display: none;
  }
  .wrapper .footer-lp .cp {
    font-size: 2.1vw;
  }
  .wrapper .ctime {
    right: 5vw;
    bottom: calc(5vw - 2px);
    font-size: 5vw;
    margin-top: 0;
  }
  .wrapper .about-w {
    padding-top: calc(5vw * 3);
  }
  .wrapper .about-w .about-info {
    padding: calc(5vw * 2) calc(5vw * 2) calc(5vw * 4);
    flex-direction: column;
  }
  .wrapper .about-w .about-info .col {
    width: 100%;
  }
  .wrapper .about-w .about-info .col .splash_line {
    height: 3px;
    width: 11px;
    left: auto;
    bottom: auto;
    right: calc(5vw * 2);
    top: calc(5vw * 2 + 3px);
  }
  .wrapper .about-w .about-info .col.col-tt {
    margin-bottom: calc(5vw * 2);
  }
  .wrapper .about-w .about-info .col.col-tt .tp .tt-en {
    font-size: 8vw;
  }
  .wrapper .about-w .about-info .col.col-tt .tp .tt-zh {
    font-size: 3.3vw;
    line-height: 1.4;
    margin-top: 5vw;
  }
  .wrapper .about-w .about-info .col.col-info {
    width: 100%;
  }
  .wrapper .about-w .about-info .col.col-info .slogans {
    margin-bottom: calc(5vw * 2);
  }
  .wrapper .about-w .about-info .col.col-info .slogans .s-col .img-w {
    height: calc(5vw * 1.4);
  }
  .wrapper .about-w .about-info .col.col-info .slogans .s-col .img-w img {
    zoom: 0.35;
  }
  .wrapper .about-w .about-info .col.col-info .slogans .s-col .tt {
    font-size: 4vw;
    line-height: 1.4;
    margin-bottom: 0.6vw;
  }
  .wrapper .about-w .about-info .col.col-info .slogans .s-col .stt {
    font-size: 3vw;
    line-height: 1.4;
  }
  .wrapper .about-w .about-info .col.col-info .slogans .s-col .stt .splash_line {
    left: 7vw;
    bottom: 4px;
    right: auto;
    top: auto;
  }
  .wrapper .about-w .about-info .col.col-info .infos {
    flex-direction: column;
    justify-content: flex-start;
  }
  .wrapper .about-w .about-info .col.col-info .infos .info-bb {
    width: 100%;
  }
  .wrapper .about-w .about-info .col.col-info .infos .info-bb.info-zh {
    font-size: 2.6vw;
    line-height: 1.6;
    margin-bottom: 3vw;
  }
  .wrapper .about-w .about-info .col.col-info .infos .info-bb.info-en {
    font-size: 2.6vw;
    line-height: 1.6;
  }
  .wrapper .about-w .partner-info {
    padding: calc(5vw * 2) calc(5vw * 2);
  }
  .wrapper .about-w .partner-info .partner-cover {
    height: 0;
    padding-top: 100%;
    margin-top: calc(-5vw * 4);
    margin-bottom: calc(5vw * 2);
  }
  .wrapper .about-w .partner-info .partners {
    flex-direction: column-reverse;
    justify-content: flex-start;
  }
  .wrapper .about-w .partner-info .partners .logos {
    max-width: 100%;
    width: 100%;
    margin-top: calc(5vw * 2);
  }
  .wrapper .about-w .partner-info .partners .rp {
    width: 100%;
    text-align: right;
  }
  .wrapper .about-w .partner-info .partners .rp .tt-en {
    font-size: 7.2vw;
    margin-bottom: 2vw;
  }
  .wrapper .about-w .partner-info .partners .rp .tt-zh {
    font-size: 3.3vw;
    line-height: 1.4;
  }
  .wrapper .about-w .partner-info .partners .rp .splash_line {
    height: 1px;
    width: 11px;
    right: auto;
    bottom: auto;
    left: 0;
    top: 1vw;
  }
  .wrapper .contact {
    padding: calc(5vw * 2) 5vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .wrapper .contact .info {
    width: 100%;
    font-size: 2.2vw;
    line-height: 1.6;
    flex-wrap: wrap;
    margin-bottom: 5vw;
  }
  .wrapper .contact .info .col {
    margin-right: 5vw;
  }
  .wrapper .contact .tt {
    font-size: 5vw;
  }
  .wrapper .contact .tt.ctime {
    position: relative;
    width: 100%;
    display: block;
    text-align: right;
    right: 0;
    bottom: auto;
  }
  .wrapper .team-w {
    padding-top: calc(5vw * 3);
  }
  .wrapper .team-w .team-info {
    padding: 0 calc(5vw * 2) calc(5vw * 2);
  }
  .wrapper .team-w .team-info .main-cover {
    height: 0;
    padding-top: 100%;
    margin-bottom: calc(5vw * 2);
    position: relative;
  }
  .wrapper .team-w .team-info .team-members .tt-en {
    font-size: 7.2vw;
    margin-bottom: 2vw;
  }
  .wrapper .team-w .team-info .team-members .tt-zh {
    font-size: 3.3vw;
    line-height: 1.4;
  }
  .wrapper .team-w .team-info .team-members .splash_line {
    height: 3px;
    width: 11px;
    right: 0;
    bottom: auto;
    left: auto;
    top: 1vw;
  }
  .wrapper .team-w .team-info .team-members .members-w {
    margin-top: 5vw;
  }
  .wrapper .team-w .team-info .team-members .members-w .member {
    width: calc(50% - 5vw);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 5vw;
    margin-right: calc(5vw * 2);
  }
  .wrapper .team-w .team-info .team-members .members-w .member:nth-child(2n) {
    margin-right: 0;
  }
  .wrapper .team-w .team-info .team-members .members-w .member .avatar {
    width: 100%;
    height: 0;
    padding-top: 100%;
    position: relative;
    margin-bottom: 5vw;
  }
  .wrapper .team-w .team-info .team-members .members-w .member .name-en {
    font-size: 4vw;
    line-height: 1;
    margin-bottom: calc(5vw * 0.6);
  }
  .wrapper .team-w .team-info .team-members .members-w .member .name-zh {
    font-size: 3vw;
    line-height: 1;
    margin-bottom: calc(5vw * 0.6);
  }
  .wrapper .team-w .team-info .team-members .members-w .member .name-zh .splash_line {
    height: 1px;
    width: 11px;
    margin-left: 6px;
    margin-bottom: 4px;
  }
  .wrapper .team-w .team-info .team-members .members-w .member .intro {
    font-size: 2.6vw;
    line-height: 1.5;
    height: 20vw;
  }
  .wrapper .team-w .join-w {
    padding: calc(5vw * 2) calc(5vw * 2);
  }
  .wrapper .team-w .join-w .join-cover {
    height: 0;
    padding-top: 100%;
    margin-top: calc(-5vw * 4);
    margin-bottom: calc(5vw * 2);
  }
  .wrapper .team-w .join-w .join-tt {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: calc(5vw * 2);
    position: relative;
  }
  .wrapper .team-w .join-w .join-tt .lp {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    flex-wrap: wrap;
  }
  .wrapper .team-w .join-w .join-tt .lp .tt-w {
    margin-right: 0;
    width: 100%;
    margin-bottom: calc(5vw * 0.6);
  }
  .wrapper .team-w .join-w .join-tt .lp .tt-w .tt {
    font-size: 3.6vw;
    line-height: 1.6;
  }
  .wrapper .team-w .join-w .join-tt .rp {
    width: 100%;
    text-align: right;
    margin-bottom: calc(5vw * 2);
  }
  .wrapper .team-w .join-w .join-tt .rp .tt-en {
    font-size: 7.2vw;
    margin-bottom: 2vw;
  }
  .wrapper .team-w .join-w .join-tt .rp .tt-zh {
    font-size: 3.3vw;
    line-height: 1.4;
  }
  .wrapper .team-w .join-w .jobs .job-w {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5vw;
  }
  .wrapper .team-w .join-w .jobs .job-w .tt {
    font-size: 3.6vw;
    line-height: 1.6;
    margin-bottom: 5vw;
  }
  .wrapper .team-w .join-w .jobs .job-w .tt .splash_line {
    width: 11px;
  }
  .wrapper .team-w .join-w .jobs .job-w .job-cont {
    padding: calc(5vw * 1.5) 5vw;
    font-size: 2.7vw;
    line-height: 1.8;
  }
  .wrapper .team-w .join-w .jobs .job-w:hover .job-cont {
    background-color: #00ff12;
  }
  .wrapper .team-w .join-w .jobs .job-w:last-child {
    margin-bottom: 0;
  }
  .wrapper .work-w {
    padding-top: calc(5vw * 3);
  }
  .wrapper .work-w .work-info {
    padding: calc(5vw * 2) calc(5vw * 2);
    flex-direction: column;
  }
  .wrapper .work-w .work-info .col {
    width: 100%;
    min-height: auto;
  }
  .wrapper .work-w .work-info .col .splash_line {
    height: 3px;
    width: 11px;
    right: calc(5vw * 2);
    top: calc(5vw * 2 + 8px);
    left: auto;
    bottom: auto;
  }
  .wrapper .work-w .work-info .col.col-tt {
    padding-right: calc(5vw * 2);
    margin-bottom: calc(5vw);
  }
  .wrapper .work-w .work-info .col.col-tt .tp .tt {
    font-size: 4.6vw;
    line-height: 1.4;
  }
  .wrapper .work-w .work-info .col.col-tt .tp .cat {
    font-size: 2.6vw;
    margin-top: 3vw;
  }
  .wrapper .work-w .work-info .col.col-tt .logo {
    left: auto;
    right: calc(5vw * 2);
    height: 24px;
  }
  .wrapper .work-w .work-info .col.col-info {
    justify-content: flex-start;
  }
  .wrapper .work-w .work-info .col.col-info .stt {
    font-size: 2.6vw;
    line-height: 1.8;
    margin-bottom: calc(5vw);
  }
  .wrapper .work-w .work-info .col.col-info .stt b {
    font-size: 3vw;
    line-height: 2.6;
  }
  .wrapper .work-w .work-info .col.col-info .bp .blp .line {
    font-size: 2.4vw;
    line-height: 1.8;
  }
  .wrapper .work-w .work-info .col.col-info .bp .blp .line .kk {
    width: 13vw;
    font-weight: bold;
  }
  .wrapper .work-w .work-info .col.col-info .bp .splash_line {
    left: auto;
    right: calc(5vw * 2);
    top: calc(5vw * 2 + 8px);
  }
  .wrapper .work-w .slides-w {
    padding-top: 20px;
  }
  .wrapper .work-w .slides-w .works-slide .swiper-wrapper .swiper-slide {
    height: auto;
  }
  .wrapper .work-w .slides-w .works-slide .swiper-wrapper .swiper-slide img {
    width: 100%;
  }
  .wrapper .work-w .slides-w .works-slide .swiper-pagination .swiper-pagination-bullet {
    margin: 0 3px;
    opacity: 1;
    background-color: #F2f2f2;
    width: 5px;
    height: 5px;
  }
  .wrapper .work-w .slides-w .works-slide .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #ccc;
  }
  .wrapper .work-w .slides-w .slide-nav {
    display: none;
  }
  .wrapper .work-w .detail-info {
    padding: calc(5vw * 2);
    justify-content: flex-start;
    position: relative;
  }
  .wrapper .work-w .detail-info .lp {
    width: 30vw;
    padding: 0;
    justify-content: flex-start;
  }
  .wrapper .work-w .detail-info .lp .tt {
    font-size: 5vw;
  }
  .wrapper .work-w .detail-info .lp .splash_line {
    width: 11px;
    margin-top: 0;
    position: absolute;
    left: calc(5vw * 2);
    bottom: calc(5vw * 2);
  }
  .wrapper .work-w .detail-info .rp {
    width: 70vw;
    flex-direction: column;
  }
  .wrapper .work-w .detail-info .rp .col {
    width: 100%;
    padding-right: 0;
    margin-bottom: calc(5vw * 2);
  }
  .wrapper .work-w .detail-info .rp .col .line {
    font-size: 2.2vw;
    line-height: 1.8;
  }
  .wrapper .work-w .detail-info .rp .col .line .kk {
    width: 24vw;
  }
  .wrapper .work-w .detail-info .rp .col .line .vv {
    width: calc(100% - 24vw);
  }
  .wrapper .work-w .detail-info .rp .col:last-child {
    margin-bottom: 0;
  }
  .wrapper .work-w .detail-info .rp .col:last-child .line .kk {
    width: 24vw;
  }
  .wrapper .work-w .detail-info .rp .col:last-child .line .vv {
    width: calc(100% - 24vw);
  }
  .wrapper .recommend-works {
    padding: calc(5vw * 1.5) 0;
  }
  .wrapper .recommend-works .tt {
    font-size: 3.6vw;
    margin-bottom: calc(5vw * 1.5);
  }
  .wrapper .recommend-works .works {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 calc(5vw * 2);
  }
  .wrapper .recommend-works .works .bb {
    width: 100%;
    margin: 0 0 5vw;
  }
}

/*# sourceMappingURL=13thlab.css.map */
