/* 移动端微信浏览器提示样式 */
.browser-tip-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    display: none;
}

.browser-tip-content {
    position: absolute;
    top: 7.5%;
    left: 50%;
    transform: translate(-50%, 0);
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 90%;
    width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.browser-tip-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.browser-tip-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.browser-tip-text {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}
