  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: #f5f7fa;
            color: #1f2d3d;
            line-height: 1.5;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        /* 顶部导航条 */
        .top-nav {
            background: #fff;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 24px;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #4a6cf7;
            letter-spacing: 1px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 8px;
        }
        
        .nav-menu li {
            margin: 0 4px;
        }
        
        .nav-menu a {
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 30px;
            transition: all 0.2s;
            color: #4a5568;
        }
        
        .nav-menu a:hover {
            color: #4a6cf7;
            background: #eef2ff;
        }
        
        .nav-menu a.active {
            color: #4a6cf7;
            background: #eef2ff;
            font-weight: 600;
        }
        
        .user-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .btn {
            padding: 8px 20px;
            border-radius: 40px;
            font-weight: 500;
            transition: all 0.2s;
            display: inline-block;
            font-size: 14px;
        }
        
        .btn-outline {
            border: 1px solid #4a6cf7;
            color: #4a6cf7;
            background: transparent;
        }
        
        .btn-outline:hover {
            background: #4a6cf7;
            color: white;
        }
        
        .btn-primary {
            background: #4a6cf7;
            color: white;
            border: none;
        }
        
        .btn-primary:hover {
            background: #3a5bd9;
        }
        
        /* 通栏大图 Banner */
        .banner {
            height: 220px;
            background: linear-gradient(135deg, #4a6cf7 0%, #6a11cb 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            position: relative;
        }
        .banner-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            padding: 0 20px;
        }
        
        .banner h1 {
            font-size: 32px;
            margin-bottom: 12px;
            font-weight: 700;
        }
        
        .banner p {
            font-size: 16px;
            opacity: 0.9;
        }
        
        /* 左右布局：左约80% 右约20% */
        .main-layout {
            max-width: 1400px;
            width: 100%;
            margin: 30px auto 48px;
            padding: 0 24px;
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            flex: 1;
        }
        
        .left-area {
            flex: 1;
            min-width: 0;
        }
        
        .right-area {
            width: 300px;
            flex-shrink: 0;
        }
        
        @media (max-width: 1100px) {
            .right-area {
                width: 280px;
            }
            .main-layout {
                gap: 24px;
            }
        }
        
        @media (max-width: 992px) {
            .main-layout {
                flex-direction: column;
            }
            .left-area, .right-area {
                width: 100%;
            }
            .right-area {
                order: 2;
            }
        }
        
        /* 筛选组件 - 在左侧区域顶部 */
        .filter-card {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            overflow: hidden;
            margin-bottom: 24px;
        }
        
        .filter-header {
            background: linear-gradient(135deg, #4a6cf7 0%, #6a11cb 100%);
            color: white;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        
        .filter-title {
            display: flex;
            align-items: center;
            font-size: 15px;
            font-weight: 600;
            gap: 8px;
        }
        
        .current-filters {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        
        .filters-summary {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.15);
            padding: 4px 12px;
            border-radius: 30px;
        }
        
        .summary-text {
            font-size: 12px;
            font-weight: 500;
        }
        
        .filter-tags-container {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        
        .clear-all-btn {
            background: rgba(255, 255, 255, 0.2);
            padding: 5px 14px;
            border-radius: 30px;
            font-size: 12px;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        
        .clear-all-btn:hover {
            background: rgba(255, 255, 255, 0.35);
        }
        
        .filter-tag {
            background: white;
            color: #333;
            padding: 3px 10px 3px 12px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        
        .remove-filter {
            cursor: pointer;
            width: 16px;
            height: 16px;
            background: #ff6b6b;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 11px;
            font-weight: bold;
        }
        
        .remove-filter:hover {
            background: #e55353;
        }
        
        .filter-category.compact-horizontal {
            display: flex;
            align-items: flex-start;
            border-bottom: 1px solid #eff2f6;
            padding: 12px 16px;
            flex-wrap: wrap;
        }
        
        .filter-category.compact-horizontal:last-child {
            border-bottom: none;
        }
        
        .category-header {
            min-width: 85px;
            font-weight: 600;
            font-size: 13px;
            color: #2c3e50;
            padding-top: 5px;
        }
        
        .category-options {
            flex: 1;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
        }
        
        .filter-option {
            background: #f8f9fa;
            padding: 4px 14px;
            border-radius: 30px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.2s;
            border: 1px solid #e9ecef;
            color: #495057;
        }
        
        .filter-option:hover {
            background: #e9ecef;
            border-color: #ced4da;
        }
        
        .filter-option.active {
            background: #1E9FFF;
            color: white;
            border-color: #1E9FFF;
        }
        
        /* 左侧内容列表样式 */
        .content-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .feed-card-wrapper {
            background: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.25s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            border: 1px solid #edf2f7;
        }
        
        .feed-card-wrapper:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
        }
        
        .feed-card-article {
            display: flex;
            padding: 18px;
            gap: 20px;
            align-items: flex-start;
        }
        
        .feed-card-article-l {
            flex: 1;
            min-width: 0;
        }
        
        .feed-card-article-r {
            flex-shrink: 0;
            width: 130px;
        }
        
        @media (max-width: 640px) {
            .feed-card-article {
                flex-direction: column;
            }
            .feed-card-article-r {
                width: 100%;
            }
        }
        
        .feed-card-cover {
            width: 100%;
            height: 95px;
            border-radius: 12px;
            overflow: hidden;
            background: #f1f5f9;
        }
        
        .feed-card-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.2s;
        }
        
        .feed-card-cover:hover img {
            transform: scale(1.02);
        }
        
        .title h2 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #1e293b;
            line-height: 1.4;
        }
        
        .title h2:hover {
            color: #4a6cf7;
        }
        
        .property-badges {
            margin: 8px 0 6px;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        
        .layui-badge {
            font-size: 11px;
            padding: 0px 10px;
            border-radius: 30px;
        }
        
        .layui-bg-blue {
            background: #e6f7ff;
            color: #0891b2;
        }
        
        .layui-bg-orange {
            background: #fff7ed;
            color: #ea580c;
        }
        
        .layui-bg-red {
            background: #fee2e2;
            color: #dc2626;
        }
        
        .property-price-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 8px 0;
            flex-wrap: wrap;
        }
        
        .price-tag {
            color: #ff5722;
            font-size: 17px;
            font-weight: bold;
        }
        
        .feed-card-footer-cmp {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 12px;
            font-size: 12px;
            color: #7c7f85;
        }
        
        .feed-card-footer-cmp-author a {
            color: #1E9FFF;
            font-weight: 500;
        }
        
        /* 右侧边栏样式 */
        .sidebar-card {
            background: white;
            border-radius: 16px;
            padding: 18px 16px;
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            border: 1px solid #edf2f7;
        }
        
        .sidebar-title {
            font-size: 17px;
            font-weight: 700;
            border-left: 4px solid #4a6cf7;
            padding-left: 12px;
            margin-bottom: 16px;
            color: #1f2d3d;
        }
        
        .hot-list {
            list-style: none;
        }
        
        .hot-list li {
            padding: 10px 0;
            border-bottom: 1px solid #edf2f7;
            display: flex;
            gap: 10px;
            align-items: center;
        }
        
        .hot-list li:last-child {
            border-bottom: none;
        }
        
        .hot-list li a {
            font-size: 13px;
            color: #2d3748;
            transition: color 0.2s;
            flex: 1;
        }
        
        .hot-list li a:hover {
            color: #4a6cf7;
        }
        
        .hot-index {
            width: 24px;
            height: 24px;
            background: #f0f2f5;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 12px;
            color: #4a5568;
        }
        
        .hot-index.top3 {
            background: #ffedd5;
            color: #ea580c;
        }
        
        .ad-placeholder {
            background: #f9fafc;
            border-radius: 12px;
            text-align: center;
            padding: 24px 12px;
            color: #9aa3b5;
            font-size: 13px;
            border: 1px dashed #cfdfed;
        }
        
        /* 分页样式 */
        .pagination-container {
            margin-top: 32px;
            display: flex;
            justify-content: center;
        }
        
        .empty-tip {
            background: white;
            border-radius: 16px;
            padding: 48px 20px;
            text-align: center;
            color: #94a3b8;
            border: 1px solid #edf2f7;
        }
        
        /* 底部信息栏 */
        .site-footer {
            background: #fff;
            border-top: 1px solid #eef2f6;
            padding: 24px 20px 28px;
            margin-top: 40px;
            font-size: 12px;
            color: #5b687c;
            text-align: center;
            line-height: 1.7;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-info p {
            margin: 5px 0;
        }
        
        .footer-copyright {
            color: #8a99b0;
            font-size: 12px;
            margin-top: 8px;
        }
        
        /* 用户下拉菜单 */
        .user-avatar {
            position: relative;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }
        
        .avatar-img {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #e0e0e0;
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
            min-width: 140px;
            display: none;
            z-index: 1000;
            margin-top: 8px;
        }
        
        .dropdown-menu.show {
            display: block;
        }
        
        .dropdown-item {
            padding: 10px 16px;
            display: block;
            font-size: 13px;
        }
        
        .dropdown-item:hover {
            background: #f8fafc;
            color: #4a6cf7;
        }
        
        @media (max-width: 768px) {
            .footer-info p {
                word-break: break-all;
            }
        }
        /* 发布按钮小尺寸样式 */
        .btn-publish {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: #52c41a;
            color: white;
            padding: 5px 12px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 500;
            transition: all 0.2s;
            margin-right: 8px;
            border: none;
            cursor: pointer;
        }

        .btn-publish:hover {
            background: #389e0d;
            color: white;
        }

        .btn-publish .layui-icon {
            font-size: 14px;
        }