.statistics-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 80%, #fff);
  backdrop-filter: blur(38px);
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  padding: 50px 12.5vw 4.7vw;
  margin-top: -9vw;
  position: relative;
  .stics-box {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.25vw;
    line-height: 1.25vw;
    text-align: center;
    .dynamic-num {
      font-size: 3.75vw;
      line-height: 2.08vw;
      margin-bottom: 26px;
    }
  }
}

.com-tabs {
  margin-top: 16px;
  margin-bottom: 12px;
}

.content-wrap {
  padding-top: 88px;
  padding-bottom: 6.25vw;
  background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);

  .pannel-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    .content-title {
      margin-bottom: 0;
    }
    .com-tabs {
      margin-top: 0;
      .tabs-item {
        min-width: 36px;
        &:last-child {
          margin-right: 0;
        }
      }
    }
  }

  .content-title {
    font-size: 24px;
    margin-bottom: 60px;
    &::after {
      content: '';
      display: block;
      width: 96px;
      height: 2px;
      background: var(--primary-color);
      margin-top: 28px;
    }
  }

  .company-profile {
    display: flex;
    font-size: 1vw;
    line-height: 1.8vw;

    .left-img {
      flex: 1.03;
      img {
        width: 100%;
      }
    }

    .right-text {
      flex: 1;
      margin-left: 3%;
      overflow: hidden;
      .rt-title {
        font-size: 1.2em;
        line-height: 3em;
      }
      .rt-segmts {
        color: rgba(0, 0, 0, 0.6);
        .segmts-part {
          text-indent: 2em;
          & + .segmts-part {
            margin-top: 1em;
          }
        }
      }
    }
  }

  .corporate-culture {
    display: flex;
    font-size: 16px;
    line-height: 1.5em;

    .culture-box {
      &:nth-child(2) {
        margin: 0 2px;
        display: flex;
        flex-direction: column-reverse;
      }
      .culture-img {
        width: 100%;
        img {
          width: 100%;
        }
      }
      .culture-text {
        padding: 80px 0;
        margin-left: 4.2vw;
        .txt-title {
          font-size: 1.25em;
          line-height: 1.75em;
          display: flex;
          align-items: center;
          &::before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 18px;
            background: var(--primary-color);
            margin-right: 6px;
          }
        }
        .txt-desc {
          color: rgba(0, 0, 0, 0.6);
          text-indent: 12px;
          max-width: calc(80vw / 3 - 4px - 4.2vw);
        }
      }
    }
  }
}

.content-wrap.credential-wrap {
  position: relative;
  padding-bottom: 13.5vw;
  .credential-bg {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .m-wrapper {
    position: relative;
  }

  .honor-credential {
    .swiper-container {
      .swiper-wrapper {
        justify-content: space-between;
        align-items: center;
        .swiper-slide {
          width: 30% !important;
          &.swiper-slide-active {
            width: 36% !important;
          }
          img {
            width: 100%;
            cursor: pointer;
          }
        }
      }

      .action-btn {
        width: 4vw;
        height: 4vw;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        justify-content: center;
        align-items: center;
        img {
          width: 1vw;
        }
      }
    }

    .honor-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-column-gap: 2%;
      .honor-img {
        img {
          width: 100%;
          cursor: pointer;
        }
      }
    }
  }
}

.content-wrap.history-wrap {
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  .content-title {
    margin-bottom: 0;
  }
  img {
    width: 100%;
  }
}

/* 预览 */
.preview-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 201;
  background: rgba(51, 51, 51, 0.4);
  .modal-content {
    width: 80%;
    background: #fff;
    margin: 10vh auto;
    max-height: 80vh;
    padding-bottom: 60px;

    .model-top {
      display: flex;
      justify-content: space-between;
      padding: 16px 20px;
      .top-title {
        font-size: 18px;
        line-height: 26px;
      }
      .top-icon {
        width: 26px;
        height: 26px;
        cursor: pointer;
      }
    }

    .img-box {
      width: 90%;
      margin: 12px auto 0;
      max-height: calc(80vh - 130px);
      overflow: auto;
      img {
        width: 100%;
      }
    }
  }
}

@media screen and (max-width: 1440px) {
  .content-wrap .company-profile {
    font-size: 1.1vw;
  }
}

@media screen and (max-width: 1280px) {
  .content-wrap .company-profile {
    font-size: 1.2vw;
  }
}

/* 移动端样式 */
@media screen and (max-width: 768px) {
  .statistics-panel {
    padding-top: 40px;
    .stics-box {
      color: rgba(0, 0, 0, 0.6);
      font-size: 12px;
      line-height: 12px;
      .dynamic-num {
        color: rgba(0, 0, 0, 0.8);
        font-size: 25px;
        line-height: 20px;
        font-weight: 600;
      }
    }
  }

  .content-wrap {
    padding-top: 30px;

    .content-title {
      font-size: 16px;
      margin-bottom: 30px;
      text-align: center;
      &::after {
        display: none;
      }
    }

    .pannel-top {
      flex-direction: column;
      margin-bottom: 30px;
      .content-title {
        margin-bottom: 20px;
      }
      .com-tabs .tabs-item {
        margin-right: 3.8vw;
      }
    }

    .company-profile {
      flex-direction: column;
      font-size: 14px;
      line-height: 24px;
      .segmts-part + .segmts-part {
        margin-top: 6px !important;
      }
    }

    .corporate-culture {
      font-size: 14px;
      flex-direction: column;
      .culture-box {
        &:nth-child(2) {
          margin: 0;
          flex-direction: column;
        }
        .culture-text {
          padding: 36px 0 30px;
          text-align: center;
          margin-left: 0;
          .txt-title {
            justify-content: center;
          }
          .txt-desc {
            text-indent: 0;
            max-width: 90vw;
          }
        }
      }
    }
  }
}
