@charset "UTF-8";
:root {
    --primary: #046E72;
    --primary-light: #e8f5f5;
    --primary-dark: #035a5e;
    --text: #333;
    --text-light: #666;
    --text-muted: #999;
    --border: #e5e5e5;
    --bg: #f5f6f8;
    --white: #fff;
    --radius: 8px;
    --price-orange: #f60;
    --price-red: #e74c3c;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif; color: var(--text); background: var(--bg); font-size: 14px; line-height: 1.5; -webkit-text-size-adjust: 100%; }
a { color: var(--primary); text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { width: 100%; padding: 0 12px; }

/* Header */
.m-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--primary); color: #fff; height: 44px; display: flex; align-items: center; padding: 0 12px; }
.m-header .logo { height: 24px; width: auto; }
.m-header .m-nav { display: flex; margin-left: auto; gap: 0; }
.m-header .m-nav a { color: rgba(255,255,255,.8); font-size: 13px; padding: 8px 6px; }
.m-header .m-nav a.active { color: #fff; font-weight: 600; }
.m-menu-btn { margin-left: 8px; width: 22px; height: 18px; background: none; border: none; cursor: pointer; padding: 0; display: flex; flex-direction: column; justify-content: space-between; }
.m-menu-btn span { display: block; width: 100%; height: 2px; background: #fff; border-radius: 1px; transition: all .3s; }
.m-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.m-menu-btn.open span:nth-child(2) { opacity: 0; }
.m-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }
.m-menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 101; opacity: 0; pointer-events: none; transition: opacity .3s; }
.m-menu-overlay.open { opacity: 1; pointer-events: auto; }
.m-menu-panel { position: fixed; top: 0; right: -260px; width: 260px; height: 100%; background: #fff; z-index: 102; transition: right .3s; padding-top: 50px; box-shadow: -2px 0 8px rgba(0,0,0,.1); }
.m-menu-panel.open { right: 0; }
.m-menu-panel a { display: block; padding: 14px 20px; font-size: 15px; color: #333; text-decoration: none; border-bottom: 1px solid #f0f0f0; }
.m-menu-panel a.active { color: var(--primary); font-weight: 600; }

/* Footer */
.m-footer { background: #2a2a2a; color: #999; padding: 20px 12px; font-size: 12px; text-align: center; line-height: 2; }
.m-footer a { color: #ccc; }
.m-footer .f-logo { height: 20px; width: auto; margin-bottom: 8px; }

/* Bottom bar */
.m-bottom-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 100; background: #fff; border-top: 1px solid var(--border); display: flex; height: 50px; }
.m-bottom-bar a { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 10px; color: var(--text-muted); text-decoration: none; }
.m-bottom-bar a.active { color: var(--primary); }
.m-bottom-bar a .bar-icon { font-size: 20px; margin-bottom: 2px; }
.m-bottom-spacer { height: 50px; }

/* Banner */
.m-banner { margin-top: 44px; position: relative; height: 180px; overflow: hidden; color: #fff; }
.m-banner .m-banner-slider { position: absolute; inset: 0; display: flex; transition: transform .8s ease; }
.m-banner .m-banner-slide { min-width: 100%; height: 100%; background-size: cover; background-position: center; }
.m-banner .m-banner-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; }
.m-banner .m-banner-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.5); cursor: pointer; }
.m-banner .m-banner-dots .dot.active { background: #fff; }
.m-banner .m-banner-content { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 16px; background: rgba(0,0,0,.25); }
.m-banner h1 { font-size: 20px; margin-bottom: 6px; text-shadow: 0 1px 4px rgba(0,0,0,.3); }
.m-banner p { font-size: 13px; opacity: .9; margin-bottom: 16px; text-shadow: 0 1px 4px rgba(0,0,0,.3); }
.m-search-box { display: flex; gap: 6px; padding: 0 16px; align-items: center; width: 100%; }
.m-search-box select { flex: 1; height: 36px; border: none; border-radius: 6px; padding: 0 8px; font-size: 12px; color: var(--text); background: #fff; appearance: none; -webkit-appearance: none; min-width: 0; }
.m-search-btn { height: 36px; border: none; border-radius: 6px; background: #fff; color: var(--primary); font-size: 14px; font-weight: 600; cursor: pointer; flex-shrink: 0; padding: 0 10px; }

/* Stats */
.m-stats { display: flex; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; padding: 16px 0; margin-top: -1px; }
.m-stats .stat { flex: 1; text-align: center; }
.m-stats .stat-num { font-size: 22px; font-weight: 700; }
.m-stats .stat-label { font-size: 11px; opacity: .8; }

/* Section */
.m-section { background: #fff; margin-bottom: 10px; padding: 16px 12px; }
.m-section-title { font-size: 16px; font-weight: 600; margin-bottom: 12px; display: flex; align-items: center; justify-content: space-between; }
.m-section-title a { font-size: 12px; color: var(--text-muted); font-weight: 400; }

/* Property card */
.m-card { display: flex; gap: 10px; padding: 12px 0; border-bottom: 1px solid #f0f0f0; }
.m-card:last-child { border-bottom: none; }
.m-card-img { width: 120px; height: 90px; border-radius: 6px; overflow: hidden; flex-shrink: 0; background: #f0f0f0; }
.m-card-img img { width: 100%; height: 100%; object-fit: cover; }
.m-card-body { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: space-between; }
.m-card-body h3 { font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.m-card-body h3 a { color: #333; }
.m-card-meta { font-size: 12px; color: var(--text-muted); display: flex; gap: 8px; }
.m-card-price { display: flex; align-items: baseline; gap: 8px; }
.m-card-price .p-main { color: var(--price-red); font-size: 16px; font-weight: 700; }
.m-card-price .p-main small { font-size: 11px; font-weight: 400; }
.m-card-price .p-total { color: var(--price-orange); font-size: 13px; font-weight: 600; }
.m-card-price .p-total small { font-size: 11px; font-weight: 400; color: var(--text-muted); }
.m-card-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.m-card-tags span { font-size: 10px; padding: 1px 6px; background: var(--primary-light); color: var(--primary); border-radius: 3px; }

/* Grid cards for featured */
.m-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.m-grid .m-gcard { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.m-grid .m-gcard .g-img { height: 100px; overflow: hidden; }
.m-grid .m-gcard .g-img img { width: 100%; height: 100%; object-fit: cover; }
.m-grid .m-gcard .g-body { padding: 8px; }
.m-grid .m-gcard .g-body h3 { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; }
.m-grid .m-gcard .g-body h3 a { color: #333; }
.m-grid .m-gcard .g-body .g-price { color: var(--price-red); font-size: 15px; font-weight: 700; }
.m-grid .m-gcard .g-body .g-price small { font-size: 10px; font-weight: 400; }
.m-grid .m-gcard .g-body .g-meta { font-size: 11px; color: var(--text-muted); }

/* Filter */
.m-filter { background: #fff; padding: 8px 8px; margin-bottom: 10px; }
.m-filter form { display: -webkit-flex; display: flex; gap: 4px; align-items: center; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.m-filter select { flex: 1; -webkit-flex: 1; height: 30px; min-width: 60px; border: 1px solid #ddd; border-radius: 4px; font-size: 12px; padding: 0 4px; background: #fff; -webkit-appearance: none; appearance: none; }
.m-filter button { flex-shrink: 0; -webkit-flex-shrink: 0; height: 30px; padding: 0 10px; background: var(--primary); color: #fff; border: none; border-radius: 4px; font-size: 12px; white-space: nowrap; }

/* Pagination */
.m-pagination { display: flex; justify-content: center; gap: 6px; padding: 12px 0; }
.m-pagination a, .m-pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 30px; height: 30px; border-radius: 4px; font-size: 13px; border: 1px solid var(--border); }
.m-pagination span.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.m-pagination span.disabled { color: var(--text-muted); background: #f5f5f5; }

/* Detail */
.m-detail { background: var(--bg); margin-top: 44px; }
.m-detail-gallery { width: 100%; height: 240px; overflow: hidden; position: relative; background: #eee; }
.m-detail-gallery > img { width: 100%; height: 100%; object-fit: cover; }
.m-gallery-slider { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; height: 100%; }
.m-gallery-slider::-webkit-scrollbar { display: none; }
.m-gallery-slide { min-width: 100%; height: 100%; scroll-snap-align: start; }
.m-gallery-slide img { width: 100%; height: 100%; object-fit: cover; }
.m-gallery-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.m-gallery-dots .dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.5); }
.m-gallery-dots .dot.active { background: #fff; }
.m-detail-card { background: #fff; padding: 20px 16px; }
.m-detail-title { font-size: 22px; font-weight: 700; color: #1a1a2e; margin: 0 0 2px 0; line-height: 1.3; }
.m-detail-addr { font-size: 13px; color: #555; margin-bottom: 8px; display: flex; align-items: center; gap: 4px; }
.m-detail-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.m-detail-tags span { background: var(--bg); color: #666; font-size: 12px; padding: 4px 10px; border-radius: 4px; }
.m-detail-tags span.tag-biz { background: #FFEFDA; color: #F8921A; }
.m-detail-tags span.tag-grade { background: #EFE6F9; color: #A377E7; }
.m-detail-tags span.tag-point { background: #DCE9F9; color: #4E89C3; }
.m-detail-meta-row { display: flex; text-align: center; }
.m-detail-meta-item { flex: 1; padding: 10px 0; }
.m-detail-meta-main { font-size: 18px; font-weight: 700; color: #CA2B2F; margin-bottom: 4px; }
.m-detail-meta-sub { font-size: 12px; color: #333; }
.m-detail-section { background: #fff; margin-top: 10px; padding: 16px; }
.m-detail-section h2 { font-size: 16px; font-weight: 700; color: #222; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.m-detail-section h2 i { display: inline-block; width: 3px; height: 16px; background: var(--primary); border-radius: 2px; }
.m-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.m-info-cell { display: flex; flex-direction: column; padding: 10px 0; border-bottom: 1px solid #f5f5f5; }
.m-info-cell:nth-child(odd) { padding-right: 12px; }
.m-info-cell:nth-child(even) { padding-left: 12px; border-left: 1px solid #f5f5f5; }
.m-info-label { font-size: 12px; color: #999; margin-bottom: 4px; }
.m-info-value { font-size: 14px; color: #333; font-weight: 500; }
.m-info-address { display: flex; align-items: center; gap: 8px; padding: 12px 0 0; }
.m-info-address .m-info-label { margin-bottom: 0; flex-shrink: 0; }
.m-detail-desc-text { font-size: 14px; color: #555; line-height: 1.8; }
.m-detail-section .m-contact-form { padding: 0; }
.m-contact-form .f-group { margin-bottom: 10px; display: flex; gap: 8px; }
.m-contact-form input, .m-contact-form select, .m-contact-form textarea { width: 100%; height: 42px; border: 1px solid #eee; border-radius: 8px; padding: 0 12px; font-size: 14px; outline: none; background: #fafafa; }
.m-contact-form input:focus, .m-contact-form select:focus, .m-contact-form textarea:focus { border-color: var(--primary); background: #fff; }
.m-contact-form textarea { height: 80px; padding: 10px 12px; resize: vertical; }
.m-contact-form .gender-sel { width: 80px; flex-shrink: 0; }
.m-contact-form .f-group input[name="name"] { flex: 1; }
.m-contact-form .btn-submit { width: 100%; height: 44px; background: var(--primary); color: #fff; border: none; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; margin-top: 4px; }
.m-detail-bottom-bar { position: fixed; bottom: 0; left: 0; right: 0; height: 52px; background: #fff; display: flex; border-top: 1px solid #eee; z-index: 100; }
.m-detail-bottom-bar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 4px; font-size: 14px; text-decoration: none; }
.m-detail-bottom-bar .bar-phone { color: var(--primary); border-right: 1px solid #eee; }
.m-detail-bottom-bar .bar-msg { color: #fff; background: var(--primary); }

/* News */
.m-news-item { display: flex; gap: 10px; padding: 12px 0; border-bottom: 1px solid #f0f0f0; }
.m-news-item:last-child { border-bottom: none; }
.m-news-img { width: 100px; height: 70px; border-radius: 6px; overflow: hidden; flex-shrink: 0; background: #f0f0f0; }
.m-news-img img { width: 100%; height: 100%; object-fit: cover; }
.m-news-body { flex: 1; min-width: 0; }
.m-news-body h3 { font-size: 14px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 4px; }
.m-news-body h3 a { color: #333; }
.m-news-meta { font-size: 11px; color: var(--text-muted); }
.m-news-placeholder { display: flex; align-items: center; justify-content: center; background: var(--primary-light); color: var(--primary); font-size: 24px; font-weight: 700; }
.m-news-summary { font-size: 12px; color: var(--text-light); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 4px; }

/* News detail */
.m-news-detail { background: #fff; padding: 12px; margin-top: 44px; }
.m-news-detail h1 { font-size: 18px; margin-bottom: 8px; line-height: 1.5; }
.m-news-detail .nd-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }
.m-news-detail .nd-content { font-size: 14px; line-height: 1.8; }
.m-news-detail .nd-content img { max-width: 100%; border-radius: 4px; }

/* Category tabs */
.m-cat-tabs { display: flex; gap: 0; background: #fff; padding: 0 12px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.m-cat-tabs a { font-size: 13px; padding: 10px 12px; white-space: nowrap; color: var(--text-light); border-bottom: 2px solid transparent; }
.m-cat-tabs a.active { color: var(--primary); border-bottom-color: var(--primary); font-weight: 600; }

/* About */
.m-about { background: #fff; margin-top: 0; padding: 16px 12px; }
.m-about h2 { font-size: 18px; margin-bottom: 12px; }
.m-about p { font-size: 14px; line-height: 1.8; color: var(--text-light); margin-bottom: 12px; }
.m-about .about-block { margin-bottom: 20px; }
.m-about .about-block h3 { font-size: 15px; color: var(--primary); margin-bottom: 8px; }
.m-about .about-block ul { list-style: none; padding: 0; }
.m-about .about-block li { font-size: 13px; color: var(--text-light); padding: 4px 0; padding-left: 12px; position: relative; }
.m-about .about-block li::before { content: ''; position: absolute; left: 0; top: 10px; width: 4px; height: 4px; border-radius: 50%; background: var(--primary); }

/* Contact page */
.m-contact-page { background: #fff; margin-top: 0; }
.m-contact-info { padding: 16px 12px; }
.m-contact-info h2 { font-size: 18px; margin-bottom: 12px; }
.m-contact-line { display: flex; gap: 10px; margin-bottom: 14px; align-items: flex-start; }
.m-contact-line .ci-icon { font-size: 20px; }
.m-contact-line .ci-text h4 { font-size: 14px; margin-bottom: 2px; }
.m-contact-line .ci-text p { font-size: 13px; color: var(--text-light); }
.m-contact-qrcode { display: flex; gap: 16px; justify-content: center; padding: 16px 0; }
.m-contact-qrcode .qr-item { text-align: center; }
.m-contact-qrcode img { width: 100px; height: 100px; border-radius: 8px; }
.m-contact-qrcode p { font-size: 12px; color: var(--text-muted); margin-top: 6px; }
.m-contact-form-page { padding: 16px 12px; }
.m-contact-form-page h2 { font-size: 18px; margin-bottom: 12px; }

/* Area cards */
.m-area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.m-area-card { text-align: center; padding: 10px 0; border-radius: 6px; background: var(--primary-light); }
.m-area-card h3 { font-size: 13px; color: var(--primary); }
.m-area-card .m-area-icon { width: 36px; height: 36px; margin: 0 auto 6px; border-radius: 50%; overflow: hidden; }
.m-area-card .m-area-icon img { width: 100%; height: 100%; object-fit: cover; }

/* Empty */
.m-empty { text-align: center; padding: 40px 0; color: var(--text-muted); }
.m-empty p { margin-bottom: 8px; }

/* Consult box */
.m-consult { background: #fff; padding: 16px; text-align: center; margin-top: 10px; }
.m-consult p { margin-bottom: 4px; }
.m-consult .phone-num { font-size: 20px; color: var(--primary); font-weight: 700; }
.m-consult .btn-call { display: block; margin: 10px auto 0; width: 200px; height: 38px; line-height: 38px; background: var(--primary); color: #fff; border-radius: 6px; font-size: 14px; }

/* Breadcrumb */
.m-breadcrumb { font-size: 12px; color: var(--text-muted); padding: 8px 12px; margin-top: 44px; background: #fff; }
.m-breadcrumb a { color: var(--text-light); }

/* Project page */
.m-project-price-row { display: flex; gap: 10px; }
.m-project-price-box { flex: 1; border: 1px solid #f0f0f0; border-radius: 8px; padding: 10px 12px; }
.m-project-price-label { font-size: 12px; color: #999; margin-bottom: 4px; }
.m-project-price-val { font-size: 18px; font-weight: 700; color: #CA2B2F; }
.m-project-price-val small { font-size: 12px; font-weight: 400; color: #999; }
.m-section-count { font-size: 12px; color: #999; font-weight: 400; margin-left: 6px; }
.m-project-list { margin-top: 8px; }
.m-project-item { display: flex; padding: 12px 0; border-bottom: 1px solid #f5f5f5; text-decoration: none; color: inherit; }
.m-project-item:last-child { border-bottom: none; }
.m-project-item-img { width: 110px; height: 80px; border-radius: 6px; overflow: hidden; flex-shrink: 0; margin-right: 12px; }
.m-project-item-img img { width: 100%; height: 100%; object-fit: cover; }
.m-project-item-info { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: space-between; }
.m-project-item-title { font-size: 14px; font-weight: 600; color: #333; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.m-project-item-meta { font-size: 12px; color: #999; }
.m-project-item-price { font-size: 12px; color: #999; }
.m-project-item-price em { font-size: 16px; font-weight: 700; color: #CA2B2F; font-style: normal; }
.m-project-item-price span { margin-left: 6px; }
.m-section-more { display: block; text-align: center; padding: 12px 0; font-size: 13px; color: var(--primary); text-decoration: none; }

/* Float wx button */
.m-float-wx { position: fixed; right: 12px; bottom: 80px; z-index: 90; }
.m-float-wx-btn { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.2); cursor: pointer; background: #fff; padding: 4px; }
.m-float-wx-btn img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.m-float-wx-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 91; display: none; }
.m-float-wx-overlay.show { display: block; }
.m-float-wx-popup { position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 260px; background: #fff; border-radius: 12px; padding: 24px; text-align: center; box-shadow: 0 4px 24px rgba(0,0,0,.2); display: none; z-index: 92; }
.m-float-wx-popup.show { display: block; }
.m-float-wx-popup img { width: 220px; height: 220px; display: block; margin: 0 auto 8px; }
.m-float-wx-popup p { font-size: 12px; color: #666; margin: 0; }

/* ========== Detail Page (对齐小程序 show 页面) ========== */

/* 轮播图 */
.md-gallery-wrap { position: relative; width: 100%; height: 280px; overflow: hidden; background: #f0f0f0; flex-shrink: 0; }
.md-gallery-swiper { display: flex; width: 100%; height: 100%; transition: transform .3s ease; will-change: transform; }
.md-gallery-slide { min-width: 100%; height: 100%; flex-shrink: 0; overflow: hidden; }
.md-gallery-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.md-gallery-counter { position: absolute; bottom: 12px; right: 14px; z-index: 5; background: rgba(0,0,0,.45); color: #fff; font-size: 11px; padding: 3px 10px; border-radius: 10px; line-height: 1.4; }

/* 卡片容器 */
.md-card { background: #fff; margin-top: 10px; padding: 16px; }
.md-card-core { padding-top: 18px; padding-bottom: 4px; }

/* 标题 */
.md-title { font-size: 20px; font-weight: 700; color: #1a1a2e; margin: 0 0 8px 0; line-height: 1.35; }
.ellipsis { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* 标签行（对齐小程序 tag-row） */
.md-tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; align-items: center; }
.md-tag { font-size: 11px; padding: 3px 9px; border-radius: 3px; line-height: 1.5; }
.md-tag-orange { background: #FFEFDA; color: #F8921A; }
.md-tag-purple { background: #EFE6F9; color: #A377E7; }
.md-tag-blue { background: #DCE9F9; color: #4E89C3; }

/* 地址栏（对齐小程序 address-bar） */
.md-addr-bar { display: flex; justify-content: space-between; align-items: center; background: linear-gradient(135deg,#f7f9fc,#eef3f8); border-radius: 8px; padding: 12px 14px; text-decoration: none; color: inherit; margin-bottom: 16px; border: 1px solid #e8ecf1; }
.md-addr-left { flex: 1; min-width: 0; }
.md-addr-title { font-size: 14px; font-weight: 600; color: #333; margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.md-addr-sub { font-size: 14px; color: #999; }
.md-addr-right { flex-shrink: 0; margin-left: 10px; }
.md-addr-nav-text { display: inline-block; background: var(--primary); color: #fff; font-size: 11px; padding: 5px 12px; border-radius: 14px; font-weight: 500; }

/* 三列核心数据（对齐小程序 meta-row） */
.md-meta-row { display: flex; text-align: center; gap: 0; }
.md-meta-item { flex: 1; padding: 10px 4px; }
.md-meta-price { font-size: 19px; font-weight: 700; color: #CA2B2F; margin-bottom: 3px; line-height: 1.2; }
.md-meta-sale { color: #CA2B2F; }
.md-meta-unit { font-size: 12px; font-weight: 700; color: #CA2B2F; margin-left: 1px; }
.md-meta-sub { font-size: 14px; color: #333; margin-top: 10px; }

/* 区块标题（对齐小程序 section-title） */
.md-section-title { font-size: 18px; font-weight: 700; color: #222; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.md-title-bar { display: inline-block; width: 3px; height: 15px; background: var(--primary); border-radius: 2px; flex-shrink: 0; }
.md-more { margin-left: auto; font-size: 12px; color: var(--text-muted); font-weight: 400; text-decoration: none; }
.md-more i { font-style: normal; margin-left: 2px; }
.md-nav-link { color: var(--primary); font-weight: 500; }

/* 信息列表（对齐小程序 info-box 键值对布局） */
.md-info-list { border-top: 1px solid #f5f5f5; }
.md-info-row { display: flex; padding: 10px 0; align-items: flex-start; }
.md-info-k { width: 22%; font-size: 14px; color: #999; flex-shrink: 0; line-height: 1.4; }
.md-info-v { width: 28%; font-size: 14px; color: #333; font-weight: 500; line-height: 1.4; word-break: break-all; }
.md-info-v2 { font-size: 14px; color: #333; font-weight: 500; flex: 1; line-height: 1.4; word-break: break-all; }
.md-info-full { display: flex; padding: 10px 0; align-items: flex-start; }
.md-info-full .md-info-k { width: 22%; flex-shrink: 0; }

/* 描述文本 */
.md-desc-text { font-size: 13px; color: #555; line-height: 1.85; word-break: break-all; }

/* 地图区域（对齐小程序 map-wrap + circum-row） */
.md-map-card { padding-bottom: 8px; }
.md-map-wrap { width: 100%; height: 240px; border-radius: 8px; overflow: hidden; margin-bottom: 12px; background: #f0f0f0; }
.md-map-iframe { width: 100%; height: 100%; border: none; }
.md-circum-row { display: flex; gap: 0; }
.md-circum-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 12px 0; text-decoration: none; color: #666; font-size: 12px; border-right: 1px solid #f0f0f0; }
.md-circum-item:last-child { border-right: none; }
.md-circum-item i { font-size: 18px; }

/* 表单样式 */
.md-contact-form { padding: 0; }
.md-f-group { margin-bottom: 10px; }
.md-f-group input, .md-f-group textarea { width: 100%; height: 44px; border: 1px solid #eee; border-radius: 8px; padding: 0 14px; font-size: 14px; outline: none; background: #fafafa; transition: border-color .2s; box-sizing: border-box; -webkit-appearance: none; appearance: none; }
.md-f-group textarea { height: 80px; padding: 10px 14px; resize: vertical; }
.md-f-group input:focus, .md-f-group textarea:focus { border-color: var(--primary); background: #fff; }
.md-btn-submit { width: 100%; height: 46px; background: var(--primary); color: #fff; border: none; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; margin-top: 4px; transition: opacity .2s; }
.md-btn-submit:active { opacity: .85; }

/* 底部固定工具栏（对齐小程序 footfixed） */
.md-bottom-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 100; background: #fff; display: flex; align-items: center; border-top: 1px solid #e5e5e5; height: 52px; padding: 0 4px; box-shadow: 0 -1px 6px rgba(0,0,0,.06); }
.md-tool-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; flex: 1; text-decoration: none; color: #666; gap: 2px; height: 100%; }
.md-tool-btn.on { color: var(--primary); }
.md-tool-icon { width: 22px; height: 22px; object-fit: contain; }
.md-tool-txt { font-size: 10px; line-height: 1; }
.md-tool-nav { display: flex; align-items: center; justify-content: center; gap: 4px; padding: 0 14px; height: 32px; border: 1px solid var(--primary); color: var(--primary) !important; border-radius: 16px; font-size: 12px; font-weight: 500; text-decoration: none; margin: 0 6px; white-space: nowrap; }
.md-tool-nav:active { background: var(--primary-light); }
.md-tool-contact { display: flex; align-items: center; justify-content: center; gap: 4px; flex: 1.2; height: 36px; background: var(--primary); color: #fff !important; border-radius: 17px; font-size: 14px; font-weight: 600; text-decoration: none; margin-right: 6px; white-space: nowrap; }
.md-tool-contact:active { opacity: .88; }
.md-bottom-spacer { display: none; }
