
/* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background-color: #f5f5f5;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            font-size: 16px !important;
            padding-top: 0;
        }
        
        /* 顶部导航栏 */
        .header-nav {
            background-color: #3f51b5;
            color: white;
            padding: 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .header-nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .header-nav .city-selector {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .header-nav .search-btn {
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            cursor: pointer;
        }
        
        .header-nav .merchant-btn {
            background: #ff4081;
            border: none;
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            cursor: pointer;
            font-weight: 500;
        }
        
        /* 面包屑导航 */
        .breadcrumb {
            background-color: white;
            border-radius: 0;
            padding: 12px 16px;
            margin-bottom: 0;
            font-size: 14px;
            border-bottom: 1px solid #eee;
        }
        
        .breadcrumb a {
            color: #666;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            color: #3f51b5;
        }
        
        .breadcrumb .active {
            color: #3f51b5;
            font-weight: 500;
        }
        
        /* 内容卡片 */
        .info-card {
            background-color: white;
            border-radius: 12px;
            margin: 16px;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            overflow: hidden;
        }
        
        /* 信息标题 */
        .info-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.3;
            color: #333;
        }
        
        .info-title .certified {
            color: #e91e63;
            font-size: 16px;
            margin-right: 8px;
        }
        
        .info-meta {
            font-size: 14px;
            color: #999;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        
        .info-meta .report-btn {
            background-color: #ff9800;
            color: white;
            padding: 2px 8px;
            border-radius: 12px;
            text-decoration: none;
            font-size: 12px;
        }
        
        /* 信息内容 */
        .info-content {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
            word-break: break-word;
        }
        
        /* 图片展示 */
        .info-images {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }
        
        .info-images img {
            width: calc(33.333% - 5.333px);
            height: auto;
            border-radius: 8px;
            object-fit: cover;
            aspect-ratio: 1;
        }
        
        /* 联系卡片 */
        .contact-card {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 16px;
            margin-bottom: 20px;
            border-left: 4px solid #3f51b5;
        }
        
        .contact-card .contact-item {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }
        
        .contact-card .contact-item i {
            color: #3f51b5;
            margin-right: 12px;
            font-size: 20px;
        }
        
        /* 操作按钮 */
        .action-buttons {
            display: flex;
            gap: 12px;
            margin-bottom: 20px;
        }
        
        .action-buttons .btn {
            flex: 1;
            padding: 12px 20px;
            font-size: 16px;
            font-weight: 500;
            border-radius: 25px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border: none;
        }
        
        .btn-primary {
            background-color: #3f51b5;
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #303f9f;
            color: white;
        }
        
        .btn-success {
            background-color: #4caf50;
            color: white;
        }
        
        .btn-success:hover {
            background-color: #388e3c;
            color: white;
        }
        
        .btn-warning {
            background-color: #ff9800;
            color: white;
        }
        
        .btn-warning:hover {
            background-color: #f57c00;
            color: white;
        }
        
        .btn-pink {
            background-color: #ff4081;
            color: white;
        }
        
        .btn-pink:hover {
            background-color: #f50057;
            color: white;
        }
        
        /* 推荐信息 */
        .recommended-section {
            margin: 0 16px 80px 16px;
        }
        
        .recommended-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #333;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .recommended-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .recommended-item {
            background-color: white;
            border-radius: 10px;
            padding: 16px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.06);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .recommended-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .recommended-item h4 {
            font-size: 16px;
            color: #333;
            margin-bottom: 8px;
            font-weight: 600;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .recommended-item p {
            font-size: 14px;
            color: #666;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            margin-bottom: 0;
        }
        
        /* 底部导航 */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: white;
            border-top: 1px solid #eee;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
            z-index: 1000;
        }
        
        .bottom-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #666;
            text-decoration: none;
            font-size: 12px;
            transition: all 0.3s ease;
        }
        
        .bottom-nav-item i {
            font-size: 20px;
            margin-bottom: 4px;
        }
        
        .bottom-nav-item.active {
            color: #3f51b5;
        }
        
        .bottom-nav-item.post {
            color: #ff5502;
            font-weight: 700;
        }
        
        /* 固定电话按钮 */
        .fixed-call-btn {
            position: fixed;
            bottom: 80px;
            right: 20px;
            width: 56px;
            height: 56px;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(163 150 154 / 40%);
            cursor: pointer;
            z-index: 999;
            transition: all 0.3s ease;
        }
        
       
        
        .fixed-call-btn i {
            font-size: 24px;
        }
        
        /* 免责声明 */
        .disclaimer {
            background-color: #fff3e0;
            padding: 16px;
            margin: 16px;
            border-radius: 8px;
            font-size: 14px;
            color: #e65100;
            border-left: 4px solid #ff9800;
        }
        
        .disclaimer strong {
            color: #e65100;
        }
        
        .disclaimer a {
            color: #e65100;
            text-decoration: underline;
        }
        
        /* 提示信息 */
        .alert-tip {
            background-color: #e3f2fd;
            padding: 12px 16px;
            margin: 16px;
            border-radius: 8px;
            font-size: 14px;
            color: #1976d2;
            text-align: center;
            border: 1px solid #bbdefb;
        }
        
        .alert-tip .btn {
            margin-top: -13px;
            font-size: 14px;
            padding: 6px 16px;
        }
        
        /* 广告区域 */
        .advertisement {
            margin: 16px;
            padding: 12px;
            background-color: white;
            border-radius: 8px;
            text-align: center;
            font-size: 14px;
            color: #666;
        }
        
        /* 地图按钮 */
        .map-button {
            width: 100%;
            padding: 12px;
            background-color: #e3f2fd;
            border: 1px solid #bbdefb;
            border-radius: 8px;
            color: #1976d2;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .map-button:hover {
            background-color: #bbdefb;
        }
        
        /* 返回顶部按钮 */
        .back-to-top {
            position: fixed;
            bottom: 80px;
            left: 20px;
            width: 48px;
            height: 48px;
            font-size: 22px;
            text-align: center;
            line-height: 50px;
            background-color: #666;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        /* 模态框样式优化 */
        .modal-content {
            border-radius: 16px;
            overflow: hidden;
            border: none;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }
        
        .modal-header {
            background-color: #FF5722;
            color: white;
            border-bottom: none;
            padding: 20px;
        }
        
        .modal-title {
            font-size: 18px;
            font-weight: 600;
        }
        
        .modal-body {
            padding: 24px;
        }
        
        .modal-footer {
            padding: 16px 24px;
            border-top: 1px solid #eee;
        }
        
        /* 响应式设计 */
        @media (max-width: 375px) {
            .info-title {
                font-size: 20px;
            }
            
            .info-images img {
                width: calc(50% - 4px);
            }
            
            .action-buttons {
                flex-direction: column;
            }
        }

           @font-face {
            font-family: 'Font Awesome 5 Free';
            src: local('Font Awesome 5 Free'), local('FontAwesome5Free-Regular');
            font-weight: normal;
            font-style: normal;
        }
        
        @font-face {
            font-family: 'Font Awesome 5 Free';
            src: local('Font Awesome 5 Free'), local('FontAwesome5Free-Solid');
            font-weight: 900;
            font-style: normal;
        }

            /* Bootstrap 3 模态框垂直水平居中 */
    .modal.modal-center {
        text-align: center;
        padding: 0 !important;
    }

    .modal.modal-center {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        margin-right: -4px;
    }
    
    .modal-dialog.modal-dialog-center {
        display: inline-block;
        text-align: left;
        vertical-align: middle;
        width: 80%;
    }
     /* 响应式调整操作按钮 */
        .action-buttons {
            flex-wrap: wrap;
        }
        
        /* 在小屏幕上调整按钮宽度 */
        @media (max-width: 768px) {
            .action-buttons .btn {
                min-width: calc(50% - 6px);
                flex: none;
                font-size: 14px;
                padding: 10px 16px;
            }
        }


        