/* /static/css/QQwxtc.css */
#browser-tip {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    color: #fff;
    text-align: center;
    padding: 20% 20px 0;
    box-sizing: border-box;
}

.tip-content {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    max-width: 500px;
    margin: 0 auto;
    color: #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.tip-icon {
    font-size: 60px;
    color: #ff4d4f;
    margin-bottom: 20px;
}

.tip-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ff4d4f;
}

.tip-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #666;
}

.tip-steps {
    text-align: left;
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid #1890ff;
}

.tip-steps li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.tip-btn {
    display: inline-block;
    background: #1890ff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    margin-top: 10px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.tip-btn:hover {
    background: #40a9ff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(24, 144, 255, 0.4);
}