/* 支付相关样式 */

/* 支付选项卡 */
.payment-tabs {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.payment-tabs .tab {
    padding: 0.8rem 1.2rem;
    margin: 0 0.5rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.payment-tabs .tab:hover {
    color: #4285f4;
}

.payment-tabs .tab.active {
    color: #4285f4;
    border-bottom: 2px solid #4285f4;
}

/* 支付内容区 */
.payment-content {
    margin: 1.5rem 0;
    min-height: 150px;
}

.tab-content {
    display: none;
    padding: 1rem;
    border-radius: 5px;
}

.tab-content.active {
    display: block;
}

/* PayPal按钮容器 */
#paypal-button-container {
    min-height: 100px;
    margin-bottom: 1rem;
}

/* Stripe等支付按钮 */
.primary-button.payment-button {
    width: 100%;
    padding: 12px 16px;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* 支付安全提示 */
.payment-security-note {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 1.5rem;
}

.payment-security-note i {
    color: #4caf50;
    margin-right: 0.5rem;
}

/* 支付成功消息 */
.payment-success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    text-align: center;
    z-index: 1100;
    max-width: 400px;
    width: 90%;
    animation: fadeIn 0.3s ease;
}

.payment-success-message i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.payment-success-message h2 {
    color: #28a745;
    margin-bottom: 1rem;
}

.payment-success-message p {
    margin: 0.5rem 0;
    color: #333;
    font-size: 1.1rem;
}

.payment-success-message .primary-button {
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
}

/* 动画效果 */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 移动端适配 */
@media (max-width: 768px) {
    .payment-tabs {
        flex-wrap: wrap;
    }
    
    .payment-tabs .tab {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .payment-success-message {
        max-width: 300px;
        padding: 1.5rem;
    }
} 