* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 84% 10%, rgba(52, 152, 219, .08), transparent 28%),
        #f5f7fa;
    color: #26384c;
    line-height: 1.6;
}

.hidden {
    display: none !important;
}

.graduate-full-wrap {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 132px 0 64px;
}

.graduate-full-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 22px;
}

.graduate-full-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid #e4ebf1;
    border-radius: 999px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 5px 16px rgba(39, 75, 105, .06);
    color: #425466;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.graduate-full-nav a:hover,
.graduate-full-nav a:focus-visible {
    border-color: rgba(52, 152, 219, .35);
    color: #2980b9;
    outline: none;
}

.graduate-full-back:before {
    content: '←';
    margin-right: 8px;
    font-size: 16px;
}

.graduate-full-map-link:after {
    content: '→';
    margin-left: 8px;
}

.graduate-full-card {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border: 1px solid rgba(52, 152, 219, .21);
    border-radius: 22px;
    background: linear-gradient(135deg, #fff 0%, #f6fbff 64%, #edf8ff 100%);
    box-shadow: 0 16px 38px rgba(39, 75, 105, .1);
}

.graduate-full-card:before {
    position: absolute;
    top: -104px;
    right: -62px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(52, 152, 219, .07);
    content: '';
    pointer-events: none;
}

.graduate-full-head {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
}

.graduate-full-copy {
    max-width: 720px;
}

.graduate-full-badge,
.graduate-full-detail-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(52, 152, 219, .11);
    color: #277cae;
    font-size: 11px;
    font-weight: 800;
}

.graduate-full-copy h1 {
    margin: 10px 0 7px;
    color: #22384b;
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.3;
}

.graduate-full-copy p {
    color: #607588;
    font-size: 14px;
}

.graduate-full-price {
    position: relative;
    flex: 0 0 auto;
    min-width: 180px;
    padding: 8px 12px;
    color: #718096;
    text-align: right;
}

.graduate-full-price strong {
    display: block;
    color: #2085c0;
    font-size: 30px;
    line-height: 1.2;
}

.graduate-full-price span {
    font-size: 12px;
}

.graduate-full-benefits {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 26px 0 18px;
}

.graduate-full-benefit {
    padding: 15px 17px;
    border: 1px solid rgba(52, 152, 219, .14);
    border-radius: 14px;
    background: rgba(255, 255, 255, .86);
}

.graduate-full-benefit strong {
    display: block;
    color: #2c475d;
    font-size: 16px;
}

.graduate-full-benefit span {
    color: #7b8d9c;
    font-size: 12px;
}

.graduate-full-snapshot {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 21px;
    margin-bottom: 18px;
    padding: 13px 16px;
    border-radius: 12px;
    background: rgba(38, 132, 185, .075);
    color: #52677a;
    font-size: 12px;
}

.graduate-full-snapshot b {
    color: #2d4d65;
}

.graduate-full-notice {
    position: relative;
    display: grid;
    gap: 5px;
    margin-bottom: 22px;
    color: #718096;
    font-size: 12px;
}

.graduate-full-notice span:before {
    margin-right: 8px;
    color: #3498db;
    content: '•';
    font-weight: 900;
}

.graduate-full-state {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(52, 152, 219, .15);
}

.graduate-full-status {
    min-width: 0;
}

.graduate-full-status strong {
    display: block;
    color: #2d4457;
    font-size: 16px;
}

.graduate-full-status span {
    display: block;
    margin-top: 3px;
    color: #718096;
    font-size: 13px;
}

.graduate-full-status a {
    color: #2980b9;
    font-weight: 800;
    text-decoration: none;
}

.graduate-full-action {
    flex: 0 0 auto;
    min-width: 250px;
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    background: #3498db;
    box-shadow: 0 8px 18px rgba(52, 152, 219, .22);
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
}

.graduate-full-action.is-secondary {
    border: 1px solid rgba(52, 152, 219, .3);
    background: #fff;
    box-shadow: none;
    color: #2980b9;
}

.graduate-full-action:disabled {
    cursor: not-allowed;
    opacity: .58;
    box-shadow: none;
}

.graduate-full-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.graduate-full-detail-card {
    padding: 23px 24px;
    border: 1px solid #e3eaf0;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 7px 20px rgba(39, 75, 105, .055);
}

.graduate-full-detail-card h2 {
    margin: 8px 0 6px;
    color: #2d4457;
    font-size: 18px;
}

.graduate-full-detail-card p {
    color: #718096;
    font-size: 12px;
}

.graduate-full-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
}

.graduate-full-fields span {
    padding: 4px 9px;
    border: 1px solid rgba(52, 152, 219, .15);
    border-radius: 999px;
    background: rgba(52, 152, 219, .065);
    color: #367294;
    font-size: 11px;
}

.graduate-full-points-link {
    display: inline-flex;
    margin-top: 14px;
    color: #2980b9;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.graduate-full-preview {
    margin-top: 20px;
    padding: 25px 26px 27px;
    border: 1px solid #e3eaf0;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 7px 20px rgba(39, 75, 105, .055);
}

.graduate-full-preview-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
}

.graduate-full-preview-head > div {
    max-width: 760px;
}

.graduate-full-preview-head h2 {
    margin: 8px 0 5px;
    color: #2d4457;
    font-size: 20px;
}

.graduate-full-preview-head p {
    color: #718096;
    font-size: 12px;
}

.graduate-full-preview-tip {
    flex: 0 0 auto;
    padding: 5px 10px;
    border-radius: 999px;
    background: #f0f7fb;
    color: #4c7b97;
    font-size: 11px;
    font-weight: 700;
}

.graduate-full-sheet {
    overflow: hidden;
    margin-top: 19px;
    border: 1px solid #d9e3e9;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 26px rgba(37, 61, 79, .08);
}

.graduate-full-sheet-bar {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 61px;
    padding: 10px 15px;
    border-bottom: 1px solid #dce6e1;
    background: linear-gradient(180deg, #fbfdfc 0%, #f3f8f5 100%);
}

.graduate-full-sheet-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: #22935a;
    box-shadow: 0 5px 12px rgba(34, 147, 90, .2);
    color: #fff;
    font-size: 15px;
    font-weight: 900;
}

.graduate-full-sheet-bar > div {
    min-width: 0;
}

.graduate-full-sheet-bar strong,
.graduate-full-sheet-bar span {
    display: block;
}

.graduate-full-sheet-bar strong {
    overflow: hidden;
    color: #284436;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.graduate-full-sheet-bar div span {
    margin-top: 1px;
    color: #809188;
    font-size: 10px;
}

.graduate-full-sheet-bar em {
    flex: 0 0 auto;
    margin-left: auto;
    padding: 4px 9px;
    border: 1px solid rgba(34, 147, 90, .14);
    border-radius: 999px;
    background: rgba(34, 147, 90, .07);
    color: #36825e;
    font-size: 10px;
    font-style: normal;
    font-weight: 800;
}

.graduate-full-sheet-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-color: #b9c9c0 #edf2ef;
    scrollbar-width: thin;
}

.graduate-full-sheet-scroll:focus-visible {
    outline: 3px solid rgba(52, 152, 219, .28);
    outline-offset: -3px;
}

.graduate-full-sheet table {
    width: 100%;
    min-width: 1360px;
    border-collapse: collapse;
    color: #43564c;
    font-size: 11px;
    white-space: nowrap;
}

.graduate-full-sheet th,
.graduate-full-sheet td {
    height: 39px;
    padding: 8px 12px;
    border-right: 1px solid #e1e8e4;
    border-bottom: 1px solid #e1e8e4;
    text-align: left;
}

.graduate-full-sheet th:last-child,
.graduate-full-sheet td:last-child {
    border-right: 0;
}

.graduate-full-sheet thead th {
    background: #e8f3ec;
    color: #315b44;
    font-weight: 800;
}

.graduate-full-sheet tbody tr:nth-child(even) {
    background: #fafcfb;
}

.graduate-full-sheet tbody tr:hover {
    background: #f0f8f3;
}

.graduate-full-sheet-number {
    color: #2f6f50;
    font-variant-numeric: tabular-nums;
    font-weight: 800;
    text-align: right !important;
}

.graduate-full-sheet-source {
    color: #2980b9;
    text-decoration: underline;
    text-decoration-color: rgba(41, 128, 185, .28);
    text-underline-offset: 2px;
}

.graduate-full-sheet-tabs {
    display: flex;
    align-items: center;
    min-height: 35px;
    padding: 0 13px;
    background: #f3f6f4;
    color: #7d8d84;
    font-size: 10px;
}

.graduate-full-sheet-tabs span {
    align-self: stretch;
    display: inline-flex;
    align-items: center;
    min-width: 74px;
    border-bottom: 2px solid #22935a;
    color: #2f684a;
    font-weight: 800;
}

.graduate-full-sheet-tabs b {
    margin-left: auto;
    font-weight: 500;
}

.graduate-full-foot-note {
    margin-top: 18px;
    padding: 15px 18px;
    border-radius: 13px;
    background: rgba(255, 255, 255, .7);
    color: #718096;
    font-size: 11px;
}

.graduate-full-foot-note b {
    color: #52677a;
}

.graduate-full-dialog {
    position: fixed;
    inset: 0;
    width: min(520px, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    margin: auto;
    padding: 0;
    border: 0;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(17, 39, 58, .26);
    color: #26384c;
    overflow-y: auto;
}

.graduate-full-dialog::backdrop {
    background: rgba(24, 42, 58, .5);
    backdrop-filter: blur(2px);
}

.graduate-full-dialog-body {
    padding: 24px;
}

.graduate-full-dialog h2 {
    margin-bottom: 7px;
    font-size: 20px;
}

.graduate-full-dialog-intro {
    color: #607588;
    font-size: 13px;
}

.graduate-full-dialog-list {
    display: grid;
    gap: 8px;
    margin: 18px 0;
    padding: 14px 16px;
    border-radius: 12px;
    background: #f5f9fc;
    color: #52677a;
    font-size: 12px;
}

.graduate-full-confirm {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 13px;
    border: 1px solid #dde7ee;
    border-radius: 12px;
    color: #425b6e;
    cursor: pointer;
    font-size: 12px;
    line-height: 1.55;
}

.graduate-full-confirm input {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    margin-top: 1px;
    accent-color: #3498db;
}

.graduate-full-dialog-error {
    margin-top: 10px;
    color: #b45309;
    font-size: 12px;
}

.graduate-full-dialog-actions {
    display: flex;
    justify-content: flex-end;
    gap: 9px;
    margin-top: 18px;
}

.graduate-full-dialog-actions button {
    min-height: 40px;
    padding: 0 17px;
    border: 1px solid #dce5ec;
    border-radius: 999px;
    background: #fff;
    color: #52677a;
    cursor: pointer;
    font-weight: 800;
}

.graduate-full-dialog-actions .graduate-full-dialog-submit {
    border-color: #3498db;
    background: #3498db;
    color: #fff;
}

.graduate-full-dialog-actions button:disabled {
    cursor: not-allowed;
    opacity: .55;
}

@media (max-width: 768px) {
    .graduate-full-wrap {
        width: min(100% - 28px, 1120px);
        padding-top: 112px;
    }

    .graduate-full-nav {
        align-items: stretch;
        flex-direction: column;
    }

    .graduate-full-nav a {
        justify-content: center;
    }

    .graduate-full-card {
        padding: 22px 17px;
        border-radius: 18px;
    }

    .graduate-full-head,
    .graduate-full-state {
        align-items: flex-start;
        flex-direction: column;
    }

    .graduate-full-price {
        min-width: 0;
        padding: 0;
        text-align: left;
    }

    .graduate-full-price strong {
        display: inline;
        margin-right: 5px;
        font-size: 23px;
    }

    .graduate-full-benefits,
    .graduate-full-detail-grid {
        grid-template-columns: 1fr;
    }

    .graduate-full-benefits {
        margin-top: 20px;
    }

    .graduate-full-state {
        padding: 17px 0 0;
    }

    .graduate-full-action {
        width: 100%;
        min-width: 0;
    }

    .graduate-full-preview {
        padding: 21px 16px 18px;
    }

    .graduate-full-preview-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .graduate-full-preview-tip {
        align-self: flex-start;
    }

    .graduate-full-sheet {
        margin-top: 15px;
    }

    .graduate-full-sheet table {
        min-width: 1270px;
    }

    .graduate-full-sheet-tabs b {
        overflow: hidden;
        max-width: 190px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .graduate-full-dialog-body {
        padding: 20px 17px;
    }

    .graduate-full-dialog-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}
