/* 大飘国际物流 UK Landing v2.0.6 - frontend */
.dp-logi-page {
  --dp-blue:#0B2E68; --dp-blue-dark:#071D43; --dp-orange:#F58200; --dp-orange-soft:#FFF0DD;
  --dp-bg:#F4F7FB; --dp-card:#FFFFFF; --dp-text:#152033; --dp-muted:#667085; --dp-line:#E3EAF3;
  --dp-wa:#25D366; --dp-wechat:#07C160;
}
/* Break out of default block-theme constrained content without Elementor */
.wp-block-shortcode > .dp-logi-page, .entry-content > .dp-logi-page, .wp-site-blocks .dp-logi-page {
  width:100vw; max-width:100vw; margin-left:calc(50% - 50vw); margin-right:calc(50% - 50vw);
}
.dp-logi-page, .dp-logi-page * { box-sizing:border-box; }
.dp-logi-page button, .dp-logi-page input, .dp-logi-page textarea { font:inherit; }
.dp-logi-page a { text-decoration:none !important; }
.dp-logi-page p, .dp-logi-page h1, .dp-logi-page h2, .dp-logi-page h3, .dp-logi-page h4 { max-width:none; }
/* =========================
 * 全局与 WordPress 兼容
 * ========================= */
.dp-logi-page,
.dp-logi-page * {
    box-sizing: border-box;
}

.dp-logi-page {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 0 68px;
    /* 不要给整个落地页设置 overflow:hidden，
     * 否则 position:sticky 会被父层截断，页头无法随滚动固定。 */
    overflow: visible;
    overflow-x: clip;
    background: var(--dp-bg);
    color: var(--dp-text);
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    position: relative;
}

.dp-logi-page a {
    text-decoration: none;
}

.dp-logi-page img {
    max-width: 100%;
}

.dp-logi-page .dp-shell {
    width: min(100% - 32px, 1280px);
    margin-inline: auto;
}

.dp-logi-page .dp-section {
    padding: 78px 0;
}

.dp-logi-page .dp-section-head {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}

.dp-logi-page .dp-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    border-radius: 999px;
    background: var(--dp-orange-soft);
    color: var(--dp-orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: 14px;
}

.dp-logi-page .dp-kicker::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--dp-orange);
    box-shadow: 0 0 0 5px color-mix(in srgb, var(--dp-orange) 16%, transparent);
}

.dp-logi-page .dp-section-title {
    margin: 0;
    color: var(--dp-blue-dark);
    font-size: clamp(29px, 3.2vw, 46px);
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -.035em;
}

.dp-logi-page .dp-section-desc {
    margin: 14px auto 0;
    color: var(--dp-muted);
    font-size: 16px;
    line-height: 1.8;
}

/* =========================
 * 顶部导航
 * ========================= */
.dp-logi-page .dp-top-note {
    background: var(--dp-blue-dark);
    color: rgba(255,255,255,.82);
    font-size: 13px;
    text-align: center;
    padding: 6px 16px;
    letter-spacing: .04em;
}

/* 顶部提示条 + 导航整体随页面滚动固定 */
.dp-logi-page .dp-site-head {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    isolation: isolate;
}

/* 登录 WordPress 后，避开后台工具栏 */
body.admin-bar .dp-logi-page .dp-site-head {
    top: 32px;
}

.dp-logi-page .dp-header {
    position: relative;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--dp-line);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 24px rgba(7,29,67,.06);
}

.dp-logi-page .dp-header-inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.dp-logi-page .dp-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.dp-logi-page .dp-logo-img,
.dp-logi-page .dp-logo-fallback {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    object-fit: contain;
}

.dp-logi-page .dp-logo-fallback {
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(145deg, var(--dp-blue), var(--dp-blue-dark));
    color: white;
    font-size: 20px;
    font-weight: 900;
    position: relative;
    box-shadow: 0 9px 24px rgba(7,29,67,.22);
}

.dp-logi-page .dp-logo-fallback::after {
    content: '';
    position: absolute;
    right: -5px;
    bottom: 5px;
    width: 20px;
    height: 7px;
    border-radius: 20px;
    background: var(--dp-orange);
    transform: rotate(-35deg);
}

.dp-logi-page .dp-brand-name {
    color: var(--dp-blue-dark);
    font-size: 19px;
    font-weight: 900;
    line-height: 1.15;
    white-space: nowrap;
}

.dp-logi-page .dp-brand-en {
    margin-top: 4px;
    color: var(--dp-muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
    white-space: nowrap;
}

.dp-logi-page .dp-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.dp-logi-page .dp-nav a:not(.dp-head-btn) {
    color: var(--dp-text);
    font-size: 14px;
    font-weight: 700;
    transition: color .2s ease;
}

.dp-logi-page .dp-nav a:not(.dp-head-btn):hover {
    color: var(--dp-orange);
}

.dp-logi-page .dp-head-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 17px;
    border-radius: 11px;
    color: #fff;
    background: var(--dp-orange);
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 9px 22px color-mix(in srgb, var(--dp-orange) 24%, transparent);
}

.dp-logi-page .dp-mobile-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--dp-line);
    border-radius: 12px;
    color: var(--dp-blue);
    background: #fff;
    cursor: pointer;
}

/* =========================
 * Hero
 * ========================= */
.dp-logi-page .dp-hero {
    position: relative;
    padding: 42px 0 38px;
    background:
        radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--dp-orange) 16%, transparent) 0 9%, transparent 34%),
        radial-gradient(circle at 7% 12%, color-mix(in srgb, var(--dp-blue) 11%, transparent) 0 8%, transparent 29%),
        linear-gradient(135deg, #ffffff 0%, var(--dp-bg) 55%, #edf3fb 100%);
    overflow: hidden;
}

.dp-logi-page .dp-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .34;
    background-image: linear-gradient(rgba(11,46,104,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(11,46,104,.055) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, #000, transparent 84%);
}

.dp-logi-page .dp-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
    align-items: center;
    gap: 46px;
}

.dp-logi-page .dp-hero-title {
    margin: 0;
    color: var(--dp-blue-dark);
    font-size: clamp(42px, 5.2vw, 74px);
    font-weight: 900;
    line-height: 1.09;
    letter-spacing: -.055em;
}

.dp-logi-page .dp-hero-title span {
    color: var(--dp-orange);
}

.dp-logi-page .dp-hero-desc {
    max-width: 650px;
    margin: 16px 0 0;
    color: var(--dp-muted);
    font-size: 17px;
    line-height: 1.9;
}

.dp-logi-page .dp-hero-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 12px;
    margin-top: 20px;
}

.dp-logi-page .dp-hero-feature {
    min-width: 0;
    padding: 14px 15px;
    border: 1px solid rgba(11,46,104,.1);
    border-radius: 14px;
    background: rgba(255,255,255,.77);
    box-shadow: 0 12px 30px rgba(11,46,104,.07);
}

.dp-logi-page .dp-hero-feature strong {
    display: block;
    color: var(--dp-blue-dark);
    font-size: 14px;
    font-weight: 900;
}

.dp-logi-page .dp-hero-feature span {
    display: block;
    margin-top: 3px;
    color: var(--dp-muted);
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dp-logi-page .dp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.dp-logi-page .dp-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 21px;
    border: none;
    border-radius: 13px;
    font: inherit;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.dp-logi-page .dp-btn:hover {
    transform: translateY(-2px);
}

.dp-logi-page .dp-btn-primary {
    color: #fff;
    background: var(--dp-wa);
    box-shadow: 0 13px 30px color-mix(in srgb, var(--dp-wa) 28%, transparent);
}

.dp-logi-page .dp-btn-wechat {
    color: #fff;
    background: var(--dp-wechat);
    box-shadow: 0 13px 30px color-mix(in srgb, var(--dp-wechat) 28%, transparent);
}

.dp-logi-page .dp-btn-outline {
    color: var(--dp-blue);
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--dp-blue) 20%, transparent);
    box-shadow: 0 10px 24px rgba(11,46,104,.08);
}

.dp-logi-page .dp-hero-visual {
    min-height: 420px;
    position: relative;
    display: grid;
    place-items: center;
}

.dp-logi-page .dp-hero-photo {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 28px 70px rgba(7,29,67,.2);
}

.dp-logi-page .dp-route-board {
    width: min(100%, 570px);
    min-height: 390px;
    padding: 26px;
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 30px;
    background: linear-gradient(150deg, var(--dp-blue) 0%, var(--dp-blue-dark) 72%);
    color: #fff;
    box-shadow: 0 30px 70px rgba(7,29,67,.28);
    position: relative;
    overflow: hidden;
}

.dp-logi-page .dp-route-board::before {
    content: '';
    position: absolute;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    right: -120px;
    top: -90px;
    box-shadow: 0 0 0 44px rgba(255,255,255,.035), 0 0 0 90px rgba(255,255,255,.025);
}

.dp-logi-page .dp-board-head,
.dp-logi-page .dp-board-path,
.dp-logi-page .dp-board-routes {
    position: relative;
    z-index: 2;
}

.dp-logi-page .dp-board-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.dp-logi-page .dp-board-mini {
    color: rgba(255,255,255,.58);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .13em;
}

.dp-logi-page .dp-board-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,.11);
    font-size: 11px;
    font-weight: 700;
}

.dp-logi-page .dp-board-status::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #45e488;
    box-shadow: 0 0 0 5px rgba(69,228,136,.13);
}

.dp-logi-page .dp-board-path {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    margin-top: 52px;
}

.dp-logi-page .dp-board-city {
    text-align: center;
}

.dp-logi-page .dp-board-city-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
}

.dp-logi-page .dp-board-city strong {
    display: block;
    margin-top: 11px;
    font-size: 17px;
}

.dp-logi-page .dp-board-city span {
    color: rgba(255,255,255,.53);
    font-size: 11px;
}

.dp-logi-page .dp-board-line {
    height: 2px;
    position: relative;
    background: linear-gradient(90deg, rgba(255,255,255,.2), var(--dp-orange), rgba(255,255,255,.2));
}

.dp-logi-page .dp-board-line::before {
    content: '';
    position: absolute;
    width: 48px;
    height: 48px;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--dp-orange);
    box-shadow: 0 0 0 9px rgba(245,130,0,.17);
}

.dp-logi-page .dp-board-line svg {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.dp-logi-page .dp-board-routes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 10px;
    margin-top: 42px;
}

.dp-logi-page .dp-board-route {
    padding: 13px;
    border-radius: 13px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
}

.dp-logi-page .dp-board-route strong {
    display: block;
    font-size: 12px;
}

.dp-logi-page .dp-board-route span {
    display: block;
    margin-top: 3px;
    color: rgba(255,255,255,.54);
    font-size: 10px;
}

.dp-logi-page .dp-float-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 15px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--dp-line);
    box-shadow: 0 18px 45px rgba(7,29,67,.16);
}

.dp-logi-page .dp-float-card svg {
    color: var(--dp-orange);
}

.dp-logi-page .dp-float-card strong {
    display: block;
    color: var(--dp-blue-dark);
    font-size: 13px;
}

.dp-logi-page .dp-float-card span {
    display: block;
    margin-top: 1px;
    color: var(--dp-muted);
    font-size: 11px;
}

.dp-logi-page .dp-float-one { left: -20px; bottom: 38px; }
.dp-logi-page .dp-float-two { right: -18px; top: 35px; }

/* =========================
 * 数据条
 * ========================= */
.dp-logi-page .dp-stats-wrap {
    position: relative;
    z-index: 5;
    margin-top: -18px;
}

.dp-logi-page .dp-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    border: 1px solid var(--dp-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 20px 55px rgba(7,29,67,.1);
    overflow: hidden;
}

.dp-logi-page .dp-stat {
    padding: 24px 18px;
    text-align: center;
    position: relative;
}

.dp-logi-page .dp-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 24%;
    width: 1px;
    height: 52%;
    background: var(--dp-line);
}

.dp-logi-page .dp-stat strong {
    display: block;
    color: var(--dp-orange);
    font-size: clamp(23px, 3vw, 34px);
    line-height: 1.1;
    font-weight: 900;
}

.dp-logi-page .dp-stat span {
    display: block;
    margin-top: 7px;
    color: var(--dp-muted);
    font-size: 13px;
    font-weight: 600;
}

/* =========================
 * 服务卡片
 * ========================= */
.dp-logi-page .dp-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 18px;
}

.dp-logi-page .dp-service-card {
    min-height: 270px;
    padding: 25px;
    border: 1px solid var(--dp-line);
    border-radius: 22px;
    background: var(--dp-card);
    box-shadow: 0 13px 34px rgba(7,29,67,.065);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    position: relative;
    overflow: hidden;
}

.dp-logi-page .dp-service-card::after {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    right: -55px;
    bottom: -55px;
    border-radius: 50%;
    background: var(--dp-orange-soft);
    transition: transform .25s ease;
}

.dp-logi-page .dp-service-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--dp-orange) 34%, var(--dp-line));
    box-shadow: 0 20px 45px rgba(7,29,67,.12);
}

.dp-logi-page .dp-service-card:hover::after {
    transform: scale(1.35);
}

.dp-logi-page .dp-service-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: color-mix(in srgb, var(--dp-blue) 8%, white);
    color: var(--dp-blue);
}

.dp-logi-page .dp-service-card h3 {
    margin: 16px 0 0;
    color: var(--dp-blue-dark);
    font-size: 20px;
    line-height: 1.35;
    font-weight: 900;
}

.dp-logi-page .dp-service-card p {
    margin: 11px 0 0;
    color: var(--dp-muted);
    font-size: 14px;
    line-height: 1.75;
}

.dp-logi-page .dp-service-tag {
    display: inline-flex;
    margin-top: 18px;
    padding: 6px 10px;
    border-radius: 8px;
    background: var(--dp-orange-soft);
    color: var(--dp-orange);
    font-size: 11px;
    font-weight: 900;
}

/* =========================
 * 热门路线
 * ========================= */
.dp-logi-page .dp-routes-section {
    background: var(--dp-blue-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.dp-logi-page .dp-routes-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .15;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.25) 1px, transparent 0);
    background-size: 28px 28px;
}

.dp-logi-page .dp-routes-section .dp-section-head,
.dp-logi-page .dp-routes-grid {
    position: relative;
    z-index: 2;
}

.dp-logi-page .dp-routes-section .dp-section-title {
    color: #fff;
}

.dp-logi-page .dp-routes-section .dp-section-desc {
    color: rgba(255,255,255,.62);
}

.dp-logi-page .dp-routes-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 17px;
}

.dp-logi-page .dp-route-card {
    display: flex;
    flex-direction: column;
    min-height: 330px;
    padding: 24px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.075);
    backdrop-filter: blur(10px);
    transition: transform .2s ease, background .2s ease;
}

.dp-logi-page .dp-route-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,.11);
}

.dp-logi-page .dp-route-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.dp-logi-page .dp-route-no {
    color: rgba(255,255,255,.35);
    font-size: 12px;
    font-weight: 900;
}

.dp-logi-page .dp-route-mode {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--dp-orange);
    color: #fff;
}

.dp-logi-page .dp-route-card h3 {
    margin: 16px 0 0;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.35;
}

.dp-logi-page .dp-route-meta {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.dp-logi-page .dp-route-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: rgba(255,255,255,.65);
    font-size: 13px;
}

.dp-logi-page .dp-route-meta-item svg {
    flex: 0 0 auto;
    margin-top: 1px;
    color: var(--dp-orange);
}

.dp-logi-page .dp-route-btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    color: #fff;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.12);
    font-size: 13px;
    font-weight: 900;
}

/* =========================
 * 优势区
 * ========================= */
.dp-logi-page .dp-advantages-layout {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 24px;
    align-items: stretch;
}

.dp-logi-page .dp-adv-intro {
    padding: 38px;
    border-radius: 26px;
    background: linear-gradient(150deg, var(--dp-blue), var(--dp-blue-dark));
    color: #fff;
    position: relative;
    overflow: hidden;
}

.dp-logi-page .dp-adv-intro::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border: 42px solid rgba(255,255,255,.04);
    border-radius: 50%;
    right: -100px;
    bottom: -120px;
}

.dp-logi-page .dp-adv-intro h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(31px, 4vw, 48px);
    line-height: 1.2;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.dp-logi-page .dp-adv-intro p {
    margin: 17px 0 0;
    color: rgba(255,255,255,.62);
    font-size: 15px;
    line-height: 1.85;
    position: relative;
    z-index: 2;
}

.dp-logi-page .dp-adv-badge {
    display: inline-flex;
    margin-top: 20px;
    padding: 9px 13px;
    border-radius: 999px;
    color: #fff;
    background: var(--dp-orange);
    font-size: 12px;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.dp-logi-page .dp-advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 16px;
}

.dp-logi-page .dp-adv-card {
    padding: 24px;
    border: 1px solid var(--dp-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 11px 30px rgba(7,29,67,.055);
}

.dp-logi-page .dp-adv-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--dp-orange-soft);
    color: var(--dp-orange);
}

.dp-logi-page .dp-adv-card h3 {
    margin: 17px 0 0;
    color: var(--dp-blue-dark);
    font-size: 18px;
    font-weight: 900;
}

.dp-logi-page .dp-adv-card p {
    margin: 8px 0 0;
    color: var(--dp-muted);
    font-size: 13px;
    line-height: 1.75;
}

/* =========================
 * 流程
 * ========================= */
.dp-logi-page .dp-process-section {
    background: #fff;
}

.dp-logi-page .dp-process-reminder {
    max-width: 920px;
    margin: -10px auto 26px;
    padding: 14px 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid color-mix(in srgb, var(--dp-orange) 24%, var(--dp-line));
    border-radius: 16px;
    background: var(--dp-orange-soft);
}

.dp-logi-page .dp-process-reminder-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--dp-orange);
    background: #fff;
}

.dp-logi-page .dp-process-reminder strong,
.dp-logi-page .dp-process-reminder span {
    display: block;
}

.dp-logi-page .dp-process-reminder strong {
    color: var(--dp-blue-dark);
    font-size: 14px;
    font-weight: 900;
}

.dp-logi-page .dp-process-reminder span {
    margin-top: 3px;
    color: var(--dp-muted);
    font-size: 12px;
    line-height: 1.65;
}

.dp-logi-page .dp-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 14px;
}

.dp-logi-page .dp-process-item {
    min-width: 0;
    padding: 22px 17px;
    border: 1px solid var(--dp-line);
    border-radius: 18px;
    background: var(--dp-bg);
    position: relative;
}

.dp-logi-page .dp-process-item:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -14px;
    top: 30px;
    z-index: 3;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: var(--dp-orange);
    background: #fff;
    border: 1px solid var(--dp-line);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 900;
}

.dp-logi-page .dp-process-no {
    color: var(--dp-orange);
    font-size: 25px;
    font-weight: 900;
    line-height: 1;
}

.dp-logi-page .dp-process-item h3 {
    margin: 17px 0 0;
    color: var(--dp-blue-dark);
    font-size: 16px;
    font-weight: 900;
}

.dp-logi-page .dp-process-item p {
    margin: 8px 0 0;
    color: var(--dp-muted);
    font-size: 12px;
    line-height: 1.65;
}

/* =========================
 * 出货案例
 * ========================= */
.dp-logi-page .dp-cases-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 90px;
    gap: 12px;
}

.dp-logi-page .dp-case-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #e8eef6;
    border: 1px solid var(--dp-line);
    cursor: zoom-in;
}

.dp-logi-page .dp-case-item:nth-child(1),
.dp-logi-page .dp-case-item:nth-child(6n+1) {
    grid-column: span 5;
    grid-row: span 3;
}

.dp-logi-page .dp-case-item:nth-child(2),
.dp-logi-page .dp-case-item:nth-child(6n+2) {
    grid-column: span 3;
    grid-row: span 2;
}

.dp-logi-page .dp-case-item:nth-child(3),
.dp-logi-page .dp-case-item:nth-child(6n+3) {
    grid-column: span 4;
    grid-row: span 2;
}

.dp-logi-page .dp-case-item:nth-child(4),
.dp-logi-page .dp-case-item:nth-child(6n+4) {
    grid-column: span 3;
    grid-row: span 2;
}

.dp-logi-page .dp-case-item:nth-child(5),
.dp-logi-page .dp-case-item:nth-child(6n+5) {
    grid-column: span 4;
    grid-row: span 2;
}

.dp-logi-page .dp-case-item:nth-child(6),
.dp-logi-page .dp-case-item:nth-child(6n) {
    grid-column: span 7;
    grid-row: span 2;
}

.dp-logi-page .dp-case-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.dp-logi-page .dp-case-item:hover img {
    transform: scale(1.045);
}

.dp-logi-page .dp-case-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 18px;
    color: var(--dp-blue);
    background: linear-gradient(145deg, #edf3fb, #f8fafc);
}

.dp-logi-page .dp-case-placeholder strong {
    display: block;
    margin-top: 9px;
    font-size: 14px;
}

.dp-logi-page .dp-case-placeholder span {
    display: block;
    margin-top: 4px;
    color: var(--dp-muted);
    font-size: 11px;
}

/* =========================
 * 评价
 * ========================= */
.dp-logi-page .dp-reviews-section {
    background: #fff;
}

.dp-logi-page .dp-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
}

.dp-logi-page .dp-review-card {
    padding: 26px;
    border-radius: 21px;
    border: 1px solid var(--dp-line);
    background: var(--dp-bg);
}

.dp-logi-page .dp-review-stars {
    color: var(--dp-orange);
    font-size: 16px;
    letter-spacing: 2px;
}

.dp-logi-page .dp-review-text {
    margin: 17px 0 0;
    color: var(--dp-text);
    font-size: 14px;
    line-height: 1.85;
}

.dp-logi-page .dp-review-author {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--dp-line);
}

.dp-logi-page .dp-review-avatar {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    border-radius: 50%;
    background: var(--dp-blue);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

.dp-logi-page .dp-review-author strong {
    display: block;
    color: var(--dp-blue-dark);
    font-size: 13px;
}

.dp-logi-page .dp-review-author span {
    display: block;
    margin-top: 2px;
    color: var(--dp-muted);
    font-size: 11px;
}

/* =========================
 * FAQ
 * ========================= */
.dp-logi-page .dp-faq-list {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.dp-logi-page .dp-faq-item {
    border: 1px solid var(--dp-line);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
}

.dp-logi-page .dp-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 19px 21px;
    border: none;
    background: transparent;
    color: var(--dp-blue-dark);
    font: inherit;
    font-size: 15px;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}

.dp-logi-page .dp-faq-plus {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--dp-orange);
    background: var(--dp-orange-soft);
    font-size: 20px;
    transition: transform .2s ease;
}

.dp-logi-page .dp-faq-answer {
    display: none;
    padding: 0 21px 20px;
    color: var(--dp-muted);
    font-size: 13px;
    line-height: 1.8;
}

.dp-logi-page .dp-faq-item.is-open .dp-faq-answer {
    display: block;
}

.dp-logi-page .dp-faq-item.is-open .dp-faq-plus {
    transform: rotate(45deg);
}

/* =========================
 * 最终 CTA
 * ========================= */
.dp-logi-page .dp-final {
    padding: 0 0 78px;
}

.dp-logi-page .dp-final-card {
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
    border-radius: 28px;
    color: #fff;
    background: linear-gradient(135deg, var(--dp-blue) 0%, var(--dp-blue-dark) 72%);
    box-shadow: 0 28px 70px rgba(7,29,67,.24);
    position: relative;
    overflow: hidden;
}

.dp-logi-page .dp-final-card::before,
.dp-logi-page .dp-final-card::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.08);
}

.dp-logi-page .dp-final-card::before {
    width: 300px;
    height: 300px;
    right: -120px;
    top: -150px;
}

.dp-logi-page .dp-final-card::after {
    width: 220px;
    height: 220px;
    right: -60px;
    top: -80px;
}

.dp-logi-page .dp-final-copy,
.dp-logi-page .dp-final-action {
    position: relative;
    z-index: 2;
}

.dp-logi-page .dp-final-card h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(29px, 4vw, 47px);
    line-height: 1.2;
    font-weight: 900;
}

.dp-logi-page .dp-final-card p {
    max-width: 760px;
    margin: 13px 0 0;
    color: rgba(255,255,255,.62);
    font-size: 15px;
    line-height: 1.8;
}

.dp-logi-page .dp-final-time {
    margin-top: 11px;
    color: rgba(255,255,255,.78);
    font-size: 12px;
    font-weight: 700;
}

.dp-logi-page .dp-final-contact-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.dp-logi-page .dp-final-action .dp-btn {
    min-width: 190px;
    white-space: nowrap;
}

.dp-logi-page .dp-footer {
    padding: 24px 16px 34px;
    color: var(--dp-muted);
    text-align: center;
    font-size: 12px;
}

/* =========================
 * 底部固定咨询栏
 * ========================= */
.dp-logi-page .dp-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    padding: 6px 16px calc(6px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.96);
    border-top: 1px solid var(--dp-line);
    backdrop-filter: blur(16px);
    box-shadow: 0 -10px 35px rgba(7,29,67,.1);
}

.dp-logi-page .dp-sticky-inner {
    width: min(100%, 1280px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.dp-logi-page .dp-sticky-info {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
}

.dp-logi-page .dp-online-dot {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border-radius: 50%;
    background: #32d583;
    box-shadow: 0 0 0 7px rgba(50,213,131,.13);
    animation: dpPulse 1.8s infinite;
}

@keyframes dpPulse {
    0%,100% { opacity: 1; }
    50% { opacity: .45; }
}

.dp-logi-page .dp-sticky-info strong {
    display: block;
    color: var(--dp-blue-dark);
    font-size: 14px;
}

.dp-logi-page .dp-sticky-info span {
    display: block;
    margin-top: 1px;
    color: var(--dp-muted);
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dp-logi-page .dp-sticky-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 470px;
}

.dp-logi-page .dp-sticky-btn {
    flex: 1 1 0;
    min-width: 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 9px 16px;
    border-radius: 13px;
    color: #fff;
    background: var(--dp-wa);
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 10px 28px color-mix(in srgb, var(--dp-wa) 28%, transparent);
}

.dp-logi-page .dp-sticky-btn-wechat {
    background: var(--dp-wechat);
    box-shadow: 0 10px 28px color-mix(in srgb, var(--dp-wechat) 28%, transparent);
}

.dp-logi-page .dp-sticky-btn-chat {
    border: 0 !important;
    background: linear-gradient(145deg, var(--dp-blue), var(--dp-blue-dark)) !important;
    box-shadow: 0 10px 28px rgba(7,29,67,.22) !important;
    font-family: inherit !important;
    cursor: pointer;
}

.dp-logi-page .dp-sticky-btn svg {
    width: 21px !important;
    height: 21px !important;
    flex: 0 0 21px !important;
}

/* =========================
 * Lightbox
 * ========================= */
.dp-logi-page .dp-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    padding: 26px;
    align-items: center;
    justify-content: center;
    background: rgba(3,11,25,.94);
}

.dp-logi-page .dp-lightbox.is-open {
    display: flex;
}

.dp-logi-page .dp-lightbox img {
    max-width: min(96vw, 1200px);
    max-height: 86vh;
    object-fit: contain;
    border-radius: 12px;
}

.dp-logi-page .dp-lightbox-close {
    position: absolute;
    right: 24px;
    top: 24px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    color: #fff;
    background: rgba(255,255,255,.08);
    cursor: pointer;
}

/* =========================
 * 平板
 * ========================= */
@media (max-width: 1100px) {
    .dp-logi-page .dp-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }

    .dp-logi-page .dp-hero-features {
        grid-template-columns: 1fr;
    }

    .dp-logi-page .dp-services-grid,
    .dp-logi-page .dp-routes-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .dp-logi-page .dp-process-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
        gap: 16px;
    }

    .dp-logi-page .dp-process-item:nth-child(2n)::after {
        display: none;
    }

    .dp-logi-page .dp-nav a:not(.dp-head-btn) {
        display: none;
    }
}

/* =========================
 * 手机
 * ========================= */
@media (max-width: 767px) {
    .dp-logi-page {
        padding-bottom: 82px;
    }

    .dp-logi-page .dp-shell {
        width: min(100% - 24px, 1280px);
    }

    .dp-logi-page .dp-section {
        padding: 52px 0;
    }

    .dp-logi-page .dp-top-note {
        min-height: 28px !important;
        margin: 0 !important;
        padding: 5px 10px !important;
        font-size: 10px;
        line-height: 18px !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    body.admin-bar .dp-logi-page .dp-site-head {
        top: 46px;
    }

    .dp-logi-page .dp-header {
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .dp-logi-page .dp-header-inner {
        height: 58px !important;
        min-height: 58px !important;
        max-height: 58px !important;
        margin: 0 auto !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        gap: 10px !important;
    }

    .dp-logi-page .dp-brand {
        height: 58px !important;
        min-height: 58px !important;
        margin: 0 !important;
        padding: 0 !important;
        gap: 10px !important;
        line-height: 1 !important;
    }

    .dp-logi-page .dp-brand > span:last-child {
        min-width: 0;
        margin: 0 !important;
        padding: 0 !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
    }

    .dp-logi-page .dp-logo-img,
    .dp-logi-page .dp-logo-fallback {
        width: 40px !important;
        height: 40px !important;
        flex: 0 0 40px !important;
        margin: 0 !important;
        border-radius: 12px;
    }

    .dp-logi-page .dp-logo-fallback {
        font-size: 17px !important;
    }

    .dp-logi-page .dp-logo-fallback::after {
        width: 16px;
        height: 6px;
        right: -4px;
        bottom: 4px;
    }

    .dp-logi-page .dp-brand-name {
        margin: 0 !important;
        padding: 0 !important;
        font-size: 16px;
        line-height: 18px !important;
    }

    .dp-logi-page .dp-brand-en {
        margin: 0 !important;
        padding: 0 !important;
        font-size: 6px;
        line-height: 8px !important;
        letter-spacing: .08em;
    }

    .dp-logi-page .dp-mobile-menu-btn {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        padding: 0 !important;
        margin: 0 !important;
        border-radius: 11px !important;
    }

    .dp-logi-page .dp-head-btn {
        display: none;
    }

    .dp-logi-page .dp-mobile-menu-btn {
        display: inline-flex;
    }

    .dp-logi-page .dp-nav.is-open {
        position: absolute;
        left: 12px;
        right: 12px;
        top: calc(100% + 8px);
        display: grid;
        gap: 0;
        padding: 10px;
        border: 1px solid var(--dp-line);
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 18px 40px rgba(7,29,67,.14);
    }

    .dp-logi-page .dp-nav.is-open a:not(.dp-head-btn) {
        display: block;
        padding: 11px 12px;
        border-radius: 9px;
    }

    .dp-logi-page .dp-hero {
        padding: 48px 0 34px;
    }

    .dp-logi-page .dp-hero-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .dp-logi-page .dp-hero-title {
        font-size: clamp(38px, 12vw, 54px);
    }

    .dp-logi-page .dp-hero-desc {
        font-size: 14px;
        line-height: 1.8;
        margin-top: 17px;
    }

    .dp-logi-page .dp-hero-features {
        grid-template-columns: 1fr;
        gap: 9px;
        margin-top: 22px;
    }

    .dp-logi-page .dp-hero-feature {
        padding: 12px 13px;
    }

    .dp-logi-page .dp-hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 9px;
        margin-top: 23px;
    }

    .dp-logi-page .dp-hero-actions.has-wechat .dp-btn-outline {
        grid-column: 1 / -1;
    }

    .dp-logi-page .dp-btn {
        min-height: 48px;
        padding: 11px 13px;
        font-size: 13px;
    }

    .dp-logi-page .dp-hero-visual {
        min-height: 0;
        display: block;
        padding-bottom: 58px;
    }

    .dp-logi-page .dp-hero-photo {
        width: 100%;
        height: 365px;
        display: block;
        border-radius: 22px;
    }

    .dp-logi-page .dp-route-board {
        width: 100%;
        min-height: 330px;
        padding: 20px;
        border-radius: 22px;
    }

    .dp-logi-page .dp-board-path {
        margin-top: 42px;
        gap: 10px;
    }

    .dp-logi-page .dp-board-city-icon {
        width: 55px;
        height: 55px;
        border-radius: 17px;
    }

    .dp-logi-page .dp-board-city strong {
        font-size: 14px;
    }

    .dp-logi-page .dp-board-routes {
        margin-top: 38px;
        gap: 7px;
    }

    .dp-logi-page .dp-board-route {
        padding: 9px 7px;
    }

    .dp-logi-page .dp-board-route strong {
        font-size: 10px;
    }

    .dp-logi-page .dp-board-route span {
        font-size: 8px;
    }

    .dp-logi-page .dp-float-card {
        padding: 10px 11px;
        border-radius: 13px;
    }

    .dp-logi-page .dp-float-card strong {
        font-size: 11px;
    }

    .dp-logi-page .dp-float-card span {
        font-size: 9px;
    }

    /* 手机端给下方悬浮卡片预留独立空间，避免遮住“国际空运”等路线卡片 */
    .dp-logi-page .dp-float-one { left: 10px; bottom: 0; }
    .dp-logi-page .dp-float-two { right: 8px; top: 16px; }

    .dp-logi-page .dp-stats-wrap {
        margin-top: -4px;
    }

    .dp-logi-page .dp-stats {
        grid-template-columns: repeat(2, minmax(0,1fr));
        border-radius: 18px;
    }

    .dp-logi-page .dp-stat {
        padding: 20px 10px;
    }

    .dp-logi-page .dp-stat::after {
        display: none;
    }

    .dp-logi-page .dp-stat:nth-child(odd) {
        border-right: 1px solid var(--dp-line);
    }

    .dp-logi-page .dp-stat:nth-child(-n+2) {
        border-bottom: 1px solid var(--dp-line);
    }

    .dp-logi-page .dp-stat span {
        font-size: 11px;
    }

    .dp-logi-page .dp-section-head {
        margin-bottom: 26px;
    }

    .dp-logi-page .dp-section-title {
        font-size: 29px;
    }

    .dp-logi-page .dp-section-desc {
        font-size: 13px;
        line-height: 1.75;
    }

    .dp-logi-page .dp-services-grid,
    .dp-logi-page .dp-routes-grid,
    .dp-logi-page .dp-advantages-grid,
    .dp-logi-page .dp-reviews-grid {
        grid-template-columns: 1fr;
    }

    .dp-logi-page .dp-service-card {
        min-height: 0;
        padding: 21px;
    }

    .dp-logi-page .dp-route-card {
        min-height: 285px;
        padding: 21px;
    }

    .dp-logi-page .dp-advantages-layout {
        grid-template-columns: 1fr;
    }

    .dp-logi-page .dp-adv-intro {
        padding: 29px 24px;
        border-radius: 22px;
    }

    .dp-logi-page .dp-process-reminder {
        margin: -6px 0 18px;
        padding: 12px 13px;
        gap: 10px;
        border-radius: 14px;
    }

    .dp-logi-page .dp-process-reminder-icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .dp-logi-page .dp-process-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .dp-logi-page .dp-process-item {
        padding: 18px 18px 18px 78px;
        min-height: 94px;
    }

    .dp-logi-page .dp-process-no {
        position: absolute;
        left: 20px;
        top: 24px;
        font-size: 23px;
    }

    .dp-logi-page .dp-process-item h3 {
        margin-top: 0;
    }

    .dp-logi-page .dp-process-item::after {
        display: none !important;
    }

    .dp-logi-page .dp-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 125px;
        gap: 8px;
    }

    .dp-logi-page .dp-case-item,
    .dp-logi-page .dp-case-item:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
        border-radius: 13px;
    }

    .dp-logi-page .dp-case-item:nth-child(1),
    .dp-logi-page .dp-case-item:nth-child(5) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .dp-logi-page .dp-review-card {
        padding: 21px;
    }

    .dp-logi-page .dp-faq-question {
        padding: 17px 16px;
        font-size: 13px;
    }

    .dp-logi-page .dp-faq-answer {
        padding: 0 16px 17px;
        font-size: 12px;
    }

    .dp-logi-page .dp-final {
        padding-bottom: 52px;
    }

    .dp-logi-page .dp-final-card {
        grid-template-columns: 1fr;
        padding: 31px 23px;
        border-radius: 22px;
    }

    .dp-logi-page .dp-final-contact-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .dp-logi-page .dp-final-contact-actions.has-wechat {
        grid-template-columns: 1fr 1fr;
    }

    .dp-logi-page .dp-final-action .dp-btn {
        width: 100%;
        min-width: 0;
        padding-left: 10px;
        padding-right: 10px;
    }

    .dp-logi-page .dp-sticky {
        padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
    }

    .dp-logi-page .dp-sticky-info {
        display: none;
    }

    .dp-logi-page .dp-sticky-actions {
        width: 100%;
        min-width: 0;
        gap: 6px;
    }

    .dp-logi-page .dp-sticky-btn {
        width: auto !important;
        min-width: 0 !important;
        min-height: 50px !important;
        height: 50px !important;
        padding: 8px 5px !important;
        border-radius: 11px !important;
        font-size: 11.5px !important;
        line-height: 1 !important;
        gap: 5px !important;
    }

    .dp-logi-page .dp-sticky-btn svg {
        width: 19px !important;
        height: 19px !important;
        flex-basis: 19px !important;
    }

    .dp-logi-page .dp-sticky-btn span {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media (max-width: 390px) {
    .dp-logi-page .dp-brand-en {
        display: none;
    }

    .dp-logi-page .dp-hero-actions:not(.has-wechat) {
        grid-template-columns: 1fr;
    }

    .dp-logi-page .dp-hero-actions.has-wechat {
        grid-template-columns: 1fr 1fr;
    }

    .dp-logi-page .dp-hero-actions.has-wechat .dp-btn {
        padding-left: 7px;
        padding-right: 7px;
        font-size: 12px;
    }

    .dp-logi-page .dp-board-city-icon {
        width: 48px;
        height: 48px;
    }
}

/* =========================
 * 站内在线聊天 v2.0.3
 * ========================= */
.dp-logi-page .dp-chat-launcher,
.dp-logi-page .dp-chat-close,
.dp-logi-page .dp-chat-chip,
.dp-logi-page .dp-chat-send,
.dp-logi-page .dp-chat-profile-saved button {
    -webkit-appearance: none !important;
    appearance: none !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    line-height: 1 !important;
    text-transform: none !important;
}

.dp-logi-page .dp-chat-launcher {
    position: fixed;
    right: 22px;
    bottom: 92px;
    z-index: 1002;
    width: 126px !important;
    min-width: 126px !important;
    max-width: 126px !important;
    height: 54px !important;
    min-height: 54px !important;
    max-height: 54px !important;
    padding: 0 17px 0 12px !important;
    border: 0 !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    overflow: visible !important;
    color: #fff !important;
    background: linear-gradient(145deg, var(--dp-blue), var(--dp-blue-dark)) !important;
    box-shadow: 0 16px 38px rgba(7,29,67,.28) !important;
    cursor: pointer;
    font-family: inherit !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    transform: translateZ(0);
    transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}

.dp-logi-page .dp-chat-launcher:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(7,29,67,.33) !important;
}

.dp-logi-page .dp-chat-launcher-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.12);
}

.dp-logi-page .dp-chat-launcher-icon svg {
    width: 22px !important;
    height: 22px !important;
    display: block !important;
    flex: none !important;
}

.dp-logi-page .dp-chat-launcher-text {
    display: block;
    white-space: nowrap;
}

.dp-logi-page .dp-chat-launcher::after {
    content: '';
    position: absolute;
    right: 5px;
    top: 3px;
    width: 11px;
    height: 11px;
    box-sizing: content-box;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #35cf78;
    box-shadow: 0 2px 6px rgba(7,29,67,.2);
}

/* 聊天窗口开启时，不再让悬浮按钮叠在窗口/页面内容上。 */
.dp-logi-page.dp-chat-is-open .dp-chat-launcher {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(12px) scale(.92) !important;
}

.dp-logi-page .dp-chat-panel {
    position: fixed;
    right: 22px;
    bottom: 158px;
    z-index: 1003;
    width: min(390px, calc(100vw - 28px));
    height: min(590px, calc(100dvh - 190px));
    display: none;
    grid-template-rows: auto minmax(0,1fr) auto;
    overflow: hidden;
    border: 1px solid rgba(11,46,104,.14);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(7,29,67,.28);
}

.dp-logi-page .dp-chat-panel.is-open { display: grid; }

.dp-logi-page .dp-chat-head {
    padding: 14px 15px;
    color: #fff;
    background: linear-gradient(135deg, var(--dp-blue), var(--dp-blue-dark));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.dp-logi-page .dp-chat-head-main { min-width: 0; display: flex; align-items: center; gap: 11px; }
.dp-logi-page .dp-chat-avatar { width: 40px; height: 40px; flex: 0 0 40px; border-radius: 13px; background: rgba(255,255,255,.14); display: grid; place-items: center; font-weight: 900; overflow: hidden; }
.dp-logi-page .dp-chat-avatar img { width: 100%; height: 100%; display: block; object-fit: contain; padding: 3px; }
.dp-logi-page .dp-chat-avatar > span { display: grid; width: 100%; height: 100%; place-items: center; margin: 0; color: #fff; font-size: 16px; font-weight: 900; }
.dp-logi-page .dp-chat-head strong { display:block; font-size:14px; }
.dp-logi-page .dp-chat-head span { display:block; margin-top:2px; color:rgba(255,255,255,.72); font-size:11px; }
.dp-logi-page .dp-chat-close {
    width:36px !important;
    min-width:36px !important;
    max-width:36px !important;
    height:36px !important;
    min-height:36px !important;
    padding:0 !important;
    border:0 !important;
    border-radius:11px !important;
    color:#fff !important;
    background:rgba(255,255,255,.1) !important;
    display:grid !important;
    place-items:center !important;
    cursor:pointer;
}
.dp-logi-page .dp-chat-close svg { display:block !important; width:19px !important; height:19px !important; }

.dp-logi-page .dp-chat-body {
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 14px 13px 15px;
    background: linear-gradient(180deg,#f7f9fc 0%,#fff 100%);
}

.dp-logi-page .dp-chat-message { display:flex; margin:8px 0; }
.dp-logi-page .dp-chat-message.is-visitor { justify-content:flex-end; }
.dp-logi-page .dp-chat-bubble { max-width:82%; padding:10px 12px; border-radius:15px 15px 15px 5px; background:#fff; border:1px solid var(--dp-line); color:var(--dp-text); font-size:13px; line-height:1.65; box-shadow:0 5px 16px rgba(7,29,67,.05); white-space:pre-wrap; word-break:break-word; }
.dp-logi-page .dp-chat-message.is-visitor .dp-chat-bubble { border:0; border-radius:15px 15px 5px 15px; color:#fff; background:var(--dp-blue); }

.dp-logi-page .dp-chat-quick { display:flex; flex-wrap:wrap; gap:7px; margin:12px 0 4px; }
.dp-logi-page .dp-chat-chip {
    width:auto !important;
    min-width:0 !important;
    max-width:100% !important;
    min-height:30px !important;
    border:1px solid rgba(11,46,104,.14) !important;
    border-radius:999px !important;
    padding:7px 10px !important;
    color:var(--dp-blue) !important;
    background:#fff !important;
    font-family:inherit !important;
    font-size:11px !important;
    font-weight:700 !important;
    white-space:normal;
    cursor:pointer;
}

.dp-logi-page .dp-chat-compose {
    border-top:1px solid var(--dp-line);
    padding:10px 11px 11px;
    background:#fff;
}

.dp-logi-page .dp-chat-meta {
    display:grid;
    grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
    gap:7px;
    margin:0 0 8px !important;
}

.dp-logi-page .dp-chat-meta[hidden],
.dp-logi-page .dp-chat-profile-saved[hidden] {
    display:none !important;
}

.dp-logi-page .dp-chat-meta input,
.dp-logi-page .dp-chat-text {
    width:100% !important;
    max-width:none !important;
    box-sizing:border-box !important;
    margin:0 !important;
    border:1px solid var(--dp-line) !important;
    border-radius:10px !important;
    background:#fff !important;
    color:var(--dp-text) !important;
    font-family:inherit !important;
    font-weight:400 !important;
    outline:none !important;
    box-shadow:none !important;
    -webkit-appearance:none !important;
    appearance:none !important;
}

.dp-logi-page .dp-chat-meta input {
    height:38px !important;
    min-height:38px !important;
    padding:8px 10px !important;
    font-size:11px !important;
    line-height:20px !important;
}

.dp-logi-page .dp-chat-meta input:focus,
.dp-logi-page .dp-chat-text:focus {
    border-color:var(--dp-blue) !important;
    box-shadow:0 0 0 3px rgba(11,46,104,.08) !important;
}

.dp-logi-page .dp-chat-profile-saved {
    min-height:32px;
    margin:0 0 8px;
    padding:6px 9px;
    border-radius:10px;
    background:#f4f7fb;
    color:var(--dp-muted);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    font-size:10px;
}

.dp-logi-page .dp-chat-profile-saved button {
    width:auto !important;
    min-width:0 !important;
    min-height:24px !important;
    padding:5px 8px !important;
    border:0 !important;
    border-radius:7px !important;
    background:#fff !important;
    color:var(--dp-blue) !important;
    font-family:inherit !important;
    font-size:10px !important;
    font-weight:800 !important;
    cursor:pointer;
}

.dp-logi-page .dp-chat-sendrow {
    display:grid !important;
    grid-template-columns:minmax(0,1fr) 76px !important;
    align-items:stretch !important;
    gap:7px !important;
    width:100% !important;
    margin:0 !important;
}

.dp-logi-page .dp-chat-text {
    height:42px !important;
    min-height:42px !important;
    max-height:92px !important;
    resize:none !important;
    padding:10px 11px !important;
    font-size:12px !important;
    line-height:20px !important;
}

.dp-logi-page .dp-chat-send {
    width:76px !important;
    min-width:76px !important;
    max-width:76px !important;
    height:42px !important;
    min-height:42px !important;
    padding:0 10px !important;
    border:0 !important;
    border-radius:10px !important;
    color:#fff !important;
    background:var(--dp-orange) !important;
    font-family:inherit !important;
    font-size:12px !important;
    font-weight:900 !important;
    cursor:pointer;
    box-shadow:none !important;
}

.dp-logi-page .dp-chat-send:disabled { opacity:.58; cursor:wait; }
.dp-logi-page .dp-chat-notice { margin-top:7px; color:var(--dp-muted); font-size:10px; line-height:1.45; }
.dp-logi-page .dp-chat-handoff { display:flex; gap:7px; margin-top:8px; }
.dp-logi-page .dp-chat-handoff a { flex:1; min-height:34px; border-radius:9px; display:flex; align-items:center; justify-content:center; gap:6px; color:#fff; font-size:11px; font-weight:800; }
.dp-logi-page .dp-chat-handoff .wa { background:var(--dp-wa); }
.dp-logi-page .dp-chat-handoff .wc { background:var(--dp-wechat); }
.dp-logi-page .dp-chat-error { color:#b32d2e; font-size:11px; margin-top:6px; display:none; }

@media (max-width: 767px) {
    /* 手机端不再使用圆形悬浮球，入口并入底部三按钮。 */
    .dp-logi-page .dp-chat-launcher {
        display: none !important;
    }

    /* 打开后采用接近全屏的聊天面板，上下仅保留安全区和底部客服栏。 */
    .dp-logi-page .dp-chat-panel {
        left: 8px !important;
        right: 8px !important;
        top: calc(8px + env(safe-area-inset-top)) !important;
        bottom: calc(72px + env(safe-area-inset-bottom)) !important;
        width: auto !important;
        height: auto !important;
        max-width: none !important;
        max-height: none !important;
        border-radius: 18px !important;
        box-shadow: 0 24px 70px rgba(7,29,67,.34) !important;
    }

    body.admin-bar .dp-logi-page .dp-chat-panel {
        top: calc(54px + env(safe-area-inset-top)) !important;
    }

    .dp-logi-page .dp-chat-panel.is-open {
        display: grid !important;
    }

    .dp-logi-page .dp-chat-head {
        min-height: 68px;
        padding: 12px 13px;
    }

    .dp-logi-page .dp-chat-avatar {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .dp-logi-page .dp-chat-head strong { font-size: 15px; }
    .dp-logi-page .dp-chat-head span { font-size: 11px; }

    .dp-logi-page .dp-chat-body {
        min-height: 0;
        padding: 14px 12px 16px;
        overscroll-behavior: contain;
    }

    .dp-logi-page .dp-chat-bubble {
        max-width: 88%;
        font-size: 13px;
        line-height: 1.6;
    }

    .dp-logi-page .dp-chat-quick {
        gap: 7px;
        margin-top: 14px;
    }

    .dp-logi-page .dp-chat-chip {
        min-height: 34px !important;
        padding: 8px 10px !important;
        font-size: 11px !important;
    }

    .dp-logi-page .dp-chat-compose {
        padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
        background: #fff;
        box-shadow: 0 -8px 24px rgba(7,29,67,.06);
    }

    .dp-logi-page .dp-chat-meta {
        grid-template-columns: minmax(0,.86fr) minmax(0,1.14fr);
    }

    .dp-logi-page .dp-chat-sendrow {
        grid-template-columns: minmax(0,1fr) 72px !important;
    }

    .dp-logi-page .dp-chat-text {
        height: 44px !important;
        min-height: 44px !important;
        font-size: 13px !important;
    }

    .dp-logi-page .dp-chat-send {
        width: 72px !important;
        min-width: 72px !important;
        max-width: 72px !important;
        height: 44px !important;
        min-height: 44px !important;
    }

    .dp-logi-page .dp-chat-handoff a {
        min-height: 38px;
        font-size: 11px;
    }
}

@media (max-width: 340px) {
    .dp-logi-page .dp-chat-meta { grid-template-columns:1fr; }
}

/* Vanilla WordPress / block-theme compatibility */
html:has(body.dp-logistics-fullwidth) { margin:0; padding:0; }
html:has(body.dp-logistics-fullwidth) { overflow-x:hidden !important; }
body.dp-logistics-fullwidth { margin:0 !important; padding:0 !important; background:#fff; overflow-x:hidden !important; width:100% !important; max-width:100% !important; }
body.dp-logistics-fullwidth .wp-site-blocks,
body.dp-logistics-fullwidth main,
body.dp-logistics-fullwidth .entry-content,
body.dp-logistics-fullwidth .wp-block-post-content { margin:0 !important; padding:0 !important; max-width:none !important; width:100% !important; }
body.dp-logistics-fullwidth .dp-logi-page,
.wp-block-shortcode > .dp-logi-page {
  width:100% !important; max-width:none !important; margin:0 !important;
}


/* =========================================================
 * v2.0.5 视觉紧凑修复
 * 1) 去掉专用页面/短代码容器额外上下留白
 * 2) PC 页头固定为紧凑高度
 * 3) PC 底部客服栏改成紧凑浮动按钮组，不再铺满整屏白底
 * 4) 移除重复的右侧在线客服悬浮入口
 * ========================================================= */
html:has(body.dp-logistics-fullwidth),
body.dp-logistics-fullwidth {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
body.dp-logistics-fullwidth > .wp-block-shortcode,
body.dp-logistics-fullwidth > p,
body.dp-logistics-fullwidth .wp-block-shortcode:has(> .dp-logi-page),
body.dp-logistics-fullwidth .entry-content:has(> .dp-logi-page) {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.dp-logi-page,
.dp-logi-page .dp-site-head,
.dp-logi-page .dp-top-note,
.dp-logi-page .dp-header {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* 顶部说明条：不留上下空白。 */
.dp-logi-page .dp-top-note {
    height: 30px !important;
    min-height: 30px !important;
    max-height: 30px !important;
    padding: 0 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

/* PC 主导航：强制紧凑，不允许主题样式把 header 撑高。 */
@media (min-width: 768px) {
    .dp-logi-page .dp-header,
    .dp-logi-page .dp-header-inner {
        height: 68px !important;
        min-height: 68px !important;
        max-height: 68px !important;
    }
    .dp-logi-page .dp-header {
        padding: 0 !important;
    }
    .dp-logi-page .dp-header-inner {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .dp-logi-page .dp-logo-img,
    .dp-logi-page .dp-logo-fallback {
        width: 46px !important;
        height: 46px !important;
        flex-basis: 46px !important;
    }
    .dp-logi-page .dp-brand-name { font-size: 18px !important; }
    .dp-logi-page .dp-brand-en { margin-top: 2px !important; }

    /* 首屏再收紧一点，避免大卡片上下制造空旷感。 */
    .dp-logi-page .dp-hero {
        padding-top: 34px !important;
        padding-bottom: 28px !important;
    }
    .dp-logi-page .dp-hero-visual {
        min-height: 372px !important;
    }
    .dp-logi-page .dp-route-board {
        min-height: 360px !important;
        padding: 24px !important;
    }

    /* PC 底部不再整条白底，占位仅保留按钮本身。 */
    .dp-logi-page .dp-sticky {
        left: 50% !important;
        right: auto !important;
        bottom: 14px !important;
        width: auto !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        transform: translateX(-50%) !important;
        padding: 0 !important;
        background: transparent !important;
        border-top: 0 !important;
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
        pointer-events: none;
    }
    .dp-logi-page .dp-sticky-inner {
        width: auto !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        gap: 0 !important;
        pointer-events: auto;
    }
    .dp-logi-page .dp-sticky-info {
        display: none !important;
    }
    .dp-logi-page .dp-sticky-actions {
        width: auto !important;
        min-width: 0 !important;
        padding: 6px !important;
        gap: 7px !important;
        border: 1px solid rgba(11,46,104,.08) !important;
        border-radius: 18px !important;
        background: rgba(255,255,255,.96) !important;
        box-shadow: 0 14px 36px rgba(7,29,67,.16) !important;
        -webkit-backdrop-filter: blur(14px) !important;
        backdrop-filter: blur(14px) !important;
    }
    .dp-logi-page .dp-sticky-btn {
        flex: none !important;
        width: auto !important;
        min-width: 132px !important;
        height: 42px !important;
        min-height: 42px !important;
        max-height: 42px !important;
        padding: 0 15px !important;
        border-radius: 12px !important;
    }

    /* fixed bar 不再需要为整条白底预留 68px。 */
    .dp-logi-page { padding-bottom: 24px !important; }
}

/* 右下角重复客服入口彻底隐藏；聊天统一从导航/底部按钮打开。 */
.dp-logi-page .dp-chat-launcher {
    display: none !important;
}

/* 手机继续使用底部整排三按钮，但强制紧凑高度。 */
@media (max-width: 767px) {
    .dp-logi-page .dp-top-note {
        height: 26px !important;
        min-height: 26px !important;
        max-height: 26px !important;
        padding: 0 8px !important;
        line-height: 1 !important;
    }
    .dp-logi-page .dp-header,
    .dp-logi-page .dp-header-inner {
        height: 56px !important;
        min-height: 56px !important;
        max-height: 56px !important;
    }
    .dp-logi-page .dp-sticky {
        height: 64px !important;
        min-height: 64px !important;
        max-height: 64px !important;
        padding: 6px 8px calc(6px + env(safe-area-inset-bottom)) !important;
        display: flex !important;
        align-items: center !important;
    }
    .dp-logi-page .dp-sticky-inner,
    .dp-logi-page .dp-sticky-actions {
        height: 100% !important;
        min-height: 0 !important;
        align-items: center !important;
    }
    .dp-logi-page .dp-sticky-btn {
        height: 46px !important;
        min-height: 46px !important;
        max-height: 46px !important;
    }
}


/* =========================================================
 * v2.0.6 聊天独占模式
 * 聊天打开后隐藏底部固定客服按钮，避免 WhatsApp / 企业微信重复出现。
 * 同时取消此前为底部客服栏重复预留的高度，让聊天窗口真正贴近底部。
 * ========================================================= */
.dp-logi-page.dp-chat-is-open .dp-sticky {
    display: none !important;
}

/* PC：底部客服栏隐藏后，聊天窗口直接下沉。 */
@media (min-width: 768px) {
    .dp-logi-page .dp-chat-panel.is-open {
        bottom: 22px !important;
        height: min(640px, calc(100dvh - 120px)) !important;
    }
}

@media (max-width: 767px) {
    /* 打开聊天时锁住背景页面，避免聊天时网页在背后滑动。 */
    body.dp-logi-chat-modal-open {
        overflow: hidden !important;
        overscroll-behavior: none !important;
    }

    /* 底部三按钮已隐藏，聊天面板无需再给它预留 72px。 */
    .dp-logi-page .dp-chat-panel.is-open {
        left: 8px !important;
        right: 8px !important;
        top: calc(8px + env(safe-area-inset-top)) !important;
        bottom: calc(8px + env(safe-area-inset-bottom)) !important;
        width: auto !important;
        height: auto !important;
        max-height: none !important;
        border-radius: 18px !important;
    }

    body.admin-bar .dp-logi-page .dp-chat-panel.is-open {
        top: calc(54px + env(safe-area-inset-top)) !important;
    }

    /* safe-area 已由面板 bottom 处理，这里不再重复加一次，去掉底部白色空档。 */
    .dp-logi-page .dp-chat-compose {
        padding-bottom: 10px !important;
    }
}

/* =========================================================
 * v2.0.7 手机聊天真正全屏 + 阻止输入框自动缩放
 * ========================================================= */
@media (max-width: 767px) {
    /* 聊天独占整个可视窗口，包括登录状态下的 WP admin bar。 */
    .dp-logi-page .dp-chat-panel.is-open,
    body.admin-bar .dp-logi-page .dp-chat-panel.is-open {
        position: fixed !important;
        z-index: 1000001 !important;
        inset: 0 !important;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100dvh !important;
        min-width: 0 !important;
        min-height: 0 !important;
        max-width: none !important;
        max-height: none !important;
        margin: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        grid-template-rows: auto minmax(0, 1fr) auto !important;
    }

    /* 顶部自己承担刘海/安全区，不再靠面板外边距制造留白。 */
    .dp-logi-page .dp-chat-panel.is-open .dp-chat-head {
        padding: calc(12px + env(safe-area-inset-top)) 13px 12px !important;
        min-height: 68px !important;
        flex: 0 0 auto !important;
    }

    .dp-logi-page .dp-chat-panel.is-open .dp-chat-body {
        min-height: 0 !important;
        height: auto !important;
        margin: 0 !important;
        padding: 12px 12px 10px !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    /* Compose 只按内容本身高度占位，去掉底部额外白块。 */
    .dp-logi-page .dp-chat-panel.is-open .dp-chat-compose {
        min-height: 0 !important;
        height: auto !important;
        max-height: none !important;
        margin: 0 !important;
        padding: 8px 10px calc(8px + env(safe-area-inset-bottom)) !important;
        align-self: end !important;
        overflow: visible !important;
    }

    /* 联系方式保存后彻底隐藏，不保留“联系方式已保存”的占位行。 */
    .dp-logi-page .dp-chat-panel.is-profile-saved .dp-chat-meta,
    .dp-logi-page .dp-chat-panel.is-profile-saved .dp-chat-profile-saved {
        display: none !important;
        height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        overflow: hidden !important;
    }

    /* iOS Safari / 部分 Android 浏览器：输入字号 <16px 会自动放大页面。 */
    .dp-logi-page .dp-chat-panel.is-open .dp-chat-meta input,
    .dp-logi-page .dp-chat-panel.is-open .dp-chat-text {
        font-size: 16px !important;
        line-height: 22px !important;
        transform: none !important;
        zoom: 1 !important;
        touch-action: manipulation;
    }

    .dp-logi-page .dp-chat-panel.is-open .dp-chat-meta input {
        height: 44px !important;
        min-height: 44px !important;
    }

    .dp-logi-page .dp-chat-panel.is-open .dp-chat-text {
        height: 46px !important;
        min-height: 46px !important;
        max-height: 92px !important;
        padding: 11px 12px !important;
    }

    .dp-logi-page .dp-chat-panel.is-open .dp-chat-send {
        height: 46px !important;
        min-height: 46px !important;
        font-size: 14px !important;
    }

    .dp-logi-page .dp-chat-panel.is-open .dp-chat-notice {
        margin-top: 5px !important;
    }

    .dp-logi-page .dp-chat-panel.is-open .dp-chat-handoff {
        margin-top: 6px !important;
        margin-bottom: 0 !important;
    }

    .dp-logi-page .dp-chat-panel.is-open .dp-chat-handoff a {
        min-height: 38px !important;
    }
}


/* =========================================================
 * v2.0.8 手机聊天紧凑输入区 / 真正可视全屏
 * ========================================================= */
.dp-logi-page .dp-chat-head-actions {
    display:flex;
    align-items:center;
    gap:7px;
    flex:0 0 auto;
}

.dp-logi-page .dp-chat-profile-edit-head {
    width:auto !important;
    min-width:0 !important;
    min-height:30px !important;
    padding:6px 9px !important;
    margin:0 !important;
    border:1px solid rgba(255,255,255,.18) !important;
    border-radius:9px !important;
    background:rgba(255,255,255,.10) !important;
    color:#fff !important;
    font-family:inherit !important;
    font-size:10px !important;
    font-weight:800 !important;
    line-height:1 !important;
    box-shadow:none !important;
    cursor:pointer;
}
.dp-logi-page .dp-chat-profile-edit-head[hidden] { display:none !important; }

@media (max-width: 767px) {
    /* 使用 visualViewport 的实时可视高度，键盘出现/收起时聊天框始终贴合可见区域。 */
    .dp-logi-page .dp-chat-panel.is-open,
    body.admin-bar .dp-logi-page .dp-chat-panel.is-open {
        inset:auto !important;
        left:0 !important;
        right:0 !important;
        top:var(--dp-chat-vtop, 0px) !important;
        bottom:auto !important;
        width:100% !important;
        height:var(--dp-chat-vh, 100dvh) !important;
        min-height:0 !important;
        max-height:none !important;
        border-radius:0 !important;
    }

    .dp-logi-page .dp-chat-panel.is-open .dp-chat-head {
        padding:calc(9px + env(safe-area-inset-top)) 10px 9px !important;
        min-height:60px !important;
        gap:8px !important;
    }

    .dp-logi-page .dp-chat-panel.is-open .dp-chat-avatar {
        width:38px !important;
        height:38px !important;
        flex-basis:38px !important;
        border-radius:11px !important;
    }

    .dp-logi-page .dp-chat-panel.is-open .dp-chat-head strong { font-size:14px !important; }
    .dp-logi-page .dp-chat-panel.is-open .dp-chat-head span { font-size:10px !important; }
    .dp-logi-page .dp-chat-panel.is-open .dp-chat-close {
        width:34px !important;
        min-width:34px !important;
        max-width:34px !important;
        height:34px !important;
        min-height:34px !important;
    }
    .dp-logi-page .dp-chat-panel.is-open .dp-chat-profile-edit-head {
        min-height:30px !important;
        padding:6px 8px !important;
        font-size:10px !important;
    }

    .dp-logi-page .dp-chat-panel.is-open .dp-chat-body {
        padding:10px 10px 8px !important;
    }

    /* 联系方式成功保存后，底部不再保留“已保存/修改”整行；修改入口已移到标题栏。 */
    .dp-logi-page .dp-chat-panel.is-profile-saved .dp-chat-meta,
    .dp-logi-page .dp-chat-panel.is-profile-saved .dp-chat-profile-saved {
        display:none !important;
        height:0 !important;
        min-height:0 !important;
        margin:0 !important;
        padding:0 !important;
    }

    .dp-logi-page .dp-chat-panel.is-open .dp-chat-compose {
        padding:7px 9px calc(7px + env(safe-area-inset-bottom)) !important;
        gap:0 !important;
    }

    .dp-logi-page .dp-chat-panel.is-open .dp-chat-meta {
        margin:0 0 6px !important;
        gap:6px !important;
    }

    .dp-logi-page .dp-chat-panel.is-open .dp-chat-meta input,
    .dp-logi-page .dp-chat-panel.is-open .dp-chat-text {
        font-size:16px !important;
        line-height:21px !important;
        -webkit-text-size-adjust:100% !important;
        text-size-adjust:100% !important;
    }

    /* 利用原来空白：问题输入框 + 发送按钮同一行。 */
    .dp-logi-page .dp-chat-panel.is-open .dp-chat-sendrow {
        display:grid !important;
        grid-template-columns:minmax(0,1fr) 68px !important;
        align-items:stretch !important;
        gap:6px !important;
        margin:0 !important;
    }

    .dp-logi-page .dp-chat-panel.is-open .dp-chat-text {
        width:100% !important;
        height:44px !important;
        min-height:44px !important;
        max-height:88px !important;
        padding:10px 11px !important;
        border-radius:10px !important;
    }

    .dp-logi-page .dp-chat-panel.is-open .dp-chat-send {
        width:68px !important;
        min-width:68px !important;
        max-width:68px !important;
        height:44px !important;
        min-height:44px !important;
        padding:0 6px !important;
        border-radius:10px !important;
        font-size:13px !important;
    }

    .dp-logi-page .dp-chat-panel.is-open .dp-chat-error {
        margin-top:4px !important;
    }
    .dp-logi-page .dp-chat-panel.is-open .dp-chat-notice {
        margin-top:4px !important;
        line-height:1.35 !important;
    }
    .dp-logi-page .dp-chat-panel.is-open .dp-chat-handoff {
        gap:6px !important;
        margin-top:5px !important;
        margin-bottom:0 !important;
    }
    .dp-logi-page .dp-chat-panel.is-open .dp-chat-handoff a {
        min-height:36px !important;
        border-radius:9px !important;
    }
}
