/* ==========================================
   蔚蓝进度列表 - 标题 + 3行4列网格
   sectionClassName: weilan-custom-progress-list
   ========================================== */

.weilan-custom-progress-list {
  position: relative;
  width: 100%;
  padding: var(--spacing-4xl, 2rem) 0;
}

.weilan-custom-progress-list-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.weilan-custom-progress-list > .container {
  position: relative;
  z-index: 5;
}

.weilan-custom-progress-list-title {
  color: var(--text-color);
  text-align: center;
  margin-bottom: 4.5rem;
}

.weilan-custom-progress-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 2.25rem;
}

.weilan-custom-progress-list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.weilan-custom-progress-list-item-img-wrap {
  width: 116%;
  mask-image: url('https://okki-shop.oss-cn-hangzhou.aliyuncs.com/templates/shop-default/317905b4-8030-486b-84cd-72bf39223b53-%201%20%282%29.png');
  mask-repeat: no-repeat;
  aspect-ratio: 434 / 230;
  mask-size: 100%;
  overflow: hidden;
  background: #fff;
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.2));
  align-items: center;
}

.weilan-custom-progress-list-item-img {
  width: 98%;
  height: 98%;
  mask-image: url('https://okki-shop.oss-cn-hangzhou.aliyuncs.com/templates/shop-default/317905b4-8030-486b-84cd-72bf39223b53-%201%20%282%29.png');
  mask-repeat: no-repeat;
  object-fit: cover;
  mask-size: 100%;
  overflow: hidden;
}

.weilan-custom-progress-list-item-title {
  font-size: var(--font-size-xl);
  line-height: 1.5;
  color: var(--text-color, #333);
  font-family: var(--font-family);
  width: 100%;
  text-align: left;
  margin-left: -15%;
}

/* ==========================================
   响应式
   ========================================== */
@media screen and (max-width: 768px) {
  .weilan-custom-progress-list-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.5rem;
  }

  .weilan-custom-progress-list-title {
    margin-bottom: 3rem;
  }
}

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