/* 轻提示 */

.Tan{
    width:20%;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0px;
    flex-direction: column;
    left:40%;
    z-index:9999999;
}
.Tantx{
    width:100%;
    padding:10px 0px;
    background:#ebeef5;
    font-size: 16px;
    color: rgb(167, 164, 164);
    margin: 0px auto;
    margin-top:20px;
    text-align: center;
    border-radius:5px;
    animation:Tan 0.5s;
    transition-property: all;
    transition-duration: 1s;
}
@keyframes Tan{
    0%   {margin-top:-100px;opacity:0.1;}
    100% { margin-top:20px;opacity:1;}
}
/* 按钮 */
.PromptBox{
    width:100%;
    height:100%;
    background: rgba(0, 0, 0,0.5);
    position: fixed;
    top: 0px;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}
.PromptBoxtx{
    width:30%;
    background: white;
    border-radius: 5px;
    padding:10px 0px;
    transition-property: all;
    transition-duration: 0.5s;
    transform:scale(0.5);
}
.Promtit{
    width:95%;
    margin: 0px auto;
    font-size:18px;
    color: teal;
}
.Promtx{
    width:95%;
    font-size:16px;
    color: teal;
    margin: 0px auto;
    margin-top: 20px;
}
.Proman{
    width:95%;
    font-size:12px;
    display: flex;
    justify-content:space-between;
    margin-top: 20px;
}
.Proman>div{
    width:50%;
    display: flex;
    justify-content: space-between;
}
.Proma{
    width:30% !important ;
}
.Prantwo{
    width:45%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #409eff;
    border-color: #409eff;
    cursor: pointer;
    color: white;
}
.Pranone{
    width:45%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #409eff;
    border-color: #c6e2ff;
    background-color: #ecf5ff;
    cursor: pointer;
}
/* 右弹 */
.Rtan {
    width: 20%;
    background: rgb(255, 255, 255);
    position: fixed;
    right:-100px;
    top: 20px;
    transition-property: all;
    transition-duration: 0.5s;
    box-shadow: 0px 0px 5px silver;
    border-radius:10px;
    opacity: 1;
    padding:20px 0px;
    font-size: 16px;
    z-index: 9999999;
}
.Rtit{
    width:90%;
    margin: 0px auto;
    color: #303133;
    font-weight: bold;
}
.Rtx{
    width:90%;
    font-size: 14px;
    margin: 0px auto;
    margin-top: 10px;
    color: #606266;
}