.cancellation-text{
  font-size: 16px;
  color: #7D7D7D;
  margin-right: 5px;
}
.dialog-container{
  display: none;
}
.user-center-dialog{
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dialog-content{
  width: 618px;
  background: #fff;
  padding: 24px 24px 0 24px ;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  
}
.dialog-header{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 20px 0;
  font-size: 20px;
  color: #292929;
}
.dialog-close{
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  top:0;
  right: 5px;
}
.dialog-body{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid #E3E5E6;
  border-bottom: 1px solid #E3E5E6;
  width: 100%;
  overflow-y: auto;
}
.show-text-info{
  font-family: Microsoft YaHei;
  font-size: 14px;
  line-height: 21px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6A6B6D;
}
.dialog-footer{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px 0;
}
.dialog-footer .btn-info{ 
  width: 160px;
  height: 36px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid #E60039;
  margin: 0 10px;
}
.dialog-footer .submit-btn{
  color: #fff;
  background: #E60039;
}

.dialog-footer .cancel-btn{
  color: #E60039;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .dialog-content{
    width: 618px;
  }
  .btn-info{
    height: 36px;
  }
  .dialog-footer .submit-btn{

  }
}
@media screen and (max-width: 768px) {
  .dialog-content{
    width: calc( 100% - 20px);
  }
  .btn-info{
    height: 40px;
  }
  .dialog-footer .submit-btn{
    width: auto;
    padding: 0 22px;
  }
  .dialog-footer .cancel-btn{
    width: auto;
    padding: 0 22px;
  }
}