.house-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.house-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.house-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

.house-header p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-top: 20px;
}

.house-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .container {
            background: #fff;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            padding: 30px;
        }
        
        .house-header {
            text-align: center;
            margin-bottom: 50px;
            padding: 0 20px;
        }
        
        .house-header h2 {
            font-size: 2.2rem;
            color: #0a0a0a;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .house-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #21a101, #04d304);
            border-radius: 2px;
        }
        
        .house-header p {
            color: #666;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 20px auto 0;
            line-height: 1.8;
        }
        
        /* 平台卡片样式 */
        .platforms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
        }
        
        .platform-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid #eaeff5;
            cursor: pointer;
        }
        
        .platform-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(202, 241, 205, 0.15);
            border-color: #a5cca2;
        }
        
        .platform-card em {
            display: block;
            height: 80px;
            color: #fff;
            font-size: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #37a04e;
        }
        
        .platform-card h3 {
            font-size: 1.4rem;
            padding: 20px 20px 10px;
            color: #202224;
        }
        
        .platform-card p {
            color: #666;
            padding: 0 20px 15px;
            min-height: 70px;
            font-size: 0.95rem;
        }
        
        .price {
            background: #f0f8ff;
            padding: 12px 20px;
            color: #17ca07;
            font-weight: 700;
            font-size: 1.3rem;
            border-top: 1px solid #eaeff5;
            border-bottom: 1px solid #eaeff5;
            display: flex;
            justify-content: space-between;
        }
        
        .consult-btn {
            display: block;
            text-align: center;
            color: #fff;
            text-decoration: none;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: normal;
            background-color: #e91621;
            padding: 0 15px;
            border-radius: 5px;
        }
        
        .consult-btn i {
            display: inline;
            font-size: 1.2rem;
            color: #fff;
            vertical-align: middle;
        }
        
        /* 轮播图样式 */
        .house-swiper {
            position: relative;
            margin: 50px 0 70px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .house-swiper  .swiper-wrapper {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .house-swiper  .swiper-slide {
            flex: 0 0 32%;
            position: relative;
        }
        
        .house-swiper  .swiper-slide img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }
        
        .house-swiper  .swiper-slide h3 {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(26, 58, 95, 0.85);
            color: #fff;
            padding: 20px;
            font-size: 1.5rem;
            text-align: center;
            margin: 0;
        }
        
        .house-swiper  .nav-buttons-honor {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 10;
        }
        
        .house-swiper  .swiper-button-prev,.house-swiper  .swiper-button-next {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.85);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
        }
        
        .house-swiper  .swiper-button-prev:hover,.house-swiper  .swiper-button-next:hover {
            background: #fff;
            transform: scale(1.1);
        }
        
        .house-swiper  .swiper-button-prev i,.house-swiper  .swiper-button-next i {
            font-size: 1.5rem;
            color: #0c8330;
        }
        
        /* 优势部分 */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        
        .advantage-card {
            background: #fff;
            border-radius: 10px;
            padding: 35px 25px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            border: 1px solid #eaeff5;
            cursor: pointer;
        }
        
        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(44, 111, 193, 0.1);
            border-color: #8ef1af;
        }
        
        .advantage-card i {
            font-size: 3.5rem;
            color: #2c6fc1;
            margin-bottom: 20px;
        }
        
        .advantage-card h3 {
            font-size: 1.5rem;
            color: #1a3a5f;
            margin-bottom: 15px;
        }
        
        .advantage-card p {
            color: #666;
            line-height: 1.8;
        }
        
        /* 客户案例 */
        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
            margin: 50px 0;
        }
        
        .client-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            border: 1px solid #eaeff5;
        }
        
        .client-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(44, 111, 193, 0.15);
        }
        
        .client-image {
            height: 460px;
            background: linear-gradient(135deg, #93f07b, #ecfad6);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .client-image i {
            font-size: 4rem;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .client-info {
            padding: 20px;
        }
        
        .client-info h3 {
            font-size: 1.3rem;
            color: #1a3a5f;
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .client-info p {
            color: #666;
            margin-bottom: 20px;
            min-height: 50px;
        }
        
        /* 表单样式 */
        .consult-section {
            background: linear-gradient(135deg, #1a3a5f, #2c6fc1);
            border-radius: 12px;
            padding: 50px 40px;
            color: #fff;
            margin-top: 60px;
        }
        
        .consult-section h2 {
            font-size: 2.2rem;
            text-align: center;
            margin-bottom: 15px;
        }
        
        .consult-section p {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 30px;
            opacity: 0.9;
            font-size: 1.1rem;
        }
        
        .consult-form {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .form-row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -10px;
        }
        
        .form-group {
            flex: 1 0 300px;
            padding: 0 10px;
            margin-bottom: 20px;
        }
        
        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.25);
        }
        
        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        
        select.form-control {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 15px;
        }
        
        .btn {
            display: block;
            width: 100%;
            padding: 16px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .btn-secondary {
            background: #fff;
            color: #2c6fc1;
            margin-top: 10px;
        }
        
        .btn-secondary:hover {
            background: #f0f8ff;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .house-header h2 {
                font-size: 1.8rem;
            }
            
            .house-header p {
                font-size: 1rem;
            }
            
            .house-swiper  .swiper-slide img {
                height: 300px;
            }
            
            .consult-section {
                padding: 30px 20px;
            }
            
            .consult-section h2 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 20px 15px;
            }
            
            .platform-card, .client-card {
                max-width: 100%;
            }
            
            .house-swiper  .swiper-slide img {
                height: 250px;
            }
            
            .consult-section {
                padding: 25px 15px;
            }
            
            .consult-section h2 {
                font-size: 1.6rem;
            }
        }