body {
    background: #f5f5f5;
}

.gd-page {
    padding-bottom: 60px;
}

/*顶部导航*/
.gd-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 46px;
    padding: 0 12px;
    background: #fff;
    border-bottom: 1px solid #f2f2f2;
}

.gd-header .gd-back {
    font-size: 22px;
    color: #333;
    text-decoration: none;
}

.gd-header .gd-title {
    font-size: 16px;
    color: #333;
    font-weight: normal;
}

.gd-header .gd-place {
    width: 22px;
}

/*轮播图(样式与首页Banner一致:高度按屏宽比例,图片统一高度)*/
.gd-swiper {
    margin-top: 46px;
    background: #fff;
    position: relative;
    width: 100%;
    height: 60.33vw;
    overflow: hidden;
}

.gd-swiper .bd,
.gd-swiper .gd-banner-ul,
.gd-swiper .gd-banner-li {
    width: 100%;
    height: 60.33vw;
}

.gd-swiper .gd-banner-li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/*指示器(小圆点)*/
.gd-swiper .hd {
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.gd-swiper .hd .hd-list {
    display: flex;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gd-swiper .hd .hd-list li {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    cursor: pointer;
    font-size: 0;
    text-indent: -9999px;
    overflow: hidden;
    transition: all .3s ease;
}

.gd-swiper .hd .hd-list li.on {
    background: #fff;
    width: 20px;
    border-radius: 4px;
}

/*左右箭头(移动端隐藏,参照首页)*/
.gd-swiper .hd .prev, .gd-swiper .hd .next {
    display: none;
}

/*价格与标题区*/
.gd-main {
    background: #fff;
    padding: 14px 12px 4px;
}

.gd-price {
    display: none;
    align-items: baseline;
}

.gd-price .gd-price-rmb {
    font-size: 14px;
    color: #ff2e2e;
    font-weight: bold;
}

.gd-price .gd-price-num {
    font-size: 26px;
    color: #ff2e2e;
    font-weight: bold;
}

.gd-price .gd-price-unit {
    font-size: 13px;
    color: #999;
    margin-left: 6px;
}

.gd-title {
    font-size: 18px;
    color: #333;
    line-height: 1.4;
    margin: 8px 0;
    font-weight: 600;
}

.gd-sub {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #999;
    padding-bottom: 10px;
}

.gd-sub span {
    margin-right: 16px;
}

/*推荐商家入口*/
.gd-recommend {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 2px;
    border-top: 1px solid #f2f2f2;
    font-size: 13px;
    color: #333;
    text-decoration: none;
}

.gd-recommend-arrow {
    color: #999;
}

/*商户标签*/
.gd-promise {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    margin-top: 8px;
    padding: 10px 8px;
    font-size: 12px;
    color: #666;
}

.gd-promise i {
    color: #ff2e2e;
    font-style: normal;
    margin-right: 4px;
}

.gd-promise span {
    margin-right: 20px;
}

.gd-promise .gd-tag {
    color: #ff2e2e;
    border: 1px solid #ff2e2e;
    border-radius: 2px;
    padding: 2px 8px;
    margin: 0 8px 8px 0;
}

/*商户信息条*/
.gd-shop {
    display: flex;
    align-items: center;
    background: #fff;
    margin-top: 8px;
    padding: 12px;
    text-decoration: none;
}

.gd-shop-logo {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: #ff2e2e;
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.gd-shop-name {
    flex: 1;
    font-size: 14px;
    color: #333;
}

.gd-shop-tag {
    font-size: 11px;
    color: #ff2e2e;
    border: 1px solid #ff2e2e;
    border-radius: 2px;
    padding: 1px 4px;
    margin-right: 8px;
}

.gd-shop-arrow {
    font-size: 13px;
    color: #999;
}

/*商品详情*/
.gd-detail {
    margin-top: 8px;
    background: #fff;
}

.gd-detail-title {
    font-size: 15px;
    color: #333;
    text-align: center;
    padding: 12px 0;
    position: relative;
}

.gd-detail-title:before, .gd-detail-title:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background: #e5e5e5;
}

.gd-detail-title:before {
    left: calc(50% - 90px);
}

.gd-detail-title:after {
    right: calc(50% - 90px);
}

.gd-detail-intro {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    padding: 4px 12px 12px;
}

.gd-detail img {
    width: 100%;
    display: block;
}

/*底部操作栏*/
.gd-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    height: 52px;
}

.gd-footer .gd-f-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #666;
    text-decoration: none;
}

.gd-footer .gd-f-item i {
    font-size: 20px;
    color: #333;
}

.gd-footer .gd-buy {
    flex: 1.5;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff2e2e;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
}

.gd-empty {
    padding: 60px 0;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/*关联商家*/
.gd-shops {
    margin-top: 8px;
    background: #fff;
    padding: 12px 15px 50px 15px;
}
.gd-shops .list_shop_li {
    margin-bottom: 12px;
}
.gd-shops .list_shop_li:last-child {
    margin-bottom: 0;
}