/* 退款政策页面专用样式 */

/* Header客服按钮样式 */
.header-actions {
    display: flex;
    align-items: center;
}

.customer-service-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.customer-service-btn:hover {
    background: rgba(0, 123, 255, 0.2);
    transform: scale(1.05);
}

.customer-service-btn img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.policy-content {
    padding: 0 16px 32px;
}

.policy-section {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
}

.policy-section h2 {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #007bff;
    padding-bottom: 16px;
}

/* 退款项目样式 */
.refund-item {
    margin-bottom: 20px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.refund-item:last-child {
    margin-bottom: 0;
}

.refund-item h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.refund-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* 流程步骤样式 */
.process-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.step-number {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.step-text {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* 重要提示样式 */
.important-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-left: 4px solid #fdcb6e;
    border-radius: 8px;
    padding: 16px;
    color: #856404;
    font-size: 15px;
    line-height: 1.6;
}

.important-note strong {
    color: #333;
    font-weight: 600;
}

/* 响应式样式 */
@media (max-width: 768px) {
    .customer-service-btn {
        width: 36px;
        height: 36px;
    }
    
    .customer-service-btn img {
        width: 28px;
        height: 28px;
    }
    
    .policy-content {
        padding: 0 12px 24px;
    }
    
    .policy-section {
        padding: 20px 16px;
        margin-bottom: 16px;
    }
    
    .policy-section h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .refund-item {
        padding: 12px;
        margin-bottom: 16px;
    }
    
    .refund-item h3 {
        font-size: 16px;
    }
    
    .refund-item p {
        font-size: 14px;
    }
    
    .process-step {
        padding: 12px;
        gap: 12px;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .step-text {
        font-size: 14px;
    }
    
    .important-note {
        padding: 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .customer-service-btn {
        width: 32px;
        height: 32px;
    }
    
    .customer-service-btn img {
        width: 25px;
        height: 25px;
    }
    
    .policy-content {
        padding: 0 8px 20px;
    }
    
    .policy-section {
        padding: 16px 12px;
        margin-bottom: 12px;
    }
    
    .policy-section h2 {
        font-size: 18px;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
    
    .refund-item {
        padding: 10px;
        margin-bottom: 12px;
    }
    
    .refund-item h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .refund-item p {
        font-size: 13px;
    }
    
    .process-list {
        gap: 12px;
    }
    
    .process-step {
        padding: 10px;
        gap: 10px;
    }
    
    .step-number {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .step-text {
        font-size: 13px;
    }
    
    .important-note {
        padding: 10px;
        font-size: 13px;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.policy-section {
    animation: fadeInUp 0.6s ease-out;
}

.policy-section:nth-child(1) { animation-delay: 0s; }
.policy-section:nth-child(2) { animation-delay: 0.1s; }
.policy-section:nth-child(3) { animation-delay: 0.2s; }
