@font-face {
  font-family: Din;
  src: url(../font/din-bold.eot);
  src: url(../font/din-bold.woff) format("woff"), url(../font/din-bold.ttf) format("truetype"), url(../font/din-bold.svg) format("svg");
  font-weight: bold;
  font-style: normal;
}

.enterprise-box {
  width: 1px;
  min-width: 100%;
}

.enterprise-box .admin-entry {
  position: absolute;
  right: 10px;
  top: 50%;
  font-size: 14px;
  padding: 8px 12px;
  background-color: rgba(36, 36, 36, .7);
  border-radius: 4px;
  transform: translateY(-50%);
}

@supports ((-webkit-backdrop-filter: initial) or (backdrop-filter: initial)) {
  .enterprise-box .admin-entry {
    background-color: rgba(36, 36, 36, .7);
    backdrop-filter: saturate(180%) blur(20px);
  }
}

.enterprise-box .admin-entry:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
  border-radius: 4px;
}

.enterprise-box .admin-entry .context {
  font-size: 12px;
  font-weight: bold;
  margin-left: 5px;
}

.nav-tab-container nav ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-around;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.nav-tab-container nav ul li {
  font-size: 18px;
  padding: 10px 12px;
  opacity: .5;
  cursor: pointer;
}

.nav-tab-container nav ul li:first-child {
  padding-left: 0;
}

.nav-tab-container nav ul li:last-child {
  padding-right: 0;
}

.nav-tab-container nav ul li.current {
  font-weight: 500;
  opacity: 1;
}

.nav-header-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  color: currentColor;
  border-bottom: 1px solid transparent;
  -webkit-transition: .2s;
  transition: .2s;
  z-index: 999;
}
@media only screen and (min-width: 768px) {
    .nav-header-container {
        top: 64px; /* 64 是 header 高度 */
    }
}

.nav-header-container.active {
  background-color: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@supports ((-webkit-backdrop-filter: initial) or (backdrop-filter: initial)) {
  .nav-header-container.active {
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
  }
}

.nav-header-container .header-box {
  position: relative;
  height: 46px;
}

.nav-header-container .header-box .back {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  position: absolute;
  top: 50%;
  left: 15px;
  height: 100%;
  padding-right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}

.nav-header-container .header-box .back .icon {
  position: relative;
  width: 18px;
  height: 18px;
}

.nav-header-container .header-box .back .icon:before, .nav-header-container .header-box .back .icon:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 11px;
  height: 2px;
  background-color: currentColor;
  -webkit-transform: rotate(45deg) translate(1px, 5px);
          transform: rotate(45deg) translate(1px, 5px);
}

.nav-header-container .header-box .back .icon:after {
  -webkit-transform: rotate(-45deg) translate(0, -4px);
          transform: rotate(-45deg) translate(0, -4px);
}

.nav-header-container .header-box .back label {
  font-size: 12px;
  font-weight: 500;
}

.nav-header-container .header-box .title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 180px);
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.nav-header-container .header-box .button {
  display: -webkit-box;
  display: flex;
  position: absolute;
  -webkit-box-align: center;
          align-items: center;
  top: 50%;
  right: 0;
  height: 100%;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}

.nav-header-container .nav-tab-container {
  padding: 0 20px;
}

.nav-header-container .nav-tab-container nav ul li {
  padding-top: 5px;
  padding-bottom: 15px;
}

.marquee-image-container {
  position: fixed;
  /* iOS 在 iframe 里 fixed 失效 */
  /* position: absolute; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #000;
}

.marquee-image-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), color-stop(53%, rgba(0, 0, 0, 0.8)), to(#000));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 53%, #000 100%);
  z-index: 1;
}
@media only screen and (min-width: 768px) {
    .marquee-image-container {
        top: 64px;
    }
}

.marquee-image-container:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 1;
  -webkit-transition: .4s;
  transition: .4s;
}

.marquee-image-container.active:after {
  background-color: rgba(0, 0, 0, 0.8);
}

.marquee-image-container .marquee-list {
  /* marquee-image-container 从 fixed 改为 absolute 之后，加上下面两行 */
  /* position: relative;
  overflow: hidden; */
  list-style-type: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.marquee-image-container .marquee-list .marquee-item {
  position: absolute;
}

.marquee-image-container .marquee-list .marquee-item picture {
  display: block;
  position: relative;
  width: 145px;
  height: 145px;
  background-color: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.marquee-image-container .marquee-list .marquee-item picture img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

main {
  position: relative;
  margin-top: 50vh;
  z-index: 1;
}
.no-wall {
  margin-top:80px!important;
}

main .intro-container .brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
}

main .intro-container .brand picture {
  display: block;
  position: relative;
  width: 64px;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

main .intro-container .brand picture:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-box-shadow: inset 0 0 0 1px currentColor;
          box-shadow: inset 0 0 0 1px currentColor;
  border-radius: 4px;
  opacity: .1;
  pointer-events: none;
}

main .intro-container .brand picture img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

main .intro-container .brand .info {
  width: calc(100% - 80px);
  margin: 0 0 0 16px;
}

main .intro-container .brand .info .name {
  font-size: 14px;
  /* padding: 5px; */
}

main .intro-container .brand .info .slogan {
  font-size: 12px;
  /* padding: 5px; */
  opacity: .5;
}

main .intro-container .analytics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  list-style-type: none;
  margin: 0 0 20px 0;
  padding: 0 0 20px 0;
}

main .intro-container .analytics:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  opacity: .15;
}

main .intro-container .analytics li {
  position: relative;
  text-align: center;
  width: calc(100% / 3);
}

main .intro-container .analytics li label {
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
  opacity: .5;
}

main .intro-container .analytics li .count:not(.loaded) {
  display: block;
  position: relative;
  width: 24px;
  height: 24px;
  margin: 0 auto;
}

main .intro-container .analytics li .count:not(.loaded) h3 {
  display: none;
}

main .intro-container .analytics li .count:not(.loaded) .buffering {
  position: absolute;
  width: 13px;
  height: 3px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

main .intro-container .analytics li .count:not(.loaded) .buffering .dot {
  position: absolute;
  width: 3px;
  height: 3px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 100%;
  background-color: currentColor;
  -webkit-animation-name: blink;
          animation-name: blink;
  -webkit-animation-duration: .6s;
          animation-duration: .6s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

main .intro-container .analytics li .count:not(.loaded) .buffering .dot:nth-child(1) {
  left: -2px;
  right: auto;
}

main .intro-container .analytics li .count:not(.loaded) .buffering .dot:nth-child(2) {
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}

main .intro-container .analytics li .count:not(.loaded) .buffering .dot:nth-child(3) {
  left: auto;
  right: -2px;
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}

main .intro-container .analytics li .count.loaded {
  width: auto;
  height: auto;
}

main .intro-container .analytics li .count.loaded h3 {
  display: block;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

main .intro-container .analytics li .count.loaded .buffering {
  display: none;
}

main .intro-container .analytics li h3 {
  margin: 0;
  font-size: 0;
  font-family: Din, -apple-system, 'Helvetica Neue', Helvetica, 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

main .intro-container .analytics li h3 .num {
  display: inline-block;
  font-size: 24px;
}

main .intro-container .analytics li h3 .unit {
  display: inline-block;
  font-size: 12px;
}

main .living-event-container {
  position: relative;
  margin-bottom: 30px;
}

main .living-event-container .swiper-wrapper {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

main .living-event-container .swiper-wrapper .swiper-slide .living-link {
  display: block;
  text-decoration: none;
  color: #fff;
  margin-bottom: 20px;
  padding: 18px;
  background-color: rgba(255, 255, 255, 0.1);
}

@supports ((-webkit-backdrop-filter: initial) or (backdrop-filter: initial)) {
  main .living-event-container .swiper-wrapper .swiper-slide .living-link {
    background-color: rgba(36, 36, 36, 0.7);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
  }
}

main .living-event-container .swiper-wrapper .swiper-slide .living-link .title {
  display: block;
  font-size: 12px;
  margin-bottom: 20px;
  opacity: .5;
}

main .living-event-container .swiper-wrapper .swiper-slide .living-link .gallery {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
}

main .living-event-container .swiper-wrapper .swiper-slide .living-link .gallery:before, main .living-event-container .swiper-wrapper .swiper-slide .living-link .gallery:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 9px;
  height: 2px;
  background-color: currentColor;
  -webkit-transform: rotate(45deg) translate(1px, -5px);
          transform: rotate(45deg) translate(1px, -5px);
}

main .living-event-container .swiper-wrapper .swiper-slide .living-link .gallery:after {
  -webkit-transform: rotate(-45deg) translate(1px, 5px);
          transform: rotate(-45deg) translate(1px, 5px);
}

main .living-event-container .swiper-wrapper .swiper-slide .living-link .gallery .name {
  margin: 0;
  font-weight: 500;
  width: calc(100% - 70px);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

main .living-event-container .swiper-wrapper .swiper-slide .living-link .gallery picture {
  display: block;
  position: relative;
  width: 40px;
  height: 32px;
  margin-right: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

main .living-event-container .swiper-wrapper .swiper-slide .living-link .gallery picture:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  box-shadow: inset 0 0 0 1px currentColor;
  border-radius: 4px;
  opacity: .1;
  pointer-events: none;
}

main .living-event-container .swiper-wrapper .swiper-slide .living-link .gallery picture img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

main .living-event-container .swiper-pagination {
  bottom: -5px;
}

main .living-event-container .swiper-pagination .swiper-pagination-bullet {
  background: currentColor;
}

main .case-container {
  margin: 30px 0;
}

main .case-container .headline {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 20px 0;
}

main .case-container .case-timeline {
  position: relative;
}

main .case-container .case-timeline:before {
  content: "";
  position: absolute;
  left: 24px;
  top: -3px;
  width: 3px;
  height: 3px;
  background-color: #fff;
  border-radius: 100%;
  opacity: .3;
}

main .case-container .case-timeline .timeline-list {
  position: relative;
  list-style-type: none;
  margin: 0;
  padding: 30px 0 20px 50px;
}

main .case-container .case-timeline .timeline-list:before {
  content: "";
  position: absolute;
  left: 25px;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #fff;
  opacity: .3;
}

main .case-container .case-timeline .timeline-list .timeline-item {
  position: relative;
  margin: 0 0 110px 0;
}

@media screen and (max-width: 720px) {
  main .case-container .case-timeline .timeline-list .timeline-item {
    margin: 0 0 50px 0;
  }
}

main .case-container .case-timeline .timeline-list .timeline-item:last-child {
  margin: 0;
}

main .case-container .case-timeline .timeline-list .timeline-item:last-child .sub-timeline-list .sub-timeline-item:last-child {
  margin: 0;
}

main .case-container .case-timeline .timeline-list .timeline-item:before {
  content: "";
  position: absolute;
  left: -36px;
  top: 5px;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 100%;
}

main .case-container .case-timeline .timeline-list .timeline-item:after {
  content: "";
  position: absolute;
  left: -26px;
  top: 12px;
  width: 6px;
  height: 6px;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: scale(.8);
}

main .case-container .case-timeline .timeline-list .timeline-item .month {
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 30px 0;
}

main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list {
  position: relative;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list:before {
  content: "";
  position: absolute;
  left: -28px;
  top: 6px;
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 100%;
}

main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list:after {
  content: "";
  position: absolute;
  left: -31px;
  top: 3px;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 100%;
  opacity: .1;
}

main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item {
  margin: 0 0 80px 0;
}

@media screen and (max-width: 720px) {
  main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item {
    margin: 0 0 30px 0;
  }
}

main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item .date {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 20px 0;
}

@media screen and (max-width: 720px) {
  main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item .date {
    margin: 0 0 10px 0;
  }
}

main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item .case-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
}

@media screen and (max-width: 720px) {
  main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item .case-content {
    display: block;
  }
}

main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item .case-content .case-link {
  display: block;
  position: relative;
  width: 100%;
  max-width: 375px;
}

/* 集合页相册厚度 开始 */
main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item.multi .case-content .case-link:before,
main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item.multi .case-content .case-link:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 7px;
  margin: auto;
  background-color: rgba(255, 255, 255, .2);
  border-top: 1px solid rgba(255, 255, 255, .2);
  border-right: 1px solid rgba(255, 255, 255, .2);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item.multi .case-content .case-link:before {
  right: -8px;
  height: calc(100% - 20px);
}

main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item.multi .case-content .case-link:after {
  right: -16px;
  height: calc(100% - 40px);
}
/* 集合页相册厚度 结束 */

@media screen and (max-width: 720px) {
  main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item .case-content .case-link {
    max-width: calc(100% - 50px);
    margin-bottom: 10px;
  }
  main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item.vertical .case-content .case-link {
    max-width: calc(100% - 120px);
  }
}

main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item .case-content .case-link picture {
  display: block;
  position: relative;
  padding-bottom: 51.07%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  -webkit-mask-image: radial-gradient(white, black);
          mask-image: radial-gradient(white, black);
  overflow: hidden;
}

main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item.vertical .case-content .case-link picture {
  padding-bottom: 143.83%;
}

main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item .case-content .case-link picture:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
  border-radius: 4px;
  pointer-events: none;
}

main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item .case-content .case-link picture.loaded:after {
  display: none;
}

main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item .case-content .case-link picture.loaded:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
          box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  z-index: 1;
}

/* main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item .case-content .case-link picture:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border: solid 3px rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 100%;
  -webkit-animation: loading 0.8s infinite cubic-bezier(0.45, 0.05, 0.55, 0.95);
          animation: loading 0.8s infinite cubic-bezier(0.45, 0.05, 0.55, 0.95);
} */

main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item .case-content .case-link picture img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item .case-content .info {
  padding-left: 36px;
}

@media screen and (max-width: 720px) {
  main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item .case-content .info {
    max-width: calc(100% - 50px);
    padding-left: 0;
  }

  main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item.vertical .case-content .info {
    max-width: calc(100% - 120px);
  }
}

main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item .case-content .info .intro {
  margin: 0 0 35px 0;
}

@media screen and (max-width: 720px) {
  main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item .case-content .info .intro {
    margin: 0 0 30px 0;
  }
}

main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item .case-content .info .intro .title {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 10px 0;
}

@media screen and (max-width: 720px) {
  main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item .case-content .info .intro .title {
    font-size: 14px;
    margin: 0 0 5px 0;
  }
}

main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item .case-content .info .intro .parameter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item .case-content .info .intro .parameter .picture {
  margin-right: 20px;
}

main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item .case-content .info .intro .parameter .picture,
main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item .case-content .info .intro .parameter .visit {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  font-size: 12px;
}
main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item .case-content .info .intro .parameter .buffering {
  display: inline-block;
  position: relative;
  width: 13px;
  height: 3px;
  margin-left: 5px;
}

main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item .case-content .info .intro .parameter .buffering .dot {
  position: absolute;
  width: 3px;
  height: 3px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 100%;
  background-color: currentColor;
  -webkit-animation-name: blink;
          animation-name: blink;
  -webkit-animation-duration: .6s;
          animation-duration: .6s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes blink {
  0% {
    opacity: .2;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: .2;
  }
}

@keyframes blink {
  0% {
    opacity: .2;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: .2;
  }
}

main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item .case-content .info .intro .parameter .buffering .dot:nth-child(1) {
  left: -2px;
  right: auto;
}

main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item .case-content .info .intro .parameter .buffering .dot:nth-child(2) {
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}

main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item .case-content .info .intro .parameter .buffering .dot:nth-child(3) {
  left: auto;
  right: -2px;
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}

main .case-container .case-timeline .timeline-list .timeline-item .sub-timeline-list .sub-timeline-item .case-content .info .intro .parameter .option {
  opacity: .5;
  margin-right: 5px;
}

main .leader-intro-container {
  position: relative;
  margin-bottom: 20px;
}

main .leader-intro-container .swiper-wrapper {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

main .leader-intro-container .swiper-wrapper .swiper-slide .avatar-box picture {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  margin-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 12px;
  overflow: hidden;
}

main .leader-intro-container .swiper-wrapper .swiper-slide .avatar-box picture:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  pointer-events: none;
  z-index: 1;
}

main .leader-intro-container .swiper-wrapper .swiper-slide .avatar-box .intro {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  margin-bottom: 30px;
}

main .leader-intro-container .swiper-wrapper .swiper-slide .avatar-box .intro .name {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  max-width: 50%;
  margin: 20px 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

main .leader-intro-container .swiper-wrapper .swiper-slide .avatar-box .intro .position {
  display: inline-block;
  font-size: 12px;
  font-weight: normal;
  max-width: calc(50% - 10px);
  margin-left: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  opacity: .5;
}

main .leader-intro-container .swiper-wrapper .swiper-slide .info {
  display: none;
}

main .leader-intro-container .swiper-pagination {
  bottom: 25px;
}

main .leader-intro-container .swiper-pagination .swiper-pagination-bullet {
  background: currentColor;
}

main .news-container ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

main .news-container ul li {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

main .news-container ul li:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -20px;
  width: calc(100% + 20px);
  height: 1px;
  background-color: currentColor;
  opacity: .1;
}

main .news-container ul li.no-cover .news-box {
  -webkit-box-align: start;
          align-items: flex-start;
}

main .news-container ul li.no-cover .news-box .icon {
  width: 20px;
  height: 20px;
  padding: 6px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}

main .news-container ul li.no-cover .news-box .intro {
  width: calc(100% - 30px);
}

main .news-container ul li .news-box {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

main .news-container ul li .news-box picture {
  display: block;
  position: relative;
  width: 120px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.1);
}

main .news-container ul li .news-box picture:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  pointer-events: none;
  z-index: 1;
}

main .news-container ul li .news-box picture img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

main .news-container ul li .news-box .intro {
  position: relative;
  width: calc(100% - 130px);
  padding-left: 10px;
}

main .news-container ul li .news-box .intro .title {
  display: -webkit-box;
  font-size: 12px;
  font-weight: 500;
  margin: 0 0 10px 0;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

main .news-container ul li .news-box .intro .title:after {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: .5;
}

main .news-container ul li .news-box .intro .info {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
          align-items: center;
}

main .news-container ul li .news-box .intro .info .source {
  display: inline-block;
  max-width: calc(100% - 90px);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-right: 5px;
  padding: 3px 5px;
  background-color: rgba(255, 255, 255, 0.1);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  zoom: .8;
}

main .news-container ul li .news-box .intro .info .date {
  display: inline-block;
  width: 80px;
  font-size: 12px;
  opacity: .4;
}

footer {
  position: relative;
  padding-bottom: 60px;
  z-index: 1;
}

footer .brand {
  position: relative;
  padding-top: 60px;
}

footer .brand picture {
  display: block;
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px auto;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  overflow: hidden;
}

footer .brand picture:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-box-shadow: inset 0 0 0 1px currentColor;
          box-shadow: inset 0 0 0 1px currentColor;
  border-radius: 4px;
  opacity: .1;
  pointer-events: none;
}

footer .brand picture img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

footer .brand .name {
  display: block;
  text-align: center;
  font-size: 12px;
  margin-bottom: 20px;
  opacity: .5;
}

footer .child-brands {
  margin-bottom: 20px;
}

footer .child-brands ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

footer .child-brands ul li {
  float: left;
  width: calc(100% / 3);
  padding: 5px;
}

footer .child-brands ul li .child-brands-box {
  padding: 20px 10px 15px 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

footer .child-brands ul li .child-brands-box picture {
  display: block;
  margin-bottom: 10px;
}

footer .child-brands ul li .child-brands-box picture img {
  display: block;
  max-width: 60px;
  margin: 0 auto;
}

footer .child-brands ul li .child-brands-box .name {
  display: block;
  font-size: 12px;
  text-align: center;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  opacity: .5;
}

footer .scroll-top {
  display: table;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 auto;
  padding: 10px 35px;
  border: none;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.15);
}

.leader-intro-details-container {
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  -webkit-transition: .4s, visibility .4s;
  transition: .4s, visibility .4s;
  -webkit-transition-delay: .4s;
          transition-delay: .4s;
  z-index: 10001;
}

.leader-intro-details-container.opened {
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.leader-intro-details-container.opened .details-box {
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.leader-intro-details-container .details-box {
  visibility: hidden;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 30px 20px;
  overflow-y: auto;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: 0.6s cubic-bezier(0.85, 0, 0.15, 1), visibility 0.6s;
  transition: 0.6s cubic-bezier(0.85, 0, 0.15, 1), visibility 0.6s;
}

.leader-intro-details-container .details-box.scrolling {
  -webkit-box-align: start;
          align-items: start;
  padding: 80px 30px 30px 30px;
}

.leader-intro-details-container .details-box .card {
  position: relative;
  width: 100%;
  background-color: currentColor;
}

.leader-intro-details-container .details-box .card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  pointer-events: none;
  z-index: 2;
}

.leader-intro-details-container .details-box .card picture {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.leader-intro-details-container .details-box .card picture img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.leader-intro-details-container .details-box .card .desc-box {
  color: #000;
  padding: 10px 24px 5px 24px;
}

.leader-intro-details-container .details-box .card .desc-box .intro {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.leader-intro-details-container .details-box .card .desc-box .intro .name {
  display: inline-block;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  max-width: 50%;
  margin: 20px 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.leader-intro-details-container .details-box .card .desc-box .intro .position {
  display: inline-block;
  font-size: 12px;
  font-weight: normal;
  max-width: calc(50% - 10px);
  margin-left: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  opacity: .5;
}

.leader-intro-details-container .details-box .card .desc-box .info {
  margin: 0 0 24px 0;
  font-size: 14px;
  line-height: 1.6;
  opacity: .8;
}

.leader-intro-details-container .details-box .card .close-button {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  position: absolute;
  right: 5px;
  top: 5px;
  width: 40px;
  height: 40px;
  z-index: 1;
  cursor: pointer;
}

.leader-intro-details-container .details-box .card .close-button .close {
  position: relative;
  width: 28px;
  height: 28px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 100%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

@supports ((-webkit-backdrop-filter: initial) or (backdrop-filter: initial)) {
  .leader-intro-details-container .details-box .card .close-button .close {
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
  }
}

.leader-intro-details-container .details-box .card .close-button .close:before, .leader-intro-details-container .details-box .card .close-button .close:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 14px;
  height: 2px;
  background-color: #fff;
}

.leader-intro-details-container .details-box .card .close-button .close:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.leader-intro-details-container .details-box .card .close-button .close:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}


/* 直接进入电脑端企业主页 开始 */
@media only screen and (min-width: 768px) {
  #app_enterprise .bottom-nav-container {
    height: calc(100% - 64px);
  }
  #app_enterprise .nav-header-container {
    top: 0;
  }
  #app_enterprise .marquee-image-container {
    top: 0;
  }
}
/* 直接进入电脑端企业主页 结束 */