/* 首页案例轮播箭头：用 CSS chevron 替代文字符号，保证视觉居中 */
.home-cases-arrow {
  padding: 0;
  line-height: 0;
  font-size: 0;
  color: var(--color-text);
}

.home-cases-arrow::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border: solid currentColor;
  border-width: 2px 2px 0 0;
}

.home-cases-prev::before {
  transform: rotate(-135deg);
  margin-left: 2px;
}

.home-cases-next::before {
  transform: rotate(45deg);
  margin-right: 2px;
}

.home-cases-arrow:hover::before {
  border-color: #fff;
}

.home-cases-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
