/* tipMask CSS */
.tipMask {
    width: 100%;
    height: 100%;
    background: rgba(18, 38, 63, 0.85);
    backdrop-filter: blur(8px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
}
.hide {
    display: none;
}
.tipMask .cont {
    width: 75%;
    padding: 24px 20px;
    border-radius: 16px;
    background: linear-gradient(145deg, #1A2C42 0%, #12263F 100%);
    position: absolute;
    top: 30%;
    left: 12.5%;
    transform: translateX(0);
    text-align: center;
    border: 1px solid rgba(201, 169, 98, 0.3);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.tipMask .cont .title {
    font-size: 18px;
    line-height: 26px;
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 8px;
}
.tipMask .cont .stitle {
    font-size: 14px;
    line-height: 22px;
    color: #8B9DB5;
    margin-top: 12px;
}
.tipMask .cont .confirm {
    width: 100%;
    height: 44px;
    background: linear-gradient(135deg, #C9A962 0%, #E5D4A1 100%);
    border-radius: 22px;
    font-size: 16px;
    color: #12263F;
    line-height: 44px;
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.tipMask .cont .confirm:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(201, 169, 98, 0.4);
}
.confirm {
    background: linear-gradient(135deg, #C9A962 0%, #E5D4A1 100%) !important;
}

.hide {
    display: none;
}

.tipMask .cont {
    width: 60%;
    padding: 5% 10%;
    border-radius: 5px;
    background-color: #FFFFFF;
    position: absolute;
    top: 30%;
    left: 10%;
    text-align: center;
}

.tipMask .cont .title {
    font-size: .34rem;
    line-height: .48rem;
    color: #191919;
}

.tipMask .cont .stitle {
    font-size: .3rem;
    line-height: .42rem;
    color: #606060;
    margin-top: .36rem;
}

.tipMask .cont .confirm {
    width: 100%;
    height: .88rem;
    background-color: #EF6F6C;
    border-radius: 4px;
    font-size: .34rem;
    color: #fff;
    line-height: .88rem;
    text-align: center;
    margin-top: .5rem;
}
.confirm {
    background-color: #0084FF !important;
}