$bgColor :rgba(0, 0, 0, .7);

.new-screen-box {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000001;

  * {
    box-sizing: border-box;
  }

  .new-screen-bg-img {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
  }

  .new-screen-top {
    position: relative;
    z-index: 1;
    width: 100%;
    background-color: $bgColor ;
  }

  .new-screen-center {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;

    .new-screen-left {
      background-color: $bgColor;
    }

    .new-screen-content {
      position: relative;
      overflow: hidden;

      .new-screen-content-img {
        position: absolute;
      }
    }

    .new-screen-right {
      flex: 1;
      background-color: $bgColor;
    }
  }

  .new-screen-bottom {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: $bgColor ;
  }

  .new-screen-shade {
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  .new-screen-btns {
    position: absolute;
    z-index: 11;
    width: 110px;
    height: 30px;
    padding: 5px 10px;
    background-color: #f5f5f5;
    font-size: 12px;
    display: flex;
    align-items: center;
    color: #666;

    .new-screen-submit-btn,
    .new-screen-close-btn {
      border: 1px solid #f5f5f5;
      cursor: pointer;
      display: flex;

      &:hover {
        border-color: #ddd;
      }

      svg {
        width: 16px;
        height: 16px;
        line-height: 16px;
      }
    }

    .new-screen-close-btn {
      padding: 2px;

      svg {
        margin: auto;
      }
    }

    .new-screen-submit-btn {
      margin-left: 10px;
      align-items: center;
      padding: 2px 5px;

      span {
        margin-left: 5px;
      }
    }
  }
}