:global {
  .modal-wrap_container {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    .simple-modal_container {
      position: absolute;
      top: 42px;
      left: 18px;
      right: 18px;
      min-height: 339px;
      background: #fff;
      border-radius: 4px;
      overflow: hidden;

      .modal-close-btn {
        position: absolute;
        top: 15px;
        right: 18px;
        color: #d8d8d8;
        width: 20px;
        height: 20px;
      }
      .modal-title {
        position: absolute;
        top: 10px;
        left: 0;
        width: 100%;
        text-align: center;
        font-size: 18px;
        color: #222;
      }
      .simple-modal_content {
        margin-top: 48px;
        margin-bottom: 70px;
        box-sizing: border-box;
        overflow: hidden;
      }
      .btn-group {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 70px;
        border-top: 1px solid #e8e8e8;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        background: #fff;
        .btn {
          width: 99px;
          height: 31px;
          border-radius: 2px;
          line-height: 31px;
          text-align: center;
        }
        .btn-cancel {
          border: 1px solid #e8e8e8;
          color: #666;
          font-size: 16px;
          margin-right: 32px;
        }
        .btn-confirm {
          color: #fff;
          font-size: 16px;
          background: #469de6;
        }
      }
    }
  }
}
