
        /* 删除重复CSS，保留精简版本 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            max-width: 100%;
            overflow-x: hidden;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
            color: #2c3e50;
            background: #fafafa;
            line-height: 1.6;
            padding-top: 95px;
            padding-bottom: 50px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
            font-feature-settings: "kern" 1;
            font-weight: 400;
        }

        /* 分页组件样式 */
        .pagination a {
            text-decoration: none;
        }
        
        .pagination-container {
            padding: 20px 0;
            display: flex;
            justify-content: center;
            background-color: #fafafa;
        }
        
        .pagination {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .page-btn {
            height: 36px;
            padding: 6px 12px;
            border: 1px solid #e0e0e0;
            background-color: #ffffff;
            color: #666666;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
            outline: none;
        }
        
        .page-btn:hover:not(:disabled) {
            border-color: #ff6b9d;
            color: #ff6b9d;
        }
        
        .page-btn.active {
            background-color: #ff6b9d;
            border-color: #ff6b9d;
            color: #ffffff;
        }
        
        .page-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .page-numbers {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .page-btn.page-number {
            padding: 8px 12px;
        }

        /* 添加下拉选择框样式 */
        .page-select-wrapper {
            position: relative;
            display: inline-flex;
            align-items: center;
        }
        
        .page-select {
            height: 36px;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            padding: 8px; 
            border: 1px solid #e0e0e0;
            background-color: #ffffff;
            color: #666666;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
            outline: none;
            min-width: 90px;
            text-align: center;
        }
        
        .page-select:hover {
            border-color: #ff6b9d;
            color: #ff6b9d;
        }
        
        .page-select:focus {
            border-color: #ff6b9d;
            box-shadow: 0 0 0 2px rgba(255, 107, 157, 0.1);
        }
        
        .page-select-arrow {
            position: absolute;
            right: 10px;
            pointer-events: none;
            color: #999;
            transition: color 0.3s ease;
        }
        
        .page-select-wrapper:hover .page-select-arrow {
            color: #ff6b9d;
        }

        /* 公告栏样式 */
        .notice-bar {
            display: flex;
            align-items: center;
            padding: 10px 10px;
            background: #fff;
            /*margin: 10px 10px 0; */
            border-radius: 8px;
        }
        .notice-tag {
            height: 20px;
            line-height: 20px;
            padding: 0 5px;
            margin-right: 8px;
            background-color: #ff6b9d;
            color: #fff;
            border-radius: 10px 10px 10px 0;
            font-size: 12px;
            flex-shrink: 0;
        }
        .notice-content {
            flex: 1;
            height: 20px;
            overflow: hidden;
            position: relative;
        }
        .notice-list {
            list-style: none;
            padding: 0;
            margin: 0;
            transition: transform 0.5s ease;
        }
        .notice-item {
            height: 20px;
            line-height: 20px;
            font-size: 14px;
            color: #ff6b9d;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* 图标导航栏样式 */
        .icon-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0 0 0 ;
            background: #fff;
            margin: 10px 0px 0px;
            border-radius: 8px;
        }

        .icon-nav-item {
            padding-bottom: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            flex: 1; /* Changed from space-around to space-between for more even distribution */
        }

        .icon-nav-item img {
            width: 60px; /* Increased icon size */
            height: 60px; /* Increased icon size */
            margin-bottom: 8px; /* Adjusted margin */
            border-radius: 50%; /* Rounded icons */
            object-fit: cover; /* Ensure images cover their containers */
        }

        .icon-nav-item span {
            font-size: 12px; /* Adjusted font size */
            color: #666; /* Adjusted text color */
            font-weight: 400; /* Adjusted font weight */
        }

        .icon-nav-item:hover {
            color: #ff6b9d;
        }
        
        .icon-nav-item:active {
            transform: scale(0.95);
        }

        /* 搜索容器样式 */
        .search-container {
            padding: 12px 10px;
            background: white;
            margin-top: 10px;
        }

        .search-box {
            padding: 0;
        }

        .search-input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .search-input {
            width: 100%;
            padding: 10px 40px 10px 16px;
            border: none;
            background: #f8f9fa;
            border-radius: 22px;
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 0.2px;
            outline: none;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            color: #2c3e50;
        }

        .search-input:focus {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08), 0 0 0 1px #ffe7f3;
        }

        .search-input::placeholder {
            color: #95a5a6;
            font-weight: 400;
            letter-spacing: 0.1px;
        }

        .search-icon {
            position: absolute;
            right: 12px;
            color: #ff6b9d;
            cursor: pointer;
            padding: 6px;
            border-radius: 50%;
            transition: all 0.2s;
        }

        .search-icon:active {
            background: #f5f5f5;
            transform: scale(0.92);
        }

        .search-icon svg {
            width: 20px;
            height: 20px;
            display: block;
        }

        /* 热门信息区域样式 */
        .hot-section {
            padding: 14px 16px;
            background: white;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            border-bottom: 1px solid #f5f5f5;
        }

        .hot-title {
            padding: 0;
            background: transparent;
            font-size: 17px;
            font-weight: 700;
            color: #2c3e50;
            border-bottom: none;
            white-space: nowrap;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, #ff6b9d 0%, #ff8fb3 50%, #ffb347 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .hot-title svg {
            width: 20px;
            height: 20px;
            fill: url(#fireGradient);
            filter: drop-shadow(0 2px 4px rgba(255, 107, 157, 0.3));
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                filter: drop-shadow(0 2px 4px rgba(255, 107, 157, 0.3));
            }
            50% {
                transform: scale(1.1);
                filter: drop-shadow(0 2px 6px rgba(255, 107, 157, 0.5));
            }
        }

        .filter-tabs {
            padding: 0;
            background: transparent;
            display: flex;
            gap: 20px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            flex: 1;
            justify-content: flex-end;
            align-items: center;
        }

        .filter-tabs::-webkit-scrollbar {
            display: none;
        }

        .filter-tab {
            padding: 6px 0;
            border: none;
            border-radius: 0;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.2px;
            cursor: pointer;
            background: transparent;
            color: #95a5a6;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
            position: relative;
            padding-bottom: 8px;
        }

        .filter-tab::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, #ff6b9d 0%, #ff8fb3 100%);
            border-radius: 2px;
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .filter-tab.active {
            background: transparent;
            color: #ff6b9d;
            border: none;
            box-shadow: none;
            font-weight: 600;
            letter-spacing: 0.3px;
        }

        .filter-tab.active::after {
            transform: scaleX(1);
        }

        .filter-tab:active {
            transform: scale(0.96);
        }

        /* 信息列表样式 */
        .info-list {
            background: #f8f9fa;
            border-radius: 0;
            overflow: hidden;
            padding: 10px 10px;
        }

        /* 将 info-card 改为 A 标签样式，添加 text-decoration 和 color 继承 */
        .info-card {
            display: flex;
            padding: 0;
            border: none;
            cursor: pointer;
            transition: none;
            position: relative;
            margin-bottom: 10px;
            border-radius: 10px;
            background: white;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04),
                        0 1px 4px rgba(0, 0, 0, 0.03),
                        0 0 0 1px rgba(0, 0, 0, 0.02);
            height: 120px;
            text-decoration: none; /* Added */
            color: inherit; /* Added */
        }

        .info-card:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .info-card:active {
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(255, 107, 157, 0.12),
                        0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .info-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
            min-width: 0;
            padding: 10px 10px 10px 10px;
            position: relative;
            background: linear-gradient(135deg, rgba(255, 240, 246, 0.3) 0%, transparent 40%);
        }

        .info-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 10px;
        }

        .info-title {
            font-size: 14px;
            font-weight: 500;
            color: #2c3e50;
            overflow: hidden;
            /*
            text-overflow: ellipsis;
            white-space: nowrap;
            */
            flex: 1;
            line-height: 1.5;
            letter-spacing: 0.3px;
            position: relative;
            transition: none;
            padding-left: 0;
        }

        .info-description {
            font-size: 13px;
            color: #7f8c8d;
            line-height: 1.5;
            font-weight: 400;
            letter-spacing: 0.15px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            max-height: 3em;
        }

        .info-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: #95a5a6;
            margin-top: auto;
            font-weight: 400;
            letter-spacing: 0.1px;
        }

        .info-location {
            color: #95a5a6;
            display: flex;
            align-items: center;
            gap: 4px;
            font-weight: 400;
        }

        .info-views {
            color: #95a5a6;
            font-weight: 400;
        }

        .info-image {
            width: 120px;
            height: 100%;
            object-fit: cover;
            border-radius: 0 10px 10px 0;
            margin-left: 0;
            flex-shrink: 0;
            transition: none;
            position: relative;
            filter: brightness(0.98);
        }

        .info-price svg {
            float: left;
            display: block;
            margin-top: 3px;
            margin-right: 3px;
        }

        /* 底部导航样式 */
        /*
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, #ffffff 0%, #fefefe 100%);
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            display: flex;
            justify-content: space-around;
            padding: 6px 0 calc(6px + env(safe-area-inset-bottom));
            z-index: 100;
            box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.04),
                        0 -2px 8px rgba(0, 0, 0, 0.02);
            backdrop-filter: blur(10px);
            transform: translateZ(0);
            -webkit-transform: translateZ(0);
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
            cursor: pointer;
            flex: 1;
            color: #95a5a6;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 4px 0;
            position: relative;
            border-radius: 12px;
            margin: 0 4px;
        }
        */
        .nav-item.active {
            color: #ff6b9d;
            transform: translateY(-2px);
        }

        .nav-item:active {
            transform: translateY(0) scale(0.96);
        }

        .nav-item svg {
            width: 24px;
            height: 24px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
        }

        .nav-item.active svg {
            transform: scale(1.1);
            filter: drop-shadow(0 2px 4px rgba(255, 107, 157, 0.25));
        }

        .nav-item span {
            font-size: 10px;
            font-weight: 500;
            position: relative;
            z-index: 1;
            letter-spacing: 0.3px;
        }

        .nav-item.active span {
            font-weight: 600;
            letter-spacing: 0.4px;
        }

        @media (min-width: 769px) {
            .bottom-nav {
                display: none;
            }

            body {
                max-width: 640px;
                margin: 0 auto;
                box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
                padding-bottom: 0;
            }

            .modal-content {
                max-width: 640px;
                margin: 0 auto;
            }

            .sidebar {
                max-width: 320px;
            }
        }

        /* 模态框样式 */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.45);
            backdrop-filter: blur(2px);
            z-index: 2000;
            display: flex;
            align-items: flex-end;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .modal-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: white;
            border-radius: 20px 20px 0 0;
            width: 100%;
            max-height: 70vh;
            display: flex;
            flex-direction: column;
            transform: translateY(100%);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .modal-overlay.show .modal-content {
            transform: translateY(0);
        }

        .modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px;
            border-bottom: 1px solid #f0f0f0;
        }

        .modal-header-left {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .modal-back {
            width: 32px;
            height: 32px;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border-radius: 50%;
            transition: all 0.2s;
            color: #7f8c8d;
        }

        .modal-back.show {
            display: flex;
        }

        .modal-back:active {
            background: #f5f5f5;
            transform: scale(0.92);
        }

        .modal-title {
            font-size: 17px;
            font-weight: 600;
            color: #ff6b9d;
            letter-spacing: 0.4px;
        }

        .modal-close {
            width: 32px;
            height: 32px;
            border: none;
            background: #f5f5f5;
            border-radius: 50%;
            font-size: 22px;
            color: #7f8c8d;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .modal-close:active {
            background: #e8e8e8;
            transform: scale(0.92);
        }

        .area-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            padding: 16px;
            overflow-y: auto;
            max-height: calc(70vh - 60px);
        }

        .area-item {
            padding: 12px;
            background: #f8f9fa;
            border-radius: 12px;
            text-align: center;
            cursor: pointer;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 0.2px;
            color: #2c3e50;
            border: 2px solid transparent;
        }

        .area-item:active {
            transform: scale(0.96);
        }

        .area-item.active {
            background: linear-gradient(135deg, #ff6b9d 0%, #ff8fb3 100%);
            color: white;
            border-color: transparent;
            box-shadow: 0 2px 8px rgba(255, 107, 157, 0.25);
            font-weight: 600;
            letter-spacing: 0.3px;
        }

        /* 删除注释掉的bottom-nav相关CSS */

        /* v2_diy2 / frameO1tKT4 banner 样式 */
        /* v2_diy2 区域 */
        #v2_diy2 {
            width: 100%;
            overflow: hidden;
        }
        #frameO1tKT4 {
            width: 100%;
            position: relative;
        }
        .dxb_bc {
            width: 100%;
        }
        /* 轮播容器 */
        .slide_scroll {
            width: 100%;
            position: relative;
            overflow: hidden;
        }
        .aslide_box {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 0;
            transition: transform 0.3s ease-out;
        }
        .aslide_item {
            flex: 0 0 100%;
            width: 100%;
        }
        .aslide_item a {
            display: block;
            width: 100%;
        }
        .aslide_item img {
            width: 100%;
            height: auto;
            display: block;
        }
        /* 分页点 */
        .slide_pagination {
            height: 4px;
            width: 100%;
            text-align: center;
            padding: 1px 0px;
            line-height: 4px;
            font-size: 0px;
            position: absolute;
            bottom: 5px;
            right: 0px;
            overflow: hidden;
            z-index: 10;
        }
        .slide_pagination span {
            display: inline-block;
            width: 10px;
            height: 4px;
            border-radius: 0px;
            margin: 0px 3px;
            background: rgba(255,255,255,0.4);
            cursor: pointer;
            overflow: hidden;
            transition: all 0.3s;
        }
        .slide_pagination span.swiper-active-switch {
            background: #fff;
            width: 14px;
        }
        /* 波浪效果 */
        .waves {
            display: none;
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 45px;
            z-index: 5;
            pointer-events: none;
            overflow: hidden;
        }
        .waves::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 200%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='600' height='30'%3E%3Cstyle type='text/css'%3E.st0%7Bfill:%23FFFFFF;fill-opacity:0.3;%7D%3C/style%3E%3Cpath class='st0' d='M600,30V12l0,0c-50,1.8-100,4.5-150.1,4.5C350,16.5,250,4,149.9,4C100,4,50,10.2,0,12v18'/%3E%3C/svg%3E") 0px 0px repeat-x;
            animation: wave 2.5s linear infinite;
            z-index: 1;
        }
        @keyframes wave {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .waves_top {
            display: none;
        }
        .waves_bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 15px;
            background: #fafafa;
            z-index: 2;
        }


        