/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 100%;
    min-height: 100vh;
    padding-bottom: 70px; /* 底部导航高度 */
}

/* 通用头部样式 */
.header {
    background: #fff;
    padding: 15px 15px 10px 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 网站Logo样式 */
.site-logo {
    text-align: center;
    margin-bottom: 15px;
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    color: #007bff;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 0 1px 2px rgba(0,123,255,0.2);
}

.logo-slogan {
    font-size: 12px;
    color: #666;
    margin: 5px 0 0 0;
    font-weight: 400;
}

.header-simple {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
}

.back-btn {
    color: #666;
    font-size: 20px;
    text-decoration: none;
}

.page-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.share-btn {
    color: #666;
    font-size: 18px;
    text-decoration: none;
}

/* 搜索框样式 */
.search-box {
    padding: 10px 0;
}

.search-input-group {
    display: flex !important;
    background: #f1f2f3;
    border-radius: 25px;
    padding: 5px;
    align-items: center;
    justify-content: space-between !important;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 15px;
    font-size: 14px;
    outline: none;
}

.search-btn {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    margin-left: auto !important;
    flex-shrink: 0 !important;
    align-self: flex-end !important;
}

/* 搜索页面专用样式 */
.search-container {
    background: #fff;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 10px;
}

.search-form {
    display: flex !important;
    background: #f1f2f3;
    border-radius: 25px;
    padding: 5px;
    align-items: center;
    justify-content: space-between !important;
}

.search-form .search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 15px;
    font-size: 14px;
    outline: none;
}

.search-form .search-btn {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: auto !important;
    flex-shrink: 0 !important;
    align-self: flex-end !important;
}

.search-form .search-btn:hover {
    background: #0056b3;
}

/* 搜索信息样式 */
.search-info {
    background: #fff;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.search-info p {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}

.search-info strong {
    color: #333;
    font-weight: 600;
}

/* 搜索建议样式 */
.search-suggest {
    background: #fff;
    padding: 20px 15px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin: 20px 15px;
}

.search-suggest h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.suggest-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.suggest-tag {
    background: #f8f9fa;
    color: #666;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.suggest-tag:hover {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

/* 分类导航 - 金刚位样式 */
.category-nav {
    background: #fff;
    padding: 20px 15px;
    border-bottom: 1px solid #eee;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 100%;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    padding: 20px 10px 15px 10px;
    border-radius: 16px;
    background: transparent;
    transition: all 0.3s ease;
    min-height: 100px;
    justify-content: flex-start;
    position: relative;
}

.category-item:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.category-item.active {
    background: #f0f8ff;
    color: #007bff;
    box-shadow: 0 6px 20px rgba(0,123,255,0.15);
}

.category-item.active .category-icon img {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

.category-icon {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    transition: all 0.3s ease;
}

.category-icon i {
    font-size: 20px;
    color: #007bff;
    transition: color 0.3s ease;
}

.category-icon img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.category-item:hover .category-icon {
    transform: translateY(-2px);
}

.category-item:hover .category-icon img {
    transform: scale(1.05);
}

.category-name {
    font-size: 13px;
    text-align: center;
    line-height: 1.3;
    font-weight: 500;
    color: #333;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .category-nav {
        padding: 15px 10px;
    }
    
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .category-item {
        padding: 15px 8px 12px 8px;
        min-height: 90px;
    }
    
    .category-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 10px;
    }
    
    .category-icon img {
        width: 48px;
        height: 48px;
    }
    
    .category-name {
        font-size: 12px;
        max-width: 70px;
    }
}

@media (max-width: 480px) {
    .category-nav {
        padding: 12px 8px;
    }
    
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    
    .category-item {
        padding: 12px 6px 10px 6px;
        min-height: 80px;
    }
    
    .category-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 8px;
    }
    
    .category-icon img {
        width: 40px;
        height: 40px;
    }
    
    .category-name {
        font-size: 11px;
        max-width: 60px;
    }
}

/* 统计栏 */
.stats-bar {
    background: #fff;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.stats-text {
    font-size: 12px;
    color: #999;
}

/* 主内容区域 */
.main-content {
}

/* 商户列表 */
.business-list {
    background: #fff;
}

.business-item {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.3s;
}

.business-item:hover {
    background: #f8f9fa;
}

.business-left {
    margin-right: 12px;
}

.business-avatar {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.business-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-right {
    flex: 1;
    display: flex;
    justify-content: space-between;
}

.business-info {
    flex: 1;
}

.business-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.business-tags {
    margin-bottom: 8px;
}

.tag {
    display: inline-block;
    padding: 2px 6px;
    font-size: 11px;
    border-radius: 3px;
    margin-right: 5px;
}

.category-tag {
    background: #e3f2fd;
    color: #1976d2;
}

.vip-tag {
    background: #fff3e0;
    color: #f57c00;
}

.hot-tag {
    background: #ffebee;
    color: #d32f2f;
}

.business-addr {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.business-contact {
    font-size: 12px;
    color: #999;
}

.business-action {
    display: flex;
    align-items: center;
}

.call-btn {
    width: 40px;
    height: 40px;
    background: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
}

/* 底部导航 */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    display: flex;
    border-top: 1px solid #eee;
    z-index: 99;
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    color: #999;
    text-decoration: none;
    font-size: 14px;
    gap: 8px;
}

.nav-item.active {
    color: #007bff;
}

.nav-item i {
    font-size: 18px;
}

/* 底部导航图标 */
.nav-item .iconfont.icon-home:before {
    content: "\e636";
}

.nav-item .iconfont.icon-plus:before {
    content: "\e699";
}

/* 表单样式 */
.form-content {
    padding: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.input-group {
    position: relative;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: #007bff;
}

.location-input {
    padding-right: 80px;
}

.location-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: #007bff;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
}

/* 上传组件 */
.upload-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.upload-input {
    display: none;
}

.upload-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: 2px dashed #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.upload-btn:hover {
    border-color: #007bff;
}

.upload-btn i {
    font-size: 24px;
    color: #999;
    margin-bottom: 5px;
}

.upload-btn span {
    font-size: 12px;
    color: #666;
}

.upload-preview {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.upload-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-btn {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #ff4444;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 12px;
    cursor: pointer;
}

.submit-group {
    margin-top: 30px;
}

.submit-btn {
    width: 100%;
    background: #007bff;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #0056b3;
}

/* 地区选择器样式 */
.address-select-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.form-select {
    flex: 1;
    min-width: 120px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    color: #333;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-select option {
    padding: 8px;
}

@media (max-width: 768px) {
    .address-select-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .form-select {
        min-width: auto;
    }
}

/* 详情页样式 */
.detail-content {
    padding: 15px;
}

.business-header {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.business-header .business-avatar {
    width: 80px;
    height: 80px;
}

.business-header .business-info {
    flex: 1;
}

.business-header .business-title {
    font-size: 18px;
    margin-bottom: 8px;
}

.business-stats {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 8px;
}

.stat-item {
    font-size: 12px;
    color: #666;
}

.contact-section, .detail-section, .description-section, .related-section {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
}

.section-title {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.section-title i {
    margin-right: 8px;
    color: #007bff;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-btn {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.contact-btn:hover {
    background: #f8f9fa;
    border-color: #007bff;
}

.contact-btn i {
    font-size: 20px;
    margin-right: 12px;
    color: #007bff;
}

.btn-content {
    flex: 1;
}

.btn-label {
    display: block;
    font-size: 12px;
    color: #999;
}

.btn-value {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.detail-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    display: flex;
    align-items: flex-start;
}

.info-label {
    flex-shrink: 0;
    width: 80px;
    font-size: 14px;
    color: #666;
}

.info-value {
    flex: 1;
    font-size: 14px;
    color: #333;
}

.description-content {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.action-section {
    text-align: center;
    margin: 20px 0;
}

.favorite-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.favorite-btn.favorited {
    background: #ffebee;
    color: #d32f2f;
    border-color: #d32f2f;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.related-item:hover {
    background: #f8f9fa;
}

.related-avatar {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
}
.related-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.related-info {
    flex: 1;
}

.related-title {
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
}

.related-phone {
    font-size: 12px;
    color: #999;
}

.related-action .call-btn {
    width: 35px;
    height: 35px;
    font-size: 16px;
}

.bottom-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 12px 15px;
    z-index: 99;
}

.action-group {
    display: flex;
    gap: 12px;
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    color: #666;
    font-size: 14px;
    transition: all 0.3s;
}

.action-btn.call-primary {
    background: #007bff;
    border-color: #007bff;
    color: #fff;
}

/* 分页样式 - 现代化设计 */
.pagination-container {
    padding: 25px 15px 25px 15px;
    background: #fff;
    list-style: none;
    margin: 0;
}

.pagination-container ul,
.pagination-container ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination-wrapper *,
.pagination-wrapper li {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0;
}

/* 强制去除任何可能的列表样式 */
.pagination-container *::before,
.pagination-container *::after {
    content: none !important;
}

.pagination-container ul,
.pagination-container ol,
.pagination-container li {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block;
}

.pagination-container ul::marker,
.pagination-container ol::marker,
.pagination-container li::marker {
    display: none !important;
    content: none !important;
}

/* 基础分页链接样式 */
.pagination-wrapper a,
.pagination-wrapper span {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #fff;
    color: #6c757d;
    position: relative;
    list-style: none !important;
    margin: 0 !important;
}

.pagination-wrapper a::before,
.pagination-wrapper span::before,
.pagination-wrapper a::marker,
.pagination-wrapper span::marker {
    display: none !important;
    content: none !important;
    overflow: hidden;
}

/* 普通链接悬停效果 */
.pagination-wrapper a:hover {
    background: #007bff;
    border-color: #007bff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* 当前页样式 */
.pagination-wrapper .current,
.pagination-wrapper span.current {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-color: #007bff;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.25);
    cursor: default;
}

/* 上一页/下一页按钮 */
.pagination-wrapper a:first-child,
.pagination-wrapper a:last-child {
    padding: 0 16px;
    font-weight: 600;
    min-width: auto;
}

.pagination-wrapper a:first-child {
    border-radius: 10px 8px 8px 10px;
}

.pagination-wrapper a:last-child {
    border-radius: 8px 10px 10px 8px;
}

/* 禁用状态 */
.pagination-wrapper span:not(.current) {
    background: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
    border-color: #dee2e6;
}

/* 省略号样式 */
.pagination-wrapper span.dots {
    border: none;
    background: transparent;
    cursor: default;
    font-weight: bold;
    color: #6c757d;
}

/* 简化分页（手机端） */
.pagination-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    gap: 15px;
}

.pagination-simple .prev-btn,
.pagination-simple .next-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 90px;
    justify-content: center;
    text-decoration: none;
}

.pagination-simple .prev-btn:hover,
.pagination-simple .next-btn:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.pagination-simple .prev-btn:disabled,
.pagination-simple .next-btn:disabled {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    color: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.7;
}

.pagination-simple .page-info {
    flex: 1;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #495057;
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.pagination-simple .current-page {
    color: #007bff;
    font-weight: 700;
}

.pagination-simple .separator {
    margin: 0 8px;
    color: #6c757d;
}

/* 加载状态 */
.pagination-container.loading {
    opacity: 0.7;
    pointer-events: none;
}

.pagination-container.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .pagination-container {
        padding: 20px 10px 10px 10px;
    }
    
    .pagination-wrapper {
        gap: 8px;
    }
    
    .pagination-wrapper a,
    .pagination-wrapper span {
        min-width: 40px;
        height: 40px;
        font-size: 13px;
        padding: 0 10px;
    }
    
    .pagination-wrapper a:first-child,
    .pagination-wrapper a:last-child {
        padding: 0 14px;
    }
    
    .pagination-simple .prev-btn,
    .pagination-simple .next-btn {
        padding: 10px 14px;
        font-size: 13px;
        min-width: 80px;
    }
    
    .pagination-simple .page-info {
        font-size: 14px;
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .pagination-container {
        padding: 15px 8px 15px 8px;
    }
    
    .pagination-wrapper {
        gap: 6px;
    }
    
    .pagination-wrapper a,
    .pagination-wrapper span {
        min-width: 36px;
        height: 36px;
        font-size: 12px;
        padding: 0 8px;
    }
    
    .pagination-wrapper a:first-child,
    .pagination-wrapper a:last-child {
        padding: 0 12px;
        font-size: 11px;
    }
    
    .pagination-simple {
        gap: 10px;
    }
    
    .pagination-simple .prev-btn,
    .pagination-simple .next-btn {
        padding: 8px 12px;
        font-size: 12px;
        min-width: 70px;
    }
    
    .pagination-simple .page-info {
        font-size: 13px;
        padding: 8px 10px;
    }
    
    /* 在小屏幕上隐藏部分数字，只显示关键页码 */
    .pagination-wrapper a:nth-child(n+6):nth-last-child(n+6) {
        display: none;
    }
}

@media (max-width: 375px) {
    .pagination-simple .prev-btn span,
    .pagination-simple .next-btn span {
        display: none;
    }
    
    .pagination-simple .prev-btn::before {
        content: '‹';
        font-size: 18px;
        font-weight: bold;
    }
    
    .pagination-simple .next-btn::before {
        content: '›';
        font-size: 18px;
        font-weight: bold;
    }
    
    .pagination-simple .prev-btn,
    .pagination-simple .next-btn {
        min-width: 44px;
        padding: 8px;
    }
}

/* 空状态 */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state img {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state p {
    color: #999;
    font-size: 14px;
}

/* 搜索页面样式 */
.search-section {
    background: #fff;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.search-info {
    background: #fff;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.search-info p {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}

.search-info strong {
    color: #333;
}

.search-suggest {
    background: #fff;
    padding: 20px 15px;
    border-radius: 8px;
    margin: 15px;
}

.search-suggest h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.suggest-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.suggest-tag {
    display: inline-block;
    padding: 8px 15px;
    background: #f8f9fa;
    color: #666;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.suggest-tag:hover {
    background: #007bff;
    color: #fff;
}

/* 分类页面样式 */
.category-desc {
    background: #fff;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
}

.category-desc p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 空状态增强 */
.empty-action {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: background 0.3s;
}

.empty-action:hover {
    background: #0056b3;
}

/* 表单增强样式 */
.form-input::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
    color: #999;
}

.form-group.required .form-label::after {
    content: '*';
    color: #ff4444;
    margin-left: 2px;
}

/* Loading状态 */
.loading {
    text-align: center;
    padding: 20px;
    color: #999;
    font-size: 14px;
}

.loading::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 滚动条优化 */
.category-scroll::-webkit-scrollbar {
    height: 3px;
}

.category-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.category-scroll::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.category-scroll::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* 响应式设计 */
@media (max-width: 375px) {
    .business-item {
        padding: 12px;
    }
    
    .business-avatar {
        width: 50px;
        height: 50px;
    }
    
    .business-title {
        font-size: 15px;
    }
    
    .search-input-group {
        padding: 3px;
    }
    
    .search-input {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .search-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
}

/* 联系信息样式 */
.contact-info {
    background-color: transparent;
    border: 2px dashed #ccc;
    border-radius: 6px;
    padding: 15px 20px;
    margin: 20px 20px 0 20px;
}

.contact-content {
    max-width: 100%;
    margin: 0 auto;
}

.contact-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    position: relative;
    padding-left: 20px;
}

.contact-content p::before {
    content: "📞";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
}

/* 移动端联系信息样式 */
@media (max-width: 768px) {
    .contact-info {
        margin: 15px 15px 0 15px;
        padding: 12px 15px;
    }
    
    .contact-content p {
        font-size: 13px;
    }
}
