
/* --- 首页景点导航专用样式 ---.nav-section {
    background: #fff;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.nav-category-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px 10px 15px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    line-height: 1;
}

.nav-category-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 16px;
    background: var(--primary-color, #009688);
    margin-right: 8px;
    border-radius: 2px;
    vertical-align: middle;
}

.nav-category-more {
    font-size: 12px;
    color: #999;
    font-weight: normal;
}

/* ================== 核心修正：金刚区导航恢复原版大圆图标 ================== */
/* 默认 4 列布局 */
.nav-grid, .nav-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 10px;
    padding: 20px 10px;
    background: var(--white, #fff);
}

/* 兼容 5 列布局（出疆/总线路图标多时使用），但依然保持大圆图标 */
.nav-grid.domestic, .nav-grid-v2.domestic {
    grid-template-columns: repeat(5, 1fr);
    gap: 15px 2px;
    padding: 20px 5px;
}

.nav-item, .nav-item-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-dark, #333);
    text-align: center;
    text-decoration: none;
    font-size: 14px; /* 恢复原版大字号 */
}

.nav-item span, .nav-item-v2 span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    padding: 0 2px;
}

.nav-icon, .nav-icon-v2 {
    width: 45px;  /* 恢复原版大尺寸 */
    height: 45px; /* 恢复原版大尺寸 */
    border-radius: 50%; /* 强制完美纯圆角 */
    background: #f0f9f8;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px; /* 恢复原版 emoji 的大字号 */
    color: var(--primary-color, #009688);
    transition: transform 0.2s;
}

.nav-icon img, .nav-icon-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%; /* 如果里面是图片也强制裁成圆形 */
}

/* 门票特殊高亮 */
.nav-item-ticket .nav-icon, .nav-item-ticket .nav-icon-v2 {
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: #fff;
    box-shadow: 0 4px 8px rgba(255, 87, 34, 0.2);
}

.nav-item-ticket span {
    color: #ff5722;
    font-weight: bold;
}

/* --- 游记列表容器 (保留本页特有样式) --- */
.xj-youji-grid {
    display: flex;
    justify-content: space-between;
    padding: 0 10px 0px 10px;
}

/* 单个卡片 */
.xj-card {
    display: flex;
    flex-direction: column;
    width: 32%;
    text-decoration: none;
    overflow: hidden;
}

/* 图片容器 */
.xj-img-box {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    background: #f0f0f0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 6px;
    flex-shrink: 0;
}

.xj-img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 标题 */
.xj-title {
    font-size: 14px;
    color: #333;
    font-weight: bold;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

/* 简介 */
.xj-intro {
    font-size: 11px;
    color: #666;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 6px;
}

/* 底部信息栏 */
.xj-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 20px;
    margin-top: auto;
}

/* 关注度 */
.xj-hot {
    font-size: 11px;
    color: #009688;
    border: 1px solid #009688;
    border-radius: 4px;
    padding: 0 4px;
    line-height: 14px;
    display: inline-block;
    white-space: nowrap;
    box-sizing: border-box;
}