/* .main-title{
    text-align: center;
    font-family: Jost;
    font-weight: 400;
    font-size: 58px;
    color: #ffffff;
    letter-spacing: 6px;
    line-height: 70px;
} */
 .main-title {
  font-size: var(--pc-font-size);
  font-weight: var(--font-weight);
  text-align: var(--pc-text-align);
  letter-spacing: var(--letter-spacing);
  font-family: var(--font-family, inherit);
}

/* 平板 */
@media (max-width: 1024px) {
  .main-title {
    font-size: var(--pad-font-size);
  }
}

/* 手机 */
@media (max-width: 768px) {
  .main-title {
    font-size: var(--mobile-font-size);
    text-align: var(--m-text-align);
  }
}

/* --- 激活排列方式 --- */
.theme-customers-video__group {
  position: absolute;
  transform: translate(var(--tx, 0), var(--ty, 0));
}

/* 横向定位 */
.theme-customers-video__group[data-row-position="left"] {
  left: 0;
  right: auto;
  --tx: 0;
}
.theme-customers-video__group[data-row-position="center"] {
  left: 50%;
  right: auto;
  --tx: -50%;
}
.theme-customers-video__group[data-row-position="right"] {
  right: 0;
  left: auto;
  --tx: 0;
}

/* 纵向定位 */
.theme-customers-video__group[data-column-position="top"] {
  top: 0;
  bottom: auto;
  --ty: 0;
}
.theme-customers-video__group[data-column-position="center"] {
  top: 50%;
  bottom: auto;
  --ty: -50%;
}
.theme-customers-video__group[data-column-position="bottom"] {
  bottom: 0;
  top: auto;
  --ty: 0;
}