.i-dialog-layout {
  width: 750px;
  top: 0px;
  left: 0px;
  bottom: 0px;
  position: fixed;
  z-index: 10;
  /* background-color: rgba(70, 70, 70, 0.5); */
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.i-dialog {
  width: 630px;
  position: relative;
  background-color: #ffffff;
  border-radius: 10px;
}

.i-dialog-title {
  justify-content: flex-start;
  height: 80px;
  margin-bottom: 30px;
}

.dialog-title-text {
  font-family: PingFangSC-Medium;
  font-size: 28px;
  color: #ff7846;
  line-height: 80px;
}

.i-dialog-content {
  width: 570px;
  min-height: 220px;
  max-height: 900px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: scroll;
}

.dialog-content-text {
  flex: 1;
  text-align: center;
  font-family: PingFangSC-Light;
  font-size: 30px;
  color: #464646;
}

.i-dialog-footer {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 80px;
  margin-top: 30px;
}

.btn {
  flex: 1;
  height: 80px;
  text-align: center;
  font-family: SourceHanSansCN-Bold;
  font-size: 30px;
  line-height: 80px;
  border-radius: 10px;
}

.btn-default {
  color: #ffffff;
  background-image: linear-gradient(-90deg, #28c8dc, #3296d2);
  box-shadow: 0px 8px 15px rgba(20, 130, 220, 0.3);
}
.btn-white {
  color: #464646;
  border-width: 2px;
  border-style: solid;
  border-color: #979797;
}
.btn-orange {
  color: #ffffff;
  background-color: rgba(255, 133, 50, 1);
  background-image: linear-gradient(to right, rgba(255, 133, 50, 1), rgba(255, 82, 0, 1));
  box-shadow: 0px 8px 15px rgba(255, 133, 50, 0.3);
}
.btn-orange2 {
  color: #ffffff;
  background-color:#FFBE6E;
  background-image: linear-gradient(to right, #FFBE6E, #DCA064);
  box-shadow: 0px 8px 15px rgba(255, 133, 50, 0.3);
}
.btn-purple {
  color: #ffffff;
  background-color: #632E5F;
  background-image: linear-gradient(to right, #632E5F, #3F425F);
  box-shadow: 0px 8px 15px rgba(98, 50, 255, 0.3);
}
.dialog-action-text:active {
  color: #000000;
}

.scroller {
  width: 650px;
  min-height: 100px;
  max-height: 900px;
}
