
        /* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: "Microsoft YaHei", sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
        }
        
        .clearfix::after {
            content: "";
            display: table;
            clear: both;
        }
        
        /* 布局样式 */

        .list-left {
            width: 70%;
            float: left;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding: 25px;
            margin-bottom: 20px;
        }
        
        .list-right {
            width: 28%;
            float: right;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding: 20px;
        }
        
        /* 标题样式 */
        .houseIntro-title {
            font-size: 24px;
            font-weight: bold;
            color: #2c3e50;
            padding-bottom: 15px;
            margin-bottom: 20px;
            border-bottom: 2px solid #eaeaea;
        }
        
        /* 内容样式 */
        .about {
            margin-bottom: 15px;
            padding: 10px 0;
            border-bottom: 1px dashed #eaeaea;
            font-size: 16px;
            color: #555;
        }
        
        .about:last-child {
            border-bottom: none;
        }
        
        /* 侧边栏样式 */
        .sidebar-box {
            margin-bottom: 20px;
        }
        
        .sidebar-hot {
            margin-top: 10px;
        }
        
        .hot-con2 {
            list-style: none;
            margin-bottom: 15px;
        }
        
        .hot-con2 li {
            margin-bottom: 10px;
        }
        
        .hot-con2 a {
            display: block;
            padding: 10px 15px;
            background: #f8f9fa;
            border-radius: 4px;
            color: #495057;
            text-decoration: none;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }
        
        .hot-con2 a:hover {
            background: #e9ecef;
            color: #007bff;
            border-left-color: #007bff;
            transform: translateX(5px);
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .list-left, .list-right {
                width: 100%;
                float: none;
            }
            
            .list-right {
                margin-top: 20px;
            }
        }
