.d-grid {
  display: grid;
}

.list-none {
  list-style: none;
  padding-left: 0;
}

.video-theme {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto; /* 三列 */
  gap: 1.5rem;
}
.video-player {
  grid-row: 1 / 3;
  grid-column: 1 / 3;
  min-height: 480px;
  position: relative;
}

.play-btn{
position: absolute;
    width: 3em;
    height: 3em;
    padding-left: 0.25em;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.play-btn i{
font-size: 2rem;
}

.video-intro {
  grid-row: 1/ 4;
  grid-column: 3/4;
  font-size: 1.2rem;
  line-height: 1.6rem;
}

.video-intro > div.d-flex {
  gap: 1rem;
  flex-direction: column;
  align-items: center;
}
.video-intro > div.d-flex img {
  width: 80%;
}

.video-clips {
  grid-row: 3/4;
  grid-column: 1/3;
  min-height: 150px;
}

.intro-title {
  font-weight: 500;
}

.intro-content {
  color: #888;
  overflow: hidden;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.intro-number {
  color: #888;
}

.theme-title {
  margin-left: 8px;
  color: #fdf2f2;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 0px 56px;
  border-radius: 18px 0px 0 0;
  background: linear-gradient(
        to right,
        #7b28be 0%,
        #5630b5f5 70%,
        #6739ff00 100%
      )
      padding-box,
    linear-gradient(to right, #e0b9e8, #f3f3f300) border-box;
  border-left: 2px solid transparent;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  position: relative;
  text-shadow: 0 0 3px #cd00ff;
}
.theme-title::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1.4rem;
  position: absolute;
  background-image: url(../images/theme-deco.png);
  background-size: contain;
  left: 1rem;
  top: 0.6rem;
  background-repeat: no-repeat;
}

.owl-video-clips .owl-nav {
  top: 0%;
}

.owl-video-clips .owl-nav button {
  margin: 0;
}

.owl-pornstar-theme {
  padding: 0 5rem;
}

@media screen and (max-width: 768px) {
  .video-theme {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto; /* 一列 */
    margin-top: 1rem;
    margin-bottom: 1rem;
    gap: 0.8rem;
  }
  .video-player {
    grid-row: 1/2;
    grid-column: 1/4;
    min-height: 25vh;
  }
  .video-intro {
    grid-row: 2/3;
    grid-column: 1/4;
    /* font-size: 0.9rem;
    line-height: 1rem; */
  }
  .video-intro > div.d-flex {
    gap: 1rem;
    flex-direction: row;
    align-items: center;
  }
  .video-intro > div.d-flex img {
    width: 50%;
  }
  .video-clips {
    grid-row: 3/4;
    grid-column: 1/4;
    height: auto;
  }
  .video-clips .owl-nav {
    height: 100%;
  }

  .owl-pornstar-theme {
    padding: 0;
  }
  .owl-video-theme .one-info-panel {
    padding: 0 0.5rem;
  }
}

@media screen and (max-width: 560px) {
  .video-intro {
    font-size: 0.9rem;
    line-height: 1rem;
  }
}