* { 
    margin: 0; padding: 0; box-sizing: border-box; 
}
body {
    font-family: 'Segoe UI', 'PingFang SC', Roboto, 'Helvetica Neue', sans-serif;
    background-color: #f5f7fc;
    color: #1e2a3e;
    line-height: 1.5;
    overflow-x: hidden;
}
.container-fluid { padding-left: 0; padding-right: 0; }
.top-win {
    background-color: #2c5a4a;
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
}
/* PC端导航 */
.header {
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 24px;
}
.logo-area a {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, #175a45, #2d8f6e);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-decoration: none;
}
.nav-links-pc {
    display: flex;
    gap: 28px;
    align-items: center;
}
.nav-links-pc a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e44;
    transition: 0.2s;
    cursor: pointer;
}
.nav-links-pc a:hover { color: #2A6B55; }
.contact-tel-pc {
    background: #2A6B55;
    color: white !important;
    padding: 8px 18px;
    border-radius: 40px;
}
/* 移动端侧滑抽屉 */
.mobile-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1001;
}
.logo-mobile a {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #175a45, #2d8f6e);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-decoration: none;
}
.menu-btn { font-size: 28px; cursor: pointer; color: #2c5a4a; background: none; border: none; }
.drawer-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    display: none;
}
.drawer-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 12px rgba(0,0,0,0.15);
    z-index: 2001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
}
.drawer-menu.open { right: 0; }
.drawer-menu .drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eef2f6;
}
.drawer-menu .drawer-header h3 {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #175a45, #2d8f6e);
    background-clip: text;
    color: transparent;
}
.drawer-menu .close-drawer { font-size: 28px; cursor: pointer; color: #6c86a3; }
.drawer-menu a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: #2c3e44;
    text-decoration: none;
    border-bottom: 1px solid #f0f2f5;
}
.drawer-menu a:last-child { border-bottom: none; }
.drawer-menu .drawer-tel {
    margin-top: 30px;
    background: #2A6B55;
    color: white;
    text-align: center;
    border-radius: 40px;
    padding: 12px;
}
@media (max-width: 768px) {
    .header { display: none; }
    .mobile-header { display: flex; }
}
@media (min-width: 769px) {
    .mobile-header, .drawer-overlay, .drawer-menu { display: none; }
}
/* 主体内容 */
.detail-container {
    max-width: 1280px;
    margin: 32px auto;
    padding: 0 24px;
}
.fangyuan-show {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    margin-bottom: 32px;
}
.fangyuan-show-inner {
    display: flex;
    flex-wrap: wrap;
}
.fangyuan-images {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}
.fangyuan-info {
    flex: 1;
    min-width: 300px;
    padding: 20px 30px;
    background: #f9fbfd;
}
/* ========== 价格行样式（仿 right-desc-1） ========== */
.price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.price-num {
    font-size: 38px;
    font-weight: 800;
    color: #D14423;
    line-height: 1.2;
}
.price-currency {
    font-size: 20px;
    font-weight: 700;
    color: #D14423;
    margin-left: 2px;
}
.price-info {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-left: 12px;
    flex-wrap: wrap;
}
.price-per-month {
    font-size: 16px;
    color: #6c86a3;
    font-weight: 500;
}
.price-per-day {
    font-size: 15px;
    color: #6c86a3;
    background: #eef2f6;
    padding: 2px 12px;
    border-radius: 20px;
    font-weight: 500;
}
@media (max-width: 480px) {
    .price-num { font-size: 30px; }
    .price-currency { font-size: 18px; }
    .price-per-month { font-size: 14px; }
    .price-per-day { font-size: 13px; padding: 1px 10px; }
    .price-info { gap: 8px; margin-left: 6px; }
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}
.info-card {
    background: white;
    border-radius: 20px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.info-card .num {
    font-size: 24px;
    font-weight: 700;
    color: #2A6B55;
}
.info-card .label {
    font-size: 13px;
    color: #6c86a3;
}
.contact-box {
    background: white;
    border-radius: 20px;
    padding: 16px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-phone {
    background: #D14423;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.section-card {
    background: white;
    border-radius: 28px;
    padding: 28px;
    margin-bottom: 32px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #0A2E25;
    padding-bottom: 12px;
    border-bottom: 2px solid #eef2f6;
    margin-bottom: 24px;
}
.detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
    gap: 16px;
}
.detail-list .item {
    display: flex;
    border-bottom: 1px dashed #e2e8f0;
    padding: 8px 0;
}
.item-label {
    width: 100px;
    font-weight: 600;
    color: #2d5a48;
}
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
    gap: 16px;
}
.photo-grid img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 20px;
    cursor: pointer;
}
.building-table {
    width: 100%;
}
.building-table tr td {
    padding: 12px;
    border-bottom: 1px solid #eef2f6;
}
.building-table tr td:first-child {
    font-weight: 600;
    width: 120px;
}
.recommend-card {
    background: white;
    border-radius: 28px;
    padding: 20px;
    margin-bottom: 32px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.recommend-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f2f5;
}
.recommend-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 12px;
}
.recommend-item .info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}
/* 地理位置模块 */
.geo-card {
    background: white;
    border-radius: 28px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.geo-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.geo-info-item {
    background: #f9fbfd;
    border-radius: 20px;
    padding: 16px;
}
.geo-info-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2A6B55;
}
.geo-route {
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #e2e8f0;
}
.geo-route .title {
    font-weight: 600;
}
/* 底部 */
.footer-modern {
    background: #0F2A23;
    color: #cbdcd6;
    padding: 48px 0 30px;
    margin-top: 40px;
}
.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f0f7f4;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #2A6B55;
}
.footer-col p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}
.footer-col i { width: 24px; color: #2A6B55; }
.footer-col a { color: #cbdcd6; text-decoration: none; }
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 28px;
    justify-content: center;
}
.footer-nav a { color: #cbdcd6; text-decoration: none; font-size: 14px; cursor: pointer; }
.footer-copyright {
    text-align: center;
    font-size: 12px;
    border-top: 1px solid #2d5a48;
    padding-top: 24px;
}
.fixed-btns {
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 999;
}
.top-btn {
    background: #2A6B55;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.top-btn img { width: 22px; filter: brightness(0) invert(1); }
@media (max-width: 768px) {
    .detail-container { padding: 0 16px; }
    .fangyuan-show-inner { flex-direction: column; }
    .info-grid { gap: 12px; }
    .geo-info-grid { grid-template-columns: 1fr; }
}