body {
  background-color: #000;
}

.drama-page {
  max-width: unset;
  margin: 0 auto;
  height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
}
.swiper-wrapper {
  max-width: 500px;
  margin: 0 auto;
}
.playlet-list {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.playlet-list .item {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.playlet-list .item:hover button {
  background-color: #0b57d0;
  color: #fff;
}
.playlet-list .item .img-wrap {
  position: relative;
  width: 100%;
}
.playlet-list .item img {
  width: 100%;
}
.playlet-list .item .intro {
  position: absolute;
  width: 100%;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 85%, rgba(0, 0, 0, 0));
  display: flex;
  flex-flow: column nowrap;
  padding-bottom: 25px;
  cursor: pointer;
}
.playlet-list .item h2 {
  font-size: 40px;
  color: #fff;
  padding: 0 30px;
  text-align: center;
  margin: 25px 0;
}
.playlet-list .item button {
  display: block;
  background-color: #fff;
  color: #000;
  height: 57px;
  width: 60%;
  outline: none;
  border: none;
  border-radius: 10px;
  font-size: 25px;
  font-weight: bold;
  cursor: pointer;
}
.playlet-list .item .left-border {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0), rgba(0, 0, 0, 0));
  width: 15%;
  height: 100%;
}
.playlet-list .item .right-border {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0), rgba(0, 0, 0, 0));
  width: 15%;
  height: 100%;
}
.playlet-list .item .top-border {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0) 30%, rgba(0, 0, 0, 0));
  width: 100%;
  height: 5%;
}

@media screen and (max-width: 780px) {
  .playlet-list .item h2 {
    font-size: 30px;
  }
}
