* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}
body {
    background-color: #f9f7f5;
    color: #333;
}
ul li{list-style:none}
a { text-decoration: none; color: inherit; }
/* 顶部导航 */
.top-nav {
    background-color: #fff;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
}
.container{
     max-width: 1200px;
    margin: 0 auto;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: bold;
    color: #e63928;
}
.logo img {
    height: 40px;
}
.location {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 20px;
    color: #666;
    font-size: 14px;
}
.search-bar {
    flex: 1;
    max-width: 500px;
    display: flex;
    height: 38px;
}
.search-bar input {
    flex: 1;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-size: 14px;
}
.search-bar button {
    padding: 0 20px;
    background-color: #0f766e;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 500;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 14px;
}
.nav-actions a {
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}
.publish-btn {
    background-color: #ef4444;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
}
/* 主导航 */
.main-nav {
    background-color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.main-nav ul {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    list-style: none;
    padding: 0 20px;
}
.main-nav a {
    text-decoration: none;
    color: #555;
    font-size: 15px;
}
.main-nav a.active {
    color: #e63928;
    font-weight: 500;
}
/* 轮播图 */
.carousel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}
.carousel-inner {
    position: relative;
    height: 360px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    background-size: cover;
    background-position: center;
}
.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}
.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
    display: flex;
    align-items: center;
    padding: 0 60px;
}
.carousel-content h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}
.carousel-content h2 span {
    color: #fbbf24;
}
.carousel-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
    max-width: 420px;
    line-height: 1.6;
}
.carousel-btn {
    display: inline-block;
    background: #ef4444;
    color: #fff;
    padding: 10px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}
.carousel-btn:hover {
    background: #dc2626;
}
.carousel-btn.teal {
    background: #0f766e;
}
.carousel-btn.teal:hover {
    background: #0d655e;
}
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.85);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.2s;
}
.carousel-arrow:hover {
    background: #fff;
}
.carousel-arrow.prev { left: 36px; }
.carousel-arrow.next { right: 36px; }
.carousel-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
}
.carousel-dot.active {
    background: #fff;
    transform: scale(1.2);
}
/* 横幅区域 */
.banner {
    background: linear-gradient(to right, #fff 50%, #e0f2f1 100%);
    padding: 40px 20px;
}
.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.banner-text {
    max-width:600px;
    line-height: 32px;
}
.banner-text h1 {
    font-size: 32px;
    margin-bottom: 10px;
}
.banner-text h1 span {
    color: #e63928;
}
.banner-text p {
    color: #666;
    margin-bottom: 30px;
}
.banner-search-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.banner-tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;
}
.banner-tabs a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
}
.banner-tabs a.active {
    color: #333;
    font-weight: 500;
}
.banner-search-input {
    display: flex;
    height: 45px;
}
.banner-search-input input {
    flex: 1;
    padding: 0 15px;
    border: 1px solid #eee;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-size: 14px;
}
.banner-search-input button {
    padding: 0 25px;
    background-color: #ef4444;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 500;
}
.hot-tags {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #888;
}
.banner-image {
    width: 500px;
    height: 280px;
    
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}
.banner-image img{width:100%}
/* 分类入口 */
.category-section {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
}
.category-item {
    text-align: center;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.category-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.category-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}
.category-icon.rent { background-color: #f97316; }
.category-icon.job { background-color: #0ea5e9; }
.category-icon.second { background-color: #eab308; }
.category-icon.service { background-color: #22c55e; }
.category-icon.car { background-color: #3b82f6; }
.category-icon.pet { background-color: #a855f7; }
.category-icon.activity { background-color: #f43f5e; }
.category-item p {
    font-size: 14px;
    font-weight: 500;
}
.category-item small {
    font-size: 12px;
    color: #888;
}
/* 精选信息 */
.featured-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.section-header h2 {
    font-size: 18px;
}
.section-header a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}
.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.featured-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.card-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
}
.card-content {
    padding: 15px;
}
.card-tag {
    display: inline-block;
    padding: 3px 8px;
    background-color: #ef4444;
    color: #fff;
    font-size: 10px;
    border-radius: 3px;
    margin-bottom: 8px;
}
.card-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
}
.card-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.card-price {
    color: #ef4444;
    font-size: 18px;
    font-weight: bold;
}
.card-meta {
    font-size: 12px;
    color: #888;
}
/* 周边推荐 */
.area-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.area-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
}
.area-card {
    min-width: 220px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}
.area-card-image {
    width: 100%;
    height: 120px;
    background-size: cover;
    background-position: center;
}
.area-card-content {
    padding: 12px;
}
.area-card-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}
.area-card-meta {
    font-size: 12px;
    color: #888;
}
/* 活动横幅 */
.activity-banner {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.activity-container {
    background-color: #0f766e;
    color: #fff;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.activity-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
}
.activity-tags {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    font-size: 13px;
}
.activity-btn {
    background-color: #fbbf24;
    color: #333;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}
.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 6px;
}
.activity-date {
    text-align: center;
    background-color: #ef4444;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
}
/* 信任保障 */
.trust-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
}
.trust-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.trust-icon {
    width: 50px;
    height: 50px;
    background-color: #fef3c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
    font-size: 20px;
}
.trust-features {
    display: flex;
    gap: 30px;
    margin-top: 15px;
}
.trust-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
}
.trust-right {
    text-align: right;
}
.trust-stats {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}
.stat-item {
    text-align: center;
}
.stat-value {
    font-size: 20px;
    font-weight: bold;
    color: #0f766e;
}
.stat-label {
    font-size: 12px;
    color: #888;
}
/* 页脚 */
footer {
    background-color: #0f3433;
    color: #fff;
    padding: 40px 20px;
    margin-top: 50px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 30px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}
.footer-logo img {
    width: 36px;
    height: 36px;
}
.footer-about p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
}
.footer-links h4 {
    font-size: 14px;
    margin-bottom: 15px;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
}
.footer-qr {
    text-align: center;
}
.footer-qr img {
    width: 80px;
    height: 80px;
    background-color: #fff;
    padding: 5px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.footer-qr p {
    font-size: 12px;
    color: #aaa;
}
.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid #2a4d4c;
    text-align: center;
    font-size: 12px;
    color: #888;
}
/* 公告滚动 */
.notice-bar {
    background-color: #fff8e6;
    border-bottom: 1px solid #fde68a;
    padding: 8px 20px;
    font-size: 13px;
    color: #92400e;
}
.notice-bar .notice-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}
.notice-label {
    background-color: #f59e0b;
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
    flex-shrink: 0;
}
.notice-scroll {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}
.notice-scroll span {
    display: inline-block;
    padding-right: 40px;
}
/* 实时数据 */
.stats-bar {
    max-width: 1200px;
    margin: 20px auto 0;
    padding: 0 20px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.stats-card {
    background: #fff;
    border-radius: 8px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.stats-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.stats-icon.red { background: #fef2f2; }
.stats-icon.teal { background: #e0f2f1; }
.stats-icon.blue { background: #eff6ff; }
.stats-icon.orange { background: #fff7ed; }
.stats-num {
    font-size: 22px;
    font-weight: bold;
    color: #333;
}
.stats-num span {
    font-size: 12px;
    color: #22c55e;
    font-weight: normal;
    margin-left: 4px;
}
.stats-desc {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}
/* 本地快讯 */
.news-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.news-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.news-main {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.news-main-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.news-main-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ef4444;
    color: #fff;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 11px;
}
.news-main-body {
    padding: 18px;
}
.news-main-body h3 {
    font-size: 17px;
    margin-bottom: 8px;
    line-height: 1.4;
}
.news-main-body p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}
.news-meta {
    display: flex;
    gap: 15px;
    margin-top: 12px;
    font-size: 12px;
    color: #aaa;
}
.news-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.news-item {
    background: #fff;
    border-radius: 8px;
    padding: 14px 16px;
    display: flex;
    gap: 14px;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s;
}
.news-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.news-item-thumb {
    width: 80px;
    height: 60px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.news-item-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}
.news-item-info {
    font-size: 12px;
    color: #888;
}
/* 热门招聘 */
.jobs-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.job-card {
    background: #fff;
    border-radius: 8px;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.job-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
}
.job-salary {
    color: #ef4444;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 6px;
}
.job-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.job-tag {
    font-size: 11px;
    color: #666;
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 3px;
}
.job-company {
    text-align: right;
}
.job-company-name {
    font-size: 13px;
    color: #555;
    margin-bottom: 4px;
}
.job-company-loc {
    font-size: 12px;
    color: #aaa;
}
.job-urgent {
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 6px;
}
/* 租房热区 */
.rent-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.rent-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.rent-tabs a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
}
.rent-tabs a.active {
    color: #e63928;
    border-bottom-color: #e63928;
    font-weight: 500;
}
.rent-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.rent-item {
    background: #fff;
    border-radius: 8px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.rent-item-img {
    width: 140px;
    height: 110px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.rent-item-body {
    padding: 12px 15px;
    flex: 1;
}
.rent-item-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}
.rent-item-detail {
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}
.rent-item-price {
    color: #ef4444;
    font-size: 18px;
    font-weight: bold;
}
.rent-item-price small {
    font-size: 12px;
    font-weight: normal;
}
/* 二手好物 */
.secondhand-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.secondhand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.secondhand-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.secondhand-img {
    height: 140px;
    background-size: cover;
    background-position: center;
}
.secondhand-body {
    padding: 12px;
}
.secondhand-title {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.secondhand-price {
    color: #ef4444;
    font-size: 16px;
    font-weight: bold;
}
.secondhand-meta {
    font-size: 11px;
    color: #aaa;
    margin-top: 4px;
}
/* 用户评价 */
.reviews-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.review-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}
.review-user {
    font-size: 14px;
    font-weight: 500;
}
.review-time {
    font-size: 11px;
    color: #aaa;
}
.review-stars {
    color: #fbbf24;
    font-size: 12px;
    margin-bottom: 10px;
}
.review-text {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}
.review-tag {
    display: inline-block;
    margin-top: 10px;
    font-size: 11px;
    color: #0f766e;
    background: #e0f2f1;
    padding: 2px 8px;
    border-radius: 3px;
}
/* 新手指南 */
.guide-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.guide-container {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    border-radius: 12px;
    padding: 35px 40px;
    color: #fff;
}
.guide-container h2 {
    font-size: 20px;
    margin-bottom: 25px;
    text-align: center;
}
.guide-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.guide-step {
    text-align: center;
}
.guide-step-num {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin: 0 auto 12px;
}
.guide-step h4 {
    font-size: 15px;
    margin-bottom: 6px;
}
.guide-step p {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}
/* 合作伙伴 */
.partners-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}
.partner-item {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.partner-icon {
    font-size: 28px;
    margin-bottom: 8px;
}
/* 本地服务 */
.service-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}
.service-icon.clean { background: #e0f2f1; }
.service-icon.repair { background: #fef3c7; }
.service-icon.move { background: #eff6ff; }
.service-icon.edu { background: #fce7f3; }
.service-icon.beauty { background: #f3e8ff; }
.service-icon.food { background: #fff7ed; }
.service-name {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
}
.service-desc {
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
}
.service-price {
    color: #ef4444;
    font-size: 14px;
    font-weight: 500;
}
.service-rating {
    font-size: 11px;
    color: #22c55e;
}
/* 响应式 */
@media (max-width: 1024px) {
    .carousel-inner { height: 280px; 
    .content-layout { grid-template-columns: 1fr; }
    .sidebar { display: grid; grid-template-columns: 1fr 1fr; }
    .detail-layout { grid-template-columns: 1fr; }
    .contact-card { position: static; }
    .similar-grid { grid-template-columns: repeat(2, 1fr); }
    .info-params { grid-template-columns: repeat(2, 1fr); }}
    .carousel-content h2 { font-size: 26px; }
    .carousel-overlay { padding: 0 40px; }
    .category-grid { grid-template-columns: repeat(4, 1fr); }
    .featured-grid { grid-template-columns: repeat(2, 1fr); }
    .secondhand-grid { grid-template-columns: repeat(2, 1fr); }
    .partners-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-container { grid-template-columns: repeat(3, 1fr); }
    .banner-container { flex-direction: column; gap: 30px; }
    .banner-image { width: 100%; }
    .trust-section { flex-direction: column; gap: 20px; }
    .trust-right { text-align: left; }
}
@media (max-width: 768px) {
    .carousel-inner { height: 220px; 
    .list-item { flex-direction: column; }
    .list-item-img { width: 100%; height: 180px; }
    .sidebar { grid-template-columns: 1fr; }
    .filter-row { flex-direction: column; gap: 8px; }
    .gallery-main { height: 250px; }
    .info-title { font-size: 20px; }
    .info-price { font-size: 26px; }
    .similar-grid { grid-template-columns: 1fr; }}
    .carousel-content h2 { font-size: 20px; }
    .carousel-content p { font-size: 13px; margin-bottom: 16px; }
    .carousel-overlay { padding: 0 24px; }
    .carousel-arrow { width: 36px; height: 36px; font-size: 16px; }
    .carousel-arrow.prev { left: 28px; }
    .carousel-arrow.next { right: 28px; }
    .nav-container { flex-wrap: wrap; gap: 10px; }
    .search-bar { order: 3; max-width: 100%; width: 100%; }
    .main-nav ul { flex-wrap: wrap; gap: 15px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .news-layout { grid-template-columns: 1fr; }
    .jobs-grid, .rent-list { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: 1fr; }
    .guide-steps { grid-template-columns: 1fr; gap: 20px; }
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .featured-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

/* 列表页 */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.breadcrumb {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
}
.breadcrumb a {
    color: #666;
}
.breadcrumb a:hover {
    color: #e63928;
}
.breadcrumb span {
    margin: 0 8px;
}
.page-header {
    background: #fff;
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.page-header h1 {
    font-size: 22px;
    margin-bottom: 6px;
}
.page-header p {
    font-size: 13px;
    color: #888;
}
.filter-panel {
    background: #fff;
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.filter-row {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}
.filter-row:last-child {
    border-bottom: none;
}
.filter-label {
    width: 70px;
    font-size: 14px;
    color: #888;
    flex-shrink: 0;
    padding-top: 4px;
}
.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}
.filter-options a{padding:4px 8px;margin-right:20px;text-align:center;line-height:28px;}
.filter-options a.active{background:#f56060;color:#fff}
.filter-opt {
    font-size: 13px;
    color: #555;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}
.filter-opt:hover {
    color: #e63928;
}
.filter-opt.active {
    background: #fef2f2;
    color: #e63928;
    font-weight: 500;
}
.content-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 20px;
}
.list-main {
    min-width: 0;
}
.sort-bar {
    background: #fff;
    border-radius: 8px;
    padding: 12px 20px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.sort-tabs {
    display: flex;
    gap: 25px;
}
.sort-tabs a {
    font-size: 14px;
    color: #666;
}
.sort-tabs a.active {
    color: #e63928;
    font-weight: 500;
}
.result-count {
    font-size: 13px;
    color: #888;
}
.result-count strong {
    color: #e63928;
}
.list-item {
    background: #fff;
    border-radius: 8px;
    display: flex;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s;
}
.list-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.list-item-img {
    width: 220px;
    height: 165px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    position: relative;
}
.list-item-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 3px;
}
.list-item-tag.green {
    background: #22c55e;
}
.list-item-body {
    flex: 1;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.list-item-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}
.list-item-title:hover {
    color: #e63928;
}
.list-item-info {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}
.list-item-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.item-tag {
    font-size: 11px;
    color: #666;
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 3px;
}
.list-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.list-item-price {
    color: #ef4444;
    font-size: 22px;
    font-weight: bold;
}
.list-item-price small {
    font-size: 13px;
    font-weight: normal;
}
.list-item-meta {
    font-size: 12px;
    color: #aaa;
    text-align: right;
}
.list-item-meta div {
    margin-bottom: 3px;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
}
.pagination ul li{float:left;margin:5px;padding:2px 5px;}
.pagination ul li.active{background:#ef4444;color:#fff;}
.page-btn {
    padding: 8px 14px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
}
.page-btn.active {
    background: #e63928;
    color: #fff;
    border-color: #e63928;
}
.page-btn:hover:not(.active) {
    border-color: #e63928;
    color: #e63928;
}
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.sidebar-card {
    background: #fff;
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.sidebar-card h3 {
    font-size: 15px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f3f4f6;
}
.hot-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f9f9f9;
}
.hot-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.hot-thumb {
    width: 70px;
    height: 52px;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.hot-title {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.3;
}
.hot-price {
    font-size: 13px;
    color: #ef4444;
    font-weight: 500;
}
.area-rank {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid #f9f9f9;
}
.area-rank:last-child {
    border-bottom: none;
}
.area-rank .num {
    color: #e63928;
    font-weight: bold;
    width: 20px;
}
.area-rank .count {
    color: #aaa;
    font-size: 12px;
}
.publish-tip {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #fff;
    text-align: center;
    padding: 25px 18px;
    border-radius: 8px;
}
.publish-tip h4 {
    font-size: 15px;
    margin-bottom: 8px;
}
.publish-tip p {
    font-size: 12px;
    opacity: 0.85;
    margin-bottom: 15px;
}
.publish-tip a {
    display: inline-block;
    background: #fff;
    color: #0f766e;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
}

.aboutbox p{line-height:24px;text-indent:2rem;}

/* 详情页 */
.detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 20px;
}
.detail-main {
    min-width: 0;
}
.gallery {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.gallery-main {
    height: 400px;
    background-size: cover;
    background-position: center;
}
.gallery-thumbs {
    display: flex;
    gap: 10px;
    padding: 12px 15px;
}
.gallery-thumb {
    width: 80px;
    height: 60px;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.7;
}
.gallery-thumb.active {
    border-color: #e63928;
    opacity: 1;
}
.info-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.info-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}
.info-tag {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 3px;
}
.info-tag.red {
    background: #fef2f2;
    color: #ef4444;
}
.info-tag.green {
    background: #f0fdf4;
    color: #22c55e;
}
.info-tag.gray {
    background: #f3f4f6;
    color: #666;
}
.info-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.4;
}
.info-price-row {
    display: flex;
    align-items: baseline;
    gap: 20px;
  
    border-bottom: 1px solid #f3f4f6;
}
.info-price {
    color: #ef4444;
    font-size: 32px;
    font-weight: bold;
}
.info-price small {
    font-size: 16px;
    font-weight: normal;
}
.info-meta {
    font-size: 13px;
    color: #888;
}
.info-params {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}
.param-item {
    text-align: center;
    padding: 12px;
    background: #f9fafb;
    border-radius: 6px;
}
.param-value {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}
.param-label {
    font-size: 12px;
    color: #888;
}
.info-address {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}
.info-facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.facility {
    font-size: 12px;
    color: #555;
    background: #f3f4f6;
    padding: 5px 12px;
    border-radius: 4px;
}
.section-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.section-card h2 {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f3f4f6;
}
.desc-text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}
.desc-text img{max-width:90%;text-align:center;margin:0 auto;}
.desc-text p {
    margin-bottom: 12px;
}
.detail-table {
    width: 100%;
    border-collapse: collapse;
}
.detail-table tr {
    border-bottom: 1px solid #f3f4f6;
}
.detail-table td {
    padding: 12px 0;
    font-size: 14px;
}
.detail-table td:first-child {
    color: #888;
    width: 100px;
}
.map-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #e0f2f1, #b2dfdb);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f766e;
    font-size: 14px;
}
.similar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.similar-card {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #f3f4f6;
    transition: box-shadow 0.2s;
}
.similar-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.similar-img {
    height: 120px;
    background-size: cover;
    background-position: center;
}
.similar-body {
    padding: 12px;
}
.similar-title {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.similar-price {
    color: #ef4444;
    font-size: 15px;
    font-weight: bold;
}
.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: sticky;
    top: 20px;
}
.publisher {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
}
.publisher-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}
.publisher-name {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}
.publisher-badge {
    font-size: 11px;
    color: #22c55e;
    background: #f0fdf4;
    padding: 2px 8px;
    border-radius: 3px;
    display: inline-block;
}
.publisher-stats {
    font-size: 12px;
    color: #aaa;
    margin-top: 6px;
}
.contact-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.btn-primary {
    background: #ef4444;
    color: #fff;
    padding: 14px;
    border-radius: 6px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    border: none;
    cursor: pointer;
}
.btn-secondary {
    background: #fff;
    color: #0f766e;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    border: 1px solid #0f766e;
    cursor: pointer;
}
.btn-outline {
    background: #fff;
    color: #666;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    border: 1px solid #ddd;
    cursor: pointer;
}
.contact-tip {
    font-size: 12px;
    color: #aaa;
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}
.safety-card {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 18px;
}
.safety-card h4 {
    font-size: 14px;
    color: #92400e;
    margin-bottom: 10px;
}
.safety-list {
    list-style: none;
}
.safety-list li {
    font-size: 12px;
    color: #a16207;
    margin-bottom: 6px;
    padding-left: 16px;
    position: relative;
}
.safety-list li::before {
    content: "•";
    position: absolute;
    left: 0;
}
.report-card {
    background: #fff;
    border-radius: 8px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.report-card a {
    font-size: 13px;
    color: #888;
}
.report-card a:hover {
    color: #e63928;
}
.action-bar {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    font-size: 13px;
    color: #888;
}
.action-bar span {
    cursor: pointer;
}
.action-bar span:hover {
    color: #e63928;
}
