/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

a:hover {
    color: #e74c3c;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 顶部Header */
.header {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #e8e8e8;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex-shrink: 0;
}

.logo-text-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 22px;
    font-weight: bold;
    color: #3498db;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 11px;
    color: #999;
    letter-spacing: 1px;
}

.search-area {
    flex: 1;
    max-width: 700px;
    margin: 0 40px;
}

.nav-tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 12px;
}

.nav-tab {
    font-size: 16px;
    color: #666;
    padding: 5px 0;
    position: relative;
}

.nav-tab.active {
    color: #e74c3c;
    font-weight: bold;
}

.nav-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e74c3c;
}

.search-box {
    display: flex;
    height: 44px;
}

.search-input {
    flex: 1;
    padding: 0 15px;
    border: 2px solid #e74c3c;
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    outline: none;
}

.search-btn {
    padding: 0 25px;
    background: linear-gradient(135deg, #ff9a56 0%, #ff6b6b 100%);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.search-btn:hover {
    background: linear-gradient(135deg, #ff8a45 0%, #ff5a5a 100%);
}

.publish-btn {
    flex-shrink: 0;
}

.btn-publish-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #ff9a56 0%, #ff6b6b 100%);
    color: white;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.btn-publish-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(231, 76, 60, 0.4);
    color: white;
}

/* 主导航（红色） */
.main-nav {
    background: linear-gradient(135deg, #ff4d4d 0%, #e74c3c 100%);
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.2);
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li a {
    display: block;
    padding: 16px 24px;
    font-size: 16px;
    color: white;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
}

.upload-tool {
    flex-shrink: 0;
}

.btn-upload {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    color: white;
    border-radius: 8px;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-upload:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 114, 255, 0.3);
    color: white;
}



/* Banner轮播区 */
.banner-section {
    background-color: #fff;
}

.banner-slider {
    position: relative;
    height: 400px; /* 修改为400px */
    overflow: hidden;
}

.banner-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.arrow {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: auto;
}

.arrow:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

/* 快速筛选区 */
.filter-section {
    background-color: #f5f6f8;
    padding: 25px 0;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.filter-category {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.category-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-title .icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 50%;
    color: #fff;
}

/* 不同分类的图标颜色 */
.filter-category:nth-child(1) .category-title .icon {
    background-color: #ff6b35;
}

.filter-category:nth-child(2) .category-title .icon {
    background-color: #9b59b6;
}

.filter-category:nth-child(3) .category-title .icon {
    background-color: #52c41a;
}

.filter-category:nth-child(4) .category-title .icon {
    background-color: #3498db;
}

.category-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
}

.category-options a {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    font-size: 14px;
    color: #666;
    text-align: left;
    transition: color 0.3s;
    white-space: nowrap;
}

.category-options a:hover {
    color: #e74c3c;
    background-color: transparent;
}

.more-link {
    color: #666 !important;
    font-weight: normal;
}

/* 通用区块标题 */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    position: relative;
    padding-left: 15px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background-color: #e74c3c;
    border-radius: 2px;
}

.section-tabs {
    display: flex;
    gap: 0;
}

.tab {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
    transition: all 0.3s;
}

.tab.active {
    background-color: #e74c3c;
    color: white;
}

.tab:hover:not(.active) {
    background-color: #f5f5f5;
}

/* 新房展示区 */
.newhouse-section {
    background-color: #fff;
    padding: 30px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.section-title {
    font-size: 24px;
    color: #333;
    font-weight: bold;
    position: relative;
    padding-left: 15px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background-color: #e74c3c;
    border-radius: 2px;
}

.section-tabs {
    display: flex;
    gap: 15px;
}

.section-tabs .tab {
    font-size: 16px;
    color: #666;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s;
}

.section-tabs .tab.active {
    color: #333;
    font-weight: bold;
}

.section-tabs .tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e74c3c;
}

.search-box-wrapper {
    display: flex;
    align-items: center;
}

.mini-search-input {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    width: 200px;
}

.btn-search {
    padding: 8px 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-left: none;
    border-radius: 0 4px 4px 0;
    color: #e74c3c;
    cursor: pointer;
    font-size: 14px;
}

.btn-market-info {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #e74c3c 100%);
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-market-info:hover {
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

/* 新房布局 - 左右结构 */
.newhouse-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
}

/* 左侧边栏 */
.newhouse-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-block {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 20px;
}

.sidebar-title {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    padding-left: 12px;
}

.sidebar-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background-color: #e74c3c;
    border-radius: 2px;
}

/* 购房工具 */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    background-color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.tool-item.active {
    border-color: #e74c3c;
}

.tool-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tool-icon {
    font-size: 28px;
    margin-bottom: 8px;
    color: #e74c3c;
}

.tool-name {
    font-size: 13px;
    color: #666;
}

.presale-preview {
    padding: 10px;
    background-color: white;
    border-radius: 4px;
    font-size: 13px;
    color: #666;
}

/* 开盘活动 */
.events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.month-tabs {
    display: flex;
    gap: 10px;
    align-items: center;
}

.month-tab {
    padding: 4px 10px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.month-tab.active {
    color: #e74c3c;
    font-weight: bold;
}

.arrow-right {
    color: #ccc;
    font-size: 14px;
}

.events-timeline {
    max-height: 300px;
    overflow-y: auto;
}

.timeline-item {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px dashed #e8e8e8;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-dot {
    width: 8px;
    height: 8px;
    background-color: #ddd;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.timeline-content h4 {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    font-weight: normal;
}

.project-name {
    font-size: 13px;
    color: #666;
    margin-bottom: 3px;
}

.time-ago {
    font-size: 12px;
    color: #999;
}

/* 右侧房源列表 */
.newhouse-main {
    width: 100%;
}

/* 新房推荐展示区 */
.new-house-recommend-section {
    background-color: #fff;
    padding: 30px 0;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.property-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #e8e8e8;
}

.property-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.property-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
}

.badge {
    padding: 4px 10px;
    background-color: rgba(0,0,0,0.6);
    color: white;
    border-radius: 15px;
    font-size: 12px;
    backdrop-filter: blur(4px);
}

.property-info {
    padding: 15px;
}

.property-name {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
}

.property-name a {
    color: #333;
    text-decoration: none;
}

.property-name a:hover {
    color: #e74c3c;
}

.property-price-row {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 10px;
}

.price-label {
    font-size: 13px;
    color: #999;
}

.price-value {
    font-size: 22px;
    color: #e74c3c;
    font-weight: bold;
}

.price-unit {
    font-size: 13px;
    color: #999;
}

.info-icon {
    color: #45b7d1;
    font-size: 14px;
    cursor: pointer;
}

.price-status.pending {
    font-size: 16px;
    color: #ff6b6b;
    font-weight: bold;
}

.property-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.tag {
    padding: 3px 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 12px;
    color: #666;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #999;
}

.property-location .icon {
    font-size: 14px;
}

/* 新闻资讯区 */
.news-section {
    background-color: #fff;
    padding: 30px 0;
}

.news-layout {
    display: grid;
    grid-template-columns: 680px 1fr;
    gap: 20px;
    align-items: start;
}

/* 左侧头条区域 */
.news-left {
    position: relative;
}

.headline-badge-img {
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 10;
    width: auto;
    height: 48px;
}

.news-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 头条头部区域 */
.headline-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
}

.headline-icon {
    width: 80px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.headline-content {
    flex: 1;
}

.headline-content h3 {
    font-size: 24px !important;
    margin-bottom: 10px;
    line-height: 1.5;
    color: #333;
    font-weight: bold;
}

.headline-content h3 a {
    font-size: 24px;
    color: #333;
    text-decoration: none;
}

.headline-content h3 a:hover {
    color: #e74c3c;
}

.headline-content p {
    color: #666;
    line-height: 1.8;
    font-size: 14px;
    margin: 0;
}

/* 头条图片区域 */
.headline-image {
    width: 100%;
}

.headline-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
}

/* 右侧新闻列表区域 */
.news-right {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.news-tabs .tab {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f5f5f5;
    color: #666;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.news-tabs .tab:hover,
.news-tabs .tab.active {
    background-color: #e74c3c;
    color: white;
}

.news-list-wrapper {
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 15px 20px;
    flex: 1;
    overflow-y: hidden;
    max-height: 400px;
}

.news-list-scroll {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-list-scroll li {
    padding: 10px 0;
    border-bottom: 1px dashed #e8e8e8;
    position: relative;
    padding-left: 15px;
}

.news-list-scroll li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 6px;
    height: 6px;
    background-color: #e74c3c;
    border-radius: 50%;
}

.news-list-scroll li:last-child {
    border-bottom: none;
}

.news-list-scroll li a {
    color: #666;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.6;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-list-scroll li a:hover {
    color: #e74c3c;
}

.date {
    color: #999;
    font-size: 13px;
    margin-left: 15px;
    flex-shrink: 0;
}

/* 信息查询服务区 */
.inquiry-section {
    background-color: #fff;
    padding: 0;
}

.inquiry-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 25px 30px;
}

.inquiry-title {
    min-width: 160px;
    padding-right: 25px;
    border-right: 1px solid #e8e8e8;
    flex-shrink: 0;
}

.inquiry-title h2 {
    font-size: 26px;
    color: #666;
    margin-bottom: 5px;
    font-weight: bold;
}

.inquiry-title p {
    font-size: 13px;
    color: #999;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

.inquiry-items {
    flex: 1;
    display: flex;
    gap: 35px;
}

.inquiry-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s;
}

.inquiry-link:hover {
    background-color: #f5f6f8;
    transform: translateY(-2px);
}

.inquiry-link img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.inquiry-link span {
    font-size: 14px;
    color: #666;
    white-space: nowrap;
    line-height: 1.4;
}

.inquiry-arrow {
    font-size: 52px;
    color: #ccc;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 300;
    flex-shrink: 0;
}

.inquiry-arrow:hover {
    color: #e74c3c;
}

/* 新房展示区 */
.newhouse-section {
    background-color: #fff;
    padding: 30px 0;
}

.section-tools {
    display: flex;
    gap: 10px;
}

.tool-link {
    padding: 6px 15px;
    background-color: #f8f9fa;
    color: #666;
    border-radius: 4px;
    font-size: 13px;
    transition: all 0.3s;
}

.tool-link:hover {
    background-color: #e74c3c;
    color: white;
}

.presale-notice,
.opening-events {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.presale-notice h3,
.opening-events h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
}

.presale-notice ul {
    list-style: none;
}

.presale-notice li {
    padding: 10px 0;
    border-bottom: 1px dashed #e8e8e8;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.presale-notice li:last-child {
    border-bottom: none;
}

.presale-notice li a {
    color: #666;
}

.presale-notice li a:hover {
    color: #e74c3c;
}

.event-timeline {
    display: grid;
    gap: 12px;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: white;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s;
}

.event-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-color: #e74c3c;
}

.event-date {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b 0%, #e74c3c 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
}

.event-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.event-info p {
    color: #999;
    font-size: 13px;
}

/* 房源卡片网格 */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.property-card {
    background-color: white;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.property-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-5px);
    border-color: #e74c3c;
}

.property-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    background: linear-gradient(135deg, #ff6b6b 0%, #e74c3c 100%);
    color: white;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
}

.property-info {
    padding: 15px;
}

.property-name {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: bold;
}

.property-name a {
    color: #333;
}

.property-name a:hover {
    color: #e74c3c;
}

.property-price {
    margin-bottom: 10px;
}

.price {
    font-size: 24px;
    color: #e74c3c;
    font-weight: bold;
}

.property-location,
.property-layout {
    color: #999;
    font-size: 13px;
    margin-bottom: 8px;
}

.property-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    padding: 3px 8px;
    background-color: #f8f9fa;
    border-radius: 3px;
    font-size: 12px;
    color: #666;
}

/* 置业顾问区 */
.consultant-section {
    background-color: #fff;
    padding: 30px 0;
}

.more-link {
    color: #999;
    font-size: 14px;
}

.consultant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.consultant-card {
    text-align: center;
    padding: 25px 20px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    transition: all 0.3s;
    background-color: white;
}

.consultant-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-3px);
    border-color: #e74c3c;
}

.consultant-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 12px;
    object-fit: cover;
    border: 3px solid #f8f9fa;
}

.consultant-name {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

.consultant-company {
    color: #999;
    font-size: 13px;
    margin-bottom: 15px;
}

.consultant-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.btn-consult,
.btn-call {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-consult {
    background-color: #f8f9fa;
    color: #666;
}

.btn-consult:hover {
    background-color: #3498db;
    color: white;
}

.btn-call {
    background-color: #f8f9fa;
    color: #666;
}

.btn-call:hover {
    background-color: #e74c3c;
    color: white;
}

.consultant-more {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.btn-refresh {
    padding: 8px 20px;
    background-color: #f8f9fa;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    color: #666;
}

.btn-refresh:hover {
    background-color: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

.join-link {
    color: #3498db;
}

/* 服务热线区 */
.service-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 0;
    color: white;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 30px;
    align-items: center;
}

.service-hotline {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.service-time {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.feature-icon {
    font-size: 24px;
}

.service-center {
    text-align: center;
}

.qr-code {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    margin-bottom: 10px;
    background-color: white;
}

.service-center p {
    font-size: 14px;
}

.service-right h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-input {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
}

.btn-submit {
    padding: 12px;
    background: linear-gradient(135deg, #ff9a56 0%, #ff6b6b 100%);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.service-stats {
    margin-top: 15px;
    font-size: 14px;
}

.service-stats strong {
    font-size: 24px;
    color: #ffd700;
}

/* 数据统计区 */
.stats-section {
    background-color: #fff;
    padding: 30px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #999;
}

/* 二手房专区 */
.secondhand-section {
    background-color: #fff;
    padding: 30px 0;
}

.section-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-publish {
    padding: 8px 20px;
    background: linear-gradient(135deg, #ff9a56 0%, #ff6b6b 100%);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-publish:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    color: white;
}

.mini-search {
    padding: 8px 15px;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    font-size: 14px;
    outline: none;
}

.mini-search:focus {
    border-color: #e74c3c;
}

.tags-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tag-filter {
    padding: 6px 15px;
    background-color: #f8f9fa;
    border-radius: 20px;
    font-size: 13px;
    color: #666;
    transition: all 0.3s;
}

.tag-filter.active,
.tag-filter:hover {
    background-color: #e74c3c;
    color: white;
}

.community-ranking {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.community-ranking h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
}

.ranking-list {
    display: grid;
    gap: 10px;
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background-color: white;
    border-radius: 6px;
    transition: all 0.3s;
}

.ranking-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.rank {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ff6b6b 0%, #e74c3c 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
}

.community-name {
    flex: 1;
    font-weight: 500;
    color: #333;
}

.price {
    color: #e74c3c;
    font-weight: bold;
}

.trend {
    font-size: 13px;
}

.trend.up {
    color: #e74c3c;
}

.trend.down {
    color: #27ae60;
}

.trend.stable {
    color: #999;
}

/* 页脚 */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 30px 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #ecf0f1;
    font-size: 14px;
}

.footer-links a:hover {
    color: #e74c3c;
}

.footer-contact {
    text-align: center;
    font-size: 13px;
    line-height: 2;
    color: #bdc3c7;
}

/* 新房展示区样式增强 */
.tfy-floor3 {
    background-color: #fff;
    padding: 30px 0;
}

/* 右侧房源列表标题区域 - 左对齐布局 */
.lp_r {
    display: flex;
    align-items: center;
    gap: 15px;
}

.loupan_list_t .new_tuijian {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    position: relative;
    padding-left: 15px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.loupan_list_t .new_tuijian::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background-color: #e74c3c;
    border-radius: 2px;
}

.loupan_list_t .new_tuijian:hover {
    color: #e74c3c;
}

/* 房源卡片悬停效果增强 */
.tfy-item {
    transition: all 0.3s ease;
}

.tfy-item:hover {
    transform: translateY(-5px);
}

.tfy-item:hover .tfy-img img {
    transform: scale(1.08);
}

/* 价格数字强调 */
.tfy-item .tfy-tit .mt .fr span {
    color: #e74c3c;
    font-weight: bold;
    font-size: 20px;
}

/* 房源名称悬停效果 */
.tfy-item .tfy-tit .mt.nohidden .fl a,
.tfy-item .tfy-tit .mt.nohidden .fl {
    transition: color 0.3s;
}

.tfy-item:hover .tfy-tit .mt.nohidden .fl a,
.tfy-item:hover .tfy-tit .mt.nohidden .fl {
    color: #e74c3c;
}

/* 底部固定导航（移动端） */
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
    display: none;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 1000;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #666;
}

.mobile-nav-item .icon {
    font-size: 20px;
}

.mobile-nav-item:hover {
    color: #e74c3c;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .filter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .search-area {
        margin: 0;
        width: 100%;
        max-width: none;
    }

    .nav-menu {
        overflow-x: auto;
        white-space: nowrap;
    }

    .nav-menu li a {
        padding: 14px 18px;
        font-size: 15px;
    }

    .upload-tool {
        display: none;
    }
}

@media (max-width: 768px) {
    .logo-title {
        font-size: 18px;
    }

    .logo-subtitle {
        font-size: 10px;
    }

    .nav-tabs {
        gap: 20px;
    }

    .nav-tab {
        font-size: 14px;
    }

    .filter-grid {
        grid-template-columns: 1fr;
    }
    
    .category-options {
        grid-template-columns: repeat(3, 1fr);
    }

    .banner-slider {
        height: 300px;
    }

    .news-headline img {
        max-width: 100%;
    }

    .news-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-left,
    .news-right {
        width: 100%;
    }

    .headline-badge-img {
        top: -5px;
        left: -5px;
        height: 36px;
    }

    .news-headline {
        padding: 15px;
    }

    .news-headline h3 {
        font-size: 18px;
    }

    .news-tabs {
        justify-content: center;
    }

    .news-list-wrapper {
        max-height: 300px;
    }

    .inquiry-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .property-grid {
        grid-template-columns: 1fr;
    }

    .newhouse-layout {
        grid-template-columns: 1fr;
    }

    .newhouse-sidebar {
        order: 2;
    }

    .newhouse-main {
        order: 1;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-box-wrapper {
        width: 100%;
    }

    .mini-search-input {
        flex: 1;
    }

    .consultant-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-content {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mobile-nav {
        display: flex;
    }

    body {
        padding-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .inquiry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .consultant-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .banner-slider {
        height: 200px;
    }
    
    .category-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 购房服务板块 */
.service-banner-section {
    background-color: #fff;
    padding: 40px 0;
    margin-top: 30px;
}

.service-banner-wrapper {
    display: flex;
    gap: 20px;
    min-height: 280px;
}

/* 左侧服务区 */
.service-left-panel {
    width: 320px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 8px;
    padding: 30px 25px;
    color: #fff;
    flex-shrink: 0;
}

.service-hotline-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.title-bar {
    display: inline-block;
    width: 4px;
    height: 20px;
    background-color: #fff;
    border-radius: 2px;
}

.service-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.feature-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

/* 右侧报名区 */
.service-right-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.right-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.right-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.right-title .title-bar {
    background-color: #ff6b35;
}

.join-group-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #07c160 0%, #06ad56 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    transition: transform 0.3s;
}

.join-group-btn:hover {
    transform: scale(1.05);
    color: #fff;
}

.join-group-btn span.wechat-icon {
    font-size: 16px;
}

.join-group-btn img {
    width: 16px;
    height: 16px;
}

.right-content {
    display: flex;
    gap: 20px;
    flex: 1;
}

/* 报名表单 */
.signup-form {
    width: 280px;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-shrink: 0;
}

.form-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 12px;
    font-size: 18px;
    z-index: 1;
    line-height: 1;
}

.form-input {
    width: 100%;
    padding: 12px 12px 12px 38px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #ff6b35;
}

.btn-signup {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.service-stats {
    text-align: center;
    font-size: 13px;
    color: #999;
    margin-top: 5px;
}

.service-stats strong {
    color: #ff6b35;
    font-size: 18px;
    margin: 0 2px;
}

/* 客户信息滚动区 */
.customer-scroll {
    flex: 1;
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.tag-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.tag {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    color: #fff;
}

.tag-green {
    background-color: #52c41a;
}

.tag-orange {
    background-color: #ff6b35;
}

.tag-green2 {
    background-color: #13c2c2;
}

.customer-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.customer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background-color: #f8f9fa;
    border-radius: 4px;
    font-size: 13px;
    transition: background-color 0.3s;
}

.customer-item:hover {
    background-color: #e8e9ea;
}

.customer-item .time {
    color: #999;
    flex-shrink: 0;
}

.customer-item .name {
    color: #333;
    font-weight: 500;
    flex-shrink: 0;
}

.customer-item .project {
    color: #333;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.customer-item .phone {
    color: #666;
    flex-shrink: 0;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .service-banner-wrapper {
        flex-direction: column;
    }

    .service-left-panel {
        width: 100%;
    }

    .right-content {
        flex-direction: column;
    }

    .signup-form {
        width: 100%;
    }
}
