/* 顶部导航 - 小红书「店」字图标（联系我们右侧） */
.gf-xhs-nav-item {
    display: inline-block;
    vertical-align: top;
}
.gf-xhs-nav-item .p_navCon {
    margin: 0;
    padding: 0;
}
.gf-xhs-nav-item .gf-xhs-store-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    padding: 0 8px;
    vertical-align: middle;
    line-height: 80px;
    height: 80px;
    box-sizing: border-box;
}
.gf-xhs-nav-hint {
    display: none;
}
@media (max-width: 768px) {
    .gf-xhs-nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .gf-xhs-nav-item .gf-xhs-store-trigger {
        width: 100%;
        justify-content: flex-start;
        padding: 0 15px;
        line-height: 60px;
        height: 60px;
        box-sizing: border-box;
    }
    .gf-xhs-nav-hint {
        display: inline-block;
        margin-left: 12px;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.2;
        white-space: nowrap;
        flex: 1;
    }
    .gf-xhs-nav-item .gf-xhs-store-trigger::after {
        content: "打开";
        font-size: 13px;
        color: rgba(255, 255, 255, 0.75);
        margin-left: 8px;
        flex-shrink: 0;
    }
}
@media (min-width: 769px) {
    .gf-xhs-nav-hint {
        display: none;
    }
}
.gf-xhs-nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ff2442;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-style: normal;
    line-height: 1;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.gf-xhs-nav-item .gf-xhs-store-trigger:hover .gf-xhs-nav-icon {
    transform: scale(1.08);
    opacity: 0.9;
}

/* 二维码弹窗 */
.gf-xhs-modal {
    position: fixed;
    inset: 0;
    z-index: 100001;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    padding: 24px 16px;
    box-sizing: border-box;
    overflow-y: auto;
}
.gf-xhs-modal.is-open {
    display: flex;
}
.gf-xhs-modal__panel {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px 22px;
    max-width: 320px;
    width: 100%;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    margin: auto;
    flex-shrink: 0;
}
.gf-xhs-modal__close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}
.gf-xhs-modal__close:hover {
    background: rgba(0, 0, 0, 0.65);
}
.gf-xhs-modal__panel img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 14px;
}
.gf-xhs-modal__panel h3 {
    margin: 0 0 6px;
    font-size: 18px;
    color: #333;
}
.gf-xhs-modal__panel p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}
