/* ============================================
   套餐详情页专用样式
   ============================================ */

.pd-breadcrumb-wrap {
    margin-bottom: 18px;
}

.pd-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: #8a94ab;
}

.pd-breadcrumb a {
    color: #5a6584;
    text-decoration: none;
}

.pd-breadcrumb a:hover {
    color: #2a58e6;
}

.pd-hero-topline {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.pd-operator,
.pd-status {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.pd-operator {
    background: #eef4ff;
    color: #2a58e6;
}

.pd-status.is-online {
    background: #eaf8f1;
    color: #17884f;
}

.pd-status.is-offline {
    background: #fceaea;
    color: #c43d3d;
}

.pd-title {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -.02em;
    color: #0f1629;
    font-weight: 800;
}

.pd-subtitle {
    margin: 0;
    max-width: 720px;
    font-size: 15px;
    line-height: 1.75;
    color: #5a6584;
}

.pd-price-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 32px 0 28px;
    border-bottom: 1px solid #e9eef8;
    margin-top: 12px;
}

.pd-price-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pd-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.pd-price-symbol {
    font-size: 20px;
    color: #ef4444;
    font-weight: 700;
}

.pd-price-value {
    font-size: clamp(48px, 6.5vw, 68px);
    line-height: .9;
    color: #ef4444;
    font-weight: 800;
    letter-spacing: -.04em;
}

.pd-price-unit {
    font-size: 14px;
    color: #8a94ab;
    margin-left: 6px;
    font-weight: 600;
}

.pd-traffic-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #46516d;
    font-weight: 600;
}

.pd-traffic-main {
    color: #0f1629;
}

.pd-traffic-detail {
    font-size: 13px;
    color: #8a94ab;
    font-weight: 400;
}

.pd-divider {
    color: #cbd5e1;
}

.pd-hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.pd-main-btn {
    min-width: 240px;
    height: 60px;
    padding: 0 32px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
    border: 0;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
}

.pd-main-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 30px -10px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

.pd-main-btn.is-disabled {
    background: #94a3b8;
    box-shadow: none;
    cursor: not-allowed;
}

.pd-action-tip {
    margin: 0;
    font-size: 12px;
    color: #8a94ab;
}

.pd-price-note {
    display: none;
}

.pd-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.pd-summary-card {
    padding: 18px 18px 16px;
    background: rgba(255,255,255,.9);
    border: 1px solid #e9eef8;
    border-radius: 12px;
}

.pd-summary-label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    color: #8a94ab;
}

.pd-summary-value {
    display: block;
    font-size: 22px;
    line-height: 1.2;
    color: #0f1629;
    font-weight: 700;
}

.pd-side-card {
    padding: 22px 22px 20px;
    background: rgba(255,255,255,.94);
    border: 1px solid #e9eef8;
    box-shadow: 0 12px 34px rgba(15,22,41,.08);
    color: #24304a;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pd-side-title {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
    color: #0f1629;
}

.pd-side-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #5a6584;
}

.pd-action-btn {
    width: 100%;
    min-height: 46px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #3b6fff, #5c87ff);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .22s ease;
    box-shadow: 0 10px 28px rgba(59,111,255,.28);
}

.pd-action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(59,111,255,.34);
}

.pd-action-btn.is-disabled,
.pd-action-btn:disabled {
    cursor: not-allowed;
    background: #556080;
    box-shadow: none;
    transform: none;
}

.pd-side-list {
    margin: 0;
    padding-left: 18px;
    color: #5a6584;
    font-size: 13px;
    line-height: 1.8;
}

.pd-main-layout {
    padding: clamp(32px, 5vw, 56px) 0 56px;
    background:
        radial-gradient(900px 280px at 100% 0%, rgba(59,111,255,.12), transparent 60%),
        linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%);
}

.pd-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px;
    align-items: start;
}

.sidebar-card {
    padding: 22px;
    background: #fff;
    border: 1px solid #e9eef8;
    border-radius: 14px;
    box-shadow: 0 6px 22px rgba(15,22,41,.06);
    margin-bottom: 24px;
}

.sidebar-title {
    margin: 0 0 16px;
    font-size: 18px;
    color: #0f1629;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-title i {
    color: #2563eb;
}

.service-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.service-qrcode {
    width: 140px;
    height: 140px;
    padding: 8px;
    background: #fff;
    border: 1px solid #e9eef8;
    border-radius: 12px;
}

.service-qrcode img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-btn {
    width: 100%;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f8faff;
    border: 1px solid #e9eef8;
    border-radius: 10px;
    color: #46516d;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.service-btn:hover {
    background: #f3f7ff;
    border-color: #2563eb;
    color: #2563eb;
}

.service-btn i {
    font-size: 18px;
}

.pd-main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.pd-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pd-block {
    padding: 26px 28px;
    background: #fff;
    border: 1px solid #e9eef8;
    border-radius: 14px;
    box-shadow: 0 6px 22px rgba(15,22,41,.06);
}

.pd-block-head {
    margin-bottom: 18px;
}

.pd-eyebrow {
    margin: 0 0 8px;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #3b6fff;
    font-weight: 700;
}

.pd-block-head h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.25;
    color: #0f1629;
    font-weight: 700;
}

.pd-facts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
}

.pd-fact {
    padding: 16px 18px;
    border-radius: 12px;
    background: #f8faff;
    border: 1px solid #e9eef8;
}

.pd-fact-full {
    grid-column: 1 / -1;
}

.pd-fact dt {
    margin: 0 0 6px;
    font-size: 12px;
    color: #8a94ab;
}

.pd-fact dd {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: #0f1629;
    font-weight: 600;
}

.pd-richtext {
    font-size: 15px;
    line-height: 1.85;
    color: #2a334d;
}

.pd-richtext > *:first-child {
    margin-top: 0;
}

.pd-richtext > *:last-child {
    margin-bottom: 0;
}

.pd-richtext h1,
.pd-richtext h2,
.pd-richtext h3,
.pd-richtext h4 {
    color: #0f1629;
    line-height: 1.35;
}

.pd-richtext p,
.pd-richtext li {
    color: #2a334d;
}

.pd-richtext img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* 免责声明 */
.pd-disclaimer {
    display: flex;
    gap: 16px;
    padding: 22px 24px;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid #fde68a;
    border-radius: 14px;
    margin-top: 2px;
}

.pd-disclaimer-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fbbf24;
    border-radius: 10px;
    color: #fff;
    margin-top: 2px;
}

.pd-disclaimer-icon svg {
    width: 20px;
    height: 20px;
}

.pd-disclaimer-title {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    color: #92400e;
}

.pd-disclaimer-list {
    margin: 0;
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.85;
    color: #78350f;
}

.pd-disclaimer-list li {
    margin-bottom: 2px;
}

@media (max-width: 960px) {
    .pd-hero-grid,
    .pd-layout {
        grid-template-columns: 1fr;
    }

    .pd-sidebar {
        position: static;
    }
}

@media (max-width: 720px) {
    .pd-price-line {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
        padding: 24px 0;
    }

    .pd-price-box {
        align-items: center;
    }

    .pd-traffic-summary {
        font-size: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .pd-main-btn {
        width: 100%;
        min-width: 0;
    }

    .pd-summary-grid,
    .pd-facts-grid {
        grid-template-columns: 1fr;
    }

    .pd-block {
        padding: 22px 18px;
    }

    .pd-disclaimer {
        flex-direction: column;
        gap: 12px;
        padding: 18px 16px;
    }
}

.ad-hero {
    padding: clamp(32px, 5vw, 56px) 0 24px;
    background:
        radial-gradient(900px 280px at 100% 0%, rgba(59,111,255,.1), transparent 60%),
        linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

.ad-breadcrumb-wrap {
    margin-bottom: 18px;
}

.ad-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: #8a94ab;
}

.ad-breadcrumb a {
    color: #5a6584;
    text-decoration: none;
}

.ad-breadcrumb a:hover {
    color: #2a58e6;
}

.ad-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: end;
}

.ad-kicker,
.ad-eyebrow {
    margin: 0 0 10px;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #3b6fff;
    font-weight: 700;
}

.ad-title {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.14;
    letter-spacing: -.02em;
    color: #0f1629;
    font-weight: 800;
}

.ad-subtitle {
    margin: 0;
    max-width: 760px;
    font-size: 15px;
    line-height: 1.75;
    color: #5a6584;
}

.ad-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.ad-meta-item {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e9eef8;
    color: #5a6584;
    font-size: 13px;
}

.ad-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.ad-tag {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: #eef4ff;
    color: #2a58e6;
    font-size: 12px;
    font-weight: 600;
}

.ad-summary-card {
    padding: 22px;
    border-radius: 14px;
    background: rgba(255,255,255,.94);
    border: 1px solid #e9eef8;
    box-shadow: 0 12px 34px rgba(15,22,41,.08);
    color: #24304a;
}

.ad-summary-title {
    margin: 0 0 12px;
    font-size: 20px;
    color: #0f1629;
}

.ad-summary-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: #5a6584;
}

.ad-section {
    padding: 18px 0 56px;
}

.ad-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}

.ad-main {
    min-width: 0;
}

.ad-cover {
    margin: 0 0 22px;
    border-radius: 16px;
    overflow: hidden;
    background: #eef1f8;
    border: 1px solid #e9eef8;
}

.ad-cover img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.ad-content-card {
    padding: 28px 30px;
    background: #fff;
    border: 1px solid #e9eef8;
    border-radius: 14px;
    box-shadow: 0 6px 22px rgba(15,22,41,.06);
}

.ad-content-head {
    margin-bottom: 18px;
}

.ad-content-head h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.25;
    color: #0f1629;
    font-weight: 700;
}

.ad-content {
    font-size: 16px;
    line-height: 1.9;
    color: #2a334d;
}

.ad-content > *:first-child {
    margin-top: 0;
}

.ad-content > *:last-child {
    margin-bottom: 0;
}

.ad-content h1,
.ad-content h2,
.ad-content h3,
.ad-content h4,
.ad-content h5,
.ad-content h6 {
    color: #0f1629;
    line-height: 1.35;
    scroll-margin-top: 96px;
}

.ad-content h2 {
    margin-top: 40px;
    font-size: 28px;
}

.ad-content h3 {
    margin-top: 28px;
    font-size: 22px;
}

.ad-content p,
.ad-content li {
    color: #2a334d;
}

.ad-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.ad-content blockquote {
    margin: 22px 0;
    padding: 14px 18px;
    background: #f8faff;
    border-left: 3px solid #3b6fff;
    border-radius: 0 10px 10px 0;
    color: #46516d;
}

.ad-content pre {
    overflow: auto;
    padding: 16px 18px;
    border-radius: 12px;
    background: #0f1629;
    color: #eef1f8;
}

.ad-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 22px 0;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #e9eef8;
}

.ad-content table th,
.ad-content table td {
    padding: 12px 14px;
    border-bottom: 1px solid #e9eef8;
    text-align: left;
}

.ad-content table th {
    background: #f8faff;
    color: #0f1629;
    font-weight: 600;
}

.ad-sidebar {
    position: sticky;
    top: 92px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ad-sidebar-card {
    padding: 20px 20px 18px;
    background: #fff;
    border: 1px solid #e9eef8;
    border-radius: 14px;
    box-shadow: 0 6px 22px rgba(15,22,41,.06);
}

.ad-sidebar-title {
    margin: 0 0 12px;
    font-size: 18px;
    color: #0f1629;
}

.ad-toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ad-toc-item a {
    display: block;
    padding: 8px 10px;
    border-radius: 10px;
    color: #46516d;
    text-decoration: none;
    transition: background .15s ease, color .15s ease;
}

.ad-toc-item a:hover {
    background: #f3f7ff;
    color: #2a58e6;
}

.ad-toc-item.level-3 a {
    padding-left: 22px;
    font-size: 13px;
}

@media (max-width: 960px) {
    .ad-hero-grid,
    .ad-layout {
        grid-template-columns: 1fr;
    }

    .ad-sidebar {
        position: static;
    }
}

@media (max-width: 720px) {
    .ad-content-card {
        padding: 22px 18px;
    }

    .ad-content h2 {
        font-size: 24px;
    }

    .ad-content h3 {
        font-size: 20px;
    }
}

.ev-hero {
    padding: clamp(32px, 5vw, 56px) 0 24px;
    background:
        radial-gradient(900px 280px at 100% 0%, rgba(59,111,255,.1), transparent 60%),
        linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

.ev-breadcrumb-wrap {
    margin-bottom: 18px;
}

.ev-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: #8a94ab;
}

.ev-breadcrumb a {
    color: #5a6584;
    text-decoration: none;
}

.ev-breadcrumb a:hover {
    color: #2a58e6;
}

.ev-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: end;
}

.ev-kicker,
.ev-eyebrow {
    margin: 0 0 10px;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #3b6fff;
    font-weight: 700;
}

.ev-title {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.14;
    letter-spacing: -.02em;
    color: #0f1629;
    font-weight: 800;
}

.ev-subtitle {
    margin: 0;
    max-width: 760px;
    font-size: 15px;
    line-height: 1.75;
    color: #5a6584;
}

.ev-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.ev-meta-item {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e9eef8;
    color: #5a6584;
    font-size: 13px;
}

.ev-side-card {
    padding: 22px 22px 20px;
    background: rgba(255,255,255,.94);
    border: 1px solid #e9eef8;
    box-shadow: 0 12px 34px rgba(15,22,41,.08);
    color: #24304a;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ev-side-title {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
    color: #0f1629;
}

.ev-side-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #5a6584;
}

.ev-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    width: 100%;
    border-radius: 999px;
    background: linear-gradient(135deg, #3b6fff, #5c87ff);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(59,111,255,.28);
    transition: transform .15s ease, box-shadow .22s ease;
}

.ev-action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(59,111,255,.34);
    color: #fff;
}

.ev-section {
    padding: 18px 0 56px;
}

.ev-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}

.ev-main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.ev-sidebar {
    position: sticky;
    top: 92px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ev-block {
    padding: 26px 28px;
    background: #fff;
    border: 1px solid #e9eef8;
    border-radius: 14px;
    box-shadow: 0 6px 22px rgba(15,22,41,.06);
}

.ev-block-head {
    margin-bottom: 18px;
}

.ev-block-head h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.25;
    color: #0f1629;
    font-weight: 700;
}

.ev-facts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
}

.ev-fact {
    padding: 16px 18px;
    border-radius: 12px;
    background: #f8faff;
    border: 1px solid #e9eef8;
}

.ev-fact dt {
    margin: 0 0 6px;
    font-size: 12px;
    color: #8a94ab;
}

.ev-fact dd {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: #0f1629;
    font-weight: 600;
}

.ev-content {
    font-size: 15px;
    line-height: 1.85;
    color: #2a334d;
}

.ev-content > *:first-child {
    margin-top: 0;
}

.ev-content > *:last-child {
    margin-bottom: 0;
}

.ev-content h1,
.ev-content h2,
.ev-content h3,
.ev-content h4 {
    color: #0f1629;
    line-height: 1.35;
}

.ev-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 960px) {
    .ev-hero-grid,
    .ev-layout {
        grid-template-columns: 1fr;
    }

    .ev-sidebar {
        position: static;
    }
}

@media (max-width: 720px) {
    .ev-block {
        padding: 22px 18px;
    }

    .ev-facts-grid {
        grid-template-columns: 1fr;
    }

    .ev-block-head h2 {
        font-size: 22px;
    }
}

/* 面包屑导航 */
.breadcrumb-section {
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.breadcrumb a {
    color: #1890ff;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #40a9ff;
}

.breadcrumb .separator {
    color: #d1d5db;
}

.breadcrumb .current {
    color: #374151;
}

/* 详情区域 */
.package-detail-section {
    padding: 2rem 0;
    background: #F6FBFF;
    min-height: calc(100vh - 300px);
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 22.5rem;
    gap: 1.5rem;
    align-items: start;
}

/* 左侧主内容 */
.detail-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* 套餐预览卡片 */
.package-preview-card {
    background: #fff;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.preview-category {
    font-size: 0.875rem;
    color: #1890ff;
    font-weight: 600;
    background: #e6f7ff;
    padding: 0.375rem 0.875rem;
    border-radius: 1rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.875rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-online {
    background: #dcfce7;
    color: #16a34a;
}

.status-offline {
    background: #fee2e2;
    color: #dc2626;
}

.detail-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1.5rem 0;
    line-height: 1.4;
}

.price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 2px solid #f3f4f6;
    margin-bottom: 1.5rem;
}

.price-left {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.price-label {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.price-main {
    display: flex;
    align-items: baseline;
}

.price-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, #e0f2fe 0%, #e0e7ff 100%);
    color: #1e40af;
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: 1rem;
    border: 1px solid #bfdbfe;
    transition: all 0.3s;
}

.info-badge:hover {
    background: linear-gradient(135deg, #bfdbfe 0%, #c7d2fe 100%);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(30, 64, 175, 0.15);
}

.info-badge .layui-icon {
    font-size: 0.875rem;
}

.price-symbol {
    font-size: 1.5rem;
    color: #ef4444;
    font-weight: 700;
}

.price-value {
    font-size: 3rem;
    color: #ef4444;
    font-weight: 700;
    line-height: 1;
}

.price-unit {
    font-size: 1rem;
    color: #9ca3af;
    margin-left: 0.25rem;
}

/* 规格网格 */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.spec-box {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.spec-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #88bbff 0%, #006eff 100%);
    border-radius: 0.5rem;
}

.spec-icon .layui-icon {
    font-size: 1.5rem;
    color: #fff;
}

.spec-info {
    flex: 1;
}

.spec-label {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.spec-value {
    font-size: 1.125rem;
    color: #1f2937;
    font-weight: 600;
}

/* 办理按钮 */
.action-section {
    margin-top: 1rem;
}

.apply-notice {
    margin-top: 0.75rem;
    padding: 0.625rem 0.875rem;
    background: #fef9c3;
    color: #b91c1c;
    border: 1px solid #f3d46c;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

.btn-apply {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #068ED1;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.5);
}

.btn-apply .layui-icon {
    font-size: 1.25rem;
}

/* 下架状态按钮 */
.btn-apply-disabled {
    background: #d1d5db !important;
    color: #9ca3af !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
}

.btn-apply-disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* 信息卡片 */
.info-card {
    background: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.info-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #f5f3ff 100%);
    border-bottom: 2px solid #e0e7ff;
}

.info-card-header .layui-icon {
    font-size: 1.25rem;
    color: #1890ff;
}

.info-card-header h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

.info-card-body {
    padding: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #374151;
}

/* 资费说明列表 */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-item {
    display: flex;
    padding: 0.875rem 1.25rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.info-label {
    width: 8rem;
    font-weight: 600;
    color: #6b7280;
}

.info-value {
    flex: 1;
    color: #1f2937;
    font-weight: 500;
}

/* 右侧边栏 */
.detail-sidebar {
    position: sticky;
    top: 4.8rem;
}

.sidebar-card {
    background: #fff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.sidebar-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
}

.sidebar-title .layui-icon {
    font-size: 1.25rem;
    color: #fbbf24;
}

/* 推荐列表 */
.recommend-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.recommend-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.recommend-item:hover {
    border-color: #1890ff;
    background: #f0f9ff;
    transform: translateX(4px);
}

.recommend-name {
    font-size: 0.9375rem;
    color: #1f2937;
    font-weight: 600;
    line-height: 1.4;
}

.recommend-specs {
    font-size: 0.8125rem;
    color: #6b7280;
}

.recommend-specs .sep {
    margin: 0 0.5rem;
    color: #d1d5db;
}

.recommend-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-num {
    font-size: 1.25rem;
    color: #ef4444;
    font-weight: 700;
}

.price-text {
    font-size: 0.75rem;
    color: #9ca3af;
}

.recommend-empty {
    padding: 2rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* 文章详情卡片 */
.article-detail-card {
    background: #fff;
    border-radius: 0.5rem;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.article-header {
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f3f4f6;
}

.article-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.meta-item .layui-icon {
    font-size: 1rem;
}

.meta-category {
    color: #1890ff;
    background: #e6f7ff;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
}

.article-cover-wrap {
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.article-cover-img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 2rem;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    margin: 1.5rem 0 1rem 0;
    color: #1f2937;
    font-weight: 600;
}

.article-content h2 {
    font-size: 1.5rem;
}

.article-content h3 {
    font-size: 1.25rem;
}

.article-content p {
    margin-bottom: 1rem;
}

.article-content img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
    border-radius: 0.5rem;
}

.article-content ul,
.article-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    background: #f9fafb;
    border-left: 4px solid #1890ff;
    color: #6b7280;
}

.article-content code {
    background: #f3f4f6;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-family: monospace;
    font-size: 0.875rem;
}

.article-content pre {
    background: #1f2937;
    color: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1rem 0;
}

.article-content pre code {
    background: transparent;
    padding: 0;
    color: inherit;
}

.article-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
    font-size: 0.875rem;
}

.article-tags .layui-icon {
    font-size: 1rem;
}

.tag-item {
    background: #f3f4f6;
    padding: 0.375rem 0.875rem;
    border-radius: 1rem;
    color: #4b5563;
    transition: all 0.3s;
}

.tag-item:hover {
    background: #e5e7eb;
}

/* 客服卡片 */
.service-card {
    margin-top: 1.5rem;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-qrcode {
    width: 100%;
    background: #f9fafb;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-qrcode img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 0.5rem;
    display: block;
}

.service-buttons {
    display: flex;
    gap: 0.5rem;
}

.service-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    color: #4b5563;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.service-btn .layui-icon {
    font-size: 1rem;
}

.service-btn:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

/* ============================================
   响应式设计
   ============================================ */

/* 平板端 */
@media (max-width: 75rem) {
    .detail-layout {
        grid-template-columns: 1fr;
    }
    
    .detail-sidebar {
        position: static;
    }
    
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .detail-title {
        font-size: 1.5rem;
    }
    
    .price-value {
        font-size: 2.5rem;
    }
    
    .price-section {
        flex-wrap: wrap;
    }
    
    .price-badges {
        max-width: 100%;
    }
}

/* 手机端 */
@media (max-width: 48rem) {
    .package-detail-section {
        padding: 1rem 0;
    }
    
    .package-preview-card {
        padding: 1.5rem;
    }
    
    .detail-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .price-section {
        gap: 0.75rem;
        padding: 1rem 0;
        margin-bottom: 1rem;
    }
    
    .price-value {
        font-size: 2rem;
    }
    
    .price-left {
        flex-shrink: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .price-label {
        font-size: 0.875rem;
    }
    
    .price-main {
        gap: 0.125rem;
    }
    
    .price-symbol {
        font-size: 1.25rem;
    }
    
    .price-unit {
        font-size: 0.875rem;
    }
    
    .price-badges {
        flex-shrink: 1;
        justify-content: flex-end;
        flex-wrap: wrap;
    }
    
    .info-badge {
  
        padding: 0.3125rem 0.625rem;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .spec-box {
        padding: 0.75rem;
    }
    
    .info-card-header {
        padding: 1rem 1.25rem;
    }
    
    .info-card-header h3 {
        font-size: 1rem;
    }
    
    .info-card-body {
        padding: 1.25rem;
    }
    
    .info-item {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
    }
    
    .info-label {
        width: 100%;
    }
    
    .article-detail-card {
        padding: 1.5rem;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    .article-meta {
        gap: 1rem;
        font-size: 0.8125rem;
    }
    
    .article-content {
        font-size: 1rem;
    }
    
    .article-content h2 {
        font-size: 1.25rem;
    }
    
    .article-content h3 {
        font-size: 1.125rem;
    }
    
    .service-btn {
        padding: 0.625rem 0.75rem;
        font-size: 0.8125rem;
        gap: 0.25rem;
    }
    
    .service-btn .layui-icon {
        font-size: 0.875rem;
    }
}

/* ============================================
   富文本表格样式
   ============================================ */

/* 文章内容和信息卡片中的表格 */
.article-content table,
.info-card-body table {
    border-collapse: collapse;
    width: 100%;
    margin: 20px 0;
    border: 1px solid #ddd;
}

.article-content table th,
.article-content table td,
.info-card-body table th,
.info-card-body table td {
    border: 1px solid #ddd;
    padding: 12px 8px;
    text-align: left;
}

.article-content table th,
.info-card-body table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.article-content table tr:hover,
.info-card-body table tr:hover {
    background-color: #fafafa;
}

/* 富文本图片居中样式 */
.article-content img[style*="margin-left: auto"],
.article-content img[style*="margin: auto"],
.info-card-body img[style*="margin-left: auto"],
.info-card-body img[style*="margin: auto"] {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

/* 富文本图片居中（通过 text-align 方式）*/
.article-content p[style*="text-align: center"] img,
.article-content div[style*="text-align: center"] img,
.info-card-body p[style*="text-align: center"] img,
.info-card-body div[style*="text-align: center"] img {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* 富文本图片右对齐样式 */
.article-content img[style*="float: right"],
.info-card-body img[style*="float: right"] {
    float: right !important;
    margin-left: 1rem !important;
}

/* 富文本图片左对齐样式 */
.article-content img[style*="float: left"],
.info-card-body img[style*="float: left"] {
    float: left !important;
    margin-right: 1rem !important;
}
