.weilan-shopping-process {
  padding: 4rem 0;
  position: relative;
  z-index: 2;
}

.weilan-shopping-process-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
}
.weilan-shopping-process-bg img {
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 100%;
}

.weilan-shopping-process-bg .container {
  z-index: 5;
  position: relative;
}

.weilan-shopping-title {
  position: relative;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 5rem;
  text-transform: capitalize;
  z-index: 5;
}

.weilan-shopping-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  row-gap: 4.1rem;
}

.weilan-shopping-item {
  display: flex;
  /* grid-template-columns: repeat(2, max-content); */
  /* max-width: 34.375rem; */
  flex-direction: column;
  align-items: flex-start;
  /* text-align: center; */
  position: relative;
  /* z-index: 1; */
  /* width: 33.333%; */
}

.weilan-shopping-item:hover {
  z-index: 2;
}

.weilan-shopping-item:nth-of-type(3n) .to_right {
  display: none;
}

.weilan-shopping-item-pic {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.weilan-shopping-item-pic::before {
  content: '';
  position: absolute;
  left: -10px;
  top: -10px;
  width: 100%;
  height: 100%;
  mask-image: url('https://okki-shop.oss-cn-hangzhou.aliyuncs.com/templates/shop-default/9e598df3-b96e-40bc-8de8-ff4aac6e6c48-fbx.png');
  mask-size: contain;
  mask-repeat: no-repeat;
  line-height: normal;
  aspect-ratio: 550 / 336;
  background-color: #fff;
  transform: scale(1.0333);
  z-index: 1;
}

.weilan-shopping-item-pic img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-image: url('https://okki-shop.oss-cn-hangzhou.aliyuncs.com/templates/shop-default/9e598df3-b96e-40bc-8de8-ff4aac6e6c48-fbx.png');
  mask-size: contain;
  mask-repeat: no-repeat;
  line-height: normal;
  aspect-ratio: 550 / 336;
  /* overflow: hidden; */
  transform: scale(1.0333);
  z-index: 2;
}

.weilan-shopping-item-title {
  font-weight: 500;
  margin-left: -10.33333px;
  grid-column: 1;
  grid-row: 2;
  margin-top: 1.2rem;
}

.weilan-shopping-item .to_right {
  z-index: 3;
  position: absolute;
  right: 0px;
  top: 50%;
  background: #fff;
  transform: translate(50%, -75%);
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.weilan-shopping-item .to_right svg {
  width: 3.75rem;
  height: 3.75rem;
}

@media screen and (max-width: 1024px) {
  .weilan-shopping-item-pic::before {
    transform: scale(1);
  }

  .weilan-shopping-item-pic img {
    transform: scale(1);
  }
  .weilan-shopping-item-title {
    margin-left: 0px;
  }
}

/* 响应式设计 */
@media (max-width: 992px) {
}

@media (max-width: 767px) {
  .weilan-shopping-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    row-gap: 2rem;
  }

  .weilan-shopping-item:nth-of-type(3n) .to_right {
    display: flex;
  }

  .weilan-shopping-item:nth-of-type(2n) .to_right {
    display: none;
  }
}

@media (max-width: 576px) {
  .weilan-shopping-grid {
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: auto;
  }

  .weilan-shopping-item .to_right {
    display: none !important;
  }
}
