﻿
/* CSS Document - Refactored UI 2025-12-18 */

/* ================== Reset & Base ================== */
body {
    background: #f5f7fa;
    font-family: "Microsoft YaHei", Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

a {
    color: #555;
    text-decoration: none;
    transition: color .2s;
}

a:hover {
    color: #3266A0;
}

img {
    border: none;
}

ul,
li,
p,
h1,
h2,
h3,
figure {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ================== Layout Containers ================== */
.content,
.smallnav .cont,
.top .cont,
.infoTZ,
.footer .cont {
    width: 1200px;
    margin: 0 auto;
}

/* ================== Small Nav ================== */
.smallnav {
    width: 100%;
    height: 40px;
    background: #3266A0;
}

.smallnav .cont {
    height: 40px;
    line-height: 40px;
    color: #FFF;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.smallnav .cont a {
    color: #FFF;
}

.smallnav .cont .r a:hover {
    text-decoration: none;
    opacity: 0.8;
}

/* ================== Top Header ================== */
.top {
    width: 100%;
    height: 70px;
    background: #FFF;
    border-bottom: 1px solid #EEE;
    margin-bottom: 20px;
}

.top .cont {
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
}

.top .cont .l {
    margin-top: 0;
    display: flex;
    align-items: flex-end;
}

.top .cont .l .nav {
    margin-left: 20px;
    font-size: 14px;
    color: #555;
    line-height: normal;
    padding-bottom: 5px; /* Fine-tune alignment */
}

.top .cont .l .nav a {
    text-decoration: none;
}
.top .cont .l .nav a:hover {
    text-decoration: none;
    color: #3266A0;
}
.top .cont .l .nav a:first-child {
    font-weight: bold;
}

.top .cont .l .nav h1 {
    display: inline;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
    padding: 0;
}


.top .cont .m {
    margin: 0;
}

.top .cont .m form {
    display: flex;
    align-items: center;
}

.top .cont .m .kw {
    border: 2px solid #3266A0;
    height: 32px;
    padding: 0 10px;
    width: 300px;
    outline: none;
    font-size: 14px;
    border-right: none;
    color: #333;
    border-radius: 4px 0 0 4px;
}

.top .cont .m .submit {
    background: #3266A0;
    color: #fff;
    border: none;
    height: 36px;
    width: 70px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 0 4px 4px 0;
    font-weight: bold;
}

.top .cont .m .submit:hover {
    background: #2857a0;
}

/* ================== Breadcrumb ================== */
.top .nav,
.content .nav {
    margin: 0;
    color: #555;
    font-size: 14px;
}

.top .nav a,
.content .nav a {
    color: #555;
}

.top .nav a:hover,
.content .nav a:hover {
    color: #3266A0;
    text-decoration: none;
}

/* ================== Filter Section (.nav2) ================== */
.nav2 {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    padding: 20px 25px;
    margin-bottom: 20px;
    color: #333;
}

.nav2 .filter-row {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    align-items: flex-start;
}

.nav2 .filter-row:last-child {
    border-bottom: none;
}

.nav2 .s1 {
    width: 80px;
    font-weight: bold;
    color: #333;
    line-height: 26px;
    text-align: right;
    padding-right: 15px;
    font-size: 15px;
}

/* Filter Toggle Button */
.filter-toggle {
    text-align: center;
    cursor: pointer;
    color: #666;
    font-size: 13px;
    padding: 8px 0;
    border-top: none;
    margin-top: 5px;
    transition: color 0.2s;
}

.filter-toggle:hover {
    color: #3266A0;
}

.filter-toggle .iconfont {
    font-size: 12px;
    margin-left: 4px;
    transition: transform 0.3s;
    display: inline-block;
}

.filter-toggle.open {
    border-top: 1px dashed #eee;
}

.filter-toggle.open .iconfont {
    transform: rotate(180deg);
}

.nav2 .s2 {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
}

.nav2 .s2>div {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
}

/* 2025-12-30 quyu2样式: 城市二级选择器换行显示 */
.quyu2 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
    margin-top: 8px;
    padding: 10px 12px;
    border-top: 1px dashed #eee;
    background: #f8fafc;
    border-radius: 4px;
}

.nav2 .s2 a,
.nav22 a {
    padding: 2px 10px;
    border-radius: 4px;
    color: #666;
    line-height: 24px;
    white-space: nowrap;
}

.nav2 .s2 a:hover,
.nav22 a:hover {
    color: #3266A0;
    background: #eff6ff;
    text-decoration: none;
}

.nav2 .s2 .ck,
.nav22 .ck {
    background: #F4841A;
    color: #fff;
}

.nav2 .s2 .ck:hover,
.nav22 .ck:hover {
    background: #F4841A;
    color: #fff;
    text-decoration: none;
}

/* Selected Tags Bar (.s3) */
.nav2 .s3 {
    background: #f9f9f9;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    color: #666;
    margin-top: 5px;
}

.nav2 .s3 div {
    margin-right: 10px;
}

.nav2 .s3 ul {
    display: flex;
    font-size: 12px;
}

.nav2 .s3 ul li {
    border: 1px solid #F4841A;
    background: #fff;
    padding: 2px 6px;
    margin-right: 8px;
    display: flex;
    align-items: center;
    border-radius: 2px;
}

.nav2 .s3 ul li a {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: url(/qietu/img/xx.png) no-repeat center;
    margin-left: 5px;
}

/* Dropdown Filter (.nav22) */
.nav22 {
    display: flex;
    flex-direction: column;
    line-height: 24px;
}

.nav22 input {
    width: 50px;
    padding: 2px;
    border: 1px solid #ddd;
    margin: 0 5px;
    border-radius: 2px;
    font-size: 12px;
}

.nav22 button {
    border: none;
    background: #eee;
    padding: 2px 8px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 12px;
    margin-left: 3px;
}

.nav22 .L4 {
    padding-left: 10px;
}



/* ================== Main Lists Area ================== */
.lists {
    margin-top: 0;
}



/* List Content Wrapper (.list3) */
.lists .list3 {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: none;
}

/* Left Column (.listL) */
.lists .list3 .listL {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    padding: 0;
    border: none;
    min-width: 0;
}

/* Right Column (.listR) */
.lists .list3 .listR {
    width: 200px;
    flex-shrink: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
}

.lists .list3 .listL .listTuiJian {
    height: 40px;
    line-height: 40px;
    color: #999;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

/* List Item (.list-item) */
/* List Item (.list-item) */
.list-item {
    display: flex;
    padding: 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background .2s;
    padding: 24px 30px;
    align-items: flex-start;
}

.list-item:hover {
    background: #fafafa;
}

.list-item .l {
    display: none;
}

.list-item .m {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    border: none;
    min-width: 0; /* Enable truncation */
}

.list-item .m .t {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    line-height: 24px;
    flex-wrap: wrap; 
}

.list-item .m .t a {
    color: #333;
    margin-right: 5px;
}

.list-item .m .t a:hover {
    color: #F4841A;
    text-decoration: none;
}

.city-tag {
    font-weight: normal;
    color: #3266A0;
    margin-right: 8px;
}
.city-tag a {
    color: #3266A0 !important;
}

.list-item .t .date {
    font-size: 12px;
    color: #999;
    font-weight: normal;
    margin-left: auto;
}

.tags-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    align-items: center;
}

.tags-row .tag {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    color: #555;
    background: #f5f7fa;
    border: 1px solid #ebedf0;
    line-height: normal;
}



.list-item .m .c {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    height: auto;
    overflow: hidden;
    margin-bottom: 5px;
    width: auto;
    text-align: justify;
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
}



.list-item .r {
    width: 150px;
    text-align: right;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 0;
    border: none;
    height: auto;
    align-self: center;
}

.jq {
    font-family: Arial;
    font-size: 18px;
    color: #F4841A;
    font-weight: bold;
    text-align: right;
}

.jq span {
    font-size: 20px;
}

.jq2 {
    color: #999;
    font-size: 12px;
    margin-top: 4px;
    line-height: 2.2;
    text-align: right;
}

.my {
    font-size: 20px;
    color: #F4841A;
    font-weight: bold;
    text-align: right;
}

.mj {
    font-size: 14px;
    color: #666;
    margin-top: auto;
    line-height: 2.2;
    text-align: right;
}

/* Right Sidebar (.listR) */
.lists .list3 .listR {
    width: 300px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.lists .list3 .listR .ra,
.lists .list3 .listR .rc {
    width: 100%;
    margin: 0 auto 15px;
    text-align: center;
}

.lists .list3 .listR img {
    max-width: 100%;
    border-radius: 4px;
}

/* Recommendation Title in Sidebar */
.lists .list2 {
    background: #f2f2f2;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e6e6e6;
    height: auto;
    line-height: normal; /* fix alignment */
    padding: 15px; /* Increase padding for list2 */
}

.lists .list2 h1,
.lists .list2 h2 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.lists .list2 .L2 a {
    color: #3266A0;
    font-size: 12px;
}



/* ================== Pagination ================== */
.pagelist {
    padding: 40px 0;
    text-align: center;
}

.pagelist ul {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagelist ul li {
    display: inline;
    margin: 0 5px;
}

.pagelist a {
    font-size: 14px;
    color: #555;
    border: 1px solid #ddd;
    padding: 6px 12px;
    background: #fff;
    border-radius: 4px;
    display: inline-block;
}

.pagelist a:hover {
    background: #f5f5f5;
    color: #3266A0;
    border-color: #3266A0;
}

.pagelist font {
    font-size: 14px;
    color: #fff;
    background: #3266A0;
    padding: 6px 12px;
    border: 1px solid #3266A0;
    border-radius: 4px;
    font-weight: normal;
}

/* ================== Footer ================== */
/* ================== Footer ================== */
/* ================== Footer ================== */
.footer {
    width: 100%;
    background: #fff;
    border-top: 1px solid #e7e7e7;
    padding: 40px 0;
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.footer .cont {
    width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #666;
}

.footer .c1 {
    margin-bottom: 15px;
}

.footer .c1 a {
    margin: 0 8px;
    color: #555;
    text-decoration: none;
}

.footer .c1 a:hover {
    color: #FF5A00;
    text-decoration: none;
}

.footer .c1 .sep {
    color: #dcdcdc;
}

.footer .c2 {
    color: #999;
    font-size: 13px;
    font-family: Arial, sans-serif;
    padding: 0;
}

.footer .c2 a {
    color: #999;
    text-decoration: none;
}

.footer .c2 a:hover {
    color: #FF5A00;
    text-decoration: none;
}

/* Free Publish Button */
.btn-pub {
    display: inline-block;
    height: 34px;
    line-height: 34px;
    padding: 0 20px;
    background: #F4841A;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.2s;
    margin-bottom: 2px;
}

.btn-pub:hover {
    background: #e67610;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(244, 132, 26, 0.3);
}

/* ================== Helpers ================== */
.clink,
.link {
    font-size: 12px;
    overflow: hidden;
    margin-top: 5px;
}

.clink, .link {
    display: flex;
    flex-wrap: wrap;
}

.clink li,
.link li {
    line-height: 24px;
    text-align: center;
    padding: 5px 12px;
}

.clink a,
.link a {
    color: #999;
}

.clink a:hover,
.link a:hover {
    color: #ED1C24;
    text-decoration: underline;
}

.box {
    background: #fff;
    margin-bottom: 10px;
    padding: 20px 25px;
    border-radius: 4px;
}

.box .t2 {
    color: #666;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    font-weight: bold;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.search-history {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 70px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 280px;
    overflow-y: auto;
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

.clear-history {
    color: #3266A0;
    font-size: 12px;
    font-weight: normal;
    cursor: pointer;
}

.clear-history:hover {
    color: #2850a0;
    text-decoration: underline;
}

.history-list {
    padding: 0;
    margin: 0;
}

.history-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s, color 0.2s;
}

.history-item:last-child {
    border-bottom: none;
}

.history-item i {
    font-size: 14px;
    color: #999;
    margin-right: 8px;
}

.history-item .keyword {
    flex: 1;
    font-size: 14px;
    color: #555;
}

.history-item:hover,
.history-item.active {
    background: #f0f7ff;
    color: #3266A0;
}

.history-item:hover .keyword,
.history-item.active .keyword {
    color: #3266A0;
}

.history-item:hover i,
.history-item.active i {
    color: #3266A0;
}

/* Search Suggestions Dropdown */
.search-suggestions {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 70px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 320px;
    overflow-y: auto;
}

.suggestions-list {
    padding: 0;
    margin: 0;
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s, color 0.2s;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item i {
    font-size: 14px;
    color: #999;
    margin-right: 8px;
    flex-shrink: 0;
}

.suggestion-item .keyword {
    flex: 1;
    font-size: 14px;
    color: #555;
}

.suggestion-item .keyword strong {
    color: #3266A0;
    font-weight: 600;
}

.suggestion-item .count {
    font-size: 12px;
    color: #999;
    margin-left: 10px;
    flex-shrink: 0;
}

.suggestion-item:hover,
.suggestion-item.active {
    background: #f0f7ff;
}

.suggestion-item:hover .keyword,
.suggestion-item.active .keyword {
    color: #3266A0;
}

.suggestion-item:hover i,
.suggestion-item.active i {
    color: #3266A0;
}

.suggestion-item:hover .count,
.suggestion-item.active .count {
    color: #3266A0;
}




.back-to-top {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 15l-6-6-6 6'/%3E%3C/svg%3E");
	background-color: rgba(50, 102, 160, 0.8);
	background-size: 24px;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 50%;
	bottom: 50px;
	height: 44px;
	width: 44px;
	position: fixed;
	left: 50%;
	margin-left: 610px;
	z-index: 99;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	display: none;
	transition: background-color 0.3s, transform 0.3s;
}
.back-to-top:hover { background-color: #3266A0; transform: translateY(-3px); }

/* Helpers */
.tags-row .qy { display: inline-block; font-size: 12px; font-weight: normal; padding: 2px 8px; background: #eef2f7; color: #3266A0; border-radius: 12px; margin-right: 5px; cursor: default; }

/* Empty Result UI - Redesigned */
.no-result-box { padding: 30px; text-align: center; background: #fff; border-radius: 8px; margin-bottom: 25px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid #f0f0f0; }
.no-result-box i { font-size: 36px; color: #cbd5e0; margin-bottom: 12px; }
.no-result-text { font-size: 15px; color: #555; font-weight: 500; margin-bottom: 6px; }
.no-result-sub { color: #999; font-size: 13px; }
.recommend-title { margin: 30px 0 10px; font-weight: bold; color: #333; font-size: 15px; text-align: left; padding-left: 10px; border-left: 4px solid #3266A0; }

/* Result Count Badge */
.result-count {
    font-size: 14px;
    font-weight: normal;
    color: #999;
    margin-left: 8px;
}

/* Hot Search Section */
.hot-search-wrapper {
    background: #fff;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.hot-search-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    margin-right: 15px;
    white-space: nowrap;
}

.hot-search-label i {
    color: #ff6b6b;
    margin-right: 5px;
}

.hot-search-tags {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hot-tag {
    display: inline-block;
    padding: 5px 12px;
    background: #f5f7fa;
    color: #555;
    font-size: 13px;
    border-radius: 16px;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.hot-tag:hover {
    background: #3266A0;
    color: #fff;
    border-color: #3266A0;
    transform: translateY(-1px);
}

.no-hot {
    color: #999;
    font-size: 13px;
}

/* ========================================
   Mobile Responsive Styles
   ======================================== */

@media screen and (max-width: 768px) {
    /* Layout */
    .content, .smallnav .cont, .top .cont {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    /* Top Navigation */
    .top {
        height: auto;
        padding: 10px 0;
    }
    
    .top .cont {
        flex-direction: column;
        align-items: stretch;
    }
    
    .top .cont .l {
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .top .cont .l img {
        height: 40px;
        width: auto;
    }
    
    .top .cont .l .nav {
        display: none;
    }
    
    /* Search Form */
    .top .cont .m form {
        width: 100%;
    }
    
    .top .cont .m .kw {
        width: 100%;
        height: 40px;
        font-size: 16px;
    }
    
    .top .cont .m .submit {
        height: 44px;
        width: 80px;
    }
    
    /* Hot Search */
    .hot-search-wrapper {
        padding: 12px 15px;
    }
    
    .hot-search-label {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .hot-tag {
        font-size: 12px;
        padding: 4px 10px;
    }
    
    /* Search Results */
    .lists .list3 {
        flex-direction: column;
    }
    
    /* 移动端隐藏列表页右侧广告区域 - 2025-12-28 */
    .lists .list3 .listR {
        display: none;
    }
    
    /* 移动端隐藏详情页右侧广告图片 - 2025-12-28 */
    .contR .a {
        display: none;
    }
    
    /* List Items */
    .list-item {
        flex-direction: column;
        padding: 15px;
    }
    
    .list-item .l {
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
        margin-right: 0;
        margin-bottom: 12px;
    }
    
    .list-item .m {
        width: 100%;
    }
    
    .list-item .m .t {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .list-item .m .c {
        font-size: 13px;
        height: auto;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .list-item .r {
        width: 100%;
        height: auto;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #f0f0f0;
    }
    
    .jq, .my {
        font-size: 16px;
        text-align: left;
    }
    
    .mj {
        text-align: right;
        margin-top: 0;
    }
    
    /* Footer */
    .footer {
        padding: 20px 0;
        font-size: 12px;
    }
    
    .footer .cont {
        width: 100%;
    }
    
    /* Small Nav */
    .smallnav {
        display: none;
    }
    
    /* Back to Top Button */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        left: auto;
        margin-left: 0;
        width: 40px;
        height: 40px;
    }
    
    /* Search History Dropdown */
    .search-history-dropdown {
        right: 80px;
    }
}

/* Tablet Portrait */
/* Tablet Portrait - Disabled for Fixed 1200px Requirement */
@media screen and (min-width: 769px) and (max-width: 1024px) {
/*
    .content, .smallnav .cont, .top .cont, .footer .cont {
        width: 750px;
    }
    
    .list-item .l {
        width: 200px;
        height: 150px;
    }
*/
}

/* Enforce 1200px fixed width for Desktop >= 769px */
@media screen and (min-width: 769px) {
    body {
        min-width: 1200px;
        overflow-x: auto;
    }
    .content, .smallnav .cont, .top .cont, .infoTZ, .footer .cont {
        width: 1200px !important;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box; 
    }
}

/* Auto-Complete Suggestions */
.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 70px;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 200;
    max-height: 300px;
    overflow-y: auto;
}

.suggest-item {
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
}

.suggest-item i {
    color: #999;
    margin-right: 10px;
    font-size: 12px;
}

.suggest-item:hover,
.suggest-item.active {
    background: #f8f9fa;
    color: #3266A0;
}

.suggest-count {
    margin-left: auto;
    font-size: 12px;
    color: #999;
}

/* Touch-friendly enhancements */
@media (hover: none) and (pointer: coarse) {
    .hot-tag, .history-item {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .list-item:hover {
        background: transparent;
    }
}

/* ================== Recommendations (.infoTZ) - Synced with list.css ================== */
.infoTZ { width: 1200px; margin: 40px auto 20px; padding-top: 0; }
.infoTZ ul { display: flex; flex-wrap: wrap; justify-content: space-between; padding: 0; list-style: none; }
.infoTZ ul li {
    width: 225px !important; /* Adjusted to prevent wrapping */
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    margin-bottom: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.infoTZ ul li:hover { transform: translateY(-5px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }
.infoTZ ul li img { width: 100%; height: 173px; object-fit: cover; border: none; display: block;}
.infoTZ ul li .team { 
    padding: 12px 15px 5px; font-size: 12px; color: #999; display: flex; justify-content: space-between; 
}
.infoTZ ul li .title { 
    padding: 0 15px 15px; font-size: 15px; font-weight: bold; color: #333; line-height: 1.4; height: 42px; overflow: hidden; 
}
.infoTZ ul li a {
    text-decoration: none;
    color: inherit;
    display: block;
}
.infoTZ ul li a:hover {
    text-decoration: none;
}
.search-input-wrapper { position: relative; display: flex; align-items: center; }
.top .cont .m .kw { border: 2px solid #3266A0; height: 32px; padding: 0 10px; width: 300px; outline: none; font-size: 14px; border-radius: 4px 0 0 4px; }
.top .cont .m .submit { background: #3266A0; color: #fff; border: none; height: 36px; width: 70px; cursor: pointer; font-size: 14px; border-radius: 0 4px 4px 0; font-weight: bold; }

/* ================== 详情页样式覆盖 - 匹配city.99cfw.com风格 2025-12-26 ================== */
/* 全局背景优化 */
body {
    background-color: #f5f7fa;
}

/* 主容器布局升级至1200px - 仅适用于详情页（含 .contL） */
main.content:has(.contL) {
    width: 1200px;
    margin: 20px auto;
    border: none;
    background: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    animation: fadeInUp 0.6s ease-out;
}

/* 列表页布局保持默认block布局 */
main.content:not(:has(.contL)) {
    display: block;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translate3d(0, 20px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* 左侧内容区 */
.content .contL {

    width: 910px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    padding-bottom: 30px;
    border: none;
}

.content .contL .cont {
    width: 840px;
    margin: 0 auto;
    padding-top: 20px;
    position: relative; /* Context for .renzheng */
}

/* 标题区优化 */
.contL .c1 {
    margin: 20px 0 10px 0;
}

.contL .c1 h1 {
    font-size: 26px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
}

/* 信息编号行 */
.contL .c2 {
    color: #888;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

/* 基本信息区 */
.contL .c3 {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

/* 属性列表样式优化 */
.bCCC, .bCCC2, .bCCC3 {
    overflow: hidden;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.bCCC li, .bCCC3 li {
    width: 50%;
    min-height: 42px;
    padding: 8px 0;
    font-size: 15px;
    color: #444;
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
    border-bottom: 1px dashed #e8e8e8;
}

.bCCC2 li {
    width: 100%;
    min-height: 42px;
    padding: 8px 0;
    font-size: 15px;
    color: #444;
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
    border-bottom: 1px dashed #e8e8e8;
}

.bCCC li span, .bCCC2 li span, .bCCC3 li span {
    color: #8898aa;
    min-width: 100px;
    display: inline-block;
    margin-right: 8px;
    font-weight: normal;
}

.bCCC li strong, .bCCC2 li strong, .bCCC3 li strong {
    font-weight: 600;
    color: #FF5A00;
}

.bCCC li a, .bCCC2 li a, .bCCC3 li a {
    color: #3266A0;
    text-decoration: none;
}

.bCCC li a:hover, .bCCC2 li a:hover, .bCCC3 li a:hover {
    color: #FF5A00;
    text-decoration: underline;
}

/* 建筑参数区域 */
.contL .c4 {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.contL .c4 .cont1 h2 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    padding-left: 12px;
    border-left: 4px solid #3266A0;
    margin-bottom: 15px;
}

/* 详情描述区域 */
.contL .c5 .cont1 h2 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    padding-left: 12px;
    border-left: 4px solid #3266A0;
    margin-bottom: 15px;
}

.contL .c5 .cont2 p {
    color: #444;
    margin: 0;
    padding: 15px 5px;
    line-height: 1.8;
    font-size: 15px;
    text-align: justify;
    min-height: 80px;
}

/* 联系方式区域 */
.contL .c6 .cont .cont1 h2 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    padding-left: 12px;
    border-left: 4px solid #3266A0;
    margin-bottom: 15px;
}

/* 右侧边栏 */
.content .contR {

    width: 270px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    padding: 20px;
    box-sizing: border-box;
    position: sticky;
    top: 80px;
}

.content .contR dl {
    width: 100%;
    margin: 0;
}

.content .contR dt {
    color: #333;
    font-size: 15px;
    margin: 15px 0 10px 0;
    line-height: 24px;
    font-weight: bold;
    border-left: 3px solid #3266A0;
    padding-left: 10px;
    border-bottom: none;
}

.content .contR dd {
    margin: 0 -20px;
    padding: 10px 20px;
    line-height: 24px;
    color: #666;
    border-bottom: 1px dashed #f5f5f5;
    transition: background-color 0.2s;
    font-size: 13px;
}

.content .contR dd:hover {
    background-color: #f5f9ff;
}

.content .contR dd a {
    color: #555;
    text-decoration: none;
}

.content .contR dd a:hover {
    color: #3266A0;
}

.content .contR .a {
    width: 100%;
    margin: 0 0 15px 0;
    text-align: center;
}

.content .contR .a img {
    max-width: 100%;
    border-radius: 4px;
}



.footer .cont {
    width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* 移动端适配 - 详情页样式覆盖 (仅768px及以下生效) - 2025-12-28 */
@media (max-width: 768px) {
    /* 防止横向滚动条 - 全局设置 */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .content, .top .cont, .smallnav .cont, .footer .cont {
        width: 100% !important;
        padding: 0 15px;
        box-sizing: border-box;
    }

    /* 详情页主容器适配 */
    main.content:has(.contL) {
        width: 100% !important;
        flex-direction: column;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .content {
        flex-direction: column;
    }

    .content .contL, .content .contR {
        width: 100% !important;
    }

    .content .contL .cont {
        width: 100% !important;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .content .contR {
        margin-top: 20px;
        position: static;
        /* display: none; 移动端隐藏右侧边栏广告 - Removed to show related info */
    }

    .bCCC li, .bCCC3 li {
        width: 100%;
    }

    /* 热门城市区域适配 */
    .w1200-center {
        width: 100% !important;
        padding: 0 15px;
        box-sizing: border-box;
    }

    /* 推荐信息区域适配 */
    .infoTZ {
        width: 100% !important;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .infoTZ ul li {
        width: 48% !important;
    }

    /* 顶部搜索框适配 */
    .top .cont .m {
        width: 100%;
        margin-top: 10px;
        order: 3; /* 搜索框放在最后 */
    }

    .top .cont .m .kw {
        width: calc(100% - 70px);
        flex: 1;
    }

    .top .cont .l {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        overflow: visible;
    }

    .top .cont .l .nav {
        margin-left: 0;
        margin-top: 8px;
        font-size: 12px;
        padding-bottom: 0;
        word-break: break-all;
        line-height: 1.8;
        display: block !important;
        visibility: visible !important;
        overflow: visible;
        width: 100%;
    }

    /* 顶部容器高度适配 */
    .top {
        height: auto !important;
        padding: 10px 0;
        overflow: visible;
    }

    .top .cont {
        height: auto !important;
        flex-wrap: wrap;
        overflow: visible;
    }

    /* 标题区域适配 */
    .contL .c1 h1 {
        font-size: 18px;
        line-height: 1.4;
    }

    /* 列表项适配 */
    .clink li {
        padding: 3px 8px;
    }

    /* 列表区域适配 */
    .box {
        padding: 15px;
    }
}

/* Utility classes for refactoring */
.d-ib { display: inline-block; }
.ml10 { margin-left: 10px; }
.m0 { margin: 0; }
.mt20 { margin-top: 20px; }
.mb10 { margin-bottom: 10px; }
.w100p { width: 100%; }

/* Specific replacements */
.quyu2 {
    display: inline-block;
    margin-left: 10px;
}
.quyu2 a {
    margin: 0;
}
.clink {
    height: auto;
    overflow: hidden; /* Clear floats if any, though flex is preferred */
}
.section-title-wrapper {
    margin-top: 20px;
    margin-bottom: 10px;
}
.section-title-wrapper-small {
    margin-bottom: 10px;
}
.w1200-center {
    width: 1200px;
    margin: 0 auto;
}

/* Restored Missing Classes */
.renzheng {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 10;
}

.duijie {
    margin-top: 15px;
    width: 100%;
}
