﻿:root {
    --shop-ink: #1a2b4a;
    --shop-ink-soft: #27406b;
    --shop-accent: #397df4;
    --shop-accent-deep: #2b63d4;
    --shop-accent-soft: #5b96f7;
    --shop-gold: #5b96f7;
    --shop-paper: #f3f7fd;
    --shop-card: #ffffff;
    --shop-line: rgba(57, 125, 244, 0.12);
    --shop-muted: #5b6b7a;
    --shop-radius: 14px;
    --shop-shadow: 0 18px 40px rgba(41, 90, 180, 0.12);
}

html, body {
    background: var(--shop-paper);
    color: var(--shop-ink);
}

body.shop-body {
    font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    padding-top: 72px;
}

/* ========== 顶部横幅公告（跑马灯） ========== */
.shop-notice-bar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1040 !important;
    height: 36px;
    line-height: 36px;
    background: linear-gradient(90deg, #fff8e8, #fff3d6 50%, #fff8e8);
    border-bottom: 1px solid #f0d59a;
    color: #8a5a00;
    overflow: hidden;
}

.shop-notice-inner {
    display: flex;
    align-items: center;
    height: 36px;
    gap: 10px;
    padding: 0 16px 0 20px;
    overflow: hidden;
}

.shop-notice-label {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 24px;
    line-height: 24px;
    font-size: 12px;
    font-weight: 700;
    color: #c47a00;
    white-space: nowrap;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(196, 122, 0, 0.1);
}

.shop-notice-marquee {
    flex: 1 1 auto;
    min-width: 0;
    width: 0;
    height: 36px;
    overflow: hidden;
    position: relative;
}

.shop-notice-track {
    display: inline-flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    height: 36px;
    line-height: 36px;
    width: max-content;
    will-change: transform;
    -webkit-animation: shopNoticeScroll 28s linear infinite;
    animation: shopNoticeScroll 28s linear infinite;
    -webkit-animation-play-state: running !important;
    animation-play-state: running !important;
}

.shop-notice-track .shop-notice-item {
    display: inline-block;
    flex: 0 0 auto;
    white-space: nowrap;
    padding-right: 48px;
    font-size: 13px;
    line-height: 36px;
    height: 36px;
    font-weight: 500;
    vertical-align: top;
}

/* 仅鼠标悬停暂停，避免手机触摸后动画卡住 */
@media (hover: hover) and (pointer: fine) {
    .shop-notice-bar:hover .shop-notice-track {
        -webkit-animation-play-state: paused !important;
        animation-play-state: paused !important;
    }
}

@-webkit-keyframes shopNoticeScroll {
    0% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
    100% { -webkit-transform: translate3d(-50%, 0, 0); transform: translate3d(-50%, 0, 0); }
}

@keyframes shopNoticeScroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

body.has-shop-notice {
    padding-top: 108px !important;
}

body.has-shop-notice .shop-header {
    top: 36px !important;
}

/* ========== 顶部导航（白底参考布局） ========== */
.shop-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: #fff;
    border-bottom: 1px solid rgba(26, 43, 74, 0.06);
    box-shadow: 0 2px 12px rgba(26, 43, 74, 0.04);
}

.shop-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 72px;
    padding-top: 8px;
    padding-bottom: 8px;
}

/* 顶栏铺满，登录更靠右 */
.shop-header > .container.shop-header-inner {
    max-width: none;
    width: 100%;
    padding-left: 40px;
    padding-right: 28px;
}

.shop-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    flex: none;
    min-width: 160px;
}

.shop-logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: contain;
    display: block;
    flex: none;
    background: transparent;
}

.shop-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.shop-logo-text strong {
    color: #1a2b4a;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.shop-logo-text em {
    font-style: normal;
    color: #98a2b3;
    font-size: 12px;
    margin-top: 2px;
}

.shop-header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
}

.shop-header-nav .nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 14px;
    color: #1a2b4a !important;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.shop-header-nav .nav-item .fa-angle-down {
    color: #b0b8c6;
    font-size: 12px;
}

.shop-header-nav .nav-item:hover {
    color: #397df4 !important;
}

.shop-header-nav .nav-item.active {
    color: #397df4 !important;
}

.shop-header-nav .nav-item.active::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 2px;
    height: 3px;
    border-radius: 3px;
    background: #397df4;
}

.shop-header-nav .nav-item.shop-nav-user {
    display: none;
}

.shop-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: none;
    margin-left: auto;
}

.shop-header-login {
    color: #1a2b4a !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    margin-right: 4px;
}

.shop-header-login:hover {
    color: #397df4 !important;
}

.shop-header-search {
    position: relative;
    flex: none;
    width: 220px;
}

.shop-header-search .fa-search {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #b0b8c6;
    font-size: 14px;
}

.shop-header-search input {
    width: 100%;
    height: 40px;
    border: 1px solid #e6ebf2;
    border-radius: 999px;
    padding: 0 16px 0 38px;
    outline: none;
    background: #fff;
    color: #1a2b4a;
    font-size: 13px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.shop-header-search input:focus {
    border-color: #397df4;
    box-shadow: 0 0 0 3px rgba(57, 125, 244, 0.12);
}

.shop-header-search input::placeholder {
    color: #b0b8c6;
}

.shop-nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    padding: 8px;
    margin-left: auto;
}

.shop-nav-toggle span {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: #1a2b4a;
    border-radius: 2px;
    transition: .2s ease;
}

.shop-nav {
    display: none;
}

.shop-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 15% 20%, rgba(91, 150, 247, 0.4), transparent 35%),
        radial-gradient(circle at 85% 10%, rgba(57, 125, 244, 0.45), transparent 40%),
        linear-gradient(135deg, #2b63d4 0%, #397df4 45%, #5b96f7 100%);
    padding: 72px 0 64px;
}

.shop-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -40% auto;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.shop-hero .brand {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 14px;
    letter-spacing: 1px;
}

.shop-hero .lead {
    max-width: 560px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 28px;
}

.shop-hero .hero-actions .btn {
    margin-right: 12px;
    margin-bottom: 10px;
    min-width: 140px;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 600;
}

.btn-shop-primary {
    background: linear-gradient(135deg, var(--shop-accent-soft), var(--shop-accent), var(--shop-accent-deep));
    border: 0;
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(57, 125, 244, 0.35);
}

.btn-shop-primary:hover,
.btn-shop-primary:focus {
    background: linear-gradient(135deg, #4d8af5, #2b63d4);
    color: #fff !important;
}

.btn-shop-ghost {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff !important;
}

.shop-section {
    padding: 56px 0;
}

.shop-section-title {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 700;
}

.shop-section-desc {
    color: var(--shop-muted);
    margin-bottom: 28px;
}

.shop-filter {
    background: var(--shop-card);
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius);
    padding: 18px;
    margin-bottom: 24px;
    box-shadow: var(--shop-shadow);
}

.shop-filter .chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.shop-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid var(--shop-line);
    background: #fff;
    color: var(--shop-ink);
    text-decoration: none !important;
    font-size: 13px;
    transition: all .2s ease;
}

.shop-chip img {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    object-fit: cover;
}

.shop-chip:hover,
.shop-chip.active {
    border-color: var(--shop-accent);
    color: var(--shop-accent-deep);
    background: rgba(57, 125, 244, 0.08);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.shop-card {
    background: var(--shop-card);
    border-radius: var(--shop-radius);
    overflow: hidden;
    border: 1px solid var(--shop-line);
    box-shadow: var(--shop-shadow);
    transition: transform .25s ease, box-shadow .25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.shop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(12, 27, 42, 0.16);
}

.shop-card .cover {
    height: 168px;
    background:
        linear-gradient(135deg, rgba(12, 27, 42, 0.72), rgba(57, 125, 244, 0.55)),
        url('../img/qrcode.png') center/cover;
    position: relative;
}

.shop-card .cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shop-card .body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.shop-card .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.shop-tag {
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(12, 27, 42, 0.06);
    color: var(--shop-muted);
}

.shop-card h3 {
    font-size: 17px;
    margin: 0 0 10px;
    line-height: 1.45;
    font-weight: 700;
    min-height: 48px;
}

.shop-card h3 a {
    color: var(--shop-ink);
    text-decoration: none !important;
}

.shop-card .summary {
    color: var(--shop-muted);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.shop-card .foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.shop-price-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
}

.shop-price-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    background: linear-gradient(135deg, #ff7a45, #e4572e);
    box-shadow: 0 4px 10px rgba(228, 87, 46, 0.28);
    line-height: 1.4;
}

.shop-price {
    color: #e4572e;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
}

.shop-price small {
    font-size: 13px;
    font-weight: 600;
    margin-left: 2px;
}

.shop-contact-bar {
    background: linear-gradient(120deg, #2b63d4, #397df4);
    color: #fff;
    border-radius: var(--shop-radius);
    padding: 22px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: var(--shop-shadow);
}

.shop-contact-bar .info strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

.shop-contact-bar .actions .btn {
    margin-left: 8px;
    margin-bottom: 6px;
    border-radius: 999px;
}

.shop-detail-hero {
    padding: 36px 0 10px;
}

.shop-detail-panel {
    background: #fff;
    border-radius: var(--shop-radius);
    border: 1px solid var(--shop-line);
    box-shadow: var(--shop-shadow);
    padding: 24px;
    margin-bottom: 20px;
}

.shop-detail-panel h1 {
    margin-top: 0;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.4;
}

.shop-detail-cover {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 18px;
    background: #e8eef3;
    min-height: 220px;
}

.shop-detail-cover img {
    width: 100%;
    display: block;
}

.shop-detail-attrs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0;
}

.shop-detail-attrs .item {
    background: rgba(12, 27, 42, 0.04);
    border-radius: 10px;
    padding: 12px 14px;
}

.shop-detail-attrs .item label {
    display: block;
    color: var(--shop-muted);
    font-size: 12px;
    margin-bottom: 4px;
}

.shop-detail-content {
    line-height: 1.8;
    color: #334155;
}

.shop-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--shop-muted);
    background: #fff;
    border-radius: var(--shop-radius);
    border: 1px dashed var(--shop-line);
}

.shop-footer {
    background: linear-gradient(120deg, #2b63d4, #1e4fb8);
    color: rgba(255, 255, 255, 0.75);
    padding: 28px 0;
    margin-top: 40px;
}

.shop-footer a {
    color: #fff;
}

.shop-login-wrap {
    max-width: 440px;
    margin: 40px auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shop-shadow);
    padding: 28px 24px 32px;
    border: 1px solid var(--shop-line);
}

.shop-login-wrap h2 {
    margin: 0 0 8px;
    font-weight: 800;
}

.shop-login-wrap .sub {
    color: var(--shop-muted);
    margin-bottom: 22px;
}

.pagination > .active > a,
.pagination > .active > span {
    background: var(--shop-accent);
    border-color: var(--shop-accent);
}

@media (max-width: 991px) {
    .shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-hero .brand {
        font-size: 32px;
    }

    .shop-detail-attrs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .shop-header-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0 12px;
        border-bottom: 1px solid rgba(26, 43, 74, 0.06);
        box-shadow: 0 10px 24px rgba(26, 43, 74, 0.06);
    }

    .shop-header-nav.open {
        display: flex;
    }

    .shop-header-nav .nav-item {
        padding: 12px 20px;
    }

    .shop-header-nav .nav-item.active::after {
        left: 20px;
        right: auto;
        width: 28px;
        bottom: 8px;
    }

    .shop-header-nav .nav-item.shop-nav-user {
        display: inline-flex;
        border-top: 1px solid #f0f3f8;
        margin-top: 4px;
    }

    .shop-nav-toggle {
        display: block;
    }

    .shop-header-search {
        width: 140px;
    }

    .shop-header-login {
        display: none;
    }

    .shop-logo-text em {
        display: none;
    }
}

@media (max-width: 767px) {
    body.shop-body {
        padding-top: 64px;
    }

    body.has-shop-notice {
        padding-top: 100px;
    }

    .shop-notice-inner {
        padding-left: 10px;
        padding-right: 10px;
    }

    .shop-notice-label {
        font-size: 11px;
        padding: 2px 8px;
    }

    .shop-notice-track {
        -webkit-animation-duration: 22s;
        animation-duration: 22s;
    }

    .shop-notice-track .shop-notice-item {
        font-size: 12px;
        padding-right: 36px;
    }

    .shop-header-inner {
        min-height: 64px;
        gap: 10px;
    }

    .shop-header-nav {
        top: 64px;
    }

    .shop-header-search {
        display: none;
    }

    .shop-logo-text strong {
        font-size: 18px;
    }

    .shop-hero {
        padding: 48px 0 40px;
    }

    .shop-grid {
        grid-template-columns: 1fr;
    }

    .shop-card h3 {
        min-height: 0;
    }

    .shop-contact-bar {
        display: block;
    }

    .shop-contact-bar .actions .btn {
        margin-left: 0;
        margin-right: 8px;
    }

    .shop-section {
        padding: 36px 0;
    }
}

/* ========== 首页（对标综合网店平台布局） ========== */
.home-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.home-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(8, 18, 32, 0.92) 0%, rgba(12, 35, 58, 0.78) 48%, rgba(57, 125, 244, 0.35) 100%),
        radial-gradient(ellipse at 70% 40%, rgba(240, 162, 2, 0.35), transparent 55%),
        linear-gradient(160deg, #0a1624 0%, #14344f 55%, #1a2433 100%);
    animation: homeHeroShift 14s ease-in-out infinite alternate;
}

@keyframes homeHeroShift {
    from { transform: scale(1); }
    to { transform: scale(1.04); }
}

.home-hero-inner {
    position: relative;
    z-index: 1;
    padding: 90px 15px 80px;
}

.home-brand {
    font-size: clamp(40px, 7vw, 64px);
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 18px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    animation: homeFadeUp .8s ease both;
}

.home-headline {
    margin: 0 0 14px;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    animation: homeFadeUp .9s ease both;
}

.home-sub {
    max-width: 560px;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 28px;
    animation: homeFadeUp 1s ease both;
}

.home-cta .btn {
    margin-right: 12px;
    margin-bottom: 10px;
    border-radius: 999px;
    padding: 12px 26px;
    font-weight: 600;
    animation: homeFadeUp 1.1s ease both;
}

@keyframes homeFadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

.home-stats {
    margin-top: -48px;
    position: relative;
    z-index: 5;
    padding-bottom: 10px;
}

.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    background: #fff;
    border-radius: 18px;
    padding: 22px 10px;
    box-shadow: 0 16px 40px rgba(41, 90, 180, 0.16);
    border: 1px solid rgba(57, 125, 244, 0.08);
}

.home-stat {
    text-align: center;
    padding: 8px;
}

.home-stat .num {
    font-size: 28px;
    font-weight: 800;
    color: var(--shop-ink);
    line-height: 1.2;
}

.home-stat .num em {
    font-style: normal;
    color: var(--shop-accent-deep);
}

.home-stat .label {
    margin-top: 6px;
    color: var(--shop-muted);
    font-size: 13px;
}

.home-ticker-wrap {
    padding: 22px 0 0;
}

.home-ticker {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--shop-line);
    border-radius: 999px;
    padding: 10px 16px;
    overflow: hidden;
}

.home-ticker-label {
    flex: none;
    background: rgba(57, 125, 244, 0.1);
    color: var(--shop-accent-deep);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
}

.home-ticker-track {
    overflow: hidden;
    flex: 1;
}

.home-ticker-move {
    display: inline-flex;
    gap: 36px;
    white-space: nowrap;
    animation: homeTicker 28s linear infinite;
}

.home-ticker-item {
    color: var(--shop-muted);
    font-size: 13px;
}

.home-ticker-item em {
    font-style: normal;
    margin: 0 4px;
    color: #94a3b8;
}

.home-ticker-item b {
    color: var(--shop-ink);
    font-weight: 600;
}

@keyframes homeTicker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.home-sec-head {
    position: relative;
    margin-bottom: 28px;
    padding-right: 110px;
}

.home-sec-head h2 {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 800;
}

.home-sec-head p {
    margin: 0;
    color: var(--shop-muted);
}

.home-sec-head .home-more {
    position: absolute;
    right: 0;
    top: 8px;
    color: var(--shop-accent-deep);
    font-weight: 600;
    text-decoration: none !important;
}

.home-sec-head.light h2,
.home-sec-head.light p {
    color: #fff;
}

.home-sec-head.light p {
    color: rgba(255, 255, 255, 0.75);
}

.home-platform-row {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 12px;
}

.home-platform-item {
    display: block;
    text-align: center;
    text-decoration: none !important;
    background: #fff;
    border: 1px solid var(--shop-line);
    border-radius: 16px;
    padding: 16px 8px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    color: var(--shop-ink);
}

.home-platform-item:hover {
    transform: translateY(-4px);
    border-color: rgba(57, 125, 244, 0.35);
    box-shadow: var(--shop-shadow);
    color: var(--shop-accent-deep);
}

.home-platform-item .ico {
    width: 48px;
    height: 48px;
    margin: 0 auto 10px;
    border-radius: 14px;
    background: rgba(12, 27, 42, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-weight: 800;
    color: var(--shop-accent-deep);
}

.home-platform-item .ico img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-platform-item .name {
    font-size: 13px;
    font-weight: 600;
}

.home-shops {
    background: linear-gradient(180deg, #fff 0%, #f3f7fd 100%);
}

.cover-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2b63d4, #397df4);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.home-shop-card {
    animation: homeFadeUp .6s ease both;
}

.home-services {
    padding: 64px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(91, 150, 247, 0.25), transparent 40%), linear-gradient(135deg, #2b63d4 0%, #397df4 100%);
    color: #fff;
}

.home-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.home-service-card {
    display: block;
    text-decoration: none !important;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 26px 22px;
    transition: transform .2s ease, background .2s ease;
}

.home-service-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.home-service-card .t {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
}

.home-service-card p {
    color: rgba(255, 255, 255, 0.75);
    min-height: 48px;
    margin-bottom: 16px;
}

.home-service-card span {
    color: #cfe0ff;
    font-weight: 600;
}

.home-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.home-trust-item {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--shop-line);
    padding: 22px 18px;
    box-shadow: var(--shop-shadow);
}

.home-trust-item .ico {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--shop-accent), var(--shop-accent-deep));
    margin-bottom: 14px;
}

.home-trust-item h3 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 700;
}

.home-trust-item p {
    margin: 0;
    color: var(--shop-muted);
    font-size: 13px;
    line-height: 1.6;
}

.home-bottom-cta {
    padding: 40px 0 56px;
}

.home-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    background: linear-gradient(120deg, #2b63d4, #397df4);
    color: #fff;
    border-radius: 20px;
    padding: 28px 26px;
    box-shadow: var(--shop-shadow);
}

.home-bottom-inner h2 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 800;
}

.home-bottom-inner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.home-bottom-inner .btns .btn {
    margin-left: 8px;
    margin-bottom: 6px;
    border-radius: 999px;
}

@media (max-width: 991px) {
    .home-stats-grid,
    .home-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-platform-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .home-service-grid {
        grid-template-columns: 1fr;
    }

    .home-hero {
        min-height: 64vh;
    }
}

@media (max-width: 767px) {
    .home-stats {
        margin-top: -32px;
    }

    .home-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-radius: 14px;
        padding: 14px 6px;
    }

    .home-stat .num {
        font-size: 22px;
    }

    .home-platform-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .home-sec-head {
        padding-right: 0;
    }

    .home-sec-head .home-more {
        position: static;
        display: inline-block;
        margin-top: 10px;
    }

    .home-ticker {
        border-radius: 14px;
        align-items: flex-start;
        flex-direction: column;
    }

    .home-bottom-inner .btns .btn {
        margin-left: 0;
        margin-right: 8px;
    }
}


/* ========== 首页轮播 ========== */
.home-banner {
    margin-top: 0;
    background: #eaf2ff;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.home-banner .carousel-inner > .item > a,
.home-banner .carousel-inner > .item > img,
.home-banner-link {
    display: block;
    width: 100%;
}

.home-banner .carousel-inner > .item img {
    width: 100%;
    height: auto;
    display: block;
}

.home-banner .carousel-indicators {
    bottom: 56px;
}

.home-banner .carousel-indicators li {
    background: rgba(57, 125, 244, 0.35);
    border: 0;
}

.home-banner .carousel-indicators .active {
    background: #397df4;
}

.home-banner .carousel-control {
    background: none;
    width: 8%;
    opacity: .7;
}

.home-banner .carousel-control .glyphicon {
    text-shadow: 0 2px 8px rgba(43, 99, 212, 0.45);
}

.home-stats {
    margin-top: -48px;
    position: relative;
    z-index: 5;
}

/* ========== 右侧悬浮客服 ========== */
.float-cs {
    position: fixed;
    right: 18px;
    bottom: 100px;
    z-index: 1050;
    width: 108px;
    text-align: center;
    animation: floatCsBob 2.6s ease-in-out infinite;
}

.float-cs:has(.float-cs-panel.open) {
    animation-play-state: paused;
}

@keyframes floatCsBob {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .float-cs {
        animation: none;
    }
}

.float-cs-person {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    border: 3px solid #397df4;
    box-shadow: 0 10px 28px rgba(57, 125, 244, 0.35);
    cursor: pointer;
}

.float-cs-person img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    background: #fff;
}

.agency-banner .carousel-inner > .item img {
    width: 100%;
    height: auto;
    display: block;
}

.float-cs-btn {
    display: block;
    margin-top: 8px;
    background: linear-gradient(135deg, #5b96f7, #397df4, #2b63d4);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 999px;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(57, 125, 244, 0.35);
}

.float-cs-btn:hover {
    filter: brightness(1.05);
    color: #fff !important;
}

.float-cs-panel {
    display: none;
    position: absolute;
    right: 118px;
    bottom: 0;
    width: 240px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(41, 90, 180, 0.2);
    border: 1px solid rgba(57, 125, 244, 0.15);
    padding: 16px;
    text-align: left;
}

.float-cs-panel.open {
    display: block;
    animation: homeFadeUp .25s ease both;
}

.float-cs-panel-title {
    font-weight: 800;
    color: #1a2b4a;
    margin-bottom: 10px;
}

.float-cs-panel p {
    margin: 0 0 8px;
    color: #5b6b7a;
    font-size: 13px;
}

.float-cs-panel a {
    color: #397df4;
}

.float-cs-copy {
    margin-left: 6px;
    font-size: 12px;
}

.float-cs-qrcode {
    display: block;
    width: 140px;
    margin: 8px auto 12px;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .float-cs {
        right: 10px;
        bottom: 72px;
        width: 86px;
    }

    .float-cs-person {
        width: 86px;
        height: 86px;
    }

    .float-cs-btn {
        font-size: 12px;
        padding: 7px 0;
    }

    .float-cs-panel {
        right: 0;
        bottom: 120px;
        width: 220px;
    }

    .home-stats {
        margin-top: -32px;
    }

    .home-banner .carousel-indicators {
        bottom: 40px;
    }
}

/* ========== 内页通用 ========== */
.page-wrap {
    padding: 28px 0 48px;
}

.page-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.page-head h1 {
    margin: 0 0 6px;
    font-size: 28px;
    font-weight: 800;
    color: #1a2b4a;
}

.page-head p {
    margin: 0;
    color: #5b6b7a;
}

.page-head-extra {
    color: #397df4;
    font-weight: 600;
    white-space: nowrap;
}

.page-filter {
    margin-bottom: 24px;
}

.filter-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    align-items: flex-start;
}

.filter-label {
    flex: none;
    width: 40px;
    padding-top: 8px;
    color: #98a2b3;
    font-size: 13px;
    font-weight: 600;
}

.filter-search {
    position: relative;
    display: flex;
    gap: 10px;
    margin-top: 8px;
    max-width: 520px;
}

.filter-search .fa-search {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #b0b8c6;
}

.filter-search input[type="text"] {
    flex: 1;
    height: 42px;
    border: 1px solid #e6ebf2;
    border-radius: 999px;
    padding: 0 16px 0 38px;
    outline: none;
}

.filter-search input:focus {
    border-color: #397df4;
    box-shadow: 0 0 0 3px rgba(57, 125, 244, 0.12);
}

.filter-search .btn {
    border-radius: 999px;
    padding: 0 22px;
    height: 42px;
}

.page-pager {
    text-align: center;
    margin-top: 28px;
}

.shop-empty .empty-ico {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(57, 125, 244, 0.1);
    color: #397df4;
    font-weight: 700;
}

.btn-shop-outline {
    background: #fff !important;
    border: 1px solid #397df4 !important;
    color: #397df4 !important;
    border-radius: 999px;
}

.btn-shop-outline:hover {
    background: rgba(57, 125, 244, 0.06) !important;
}

/* 详情 */
.detail-crumb {
    margin-bottom: 16px;
    color: #98a2b3;
    font-size: 13px;
}

.detail-crumb a {
    color: #5b6b7a;
    text-decoration: none !important;
}

.detail-crumb a:hover {
    color: #397df4;
}

.detail-crumb em {
    font-style: normal;
    color: #1a2b4a;
}

.detail-main {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(57, 125, 244, 0.08);
    box-shadow: 0 12px 32px rgba(41, 90, 180, 0.08);
    margin-bottom: 20px;
}

.detail-cover {
    background: #eaf2ff;
    min-height: 240px;
}

.detail-cover img {
    width: 100%;
    display: block;
    max-height: 360px;
    object-fit: cover;
}

.detail-cover-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    background: linear-gradient(135deg, #2b63d4, #397df4);
    color: #fff;
    font-size: 28px;
    font-weight: 800;
}

.detail-body {
    padding: 24px;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.detail-body h1 {
    margin: 0 0 12px;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.4;
    color: #1a2b4a;
}

.detail-price {
    color: #397df4;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 18px;
}

.detail-price small {
    font-size: 14px;
    font-weight: 500;
}

.detail-summary {
    margin: 8px 0 18px;
    padding: 14px 16px;
    background: #f5f8ff;
    border-radius: 12px;
    color: #5b6b7a;
    line-height: 1.7;
}

.detail-content-title {
    margin: 8px 0 12px;
    font-size: 18px;
    font-weight: 700;
    color: #1a2b4a;
}

.detail-side {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(57, 125, 244, 0.08);
    box-shadow: 0 12px 32px rgba(41, 90, 180, 0.08);
    padding: 22px;
    position: sticky;
    top: 90px;
    margin-bottom: 20px;
}

.detail-side-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.detail-side-head img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #397df4;
}

.detail-side-head strong {
    display: block;
    color: #1a2b4a;
    font-size: 16px;
}

.detail-side-head p {
    margin: 4px 0 0;
    color: #98a2b3;
    font-size: 12px;
}

.detail-side-line {
    margin-bottom: 14px;
}

.detail-side-line label {
    display: block;
    color: #98a2b3;
    font-size: 12px;
    margin-bottom: 4px;
}

.detail-side-line a,
.detail-side-line span {
    color: #1a2b4a;
    font-weight: 600;
    font-size: 15px;
}

.copy-link {
    margin-left: 8px;
    color: #397df4 !important;
    font-size: 12px;
    font-weight: 600;
}

.detail-qr {
    text-align: center;
    margin: 10px 0 16px;
}

.detail-qr img {
    width: 150px;
    border-radius: 10px;
}

.detail-qr p {
    margin: 6px 0 0;
    color: #98a2b3;
    font-size: 12px;
}

.detail-side .btn-block {
    margin-top: 10px;
    border-radius: 999px;
}

.detail-related {
    margin-top: 20px;
}

/* 留资 */
.lead-wrap {
    background: linear-gradient(180deg, #eaf2ff 0%, #f3f7fd 40%, #f3f7fd 100%);
}

.lead-card {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(41, 90, 180, 0.1);
    border: 1px solid rgba(57, 125, 244, 0.08);
    overflow: hidden;
}

.lead-tabs {
    display: flex;
    background: #f5f8ff;
    border-bottom: 1px solid rgba(57, 125, 244, 0.08);
}

.lead-tabs a {
    flex: 1;
    text-align: center;
    padding: 16px 10px;
    color: #5b6b7a;
    font-weight: 600;
    text-decoration: none !important;
    border-bottom: 3px solid transparent;
}

.lead-tabs a.active {
    color: #397df4;
    background: #fff;
    border-bottom-color: #397df4;
}

.lead-intro {
    padding: 24px 28px 8px;
}

.lead-intro h1 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 800;
    color: #1a2b4a;
}

.lead-intro p {
    margin: 0;
    color: #5b6b7a;
}

.lead-form {
    padding: 8px 28px 24px;
}

.lead-form label {
    color: #1a2b4a;
    font-weight: 600;
}

.lead-form label em {
    color: #e4572e;
    font-style: normal;
}

.lead-form .form-control {
    border-radius: 12px;
    height: 44px;
    border-color: #e6ebf2;
    box-shadow: none;
}

.lead-form textarea.form-control {
    height: auto;
    min-height: 110px;
}

.lead-form .form-control:focus {
    border-color: #397df4;
    box-shadow: 0 0 0 3px rgba(57, 125, 244, 0.12);
}

.lead-form .btn-block {
    border-radius: 999px;
    margin-top: 8px;
}

.lead-tip {
    padding: 0 28px 24px;
    color: #98a2b3;
    font-size: 13px;
}

/* 登录 */
.login-wrap {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #eaf2ff 0%, #f3f7fd 100%);
}

.login-card {
    max-width: 440px;
    margin: 20px auto;
    background: #fff;
    border-radius: 20px;
    padding: 28px 28px 22px;
    box-shadow: 0 16px 40px rgba(41, 90, 180, 0.12);
    border: 1px solid rgba(57, 125, 244, 0.08);
}

.login-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.login-brand strong {
    display: block;
    font-size: 20px;
    color: #1a2b4a;
}

.login-brand p {
    margin: 4px 0 0;
    color: #98a2b3;
    font-size: 13px;
}

.login-card .form-control {
    border-radius: 12px;
    border-color: #e6ebf2;
    box-shadow: none;
}

.login-card .form-control:focus {
    border-color: #397df4;
    box-shadow: 0 0 0 3px rgba(57, 125, 244, 0.12);
}

.login-code-group .btn {
    border-radius: 0 12px 12px 0 !important;
    white-space: nowrap;
}

.login-card .btn-block {
    border-radius: 999px;
    margin-top: 8px;
}

.login-foot {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
}

.login-foot a {
    color: #397df4;
    text-decoration: none !important;
    font-size: 13px;
}

/* 会员中心 */
.user-panel {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(57, 125, 244, 0.08);
    box-shadow: 0 12px 32px rgba(41, 90, 180, 0.08);
    overflow: hidden;
}

.user-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid #f0f3f8;
}

.user-panel-head h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
}

.user-panel-body {
    padding: 22px;
}

.user-profile-row {
    display: flex;
    gap: 18px;
    align-items: center;
}

.user-avatar img {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(57, 125, 244, 0.25);
}

.user-profile-info h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 800;
}

.user-profile-info p {
    margin: 0 0 6px;
    color: #5b6b7a;
}

.user-actions {
    margin-top: 14px;
}

.user-actions .btn {
    margin-right: 8px;
    margin-bottom: 6px;
    border-radius: 999px;
}

#sidebar-nav.sidenav .list-group-item {
    border-color: #f0f3f8;
}

#sidebar-nav.sidenav .list-group-item.active,
#sidebar-nav.sidenav .list-group-item.active a {
    background: rgba(57, 125, 244, 0.08);
    color: #397df4;
    border-color: rgba(57, 125, 244, 0.12);
}

.shop-header-login {
    padding: 8px 4px 8px 12px;
    border-radius: 999px;
}

.shop-header-login:hover {
    background: rgba(57, 125, 244, 0.06);
}

@media (max-width: 767px) {
    .page-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-row {
        flex-direction: column;
        gap: 6px;
    }

    .filter-label {
        padding-top: 0;
    }

    .filter-search {
        flex-direction: column;
        max-width: none;
    }

    .filter-search .fa-search {
        top: 21px;
    }

    .filter-search .btn {
        width: 100%;
    }

    .detail-side {
        position: static;
    }

    .lead-form,
    .lead-intro,
    .lead-tip {
        padding-left: 18px;
        padding-right: 18px;
    }

    .user-profile-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .shop-header-right .shop-header-login {
        display: none;
    }
}

/* 会员侧栏 */
.user-sidenav {
    border-radius: 16px !important;
    overflow: hidden;
    border: 1px solid rgba(57, 125, 244, 0.08) !important;
    box-shadow: 0 8px 24px rgba(41, 90, 180, 0.06);
}

.user-sidenav .list-group-heading {
    background: #f5f8ff !important;
    color: #1a2b4a !important;
    font-weight: 700;
    border: none !important;
}

.user-sidenav .list-group-item {
    border-color: #f0f3f8 !important;
    padding: 0 !important;
}

.user-sidenav .list-group-item a {
    display: block;
    padding: 12px 16px;
    color: #5b6b7a !important;
    text-decoration: none !important;
}

.user-sidenav .list-group-item a:hover {
    color: #397df4 !important;
    background: rgba(57, 125, 244, 0.04);
}

.user-sidenav .list-group-item.active,
.user-sidenav .list-group-item.active a {
    background: rgba(57, 125, 244, 0.08) !important;
    color: #397df4 !important;
    border-color: rgba(57, 125, 244, 0.12) !important;
    font-weight: 600;
}

/* ========== 店铺列表（筛选 + 横排，参考市场站） ========== */
.list-market-wrap {
    padding-top: 20px;
}

.list-crumb {
    margin-bottom: 14px;
    color: #98a2b3;
    font-size: 13px;
}

.list-crumb a {
    color: #5b6b7a;
    text-decoration: none !important;
}

.list-crumb a:hover {
    color: #397df4;
}

.list-crumb em {
    font-style: normal;
    color: #1a2b4a;
    font-weight: 600;
}

.list-filter-panel {
    background: #fff;
    border: 1px solid #e8eef6;
    border-radius: 8px;
    padding: 6px 18px;
    margin-bottom: 14px;
    box-shadow: 0 4px 16px rgba(41, 90, 180, 0.04);
}

.list-filter-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px dashed #edf1f7;
    flex-wrap: wrap;
}

.list-filter-row-last {
    border-bottom: 0;
}

.list-filter-label {
    flex: none;
    width: 48px;
    color: #98a2b3;
    font-size: 13px;
    line-height: 28px;
    font-weight: 600;
}

.list-filter-opts {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 4px;
    min-width: 0;
}

.list-filter-opts a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 4px;
    color: #1a2b4a !important;
    text-decoration: none !important;
    font-size: 13px;
    line-height: 20px;
    white-space: nowrap;
}

.list-filter-opts a img {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    object-fit: cover;
}

.list-filter-opts a:hover {
    color: #397df4 !important;
}

.list-filter-opts a.active {
    background: #397df4;
    color: #fff !important;
}

.list-price-form,
.list-search-form {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: none;
    margin-left: auto;
}

.list-price-form input[type="number"],
.list-search-form input[type="text"] {
    height: 30px;
    border: 1px solid #dde3ec;
    border-radius: 4px;
    padding: 0 8px;
    outline: none;
    font-size: 13px;
    color: #1a2b4a;
}

.list-price-form input[type="number"] {
    width: 88px;
}

.list-search-form input[type="text"] {
    width: 220px;
}

.list-price-form input:focus,
.list-search-form input:focus {
    border-color: #397df4;
}

.list-price-form button,
.list-search-form button {
    height: 30px;
    padding: 0 14px;
    border: 0;
    border-radius: 4px;
    background: #1a2b4a;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.list-price-form button:hover,
.list-search-form button:hover {
    background: #397df4;
}

.list-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #eef4ff;
    border: 1px solid #dce8ff;
    border-radius: 6px;
    padding: 8px 14px;
    margin-bottom: 12px;
    font-size: 13px;
}

.list-toolbar a {
    color: #5b6b7a !important;
    text-decoration: none !important;
    margin-right: 14px;
    font-weight: 600;
}

.list-toolbar a.active,
.list-toolbar a:hover {
    color: #397df4 !important;
}

.list-shop-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.list-shop-row {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid #e8eef6;
    border-radius: 8px;
    padding: 16px 18px;
    text-decoration: none !important;
    transition: box-shadow .2s ease, border-color .2s ease;
}

.list-shop-row:hover {
    border-color: rgba(57, 125, 244, 0.35);
    box-shadow: 0 8px 24px rgba(41, 90, 180, 0.08);
}

.list-shop-logo {
    flex: none;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    background: #f5f8ff;
    border: 1px solid #e8eef6;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #397df4;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    padding: 4px;
}

.list-shop-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-shop-main {
    flex: 1;
    min-width: 0;
    text-decoration: none !important;
    color: inherit;
}

.list-shop-main h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    color: #1a2b4a;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.list-shop-main:hover h3 {
    color: #397df4;
}

.list-shop-meta {
    margin: 0 0 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    color: #98a2b3;
    font-size: 12px;
}

.list-shop-summary {
    margin: 4px 0 0;
    color: #5b6b7a;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.list-shop-side {
    flex: none;
    width: 140px;
    text-align: right;
}

.list-shop-price {
    color: #e4572e;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
}

.list-shop-price small {
    font-size: 13px;
    font-weight: 600;
    margin-left: 2px;
}

.list-shop-tip {
    display: inline-block;
    margin-top: 4px;
    color: #98a2b3;
    font-size: 12px;
}

.list-shop-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 5px 12px;
    border-radius: 999px;
    background: #397df4;
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none !important;
    cursor: pointer;
}

.list-shop-row:hover .list-shop-btn {
    filter: brightness(1.05);
}

.list-shop-logo {
    text-decoration: none !important;
    color: inherit;
}

@media (max-width: 991px) {
    .list-price-form,
    .list-search-form {
        width: 100%;
        margin-left: 48px;
        margin-top: 8px;
    }

    .list-search-form input[type="text"] {
        flex: 1;
        width: auto;
    }
}

@media (max-width: 767px) {
    .list-shop-row {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .list-shop-side {
        width: 100%;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 10px;
        padding-left: 80px;
    }

    .list-shop-price {
        font-size: 20px;
    }

    .list-shop-tip {
        margin-top: 0;
    }

    .list-shop-btn {
        margin-top: 0;
        margin-left: auto;
    }

    .list-filter-label {
        width: 40px;
    }

    .list-price-form,
    .list-search-form {
        margin-left: 0;
    }
}

/* 详情规格套餐 */
.detail-specs {
    margin: 0 0 18px;
    background: #f7faff;
    border: 1px solid rgba(57, 125, 244, 0.12);
    border-radius: 12px;
    overflow: hidden;
}

.detail-specs-title {
    padding: 10px 14px;
    font-weight: 700;
    color: #1a2b4a;
    border-bottom: 1px solid rgba(57, 125, 244, 0.1);
    background: rgba(57, 125, 244, 0.04);
}

.detail-specs ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.detail-specs li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-bottom: 1px dashed #e8eef6;
}

.detail-specs li:last-child {
    border-bottom: 0;
}

.detail-specs .spec-name {
    color: #1a2b4a;
    font-weight: 600;
}

.detail-specs .spec-price {
    color: #e4572e;
    font-size: 18px;
    font-weight: 800;
    white-space: nowrap;
}

.detail-specs .spec-price small {
    font-size: 12px;
    font-weight: 600;
    margin-left: 2px;
}
