.cw-modal-fade-enter-active,
.cw-modal-fade-leave-active {
    transition: opacity .5s
}

.cw-modal-fade-enter,
.cw-modal-fade-leave-to {
    opacity: 0
}

.v-modal-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: black;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.v-modal {
    font-family: "SimSun";
    font-size: 16px;
    position:absolute;
    background: #fff;
    border-radius: 5px;
    border:1px solid #9A9A9A;
    color:#666;
    box-sizing: border-box;
}

.v-modal-tool {
    line-height: 3;
    padding: 1px;
    padding-left: 15px;
    border-bottom: 1px solid #eee;
    cursor: move;
    height: 50px;
    overflow: hidden;
}

.v-modal-tile-default{
    text-align: left;
    width: calc(100% - 90px);
    float: left;
}

.v-modal-close-default {
    float: left;
    cursor: pointer;
    font-weight: 700;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.4;
    text-align:right;
    width: 90px;
}

.v-modal-body{
    overflow: auto;
}

.v-modal-body-default{
    padding: 9px;
    padding-left: 15px;
}

.clear{
    clear: both;
}

.v-modal-zoom-leftUpper{
    width: 6px;
    height: 6px;
    position:absolute;
    left: 0px;
    top: 0px;
    cursor:nw-resize;
}

.v-modal-zoom-top{
    position:absolute;
    left: 6px;
    top: 0px;
    right: 6px;
    height: 3px;
    cursor:n-resize;
}

.v-modal-zoom-rightUpper{
    width: 6px;
    height: 6px;
    position:absolute;
    right: 0px;
    top: 0px;
    cursor:ne-resize;
}

.v-modal-zoom-left{
    position:absolute;
    left: 0px;
    top: 6px;
    width: 3px;
    bottom: 6px;
    cursor:w-resize;
}

.v-modal-zoom-right{
    position:absolute;
    right: 0px;
    top: 6px;
    width: 3px;
    bottom: 6px;
    cursor:e-resize;
}

.v-modal-zoom-leftLower{
    width: 6px;
    height: 6px;
    position:absolute;
    left: 0px;
    bottom: 0px;
    cursor:sw-resize;
}

.v-modal-zoom-bottom{
    position:absolute;
    left: 6px;
    bottom: 0px;
    right: 6px;
    height: 3px;
    cursor:s-resize;
}

.v-modal-zoom-lowerRight{
    width: 6px;
    height: 6px;
    position:absolute;
    right: 0px;
    bottom: 0px;
    cursor:se-resize;
}