/*------------------------------------
  my
------------------------------------*/
.nlv-bg-primary {
  background-color: var(--bs-primary);
}
.nlv-bg-gray {
  background-color: var(--nlv-gray);
}
.nlv-isf-primary {
  color: var(--nlv-isf-primary) !important;
}
.nlv-bg-purple {
  background-color: var(--nlv-purple);
}
.nlv-square-2 {
  width: 2rem !important;
  height: 2rem !important;
}
.nlv-box-sizing-border {
  box-sizing: border-box !important;
}
.nlv-border-white {
  border-color: white;
}
.nlv-border-white-70 {
  border-color: rgba(255, 255, 255, 0.7);
}
.nlv-product-img {
  object-fit: cover;
  height: 100%;
  max-width: 100%;
  object-fit: cover; /* 按比例裁剪填满容器 */
  object-position: center; /* 图片内容居中显示 */
  display: block; /* 去掉 img 默认 inline 间隙 */
}

.nlv-border-radius-2 {
  border-radius: 0.5rem;
}

.nlv-border-radius-3 {
  border-radius: 0.8rem;
}

/* 箭头 */
.nlv-arrow-line {
  display: inline-flex;
  align-items: center;
  font-weight: bold;
  color: #000;
  position: relative;
}

.nlv-arrow-line::after {
  content: '';
  display: inline-block;
  margin-left: 10px;
  width: 30px; /* 横线长度 */
  height: 2px; /* 横线粗细 */
  background-color: #000;
  position: relative;
}

.nlv-arrow-line::after {
  content: '';
  display: inline-block;
  margin-left: 10px;
  width: 30px;
  height: 2px;
  background-color: #000;
  position: relative;
}

.nlv-arrow-line::after {
  border-right: 2px solid #000;
  border-top: 2px solid #000;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  margin-left: 5px;
}

/*  */
.text-white-90 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.9) !important;
}
