.cw-tip-fade-enter-active,
.cw-tip-fade-leave-active {
    transition: opacity .5s
}

.cw-tip-fade-enter,
.cw-tip-fade-leave-to {
    opacity: 0
}

.v-tip-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: black;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.v-tip {
    font-family: "SimSun";
    font-size: 12px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.v-tip__header {
    line-height: 3;
    position: relative;
    padding-left: 15px;
}

.v-tip__close {
    font-family: "Arial";
    line-height: 3;
    position: absolute;
    right: 15px;
    top: 0;
    cursor: pointer;
    font-weight: 700;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.2;
    margin-top: -1px;
}