.wg-dialog {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
  box-sizing: border-box;
}
.wg-dialog * {
  box-sizing: border-box;
}
.wg-dialog--overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
.wg-dialog-common  .wg-dialog--container{
  z-index: 1000;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 328px;
  min-height: 152px;
  padding-top: 40px;
  border-radius: 20px;
}
.wg-dialog-common .wg-dialog-close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 12px;
  height: 12px;
  background: url(../images/chinaums/web_wap_close.png) center 0 no-repeat;
  font-size: 0;
  line-height: 0;
}
.wg-dialog-common .wg-dialog-tit {
  font: 500 16px/16px "microsoft yahei";
  color: #333;
  text-align: center;
}
.wg-dialog-common .wg-dialog-opt {
  text-align: center;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  margin-top: 20px;
}
.wg-dialog-common .wg-dialog-opt .wg-dialog-btn {
  font: 500 14px/36px "microsoft yahei";
  color: #333;
  display: inline-block;
  width: 128px;
  height: 36px;
  border: 1px solid #D5D5D5;
  text-align: center;
  border-radius: 20px;
  background: #fff;
  color: #666;
  margin: 0 5px;
}
.wg-dialog-common .wg-dialog-opt .wg-dialog-btn-open {
  color: #fff;
  background: #F38332;
  border-color: #F38332;
}
