.dialog-box{
    display: none;

}
.dialog-shadow{
    position: fixed;
    top:0;
    left:0;
    right: 0;
    bottom: 0;
    z-index: 20;
    background-color: rgba(151,154,156,0.65);
}

.dialog-content{
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    padding: 10px;
    z-index: 30;
    background-color: #ffffff;
    width: 400px;
    max-height: 500px;
    min-height: 80px;
    border-radius: 5px;
    transition: .5s;
    -webkit-transition: .5s;
    -o-transition: .5s;
    -moz-transition: .5s;
    opacity: 1;
    transform: translate(0,0);
    -ms-transform: translate(0,0);		/* IE 9 */
    -webkit-transform: translate(0,0);	/* Safari and Chrome */
    -o-transform: translate(0,0);		/* Opera */
    -moz-transform: translate(0,0);		/* Firefox */
}
.dialog-content-show{
    opacity:0;
    transform: translate(0,-150%);
    -ms-transform: translate(0,-150%);		/* IE 9 */
    -webkit-transform: translate(0,-150%);	/* Safari and Chrome */
    -o-transform: translate(0,-150%);		/* Opera */
    -moz-transform: translate(0,-150%);		/* Firefox */
}
.dialog-content .content-item{
    flex:0 0 50%;
    padding: 10px;
    box-sizing: border-box;
    min-height:80px;
    overflow: auto;
}
.content-item + .content-item{
    border-left: 1px #cccccc solid;
}
@-moz-keyframes dothabottomcheck {
    0% {
        height: 0;
    }

    100% {
        height: 10px;
    }
}
@-webkit-keyframes dothabottomcheck {
    0% {
        height: 0;
    }

    100% {
        height: 10px;
    }
}
@keyframes dothabottomcheck {
    0% {
        height: 0;
    }

    100% {
        height: 10px;
    }
}
@keyframes dothatopcheck {
    0% {
        height: 0;
    }

    50% {
        height: 0;
    }

    100% {
        height: 20px;
    }
}
@-webkit-keyframes dothatopcheck {
    0% {
        height: 0;
    }

    50% {
        height: 0;
    }

    100% {
        height: 20px;
    }
}
@-moz-keyframes dothatopcheck {
    0% {
        height: 0;
    }

    50% {
        height: 0;
    }

    100% {
        height: 20px;
    }
}

.max-item button{
    width: 120px;
    height: 27px;
    line-height: 27px;
    border:none;
}
.max-item .ok{
    background-color:#da0043;
    color: #ffffff;
}
.haed{
    flex:0 0 100%;
    padding: 10px 0;
    background-color: #ffffff;
    text-align: center;
}
.shut{
    float:right;
    cursor: pointer;
    transition: .5s;
    font-size: 0;
    display: inline-block;
}
.shut:hover{
    transform-origin:50%;
    -ms-transform-origin:50%;
    -webkit-transform-origin:50%;
    -moz-transform-origin:50%;
    -o-transform-origin:50%;

    transform: scale(1.2);
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    -moz-transform: scale(1.2);
}
.dialog-content-action:last-child{
    opacity: 0;
    transform-origin:50%;
    -ms-transform-origin:50%; 		/* IE 9 */
    -webkit-transform-origin:50%;	/* Safari 和 Chrome */
    -moz-transform-origin:50%;		/* Firefox */
    -o-transform-origin:50%;		/* Opera */

    transform: scale(3);
    -ms-transform: scale(3);	/* IE 9 */
    -webkit-transform: scale(3);	/* Safari 和 Chrome */
    -o-transform: scale(3);	/* Opera */
    -moz-transform: scale(3);	/* Firefox */
}

.dialog-main{
    text-align: center;
}