
.fdc-msgbox {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  background-color: #fff;
  width: 85%;
  border-radius: 3px;
  font-size: 32px;
  /*px*/
  -webkit-user-select: none;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: .2s;
  transition: .2s;
}
.fdc-msgbox-header {
    padding: 30px 0 0;
}
.fdc-msgbox-content {
    padding: 20px 40px 30px;
    border-bottom: 1px solid #ddd;
    /*no*/
    min-height: 72px;
    position: relative;
}
.fdc-msgbox-input {
    padding-top: 30px;
}
.fdc-msgbox-input input {
      border: 1px solid #dedede;
      /*no*/
      border-radius: 5px;
      padding: 8px 10px;
      width: 100%;
      outline: none;
}
.fdc-msgbox-input input.invalid {
      border-color: #ff4949;
}
.fdc-msgbox-input input.invalid:focus {
        border-color: #ff4949;
}
.fdc-msgbox-errormsg {
    color: red;
    font-size: 24px;
    /*px*/
    min-height: 36px;
    margin-top: 4px;
}
.fdc-msgbox-title {
    text-align: center;
    padding-left: 0;
    margin-bottom: 0;
    font-size: 32px;
    font-weight: 700;
    color: #333;
}
.fdc-msgbox-message {
    color: #999;
    margin: 0;
    text-align: center;
    line-height: 72px;
}
.fdc-msgbox-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 80px;
    line-height: 80px;
}
.fdc-msgbox-btn {
    font-size: 32px;
    /*px*/
    line-height: 70px;
    display: block;
    background-color: #fff;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0;
    border: 0;
}
.fdc-msgbox-btn:focus {
      outline: none;
}
.fdc-msgbox-btn:active {
      background-color: #fff;
}
.fdc-msgbox-cancel {
    width: 50%;
    border-right: 1px solid #ddd;
    /*no*/
}
.fdc-msgbox-cancel:active {
      color: #000;
}
.fdc-msgbox-confirm {
    color: #1B6BD2;
    width: 50%;
}
.fdc-msgbox-confirm:active {
      color: #1B6BD2;
}
.msgbox-bounce-enter {
  opacity: 0;
  -webkit-transform: translate3d(-50%, -50%, 0) scale(0.7);
          transform: translate3d(-50%, -50%, 0) scale(0.7);
}
.msgbox-bounce-leave-active {
  opacity: 0;
  -webkit-transform: translate3d(-50%, -50%, 0) scale(0.9);
          transform: translate3d(-50%, -50%, 0) scale(0.9);
}

.v-modal-enter {
  -webkit-animation: v-modal-in .2s ease;
          animation: v-modal-in .2s ease;
}
.v-modal-leave {
  -webkit-animation: v-modal-out .2s ease forwards;
          animation: v-modal-out .2s ease forwards;
}
@-webkit-keyframes v-modal-in {
0% {
    opacity: 0;
}
100% {
}
}
@keyframes v-modal-in {
0% {
    opacity: 0;
}
100% {
}
}
@-webkit-keyframes v-modal-out {
0% {
}
100% {
    opacity: 0;
}
}
@keyframes v-modal-out {
0% {
}
100% {
    opacity: 0;
}
}
.v-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: #000;
}
