.ink-wrap {
  position: relative;
  padding-left: 0;
  overflow: hidden;
}
.ink-fade-left, .ink-fade-right {
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.ink-fade-left {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}
.ink-fade-right {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}
.ink-swiper {
  overflow: hidden;
  cursor: grab;
}
.ink-swiper:active {
  cursor: grabbing;
}
.ink-swiper .swiper-wrapper {
  cursor: grab;
}
.ink-swiper:active .swiper-wrapper {
  cursor: grabbing;
}
.ink-card {
  display: block;
  text-decoration: none;
  color: #111;
}
.ink-thumb {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;

}
.ink-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.ink-card:hover img {
  transform: scale(1.05);
}
.ink-title {
  font-size: 13px;
  margin-top: 8px;
}
.ink-price {
  font-size: 12px;
  color: #777;
}