/*遮罩提示*/
.vd-mask{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ebf0f6;
    opacity: 0.2;
    z-index: 99;
}
.vd-tips{
    padding: 18px 0;
    background: #535962;
    border-radius: 6px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#ebf0f6;
    font-size: 15px;
    position: fixed;
    left: calc(50% - 110px);
    top: 40%;
    z-index: 100;
}
.vd-tips-icon{
    width: 30px;
    height: 30px;
    margin-right: 17px;
}
.vd-tips-suc{
    background: url(../img/Copy-success.png) no-repeat;
}
.vd-tips-err{
    background: url(../img/Load-failed.png) no-repeat;
}
.vd-tips-load{
    background: url(../img/loading.gif) no-repeat;
}
.vd-tips-prompt{
    background: url(../img/prompt.png) no-repeat;
}
.vd-tips-text{
    max-width: 110px;
}

[v-cloak]{
    display: none;
}

.vd-left{
    float: left;
}
.vd-right{
    float: right;
}

.label-hide{
    display: none!important;
}
/*弹窗*/
.ts-prompt-mask{
    position: fixed;
    /*width: 100%;*/
    /*height: 100%;*/
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(235, 240, 246, 0.2);;
    z-index: 99;
}
.ts-prompt{
    /*margin: 0 auto;*/
    /*margin-top: 120px;*/
    z-index: 100;
    font-size: 14px;
    position: fixed;
    top:120px;
    left:calc(50% - 300px);
}
.ts-prompt-sm{
    width: 660px;
    height:237px;
}

.ts-prompt-mid{
    width: 630px;
}

.ts-prompt-title{
    background-image: linear-gradient(5deg,
    #7167fe 0%,
    #7066fd 100%),
    linear-gradient(
            #edf4fb,
            #edf4fb);    background-blend-mode: normal, normal;
    padding: 17px 30px;
    color:#fff;

    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.ts-prompt-title>div:first-child{
    float: left;
}
.ts-prompt-title>div:last-child{
    float: right;
    cursor: pointer;
}
.ts-prompt-content{
    padding: 30px 38px;
    background: #fff;
    box-shadow: 0px 1px 3px 0px rgba(231, 235, 238, 0.46);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    border: solid 1px #e7ebee;
}
.ts-prompt-icon{
    background: url(../img/notice.png) no-repeat;
    width: 16px;
    height: 20px;
}
.ts-prompt-act{
    margin-bottom: 60px;
    display: flex;

}
.ts-prompt-act>div{
    float: left;
    margin-right: 15px;
}
.ts-prompt-act>div:last-child{
    margin-right: 0;
    font-size: 14px;
}
.ts-prompt-act-text{
    color: #383838;
}
.ts-prompt-mes{
    font-size: 14px;
    color: #383838;
    margin-bottom: 53px;
}
.ts-prompt-warn{
    color: #ff4c74;
}
.ts-prompt-btn{
    padding: 0 158px;
}
