.dialog-face {
    position: fixed;
    background: #000;
    height: 100%;
    width: 100%;
    z-index: 1000000;
    top: 0;
    left: 0;

    -webkit-animation-duration: 500ms;
    -moz-animation-duration: 500ms;
    -o-animation-duration: 500ms;
    animation-duration: 500ms;
}

.dialog-face.slipBottom[opacity="0"] {
    display: none;
}

.dialog-face.slipUp {
    opacity: 0.7;
    -webkit-animation-name: dialogFaceSlipToUp;
    -moz-animation-name: dialogFaceSlipToUp;
    -o-animation-name: dialogFaceSlipToUp;
    animation-name: dialogFaceSlipToUp;
}

.dialog-face.slipBottom {
    opacity: 0;
    visibility: hidden;
    -webkit-animation-name: dialogFaceSlipToBottom;
    -moz-animation-name: dialogFaceSlipToBottom;
    -o-animation-name: dialogFaceSlipToBottom;
    animation-name: dialogFaceSlipToBottom;
}

.dialog-root {
    position: fixed;
    z-index: 1000001;
    left: 50%;

    -webkit-animation-duration: 500ms;
    -moz-animation-duration: 500ms;
    -o-animation-duration: 500ms;
    animation-duration: 500ms;
    -webkit-perspective: 1300px;
    -moz-perspective: 1300px;
    perspective: 1300px;
}

.dialog-root.slipUp {
    top: 50%;
    opacity: 1;

    -webkit-animation-name: dialogSlipToUp;
    -moz-animation-name: dialogSlipToUp;
    -o-animation-name: dialogSlipToUp;
    animation-name: dialogSlipToUp;
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.dialog-root.slipBottom {
    top: 100%;
    opacity: 0.3;
    -webkit-animation-duration: 500ms;
    -moz-animation-duration: 500ms;
    -o-animation-duration: 500ms;
    animation-duration: 500ms;
    -webkit-animation-name: dialogSlipToBottom;
    -moz-animation-name: dialogSlipToBottom;
    -o-animation-name: dialogSlipToBottom;
    animation-name: dialogSlipToBottom;
    -webkit-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}


.dialog-wrapper {
    background: #fff;
    width: 560px;
    height: 490px;
    overflow: hidden;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;

    -webkit-animation-duration: 500ms;
    -moz-animation-duration: 500ms;
    -o-animation-duration: 500ms;
    animation-duration: 500ms;
    -webkit-transform-origin: 50% 100%;
    -moz-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -o-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    padding: 40px 90px;
    position: relative;
}

.dialog-close{
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 30px;
    top: 30px;
}
.dialog-close img{
    width: 100%;
}
.dialog-line{
    width: 100%;
    height: 1px;
    background: #E8E9EB;
    margin-top: 26px;
}
.dialog-cont{
    padding-top: 20px;
}
.dialog-list{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dialog-list li{
    /* width: 50%; */
    /* margin-right: 30px; */
    margin-top: 30px;
}
.dialog-list li:nth-child(2n){
    margin-right: 0;
}
.dialog-input{
    width: 270px;
    height: 36px;
    line-height: 36px;
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #CCCCCC;
    outline: none;
    text-indent: 10px;
}
.dialog-btn{
    display: block;
    width: 200px;
    height: 58px;
    line-height: 58px;
    text-align: center;
    color: #fff;
    background: #2569FF;
    border-radius: 4px;
    margin: 30px auto 0 auto;
    cursor: pointer;
}
.dialog-wrapper.slipUp {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-animation-name: contentSlipToUp;
    -moz-animation-name: contentSlipToUp;
    -o-animation-name: contentSlipToUp;
    animation-name: contentSlipToUp;
}

.dialog-wrapper.slipBottom {
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    -o-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-animation-name: contentSlipToBottom;
    -moz-animation-name: contentSlipToBottom;
    -o-animation-name: contentSlipToBottom;
    animation-name: contentSlipToBottom;
}

/* ---------------------动画关键帧 -------------------*/

@keyframes dialogFaceSlipToUp {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 0.7;
    }
}

@keyframes dialogFaceSlipToBottom {
    0% {
        opacity: 0.7;
        visibility: visible;
    }

    100% {
        visibility: hidden;
        opacity: 0;
    }
}

@keyframes dialogSlipToUp {
    0% {
        top: 100%;
        opacity: 0.3;
    }

    100% {
        top: 50%;
        opacity: 1;
    }
}

@keyframes dialogSlipToBottom {
    0% {
        top: 50%;
        opacity: 1;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    100% {
        top: 100%;
        opacity: 0.3;
        -webkit-transform: translate(-50%, 0);
        -moz-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        -o-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
}

@keyframes contentSlipToUp {
    0% {
        -webkit-transform: rotateX(90deg);
        -moz-transform: rotateX(90deg);
        -ms-transform: rotateX(90deg);
        -o-transform: rotateX(90deg);
        transform: rotateX(90deg);
    }

    100% {
        -webkit-transform: rotateX(0deg);
        -moz-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        -o-transform: rotateX(0deg);
        transform: rotateX(0deg);
    }
}

@keyframes contentSlipToBottom {
    0% {
        -webkit-transform: rotateX(0deg);
        -moz-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        -o-transform: rotateX(0deg);
        transform: rotateX(0deg);
    }

    60% {
        -webkit-transform: rotateX(60deg);
        -moz-transform: rotateX(60deg);
        -ms-transform: rotateX(60deg);
        -o-transform: rotateX(60deg);
        transform: rotateX(60deg);
    }

    100% {
        -webkit-transform: rotateX(90deg);
        -moz-transform: rotateX(90deg);
        -ms-transform: rotateX(90deg);
        -o-transform: rotateX(90deg);
        transform: rotateX(90deg);
    }
}