.main-content {
    padding: 2rem 0;
    background: #f5f5f5;
}

.payment-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.golden-title {
    font-size: 2.5rem;
    color: #8B4513;
    text-align: center;
    margin-bottom: 2rem;
    font-family: "叶根友行书繁", sans-serif;
}

.booking-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 4rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #666;
}

.step.active .step-number {
    background: #8B4513;
    color: #fff;
}

.section-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.ticket-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.ticket-option:hover {
    border-color: #8B4513;
    background: #fff9f5;
}

.ticket-info h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.ticket-price {
    font-size: 1.6rem;
    color: #e74c3c;
    font-weight: bold;
}

.discount-price {
    color: #ff6b6b;
    font-weight: bold;
    margin-left: 10px;
    font-size: 1.4rem;
}

.ticket-desc {
    color: #666;
    font-size: 1.1rem;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: #8B4513;
    color: #fff;
    border-color: #8B4513;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.8rem;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.2rem;
    border: 2px solid #ddd;
    border-radius: 12px;
    transition: all 0.3s ease;
}

input:focus {
    border-color: #8B4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.payment-options {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.payment-option {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid #ddd;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option.active {
    border-color: #8B4513;
    background: #fff9f5;
}

.payment-option img {
    height: 40px;
    width: auto;
}

.submit-button {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.4rem;
    color: #fff;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2);
}