:root {
    --blue-1: #0B2148;
    --blue-2: #17345F;
    --bg-deep: #0E1C36;
    --gold-1: #E9C167;
    --gold-2: #C9962D;
    --ink: #1F2A37;
    --muted: #9AA4B2;
    --radius: 16px;
    --shadow: 0 24px 48px rgba(0, 0, 0, .25)
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

.order {
    margin: 0;
    min-height: 100%;
    color: #E6EDF6;
    background: radial-gradient(1200px 600px at 20% -10%, rgba(31, 162, 255, .06), transparent 60%), radial-gradient(1200px 600px at 100% 10%, rgba(233, 193, 103, .05), transparent 60%), linear-gradient(180deg, #0C1D3A 0%, #0A1324 100%);
    font-family: Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft Yahei", system-ui, -apple-system, Arial, sans-serif;
    -webkit-font-smoothing: antialiased
}

h1,
h2,
h3 {
    font-family: "Noto Serif SC", "Source Han Serif SC", serif;
    letter-spacing: .02em;
    margin: 0
}

.order a {
    color: var(--gold-1);
    text-decoration: none
}

.order .container {
    max-width: 1200px;
    padding: 10px 24px;
    margin: 0 auto
}

.order .header {
    background: linear-gradient(90deg, var(--blue-1) 0%, var(--blue-2) 100%);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: var(--shadow)
}

.order .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0
}

.order .brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    font-size: 20px
}

.order .brand-badge {
    width: 10px;
    height: 24px;
    background: linear-gradient(180deg, var(--gold-1), var(--gold-2));
    border-radius: 4px
}

.order .nav a {
    color: #C4D1E6;
    margin-left: 20px;
    font-size: 14px
}

.order .stepper {
    display: flex;
    gap: 16px;
    align-items: center;
    /* margin: 20px 0 0 */
    padding-top: 10px;
}

.order .step {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #A9B6CD;
    font-size: 14px
}

.order .dot {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 700
}

.order .step.done .dot {
    background: linear-gradient(180deg, var(--gold-1), var(--gold-2));
    color: #12213f
}

.order .step.active .dot {
    background: linear-gradient(180deg, var(--gold-2), var(--gold-1));
    color: #12213f;
    box-shadow: 0 0 0 3px rgba(233, 193, 103, .25)
}

.order .sep {
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, transparent, rgba(233, 193, 103, .6), transparent)
}

.order .hero {
    padding: 64px 0 24px
}

.order .hero-wrap {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center
}

.order .card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    border: 1px solid rgba(233, 193, 103, .18);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(6px)
}

.order .hero-card {
    padding: 36px
}

.order .badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 18px 0
}

.order .badge {
    background: rgba(233, 193, 103, .12);
    color: #F7E7BF;
    border: 1px solid rgba(233, 193, 103, .35);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px
}

.order .price {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin: 18px 0 12px
}

.order .price .yen {
    font-size: 28px;
    color: var(--gold-1)
}

.order .price .num {
    font-size: 64px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(180deg, var(--gold-1), var(--gold-2));
    -webkit-background-clip: text;
    color: transparent
}

.order .cta {
    margin-top: 12px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.order .btn {
    padding: 14px 22px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    color: #12213f;
    background: linear-gradient(180deg, var(--gold-1), var(--gold-2));
    box-shadow: 0 10px 24px rgba(233, 193, 103, .35), inset 0 1px 0 rgba(255, 255, 255, .35);
    transition: transform .2s ease, box-shadow .2s ease
}

.order .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(233, 193, 103, .5), inset 0 1px 0 rgba(255, 255, 255, .45)
}

.order .btn-ghost {
    background: transparent;
    color: #D8E2F1;
    border: 1px solid rgba(233, 193, 103, .35)
}

.order .values {
    margin: 34px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.order .value {
    padding: 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08)
}

.order .experts {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 18px
}

.order .experts img {
    width: 330px;
    border-radius: 12px;
    box-shadow: var(--shadow)
}

.order .experts .meta {
    flex: 1
}

.order .experts .tag {
    display: inline-block;
    padding: 6px 10px;
    border: 1px solid rgba(233, 193, 103, .45);
    border-radius: 999px;
    color: #F7E7BF;
    margin-bottom: 12px;
    font-size: 14px;
}

.order .section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 30px 0 12px
}

.order .section-title .bar {
    width: 6px;
    height: 24px;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--gold-1), var(--gold-2))
}

.order .compliance {
    font-size: 12px;
    color: #B8C5DA;
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 24px;
    padding-top: 16px
}

.order .compliance .link {
    display: inline-block;
    margin-left: 6px;
    padding: 3px 8px;
    border-radius: 999px;
    border: 1px solid rgba(233, 193, 103, .4);
    color: #F7E7BF
}

.order .receipt {
    padding: 22px;
    margin-top: 18px
}

.order .row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.order .kv {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 10px 12px;
    border-radius: 10px
}

.order .help {
    color: #A9B6CD;
    font-size: 12px
}

.order .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 18px
}

.course-card {
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(233, 193, 103, .18);
    background: rgba(255, 255, 255, .04);
    position: relative;
    overflow: hidden
}

.course-card .poster {
    aspect-ratio: 16/9;
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .35);
    transform: perspective(800px) rotateY(-1.5deg)
}

.course-card .title-card {
    margin: 10px 0 6px;
    font-weight: 700
}

.order .small {
    font-size: 12px;
    color: #A9B6CD
}

.order .service {
    padding-top: 0;
    margin-bottom: 10px;
}

.course-card .watch {
    display: flex;
    /* justify-content: flex-end */
}

.watch .btn {
    padding: 10px 14px;
    font-size: 14px
}

.reveal {
    opacity: 0;
    transform: translateY(24px)
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
    transition: all .36s cubic-bezier(.2, .7, .2, 1)
}

.glow {
    position: relative
}

.glow::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
    transform: translateX(-100%)
}

.btn:hover.glow::after {
    animation: shine 1.2s forwards
}

@keyframes shine {
    to {
        transform: translateX(100%)
    }
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100
}

.modal.open {
    display: flex
}

.modal-card {
    width: min(820px, 92vw);
    max-height: 80vh;
    overflow: auto;
    padding: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    border: 1px solid rgba(233, 193, 103, .25);
    border-radius: 16px
}

.modal header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    background: transparent;
}

.close {
    cursor: pointer;
    color: #C4D1E6
}

.order .oreder-footer {
    margin: 40px 0;
    color: #A9B6CD;
    font-size: 12px;
    text-align: center
}

@media (max-width:960px) {
    .hero-wrap {
        grid-template-columns: 1fr
    }

    .values {
        grid-template-columns: 1fr 1fr
    }

    .grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:640px) {
    .values {
        grid-template-columns: 1fr
    }

    .grid {
        grid-template-columns: 1fr
    }
}

.order p,
.order li {
    font-size: 15px;
    color: #555
}

.order .goods {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f1f1
}

.goods img {
    width: 90px;
    height: 90px;
    border-radius: 4px;
    margin-right: 15px;
    object-fit: cover
}

.info {
    flex: 1
}

.price {
    color: #e4393c;
    font-size: 17px;
    font-weight: 700;
    margin-top: 4px
}

/* .btn{display:inline-block;margin-top:8px;padding:8px 20px;background:#c0721a;color:#fff;font-size:14px;border-radius:4px;text-decoration:none;border:none} */
.btn-gray {
    background: #999;
    margin-left: 10px
}

.order footer {
    text-align: center;
    font-size: 12px;
    color: #999;
    padding: 20px 15px
}

@media screen and (min-width: 1300px) {
    .justify-conter {
        justify-content: center
    }
}

.payment-modal {
    max-width: 920px;
    margin: 38px auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start
}

.panel {
    padding: 22px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
    border: 1px solid rgba(233, 193, 103, .12);
    box-shadow: var(--shadow)
}

.price-cards {
    display: flex;
    gap: 12px;
    margin: 12px 0
}

.price-card {
    flex: 1;
    padding: 16px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .01));
    border: 1px solid rgba(255, 255, 255, .04);
    text-align: center;
    cursor: pointer;
    transition: transform .18s, box-shadow .18s
}

.price-card.active {
    border: 1px solid rgba(233, 193, 103, .45);
    box-shadow: 0 12px 28px rgba(233, 193, 103, .18);
    transform: translateY(-6px)
}

.price-card .tag {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(233, 193, 103, .1);
    color: #F7E7BF;
    font-weight: 700;
    font-size: 13px
}

.price-card .price {
    font-size: 28px;
    font-weight: 800;
    margin-top: 8px;
    color: var(--gold-1)
}

.table-compare {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px
}

.table-compare th,
.table-compare td {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    text-align: left
}

.table-compare th {
    color: #CFE0FF
}

.qr-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px
}

.qr-card {
    padding: 18px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .01));
    border: 1px solid rgba(255, 255, 255, .04)
}

.qr-img {
    width: 300px;
    height: 300px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .4);
}

.pulse {
    animation: pulse 2.8s infinite ease-in-out
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(233, 193, 103, .18)
    }

    50% {
        box-shadow: 0 0 0 18px rgba(233, 193, 103, 0.03)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(233, 193, 103, .0)
    }
}

.footer-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 10px
}

.small-muted {
    font-size: 13px;
    color: #A9B6CD
}

@media (max-width:960px) {
    .payment-modal {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .qr-img {
        width: 260px;
        height: 260px
    }
}

/* .p-l-r-24{
  padding: 0 24px;
} */
/* 订单页 / 结果页 */
.page {
    display: none
}

.image-container {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    gap: 15px;
}

.image-container img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.image-item {
    flex: 1;
}

.watch-price {
    padding: 10px 8px;
    font-size: 14px;
    color: #E9C167;
}
.flex_1{
    flex: 1;
}