/* 会员状态样式 */
.user-status {
    font-size: 14px;
    color: #ffffff;
    margin-top: 5px;
    opacity: 0.9;
}

.user-status.member-active {
    color: #ffffff;
    font-weight: 500;
    opacity: 0.9;
}

/* 会员卡片样式 */
.profile-card {
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212,175,55,0.1), rgba(218,165,32,0.1));
    z-index: 0;
}

/* 支付按钮禁用状态 */
.test-pay-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #ccc;
}

.test-pay-button:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* 加载动画 */
.fa-spinner {
    margin-right: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spin {
    animation: spin 1s linear infinite;
} 