.weilan_steel_choose {
  position: relative;
  background: rgba(251, 253, 255, 0.5);
  z-index: 0;
  padding-bottom: 1.5rem;
}

.weilan_steel_choose .container {
  position: relative;
}

.weilan_steel_choose_bg {
  position: absolute;
  bottom: 30%;
  left: 0;
  width: 100%;
  aspect-ratio: 1920/1007;
  object-fit: cover;
}

.weilan_steel_choose_title {
  color: #FFF;
  font-size: var(--font-size-h2);
  font-family: var(--title-font-family);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.weilan_steel_choose_sub_title {
  color: #FFF;
  font-size: var(--font-size-lg);
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 1.67;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 4.5rem;
}

.weilan_steel_choose .data-wrapper {
  overflow: hidden;
}

.weilan_steel_choose .data-item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2.25rem 1.75rem 2.5rem;
  border-radius: 15px;
  background: linear-gradient(0deg, #FFF 0%, #FFF 100%);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.20);
  transition: all 0.3s ease;
  min-height: 260px;
  /* height: -webkit-fill-available; */
}

.weilan_steel_choose .data-item:hover {
  background: linear-gradient(0deg, #0B62C1 0%, #54DBCC 100%);
}

.weilan_steel_choose .data-item-num {
  background: linear-gradient(180deg, #0B62C1 0%, #54DBCC 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: var(--font-size-h2);
  font-family: var(--title-font-family);
  font-weight: 700;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.weilan_steel_choose .data-item:hover .data-item-num {
  background: #FFF;
  background-clip: text;
  -webkit-background-clip: text;
}

.weilan_steel_choose .data-item-title {
  color: var(--text-color);
  font-size: var(--font-size-h4);
  font-family: var(--font-family);
  font-weight: 500;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.weilan_steel_choose .data-item:hover .data-item-title {
  color: #FFF;
}

.weilan_steel_choose .data-item-desc {
  color: #666;
  font-size: var(--font-size-md);
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 1.625;
  transition: all 0.3s ease;
}

.weilan_steel_choose .data-item:hover .data-item-desc {
  color: #FFF;
}

.weilan_steel_choose .item-line {
  position: relative;
  align-self: flex-end;
  width: calc(100% - 13px);
  height: 1px;
  background: linear-gradient(90deg, #DDD 0%, rgba(221, 221, 221, 0.00) 100%);
}

.weilan_steel_choose .data-item:hover .item-line {
  background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
}

.weilan_steel_choose .item-ring-colorful,
.weilan_steel_choose .item-ring-white {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 100%;
  width: 13px;
  height: 13px;
  transition: all 0.3s ease;
}

.weilan_steel_choose .item-ring-white {
  display: none;
}

.weilan_steel_choose .data-item:hover .item-ring-colorful {
  display: none;
}

.weilan_steel_choose .data-item:hover .item-ring-white {
  display: block;
}

@media screen and (min-width: 576px) {
  .weilan_steel_choose .data-wrapper {
    overflow: hidden !important;
    padding: 0 20px;
  }

  .weilan_steel_choose .data-wrapper  .data-wrapper-inner {
    padding: 20px 0px;
  }
}

@media screen and (max-width: 1024px) {
  .weilan_steel_choose_bg {
    min-height: 1000px;
  }
}

@media screen and (max-width: 575px) {
  .weilan_steel_choose .data-wrapper {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.20);
    border-radius: 15px;
  }

  .weilan_steel_choose .data-item {
    aspect-ratio: 16 / 9;
  }

  .weilan_steel_choose .data-item {
    box-shadow: none;
  }
}