/**
 * 支付宝支付样式
 */
.payment-options {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.payment-option {
    flex: 1;
    text-align: center;
    padding: 15px;
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.payment-option.active {
    border-color: #1890ff;
    background-color: #f0f9ff;
}

.payment-option.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    filter: grayscale(100%);
}

.payment-option img {
    height: 40px;
    margin-bottom: 10px;
}

.payment-option span {
    display: block;
    font-size: 14px;
}

.coming-soon {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #ff4d4f;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 10px;
}

.payment-form {
    padding: 15px;
}

.package-list {
    max-height: 400px;
    overflow-y: auto;
}

.package-item {
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.package-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.package-item h4 {
    margin-top: 0;
    color: #333;
}

.package-item .price {
    font-size: 18px;
    color: #f5222d;
    font-weight: bold;
    margin: 10px 0;
}

.package-item .desc {
    color: #666;
    margin-bottom: 15px;
    height: 60px;
    overflow: hidden;
}

.select-package {
    width: 100%;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .payment-options {
        flex-direction: column;
    }
    
    .payment-option {
        margin-bottom: 10px;
    }
}
