.weilan-company-profile {
  position: relative;
  padding: .625rem 0 3.75rem;
  overflow: hidden;
}

.weilan-company-profile-bg-pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.weilan-company-profile-bg-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

@media screen and (min-width:1025px) {
  .weilan-company-profile-top-container.container {
    padding-right: 0;
  }

}

.weilan-company-profile-content {
  display: flex;
  justify-content: space-between;
  gap: 4.375rem;
}

.weilan-company-profile-left {
  flex: 1;
  padding-right: 2.125rem;
}

.weilan-company-profile-subtitle {
  color: #0B62C1;
  font-size: var(--font-size-lg);
  font-weight: 400;
  line-height: 1.66667;
}

.weilan-company-profile-left .line-decorator {
  width: 100%;
  height: 5px;
  position: relative;
  margin: 1.4375rem 0;
}

.weilan-company-profile-left .line-decorator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 5px;
  background: linear-gradient(90deg, #0B62C1 0%, #54DBCC 100%);
  z-index: 2;
}

.weilan-company-profile-left .line-decorator::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #DDD 0%, rgba(221, 221, 221, 0.00) 100%);
}

.weilan-company-profile-left .weilan-company-profile-desc {
  margin-right: -2.125rem;
  padding-right: 2.125rem;
  max-height: 18.75rem;
  overflow-y: auto;
}

.weilan-company-profile-left .weilan-company-profile-desc::-webkit-scrollbar {
  width: 4px;
  background: #D9D9D9;
  border-radius: 0;
}

.weilan-company-profile-left .weilan-company-profile-desc::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #0B62C1 0%, #54DBCC 100%);
  border-radius: 0;
}

.weilan-company-profile-left .weilan-company-profile-desc::-webkit-scrollbar-track {
  background: #D9D9D9;
  border-radius: 0;
}

@-moz-document url-prefix() {
  .weilan-company-profile-left .weilan-company-profile-desc {
    scrollbar-width: thin;
    scrollbar-color: #54DBCC #D9D9D9;
  }
}


.weilan-company-profile-left .weilan-company-profile-desc * {
  color: #666;
  font-size: var(--font-size-md);
  font-weight: 400;
  line-height: 1.625;
}

.weilan-company-profile-left .weilan-company-profile-desc p {
  min-height: 1em;
}

.weilan-company-profile-right {
  width: calc(850 / 1760 * 100%);
  flex-shrink: 0;
  position: relative;
}

.weilan-company-profile-right a {
  position: absolute;
  display: block;
  top: 3.125rem;
  left: 3.125rem;
  width: 3.75rem;
  height: 3.75rem;
}

.weilan-company-profile-right a svg {
  width: 100%;
  height: 100%;
}

.weilan-company-profile-right img {
  width: 100%;
  height: auto;
}

/*-------------------------------- 底部数据 --------------------------------*/
.weilan-company-profile-bottom-container.container {
  margin-top: 6.25rem;
}

.weilan-company-profile-data {
  position: relative;
  background: linear-gradient(90deg, #0B62C1 0%, #54DBCC 100%);
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.15);
}

.weilan-company-profile-bg-text {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-17.07%, -65.35%);
  z-index: 1;

  font-size: 14.375rem;
  font-weight: 800;
  line-height: calc(28 / 23 * 1em);
  opacity: 0.1;
  background: linear-gradient(257deg, #0B62C1 31.23%, #54DBCC 68.77%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: -1;
  white-space: nowrap;
}

.weilan-company-profile-data-list {
  display: flex;
  justify-content: space-between;
  padding: 2.625rem 5rem;
}

.weilan-company-profile-data-item {
  max-width: 16.25rem;
}

.weilan-company-profile-data-item-line {
  width: 1px;
  flex-shrink: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 50%, rgba(255, 255, 255, 0.00) 100%);
}

.weilan-company-profile-data-item .item-number .item-value {
  color: #FFF;
  font-size: var(--font-size-h2);
  font-weight: 700;
  line-height: 1.30435;
}

.weilan-company-profile-data-item .item-unit {
  color: #FFF;
  font-size: var(--font-size-md);
  font-weight: 500;
  line-height: 1.6666667;
}

.weilan-company-profile-data-item .item-desc {
  margin-top: .25rem;
  color: #FFF;
  font-size: var(--font-size-md);
  font-weight: 400;
  line-height: 1.625;
}

@media screen and (max-width: 1024px) {
  .weilan-company-profile-content {
    flex-direction: column;
    gap: 3rem;
  }

  .weilan-company-profile-left {
    width: 100%;
  }

  .weilan-company-profile-right {
    width: 100%;
  }

  .weilan-company-profile-bg-text {
    font-size: 8rem;
  }

  .weilan-company-profile-data-list {
    flex-wrap: wrap;
    padding: 1.5rem 3rem;
    ;
    gap: 1.5rem 6rem;
  }

  .weilan-company-profile-data-item-line.index2 {
    display: none;
  }

  .weilan-company-profile-data-item {
    width: calc((100% - 12em - 1px) / 2);
    max-width: none;
  }
}

@media screen and (max-width: 768px) {
  .weilan-company-profile-data-list {
    gap: 1.5rem 4rem;
  }

  .weilan-company-profile-data-item {
    width: calc((100% - 8em - 1px) / 2);
  }
}

@media screen and (max-width: 576px) {

  .weilan-company-profile-bottom-container.container {
    margin-top: 5rem;
  }

  .weilan-company-profile-bg-text {
    font-size: 6rem;
  }

  .weilan-company-profile-data-item-line {
    display: none;
  }

  .weilan-company-profile-data-list {
    padding: 1rem 2rem;
    gap: 1.5rem 1rem;
  }

  .weilan-company-profile-data-item {
    width: calc((100% - 1em) / 2);
  }
}