.component-Modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
}

.component-Modal-mask {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.component-Modal-box {
  @include center-translate();
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  z-index: 2;
}

.component-Modal-box-head {
  text-align: center;
  font-size: 16px;
  color: #232425;
}

.component-Modal-box-body {
  @include retina-one-px-border('bottom', #d8d8d8);
  text-align: center;
  font-size: 15px;
}

.component-Modal-box-action {
  display: flex;
  align-items: center;
  justify-content: center;
}

.component-Modal-box-action-btn {
  text-align: center;
  font-size: 15px;
  flex: 1;
  border: 0;
  &:nth-child(1) {
    border-right: 1px solid #d8d8d8;
  }
  &:nth-child(2) {
    border-right: 0;
  }
}