@import '../base.scss';

$font-color: #999999;
.dialog-enter, .dialog-leave-to {
  opacity: 0;
}
.dialog-enter-active, .dialog-leave-active {
  transition: all .3s ease;
}
.dialog-enter-to, .dialog-leave {
  opacity: 1;
}
.fade-enter-active, .fade-leave-active {
  transition: opacity .3s;
}
.fade-enter, .fade-leave-to {
  opacity: 0;
}

.ss-pushSetting {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: PingFangSC-Regular, PingFang SC;
  .setting-pop {
    border-radius: 4px;
    background-color: #ffffff;
    width: 640px;
    .title {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #353535;
      padding: 15px 20px;
      font-size: 16px;
      border-bottom: 1px solid #f2f2f2;
      line-height: 22px;
      .close-btn {
        cursor: pointer;
      }
    }
    .loading {
      margin: 20px;
      color: $font-color;
      text-align: center;
    }
    .content {
      padding: 32px 24px;
      .item {
        display: flex;
        margin-bottom: 24px;
        .item-title {
          min-width: 25%;
        }
        .item-content {
          transition: all 3s;
          line-height: 22px;
          margin-left: 8px;
          .content-state {
            margin-bottom: 8px;
            .app-push-status {
              font-size: 14px;
              color: #333333;
            }
          }
          .go-auth {
            color: $font-color;
          }
        }
        .warning-color{
          color: $font-color;
        }
        .remaining-msg {
          color: $font-color;
        }
        .operate-btn {
          padding-left: 16px;
          cursor: pointer;
          color: #105CFB;
        }
        .disabled {
          opacity: 0.5;
          cursor: not-allowed;
        }
      }
      .link-text {
        padding: 0 3px;
        color: #105CFB;
        text-decoration: underline;
        cursor: pointer;
      }
    }
    .empty-warning {
      margin: 40px;
      color: $font-color;
      display: flex;
      justify-content: center;
      align-items: center;
      .link-text {
        cursor: pointer;
        color: #105CFB;
      }
    }
    .footer {
      text-align: center;
      margin-bottom: 24px;
      display: flex;
      justify-content: flex-end;
      padding: 0 24px;
      .cancel-btn {
        color: #333333;
        border: 1px solid #E5E7EB;
        background-color: #ffffff;
      }
      .ss-button {
        padding: 10px 29px;
      }
      .save-btn {
        border: 1px solid #105CFB;
      }
    }
  }
}
.title-bold{
  font-weight: 500;
}

