:root {
    --primary: #00c3ff;
    --secondary: #00ff9d;
    --dark: #0a192f;
    --darker: #071120;
    --light: #ccd6f6;
    --card-bg: rgba(10, 25, 47, 0.85);
    --glow: 0 0 15px rgba(0, 195, 255, 0.7);
    --inner-glow: 0 0 10px rgba(0, 255, 157, 0.5);
    --highlight: #ff00c8;
    --highlight-glow: 0 0 20px rgba(255, 0, 200, 0.6);
    --like-color: #ff3366;
    --uc-bg: #f5f5f5;
    --uc-card-bg: #ffffff;
    --uc-text: #333333;
    --uc-border: #e0e0e0;
    --uc-primary: #ff6600;
    --uc-secondary: #ff9900;
    --nav-active: #4a6cf7;
    --nav-bg: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    font-family: 'Roboto', sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa, #e4e7eb);
    color: var(--uc-text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    touch-action: pan-y;
}

#app {
    position: relative;
    min-height: 100vh;
}

.page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--uc-bg);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 10;
    display: none;
}

.page.active {
    transform: translateY(0);
    display: block;
    z-index: 20;
}

.list-page {
    padding-top: 140px;
    padding-bottom: 60px;
}

.detail-page {
    background: var(--uc-bg);
    padding-top: 50px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* 顶部搜索区域 */
.search-container {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    background: var(--uc-card-bg);
    z-index: 99;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    padding: 10px 15px;
}
/* 添加搜索按钮容器样式 */
.search-buttons {
    display: flex;
    gap: 5px;
}

.search-btn {
    background: var(--uc-primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.search-btn:active {
    background: #e65c00;
    transform: scale(0.95);
}

.search-box.has-input .search-btn {
    display: flex;
}
.search-box {
    display: flex;
    background: #f0f2f5;
    border-radius: 25px;
    padding: 8px 15px;
    margin-bottom: 10px;
}

.search-box i {
    color: #777;
    margin-right: 10px;
    font-size: 1.1rem;
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 0.95rem;
}
.search-box button {
    background: transparent;
    border: none;
    color: #777;
    font-size: 1rem;
    cursor: pointer;
    padding: 0 5px;
    display: flex;
    align-items: center;
}

.search-box button.clear-btn {
    display: none;
}

.search-box.has-input button.clear-btn {
    display: block;
}
/* 分类导航 */
.category-nav {
    overflow-x: auto;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

/* 更多分类面板 */
.more-categories-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    display: none;
    padding: 70px 15px 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.more-categories-container {
    background: white;
    border-radius: 15px;
    padding: 20px 15px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-height: 80vh;
    overflow-y: auto;
}

.more-categories-container .category-item {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 5px;
    font-size: 0.8rem;
    text-align: center;
}

.more-categories-container .category-item i {
    margin-right: 0;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

/* 关闭按钮 */
.close-panel {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.category-nav::-webkit-scrollbar {
    display: none;
}

.category-item {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 5px;
    background: #f0f2f5;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #555;
    transition: all 0.3s;
}

.category-item i {
    margin-right: 5px;
    color: var(--uc-primary);
}

.category-item.active {
    background: var(--nav-active);
    color: white;
}

.more-categories-container .active {
    background: var(--nav-active);
    color: white;
}

.category-item:hover {
    background: var(--uc-primary);
    color: white;
    cursor: pointer;
}

header {
    background: var(--uc-card-bg);
    border-bottom: 1px solid var(--uc-border);
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    height: 50px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo h1 {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--uc-primary);
    letter-spacing: 0.5px;
}

.logo-icon {
    color: var(--uc-primary);
    font-size: 1.6rem;
}

.nav-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-btn {
    background: var(--uc-card-bg);
    border: 1px solid var(--uc-border);
    color: #666;
    padding: 6px 15px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.nav-btn.admin-btn {
    background: rgba(255, 102, 0, 0.1);
    border-color: rgba(255, 102, 0, 0.3);
    color: var(--uc-primary);
}

.back-btn {
    background: transparent;
    border: none;
    color: var(--uc-primary);
    font-size: 1.2rem;
    padding: 5px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-btn:active {
    background: rgba(255, 102, 0, 0.1);
}

.pull-refresh {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    z-index: 5;
}

.pull-refresh .icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--uc-primary);
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-right: 10px;
    opacity: 0;
    transform: rotate(0deg);
    transition: opacity 0.3s, transform 0.3s;
}

.pull-refresh .text {
    color: #666;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.pull-refresh.active .icon {
    opacity: 1;
}

.pull-refresh.active .text {
    color: var(--uc-primary);
}

.load-more {
    padding: 25px 0;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.load-more .spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 102, 0, 0.2);
    border-top: 3px solid var(--uc-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
    display: none;
}

.load-more .text {
    transition: all 0.3s;
}

.load-more.loading .spinner {
    display: block;
}

.load-more.loading .text {
    color: var(--uc-primary);
}

.poi-list {
    margin-top: 30px;
    padding: 15px;
}

.poi-card {
    background: var(--uc-card-bg);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--uc-border);
    transform: translateY(0);
    position: relative;
}

.poi-card:active {
    transform: scale(0.98);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.poi-content {
    padding: 15px;
}

.poi-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--uc-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.poi-location {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.poi-location i {
    margin-right: 5px;
    color: var(--uc-primary);
}

.poi-meta {
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 0.85rem;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
    margin-top: 10px;
}

.detail-header-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.detail-header-swiper .swiper-slide {
    position: relative;
}

.detail-header-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.detail-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.detail-header-overlay h1 {
    color: white;
    font-size: 1.8rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    text-align: center;
    padding: 0 20px;
    max-width: 90%;
    z-index: 3;
}

.swiper-pagination-bullet {
    background: rgba(255,255,255,0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #fff;
}

/* 图片展示区域 */
.poi-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 0 15px 15px 15px;
}

.poi-image-item {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.poi-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.poi-image-item:hover img {
    transform: scale(1.05);
}

.image-count {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 3px 8px;
    font-size: 0.75rem;
    border-radius: 4px 0 0 0;
}

/* 功能按钮区域 */
.action-bar {
    display: flex;
    justify-content: space-around;
    padding: 10px 15px;
    border-top: 1px solid #f0f0f0;
    margin-top: 10px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.action-btn i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 102, 0, 0.1);
    color: var(--uc-primary);
    font-size: 1rem;
    transition: all 0.3s;
}

.action-btn.favorite i {
    color: var(--like-color);
}

.action-btn:active i {
    transform: scale(0.9);
}

.detail-header {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #ff6600, #ff9900);
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-header h1 {
    color: white;
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    text-align: center;
    padding: 0 20px;
}

.back-btn-detail {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--uc-primary);
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 10;
}

.detail-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.detail-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.detail-action-btn:active {
    transform: scale(0.9);
}

.detail-action-btn.favorite {
    color: var(--like-color);
}

.detail-content {
    padding: 20px 15px;
    background: var(--uc-card-bg);
    border-radius: 20px 20px 0 0;
    margin-top: -20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.detail-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--uc-text);
    line-height: 1.3;
}

.detail-category {
    display: inline-block;
    background: rgba(255, 102, 0, 0.1);
    color: var(--uc-primary);
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.detail-info {
    margin: 25px 0;
}

.info-item {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.info-item i {
    color: var(--uc-primary);
    margin-right: 12px;
    min-width: 20px;
    font-size: 1.2rem;
    margin-top: 2px;
}

.info-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

.address-box {
    background: rgba(255, 102, 0, 0.05);
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 1rem;
    border-left: 3px solid var(--uc-primary);
    color: #555;
    line-height: 1.5;
}

/* 图片展示区域 */
.image-gallery {
    margin-top: 25px;
}

.gallery-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--uc-text);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.more-images {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2px 8px;
    font-size: 0.8rem;
    border-radius: 4px 0 0 0;
}

.related-pois {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.related-pois h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--uc-text);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.related-pois .poi-card {
    margin-bottom: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.related-pois .poi-image {
    height: 120px;
}

.related-pois .poi-title {
    font-size: 1.1rem;
}

.comments-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.comments-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--uc-text);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.comment-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.comment-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--uc-border);
    border-radius: 24px;
    font-size: 1rem;
    outline: none;
}

.comment-submit {
    background: var(--uc-primary);
    color: white;
    border: none;
    border-radius: 24px;
    padding: 0 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.comment-submit:active {
    background: #e65c00;
}

.comments-list {
    margin-top: 20px;
}

.comment-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f5f5f5;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.comment-text {
    color: #555;
    line-height: 1.5;
}

.comment-meta {
    display: flex;
    gap: 15px;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #999;
}

.comment-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.comment-meta .like-btn {
    transition: all 0.2s;
}

.comment-meta .like-btn.liked {
    color: var(--like-color);
}

.comment-meta .like-btn.liked i {
    color: var(--like-color);
}

.related-products {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.section-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--uc-text);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.section-title i {
    color: var(--uc-primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.product-card {
    background: var(--uc-card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--uc-border);
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.product-image {
    height: 100px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ddd;
    font-size: 1.5rem;
}

.product-info {
    padding: 10px;
}

.product-name {
    font-size: 0.9rem;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #444;
}

.product-price {
    color: var(--uc-accent);
    font-weight: bold;
    font-size: 1rem;
}

.bottom-nav {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--nav-bg);
    display: flex;
    border-top: 1px solid var(--uc-border);
    z-index: 100;
    box-shadow: 0 -1px 5px rgba(0,0,0,0.05);
}

.nav-item {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    color: #999;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nav-item.active {
    color: var(--nav-active);
}

.nav-item i {
    font-size: 1.4rem;
    margin-bottom: 3px;
    transition: all 0.3s;
}

.nav-item.active i {
    color: var(--nav-active);
    transform: translateY(-5px);
}

/* 全屏图片查看器 */
.image-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.image-viewer.active {
    opacity: 1;
    pointer-events: all;
}

.viewer-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.close-viewer {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.close-viewer:active {
    background: rgba(255,255,255,0.3);
}

.image-counter {
    color: white;
    font-size: 1rem;
    background: rgba(0,0,0,0.5);
    padding: 5px 15px;
    border-radius: 20px;
}

.viewer-content {
    width: 100%;
    height: calc(100% - 120px);
    position: relative;
}

.viewer-swiper {
    width: 100%;
    height: 100%;
}

.viewer-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.viewer-swiper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.viewer-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 25px;
    z-index: 10;
}

.viewer-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 0.9rem;
    gap: 5px;
    cursor: pointer;
}

.viewer-action i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s;
}

.viewer-action:active i {
    background: rgba(255,255,255,0.25);
}

.viewer-action.favorite i {
    color: var(--like-color);
}

/* 动画效果 */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes like {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.4s ease forwards;
}

.like-animation {
    animation: like 0.4s ease;
}

.toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: rgba(0,0,0,0.85);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #fff;
    width: 20px;
    border-radius: 4px;
}

.pull-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--uc-primary);
    transform: scaleX(0);
    transform-origin: left;
    z-index: 101;
    transition: transform 0.2s;
}

.no-results {
    text-align: center;
    padding: 40px;
    color: #999;
}

.no-results i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ccc;
}

.nearby-pois {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.nearby-pois h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--uc-text);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.nearby-pois-list {
    margin-top: 15px;
}

.detail-load-more {
    padding: 25px 0;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.detail-load-more .spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 102, 0, 0.2);
    border-top: 3px solid var(--uc-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
    display: none;
}

.detail-load-more .text {
    transition: all 0.3s;
}

.detail-load-more.loading .spinner {
    display: block;
}

.detail-load-more.loading .text {
    color: var(--uc-primary);
}
 /* 新增分页样式 */
 .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
}

.page-link {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 3px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.page-link:hover,
.page-link:focus {
    background: var(--uc-primary);
    color: white;
    border-color: var(--uc-primary);
}

.page-link.current {
    background: var(--uc-primary);
    color: white;
    border-color: var(--uc-primary);
    font-weight: 600;
}

.page-link.prev, 
.page-link.next {
    background: #f0f0f0;
    min-width: 80px;
    text-align: center;
}

.page-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 面包屑导航 */
.breadcrumb {
    padding: 15px;
    font-size: 0.9rem;
    color: #666;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.breadcrumb a {
    color: var(--uc-primary);
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 5px;
    color: #999;
}

/* 优化元素 */
.seo-content {
    padding: 20px 15px;
    background: white;
    border-radius: 10px;
    margin: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.seo-content h2 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.seo-content p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

/* 响应式调整 */
@media (max-width: 480px) {
    .page-link {
        padding: 6px 12px;
        font-size: 0.85rem;
        margin: 2px;
    }
    
    .page-link.prev, 
    .page-link.next {
        min-width: 70px;
    }
    
    .list-page {
        padding-top: 180px;
    }
}
