.hotshop-v2-home {
    margin: 12px 12px 0;
    padding: 14px 0 6px;
    background: #fff;
    border-radius: 12px;
}
.hotshop-v2-home__hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px 12px;
}
.hotshop-v2-home__title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}
.hotshop-v2-home__more {
    font-size: 13px;
    color: #333;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}
.hotshop-v2-home__more i {
    font-size: 12px;
    margin-left: 2px;
}
.hotshop-v2-marquee {
    padding: 0 14px 10px;
    overflow: hidden;
}
.hotshop-v2-marquee__track {
    display: flex;
    width: max-content;
    will-change: transform;
}
.hotshop-v2-marquee__group {
    display: flex;
    gap: 12px;
    padding-right: 12px;
    box-sizing: content-box;
}
.hotshop-v2-card {
    display: block;
    width: 118px;
    flex: 0 0 118px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.hotshop-v2-card__pic {
    position: relative;
    width: 118px;
    height: 88px;
    border-radius: 8px;
    overflow: hidden;
    background: #f2f2f2;
}
.hotshop-v2-card__pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hotshop-v2-card__badge {
    position: absolute;
    left: 6px;
    bottom: 6px;
    background: #2db84c;
    color: #fff;
    font-size: 11px;
    line-height: 1;
    padding: 4px 6px;
    border-radius: 3px;
}
.hotshop-v2-card__name {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hotshop-v2-card__cate {
    margin-top: 4px;
    font-size: 12px;
    color: #c4a07a;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hotshop-v2-page {
    background: #f5f5f5;
    min-height: 100vh;
    padding-bottom: 24px;
}
/* 「更多好店」列表：复用 search_v2 横卡 */
.hs-list-page.sr-v2-page {
    padding-bottom: 24px;
}
.hs-list-main {
    padding-top: 12px;
}
.hs-list-card {
    text-decoration: none;
    color: inherit;
}
.hs-list-card .sr-v2-card__price {
    font-size: 16px;
    /* 店面卖点行：略小，避免长文案撑破 */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hs-list-card__tag-hot {
    background: #fff0f0 !important;
    color: #ff4d4d !important;
}
.hs-list-card .sr-v2-card__meta {
    justify-content: flex-start;
}
.hotshop-v2-list {
    padding: 12px;
}
.hotshop-v2-list__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.hotshop-v2-list .hotshop-v2-card {
    width: auto;
    flex: none;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    box-sizing: border-box;
}
.hotshop-v2-list .hotshop-v2-card__pic {
    width: 100%;
    height: 110px;
}
.hotshop-v2-empty {
    text-align: center;
    color: #999;
    padding: 60px 20px;
    font-size: 14px;
}
.hotshop-v2-more {
    text-align: center;
    padding: 16px;
}
.hotshop-v2-more a {
    color: var(--tc-v2-orange, #ff6a00);
    font-size: 14px;
}

.hotshop-v2-info {
    margin: 12px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}
/* 详情头图 4:3；多图可横滑（slide 必须 min-width:100%，否则 flex 会挤进一屏） */
.hotshop-v2-info__gallery {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    background: #f2f2f2;
    overflow: hidden;
}
.hotshop-v2-info__gallery-track {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.hotshop-v2-info__gallery-track::-webkit-scrollbar {
    display: none;
}
.hotshop-v2-info__slide {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    box-sizing: border-box;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    background: #f2f2f2;
}
.hotshop-v2-info__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    pointer-events: none;
}
.hotshop-v2-info__gallery-count {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 3;
    background: rgba(0,0,0,.45);
    color: #fff;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 10px;
    line-height: 1.4;
    pointer-events: none;
}
.hotshop-v2-info__nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 28px;
    height: 28px;
    margin-top: -14px;
    border-radius: 50%;
    background: rgba(0,0,0,.35);
    color: #fff;
    text-decoration: none;
}
.hotshop-v2-info__nav:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    box-sizing: border-box;
}
.hotshop-v2-info__nav--prev {
    left: 8px;
}
.hotshop-v2-info__nav--prev:after {
    margin: -5px 0 0 -3px;
    transform: rotate(-135deg);
}
.hotshop-v2-info__nav--next {
    right: 8px;
}
.hotshop-v2-info__nav--next:after {
    margin: -5px 0 0 -7px;
    transform: rotate(45deg);
}

/* ========== 商家详情图：整屏一张，JS transform 切换（兼容微信） ========== */
.hs-v2-info-page .hs-v2-photos {
    margin: 0 -16px 16px;
    position: relative;
    width: auto;
    height: 0;
    padding-bottom: 75%; /* 4:3 */
    overflow: hidden;
    background: #f0f0f0;
}
.hs-v2-info-page .hs-v2-photos__hero,
.hs-v2-info-page .hs-v2-photos__viewport {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}
.hs-v2-info-page .hs-v2-photos__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.hs-v2-info-page .hs-v2-photos__track {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-transition: -webkit-transform 0.28s ease;
    transition: transform 0.28s ease;
    will-change: transform;
}
.hs-v2-info-page .hs-v2-photos__slide {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    height: 100%;
    position: relative;
    background: #f0f0f0;
    overflow: hidden;
}
.hs-v2-info-page .hs-v2-photos__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
}
.hs-v2-info-page .hs-v2-photos__viewport {
    cursor: grab;
}
.hs-v2-info-page .hs-v2-photos__viewport:active {
    cursor: grabbing;
}
.hs-v2-info-page .hs-v2-photos__count {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 3;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 10px;
    line-height: 1.4;
    pointer-events: none;
}
.hs-v2-info-page .hs-v2-photos__nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 32px;
    height: 32px;
    margin-top: -16px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}
.hs-v2-info-page .hs-v2-photos__nav:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 9px;
    height: 9px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    box-sizing: border-box;
}
.hs-v2-info-page .hs-v2-photos__nav--prev {
    left: 10px;
}
.hs-v2-info-page .hs-v2-photos__nav--prev:after {
    margin: -5px 0 0 -3px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.hs-v2-info-page .hs-v2-photos__nav--next {
    right: 10px;
}
.hs-v2-info-page .hs-v2-photos__nav--next:after {
    margin: -5px 0 0 -7px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.hotshop-v2-pics__tip {
    margin-left: 8px;
    font-weight: 400;
    font-size: 12px;
    color: #999;
}
.hotshop-v2-pics__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}
.hotshop-v2-pics__item {
    position: relative;
    width: 96px;
    height: 96px;
    border-radius: 8px;
    overflow: hidden;
    background: #f2f2f2;
}
.hotshop-v2-pics__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hotshop-v2-pics__cover {
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(255,106,0,.9);
    color: #fff;
    font-size: 10px;
    padding: 1px 6px;
    border-radius: 0 6px 0 0;
}
.hotshop-v2-pics__del {
    position: absolute;
    right: 2px;
    top: 2px;
    width: 20px;
    height: 20px;
    line-height: 18px;
    text-align: center;
    background: rgba(0,0,0,.55);
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    text-decoration: none;
}
.hotshop-v2-pics__add {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    margin-top: 8px;
    border: 1px dashed #d0d0d0;
    border-radius: 8px;
    color: #999;
    background: #fafafa;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
.hotshop-v2-pics__add span {
    font-size: 28px;
    line-height: 1;
    color: #bbb;
}
.hotshop-v2-pics__add em {
    font-style: normal;
    font-size: 12px;
    margin-top: 4px;
}
.hotshop-v2-pics__add input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.hotshop-v2-info__body {
    padding: 16px 16px 8px;
}
.hotshop-v2-info__name {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    line-height: 1.35;
}
.hotshop-v2-info__cate {
    display: inline-block;
    margin-top: 8px;
    font-size: 12px;
    color: #c4a07a;
    background: #fff8f0;
    padding: 3px 8px;
    border-radius: 4px;
    line-height: 1.4;
}
.hotshop-v2-info__block {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #f2f2f2;
}
.hotshop-v2-info__label {
    font-size: 13px;
    color: #999;
    margin-bottom: 6px;
}
.hotshop-v2-info__text {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    word-break: break-all;
    white-space: pre-wrap;
}
.hotshop-v2-info__foot {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,.06);
}
.hotshop-v2-info__call {
    display: block;
    text-align: center;
    background: var(--tc-v2-orange, #ff6a00);
    color: #fff;
    border-radius: 24px;
    height: 44px;
    line-height: 44px;
    font-size: 16px;
    text-decoration: none;
}
.hotshop-v2-info-page {
    padding-bottom: 80px;
}

.hotshop-v2-edit .renzheng-v2-note,
.hotshop-v2-status {
    margin: 12px 12px 0;
    padding: 10px 12px;
    background: #fff7ef;
    color: #b36b00;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
}
.hotshop-v2-status--ok {
    background: #eefaf1;
    color: #1f8f3a;
}
.hotshop-v2-status--reject {
    background: #ffeeee;
    color: #d12f2f;
}
