/* ===================================== */
/* 订购页面样式 */
/* ===================================== */

.order-header {
    text-align: center;
    padding: 6vw 4vw;
}

.order-title {
    font-size: 5.3vw;
    font-weight: bold;
    color: #eb403e;
    margin-bottom: 2vw;
    letter-spacing: 0.5vw;
}

.order-subtitle {
    font-size: 3.5vw;
    color: #666;
}

/* ===================================== */
/* 套餐卡片 */
/* ===================================== */
.packages {
    margin-top: 5vw;
    padding: 0 4vw;
    display: flex;
    flex-direction: column;
    gap: 4vw;
}

.package-card {
    position: relative;
    background: #fff;
    border-radius: 4vw;
    padding: 3vw;
    box-shadow: 0 2vw 6vw rgba(235, 64, 62, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.package-card:hover {
    border-color: #eb403e;
    transform: translateY(-1vw);
}

.package-card.active {
    border-color: #eb403e;
    box-shadow: 0 4vw 8vw rgba(235, 64, 62, 0.2);
}

.package-tag {
    position: absolute;
    top: 0;
    right: 4vw;
    background: linear-gradient(135deg, #f77472 0%, #eb403e 100%);
    color: #fff;
    font-size: 2.5vw;
    padding: 1vw 3vw;
    border-radius: 0 0 2vw 2vw;
    font-weight: bold;
}

.package-tag.hot {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
}

.package-tag.recommend {
    background: linear-gradient(135deg, #ff9f43 0%, #f39c12 100%);
}

.package-tag.super {
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
}

.package-duration {
    font-size: 3.5vw;
    color: #333;
    font-weight: bold;
    margin-bottom: 1.5vw;
}

.package-price {
    margin-bottom: 0.5vw;
}

.price-symbol {
    font-size: 4vw;
    color: #eb403e;
    font-weight: bold;
}

.price-value {
    font-size: 8vw;
    color: #eb403e;
    font-weight: bold;
}

.package-original-price {
    font-size: 2.8vw;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 1vw;
}

.package-discount {
    display: inline-block;
    background: linear-gradient(135deg, #ffeaea 0%, #ffd6d6 100%);
    color: #eb403e;
    font-size: 2.5vw;
    padding: 0.5vw 1.5vw;
    border-radius: 2vw;
    margin-bottom: 2.5vw;
}

.package-features {
    margin-bottom: 2.5vw;
}

.package-features p {
    font-size: 2.8vw;
    color: #666;
    line-height: 1.8;
    padding-left: 3vw;
    position: relative;
}

.package-features p::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.package-btn {
    width: 100%;
    height: 12vw;
    background: linear-gradient(135deg, #f7f7f7 0%, #e8e8e8 100%);
    color: #333;
    border: none;
    border-radius: 6vw;
    font-size: 4vw;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-btn:hover {
    background: linear-gradient(135deg, #e8e8e8 0%, #d8d8d8 100%);
}

.package-btn.primary {
    background: linear-gradient(135deg, #eb403e 0%, #f77472 100%);
    color: #fff;
}

.package-btn.primary:hover {
    background: linear-gradient(135deg, #e03a38 0%, #eb6664 100%);
    transform: scale(1.02);
}

/* ===================================== */
/* 权益说明 */
/* ===================================== */
.benefits {
    /* margin-top: 8vw; */
    padding: 6vw 4vw;
    background: #fff;
}

.benefits-title {
    font-size: 4vw;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 6vw;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4vw;
}

.benefit-item {
    display: flex;
    align-items: center;
    border-radius: 2vw;
}

.benefit-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-item span {
    font-size: 3vw;
    color: #333;
}

/* ===================================== */
/* 常见问题 */
/* ===================================== */
.faq {
    margin-top: 6vw;
    padding: 6vw 4vw;
    background: #fff;
}

.faq-title {
    font-size: 4vw;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 6vw;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 4vw;
}

.faq-item {
    border-radius: 2vw;
    overflow: hidden;
    background: #f8f8f8;
}

.faq-question {
    padding: 4vw;
    font-size: 3.2vw;
    font-weight: bold;
    color: #333;
    background: #fff;
}

.faq-answer {
    padding: 4vw;
    font-size: 3vw;
    color: #666;
    line-height: 1.8;
}

/* ===================================== */
/* 服务协议 */
/* ===================================== */
.agreement {
    padding: 6vw 4vw;
    font-size: 2.8vw;
    color: #666;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1vw;
}

.agreement input[type="checkbox"] {
    width: 4vw;
    height: 4vw;
    cursor: pointer;
}

.agreement label {
    cursor: pointer;
}

.agreement a {
    color: #eb403e;
    text-decoration: none;
}

.agreement a:hover {
    text-decoration: underline;
}

/* ===================================== */
/* 支付提示 */
/* ===================================== */
.payment-info {
    padding: 4vw 4vw 20vw;
    text-align: center;
}

.payment-info p {
    font-size: 2.8vw;
    color: #999;
}

/* ===================================== */
/* 支付弹窗 */
/* ===================================== */
.payment-modal {
    padding: 6vw !important;
    background: #fff !important;
    border-radius: 4vw !important;
    width: 85vw !important;
}

.payment-modal-title {
    font-size: 4.5vw;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 6vw;
}

.payment-modal-price {
    text-align: center;
    margin-bottom: 6vw;
}

.payment-modal-price span {
    font-size: 7vw;
    color: #eb403e;
    font-weight: bold;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 3vw;
}

.payment-method {
    display: flex;
    align-items: center;
    padding: 4vw;
    background: #f8f8f8;
    border-radius: 2vw;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: #eb403e;
}

.payment-method.active {
    border-color: #eb403e;
    background: #fff5f5;
}

.payment-method img {
    width: 10vw;
    height: 10vw;
    margin-right: 3vw;
}

.payment-method span {
    font-size: 3.5vw;
    color: #333;
}

.payment-modal-btn {
    width: 100%;
    height: 12vw;
    background: linear-gradient(135deg, #eb403e 0%, #f77472 100%);
    color: #fff;
    border: none;
    border-radius: 6vw;
    font-size: 4vw;
    font-weight: bold;
    cursor: pointer;
    margin-top: 6vw;
}

.payment-modal-btn:hover {
    opacity: 0.9;
}