.page5-tips-card {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 52vh;
    z-index: 150;
    width: 85%;
    max-width: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(100, 180, 255, 0.2);
    background: linear-gradient(to bottom, rgba(7, 97, 189, 0.6) 0%,rgba(100, 180, 255, 0.6) 100%);
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.p5-tips-text-content{
    color: #fff;
    font-size: 2.2rem;
    text-align: center;
    font-weight: bold;
}

/* 加载动画容器 */
.p5-loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* 圆形转动加载动画 */
.spinner-circle {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Page3 响应式调整 */
@media (max-width: 480px) {
    .page5-tips-card {
        width: 90%;
        height: 250px;
    }
    
    .spinner-circle {
        width: 50px;
        height: 50px;
        border-width: 3px;
    }
}