.baosidun-company-profile {
  background: linear-gradient(to bottom, #fff 70%, #f5f5f5 30%);
}

.bcp-header {
  padding: 100px 0px 0px;
  text-align: center;
}

.bcp-title {
  font-family: var(--title-font-family);
  font-size: var(--font-48);
  font-weight: 700;
  color: var(--title-text-color);
  line-height: 1.375;
  margin-bottom: 5px;
}

.bcp-subtitle {
  font-family: var(--font-family);
  font-size: var(--font-22);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 163.636%;
  margin-bottom: 24px;
}

.bcp-description {
  text-align: left;
  font-family: var(--font-family);
  font-size: var(--font-18);
  font-weight: 400;
  color: #555;
  line-height: 166.667%;
  width: calc(1400/1600*100%);
  margin: 0 auto 50px;
}

.bcp-image-wrap {
  position: relative;
}

.bcp-image {
  display: block;
  width: 100%;
  aspect-ratio: 1920/750;
  object-fit: cover;
  object-position: center;
}

.bcp-stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  width: calc(1400/1600*100%);
  margin: 0 auto;
  gap: 28px;
  margin-top: -123px;
}

.bcp-stats-item {
  flex: 1;
  background: #fff;
  fill:  #FFF;
  filter: drop-shadow(0 0 25px rgba(0, 0, 0, 0.12));
  text-align: center;
  cursor: default;
  transform: skewX(-20deg);
  transition: background 0.25s ease;
  overflow: hidden;
  aspect-ratio: 320/200;
}

.bcp-stats-inner {
  transform: skewX(20deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-right: 30px;
}

.bcp-stats-item:hover {
  background: var(--color-primary);
}

.bcp-stats-item:hover .bcp-stats-number,
.bcp-stats-item:hover .bcp-stats-unit,
.bcp-stats-item:hover .bcp-stats-label {
  color: #fff;
}

.bcp-stats-number {
  font-family: var(--title-font-family);
  font-size: var(--font-52);
  font-weight: 700;
  color: var(--title-text-color);
  line-height: normal;
  transition: color 0.25s ease;
}


.bcp-stats-label {
  font-family: var(--font-family);
  font-size: var(--font-18);
  font-weight: 500;
  color: #555;
  line-height: 1.5;
  transition: color 0.25s ease;
}


@media screen and (max-width: 1500px) {
    .bcp-stats-inner {
        padding-right: 10px;
    }

}

@media screen and (max-width: 992px) {
  .bcp-header {
    padding: 48px 30px 36px;
  }

  .bcp-image {
    height: 360px;
  }

  .bcp-stats {
    width: 100%;
    margin-top: 0;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
  }

  .bcp-stats-item {
    flex: 0 0 50%;
    transform: none;
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
  }

  .bcp-stats-inner {
    transform: none;
    padding-right: 0;
  }

  .bcp-stats-item:nth-child(2n) {
    border-right: none;
  }

  .baosidun-company-profile .bcp-image-wrap {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .bcp-title {
    font-size: var(--font-32);
  }

  .bcp-subtitle {
    font-size: var(--font-16);
  }

  .bcp-header {
    padding: 36px 20px 28px;
  }

  .bcp-image {
    height: 260px;
  }

  .bcp-stats-number {
    font-size: var(--font-28);
  }

  .bcp-stats-unit {
    font-size: var(--font-22);
  }

  .bcp-stats-label {
    font-size: var(--font-14);
  }
}
