/* 首页元素居中样式 */
.VPHomeHero .name,
.VPHomeHero .text,
.VPHomeHero .tagline,
.VPHomeHero .actions {
  display: inline-block;
  width: 100%;
  text-align: center !important;
}
.VPHomeHero {
  padding-top: 40px !important;
}
.VPHomeHero .heading {
  /* margin: 0px 0 50px; */
}

.VPHomeHero .name {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
.VPHomeHero .clip {
  color: #000 !important;
}
.VPHomeHero .text{
  font-size: 26px;
  color: #999 !important;
}
/* .VPHomeHero .tagline {
  font-size: 22px;
} */

.VPHomeHero .container {
  text-align: center;
}

.VPHomeHero .actions {
  justify-content: center;
  display: flex;
}

@media (min-width: 960px) {
  .VPHomeHero .container {
    text-align: center;
  }
  
  .VPHomeHero .name,
  .VPHomeHero .text,
  .VPHomeHero .tagline {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

/* 图片并排显示样式 */
.inline-images-container {
  display: flex;
  gap: 10px;
  align-items: center;
  /* justify-content: center; */
  flex-wrap: wrap;
}

.inline-images-container img {
  max-width: calc(50% - 5px);
  height: auto;
  flex: 1;
}

.inline-images-container .separator {
  white-space: nowrap;
  /* font-size: 40px; */
}