@charset "UTF-8";
/**
 * px 转 rem：统一基准 14px（PC 设计稿宽 1440 / 移动端设计稿宽 375）
 * 用法：rem(14) => 1rem
 */
body {
  padding-top: 7.7142857143rem;
}

.ow-content .s-item-content {
  width: 100%;
  flex-wrap: wrap;
  gap: 1.4285714286rem;
}
.ow-content .s-item-content .s-item {
  width: calc((100% - 2.8571428571rem) / 3);
  gap: 1.4285714286rem;
}
.ow-content .s-item-content .s-item .s-item-img {
  position: relative;
  width: 100%;
  padding-bottom: 50%;
  cursor: pointer;
  background-color: #f2f4f7;
  overflow: hidden;
}
.ow-content .s-item-content .s-item .s-item-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
  transform: scale(1);
}
.ow-content .s-item-content .s-item .s-item-img:hover img {
  transform: scale(1.2);
}
.ow-content .s-item-content .s-item .s-item-desc {
  width: 100%;
}
.ow-content .s-item-content .s-item .s-item-desc .oi-info {
  flex-shrink: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5357142857rem;
}

.footer {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  body {
    padding-top: 4rem;
  }
  .ow-content .s-item-content .s-item {
    width: 100%;
  }
  .footer {
    position: static;
  }
}

/*# sourceMappingURL=solution.css.map */
