@import '~taro-ui/dist/style/components/modal.scss';

.film-pages {
  width: 100%;
  position: relative;

  .add-page-container {
    max-height: 60vh;
    overflow: auto;
  }

  .add-page {
    position: fixed;
    bottom: 200px;
    right: 30px;
    width: 100px;
    height: 100px;
    text-align: center;
    border-radius: 50%;
    line-height: 100px;
    font-size: 20px;
    z-index: 111;
  }

  .page-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;

    &-del {
      position: absolute;
      top: 5px;
      right: 20px;
      width: 60px;
      height: 60px;
      text-align: center;
      border-radius: 50%;
      line-height: 60px;
      font-size: 20px;
    }

    &-thumb {
      width: 500px;
      height: 280px;
    }

    &-name {
      flex: 1;
      padding-left: 10px;
    }
  }
}