/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 85.7292px;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}
body, button, input, select, textarea {
    font: 16px / 1.5 Arial, "Microsoft YaHei", sans-serif;
    color: #333;
}
a{    text-decoration: none}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 顶部导航栏 */
.header {
    background-color: #0066cc;
    color: white;
    padding: 10px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left h1 {
    font-size: 20px;
    font-weight: bold;
}
.header-left h1 img{
    width:1em;

}

.header-right nav ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

.header-right nav ul li {
    margin-left: 20px;
}

.header-right nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.header-right nav ul li a.active {
    color: #ffcc00;
    font-weight: bold;
}

/* 搜索框 */
.search-container {
    padding: 20px 0;
    background-color: #f5f5f5;
}

.search-box {
    display: flex;
    justify-content: center;
}

.search-box input {
    width: 600px;
    height: 40px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
}

.search-btn {
    width: 80px;
    height: 40px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    font-size: 14px;
    cursor: pointer;
}

.search-btn:hover {
    background-color: #0052a3;
}

/* 筛选条件 */
.filter-container {
    padding: 20px 0;
    background-color: white;
    margin-top: 10px;
}

.filter-result-wrapper {
    display: flex;
}

.filter-section {
    width: 250px;
    padding-right: 20px;
    border-right: 1px solid #ddd;
}

.filter-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: bold;
}

.filter-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.filter-label {
    width: 100%;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    background-color: #0066cc;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
}

.range-inputs {
    display: flex;
    align-items: center;
    width: 100%;
}

.range-inputs input {
    width: 80px;
    height: 30px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.range-inputs span {
    margin: 0 10px;
    font-size: 14px;
}

.clear-filter-btn {
    width: 100%;
    height: 35px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 10px;
}

.clear-filter-btn:hover {
    background-color: #0052a3;
}

/* 结果显示 */
.result-section {
    flex: 1;
    padding-left: 20px;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.result-header .result-info {
    margin-bottom: 0;
}

.result-header .view-mode {
    margin-bottom: 0;
}

.result-info {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.view-mode {
    display: flex;
}

.mode-btn {
    padding: 5px 15px;
    margin-left: 10px;
    border: 1px solid #ddd;
    background-color: white;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.mode-btn.active {
    background-color: #0066cc;
    color: white;
    border-color: #0066cc;
}

/* 结果显示 */
.result-container {
    padding: 15px 0;
    background-color: white;
    margin-top: 5px;
}

.result-container .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-info {
    font-size: 14px;
    color: #666;
}

.view-mode {
    display: flex;
}

.mode-btn {
    padding: 5px 15px;
    margin-left: 10px;
    border: 1px solid #ddd;
    background-color: white;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.mode-btn.active {
    background-color: #0066cc;
    color: white;
    border-color: #0066cc;
}

/* 地块列表 */
.plots-container {
    padding: 0 0;
    background-color: white;
}

.plots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

body.is-view-list .plots-grid {
    grid-template-columns: 1fr;
}

body.is-view-grid .plots-grid {
    grid-template-columns: repeat(3, 1fr);
}

.page-land-list.is-view-list .plot-image {
    display: none;
}

.plot-item {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.plot-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.plot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plot-info {
    padding: 15px;
    position: relative;
}

.plot-info a  {
    color: #000;
        text-decoration: none;
}
.plot-info a h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
        text-decoration: none;
}

.plot-info p {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.plot-tag {
    padding: 2px 10px;
    background-color: #8bc24a;
    color: white;
    border-radius: 4px;
    font-size: 18px;
}
.plot-tag.sd{
    background-color: #8bc24a;
}
.plot-tag.bs{
    background-color: #f8ce5b;
}
.plot-tag.cbtd{
    background-color: #f85f5b;
}
/* 厂房列表 */
.factories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

body.is-view-list .factories-grid {
    grid-template-columns: 1fr;
}

body.is-view-grid .factories-grid {
    grid-template-columns: repeat(2, 1fr);
}

.page-factory-list.is-view-list .factory-image {
    display: none;
}

.factory-item {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.factory-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.factory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.factory-info {
    padding: 15px;
}

.factory-info h4 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}
.factory-info h4 a{
     color: #333;
}

.factory-info p {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.factory-info p.factory-desc {
    font-size: 12px;
    color: #666;
    margin: 10px 0;
    line-height: 1.4;
}

.inquiry-btn {
    display: inline-block;
    text-align: center;
    width: 100%;
    height: 35px;
    line-height: 35px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 10px;
}

.inquiry-btn:hover {
    background-color: #0052a3;
}

/* 分页控件 */
.pagination-container {
    padding: 20px 0;
    background-color: white;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.page-btn{
    padding: 5px 10px;
    margin-right: 5px;
    border: 1px solid #ddd;
    background-color: white;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
        color: #333;
}

.page-btn.active {
    background-color: #0066cc;
    color: white;
    border-color: #0066cc;
}
.page a{
    padding: 5px 10px;
    margin-right: 5px;
    border: 1px solid #ddd;
    background-color: white;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
        color: #333;
}

.page a.current {
    background-color: #0066cc;
    color: white;
    border-color: #0066cc;
}


/* 地块详情页面 */
.page-detail {
    background-color: #f2f4f8;
}

.detail-container {
    padding: 24px 0 40px;
}

.back-btn-container {
    margin-bottom: 16px;
}

.back-btn {
    display: inline-block;
    padding: 6px 18px;
    background-color: #f5f6fa;
    color: #333;
    text-decoration: none;
    border-radius: 16px;
    font-size: 14px;
    border: 1px solid #e0e3eb;
}

.back-btn:hover {
    background-color: #e6ecf7;
}

.land-info-section {
    margin-bottom: 24px;
}

.land-info-card {
    display: grid;
    grid-template-columns: 1.4fr 1.6fr;
    gap: 24px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    padding: 24px;
}

.land-media {
    display: flex;
    flex-direction: column;
}

.land-image {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.land-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.land-info-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 600;
}

.land-info-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.land-info-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}

.meta-label {
    color: #000000;
}

.meta-value {
    color: #000000;
}

.land-info-body {
    padding-top: 4px;
}

.land-info-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 5px;
    font-size: 14px;
    color: #333;
}

.land-info-row {
    display: flex;
        align-items: center;
}

.info-label {
    color: #6b6f7c;
}
.font-weight600{
    font-weight: 600;
}
.font-color-red{
        flex: 1;
    color: #f00;
    font-weight: 600;
    font-size: 18px;
}
.info-value {
    flex: 1;
    color: #333;
}

.info-tag {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    vertical-align: middle;
}

.info-tag-green {
    background-color: #e6f7e9;
    color: #2e8b57;
}

.info-tag-blue {
    background-color: #e6f1ff;
    color: #1b57c4;
}

.info-tag-red {
    background-color: #ffecec;
    color: #cc3d3d;
}

.land-info-actions {
    margin-top: 20px;
    text-align: right;
}

.interest-btn {
    min-width: 120px;
    padding: 8px 24px;
    background-color: #1b57c4;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
}

.interest-btn:hover {
    background-color: #1648a1;
}

.land-location-section {
    margin-top: 8px;
}

.location-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.location-tabs {
    display: flex;
    background-color: #f0f3fa;
}

.location-tabs .tab-btn {
    flex: 1;
    padding: 10px 16px;
    border-radius: 0;
    border: none;
    font-size: 14px;
    cursor: pointer;
    background-color: transparent;
    color: #555;
}

.location-tabs .tab-btn.active {
    background-color: #1b57c4;
    color: #fff;
}

.detail-map-container {
}

.detail-map-inner {
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
}

.detail-map-image {
    width: 100%;
    display: block;
}

.detail-map-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background-color: #f9fafc;
    font-size: 12px;
    color: #666;
}

.detail-map-coord {
    white-space: nowrap;
}

.detail-map-source {
    text-align: right;
}

/* 土地一张图页面 */
.map-container {
    background-color: white;
    padding: 20px 0;
    margin-top: 10px;
}

.map-content {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0px;
}

.map-filters {
    width: 300px;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.filter-group {
    margin-bottom: 15px;
}

.filter-group label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.filter-group select {
    width: 100%;
    height: 35px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.filter-btn {
    width: 100%;
    height: 35px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 10px;
}

.filter-btn:hover {
    background-color: #0052a3;
}

.land-list {
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.land-list h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.land-list ul {
    list-style: none;
    max-height: 300px;
    overflow-y: auto;
}

.land-list li {
    padding: 10px;
    border-bottom: 1px solid #eee;
    font-size: 12px;
    color: #666;
}

.land-list li span {
    display: block;
    margin-bottom: 2px;
}

.land-list-footer {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.expand-btn, .collapse-btn {
    flex: 1;
    height: 30px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
}

.map-area {
    flex: 1;
    position: relative;
    height: 600px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.map-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-legend {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 4px;
    font-size: 12px;
    color: #333;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    margin-right: 8px;
}

.legend-color熟地 {
    background-color: #4CAF50;
}

.legend-color半熟地 {
    background-color: #FFC107;
}

.legend-color储备土地 {
    background-color: #F44336;
}

.fullscreen-btn {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    width: 100%;
}

/* 土地一览表 */
.land-overview {
    background-color: white;
    padding: 20px 0;
    margin-top: 10px;
}

.land-overview h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.overview-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.overview-card {
    width: 200px;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.overview-card.total {
    background-color: #0066cc;
}

.overview-card.hot {
    background-color: #4CAF50;
}

.overview-card.hot {
    background-color: #8BC34A;
}

.overview-card.semi {
    background-color: #FFC107;
}

.overview-card.reserve {
    background-color: #F44336;
}

.card-number {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-label {
    font-size: 16px;
}

/* 快捷服务和服务指南 */
.quick-service-guide {
    background-color: #f5f5f5;
    padding: 20px 0;
    margin-top: 10px;
}

.quick-service-guide .container {
    display: flex;
    gap: 30px;
}

.quick-service {
    flex: 1;
    background-color: white;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quick-service h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    background-color: #0066cc;
    color: white;
    padding: 10px 15px;
    border-radius: 4px;
}

.service-cards {
    display: flex;
    gap: 20px;
}

.service-card {
    flex: 1;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #0066cc;
}

.service-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.service-guide {
    width: 500px;
    background-color: white;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-guide h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    background-color: #0066cc;
    color: white;
    padding: 10px 15px;
    border-radius: 4px;
}

.guide-list {
    list-style: none;
}

.guide-list li {
    padding: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.guide-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.guide-list li a {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}

.guide-list li a:hover {
    color: #0066cc;
}

.guide-list .guide-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
    text-align: right;
}

.guide-list .guide-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* 服务指南页面 */
.guide-container {
    padding: 20px 0;
    background-color: #f5f5f5;
}

.guide-content {
    display: flex;
    gap: 30px;
}

.guide-list {
    flex: 1;
    background-color: white;
    padding: 20px;
    border-radius: 4px;
}

.guide-list h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    background-color: #0066cc;
    color: white;
    padding: 10px 15px;
    border-radius: 4px;
}

.guide-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}
.guide-item .tit_tim{
    display: flex;
    justify-content: space-between;
}

.guide-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.guide-item h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.guide-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
    text-align: right;
}

.guide-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.guide-pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.contact-info {
    width: 300px;
    background-color: white;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    background-color: #0066cc;
    color: white;
    padding: 10px 15px;
    border-radius: 4px;
}

.contact-item {
    margin-bottom: 20px;
    padding-left: 1em;
}

.contact-item h3 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.contact-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.quick-links {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
}

.quick-link-btn.green {
    background-color: #4CAF50;
}

.quick-link-icon {
    font-size: 20px;
    margin-right: 10px;
}

.quick-link-text {
    font-size: 16px;
}
#total-count{
        color: #e91010;
}



/* Tab 切换栏 */
.tab-bar {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 2px solid #0066cc;
}

.tab-item {
    display: inline-block;
    padding: 10px 30px;
    font-size: 16px;
    color: #666;
    text-decoration: none;
    background-color: #f0f0f0;
    border-radius: 4px 4px 0 0;
    margin-right: 5px;
    transition: all 0.2s;
}

.tab-item:hover {
    color: #0066cc;
    background-color: #e0e0e0;
}

.tab-item.active {
    background-color: #0066cc;
    color: white;
    font-weight: bold;
}

/* 已成交土地列表 */
.traded-list {
    flex: 1;
    background-color: white;
    padding: 20px;
    border-radius: 4px;
}

.traded-items {
    list-style: none;
}

.traded-item {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    gap: 15px;
}

.traded-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.li-content-img {
    flex-shrink: 0;
    width: 224px;
}

.li-content-img img {
    width: 224px;
    height: 141px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid #eee;
}

.li-content {
    flex: 1;
    min-width: 0;
}

.li-content-title {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.li-content-title .status {
    display: inline-block;
    padding: 2px 10px;
    font-size: 12px;
    border-radius: 2px;
    color: white;
    white-space: nowrap;
}

.li-content-title .status.tradedStatus {
    background-color: #4CAF50;
}

.li-content-title .title {
    font-size: 16px;
    font-weight: bold;
}

.li-content-title .title a {
    color: #0066cc;
    text-decoration: none;
}

.li-content-title .title a:hover {
    text-decoration: underline;
}

.li-content-main {
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    gap: 5px 0;
}

.li-content-main .marginR20 {
    margin-right: 20px;
}

.li-content-position {
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.li-content-user {
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.li-content-buyer {
    font-size: 14px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.li-content-buyer .buyer-content {
    color: #0066cc;
}

#total-count{
        color: #e91010;
}
/* 底部信息 */
/*
.footer {
    background-color: white;
    margin-top: 10px;
    padding: 20px 0;
    border-top: 1px solid #ddd;
}

.footer-links {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 12px;
    margin: 0 10px;
}

.footer-info {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}

.footer-logos {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.footer-logos img {
    width: 40px;
    height: 40px;
    margin: 0 10px;
}

.footer-copyright {
    text-align: center;
    font-size: 12px;
    color: #666;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}
*/
.footer a{color: #333;text-decoration: none;}

.page-land-list .filter-section {
    width: 100%;
    padding-right: 0;
    border-right: none;
}

.page-land-list .filter-section h3 {
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: bold;
    color: #333;
}

.page-land-list .filter-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.page-land-list .filter-label {
    width: 84px;
    flex: 0 0 84px;
    font-size: 12px;
    color: #fff;
    margin-bottom: 0;
    background-color: #0066cc;
    padding: 4px 10px;
    border-radius: 2px;
    text-align: center;
    line-height: 18px;
}

.page-land-list .filter-btn {
    width: auto;
    height: 26px;
    padding: 0 12px;
    margin-top: 0;
    background-color: #fff;
    color: #333;
    border-radius: 2px;
    font-size: 12px;
}

.page-land-list .filter-btn:hover {
    background-color: #f0f6ff;
    border-color: #91c2ff;
}

.page-land-list .filter-btn.active {
    background-color: #0066cc;
    border-color: #0066cc;
    color: #fff;
}

.page-land-list .filter-btn.active:hover {
    background-color: #0052a3;
    border-color: #0052a3;
}

.page-index {
    --header-h: 52px;
}

.page-index .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    height: var(--header-h);
    padding: 0;
}

.page-index .header .container {
    height: 100%;
}
.header .syx{
    height: 52px;
    position: absolute;
    right: 0;
    top: 0;
}
.page-index .map-container {
    background-color: transparent;
    padding: 0;
    margin-top: 0;
}

.page-index .map-screen {
    position: relative;
    height: calc(100vh - var(--header-h));
    margin-top: var(--header-h);
    overflow: hidden;
}

.page-index .map-screen-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-index .map-mode-label {
    position: absolute;
    top: 14px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
    z-index: 2;
    user-select: none;
}

.page-index .map-mode-label-left {
    left: 14px;
}

.page-index .map-mode-label-right {
    right: 14px;
}

.page-index .map-panel {
    position: absolute;
    top: 62px;
    bottom: 20px;
    z-index: 9999;
    background: rgba(0, 128, 255, 0.6);
    backdrop-filter: blur(6px);
    border-radius: 4px;
    color: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.page-index .map-panel-left {
    left: 20px;
    width: 400px;
    display: flex;
    flex-direction: column;
    max-height: 600px;
}

.page-index .map-panel-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.10);
    pointer-events: none;
}

.page-index .map-panel-left > * {
    position: relative;
    z-index: 1;
}

.page-index .map-panel-right {
    right: 20px;
    width: 160px;
    top: 62px;
    bottom: auto;
    padding-bottom: 12px;
}

.page-index .map-panel-header {
    height: 38px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    font-size: 14px;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.08);
}

.page-index .panel-header-icon {
    width: 18px;
    margin-right: 8px;
    font-weight: bold;
}

.page-index .panel-header-title {
    letter-spacing: 0.2px;
}

.page-index .quick-filter {
    padding: 12px 14px 0;
}

.page-index .quick-filter-row {
    display: grid;
    grid-template-columns: 1fr 92px;
    align-items: center;
    margin-bottom: 12px;
}

.page-index .quick-filter-select {
    -webkit-appearance: none;
    appearance: none;
    height: 34px;
    padding: 0 12px;
    border-radius: 10px 0 0 10px;
    border: 0;
    background: #fff;
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(40, 40, 40, 0.6) 50%),
        linear-gradient(135deg, rgba(40, 40, 40, 0.6) 50%, transparent 50%),
        linear-gradient(to right, transparent, transparent);
    background-position:
        calc(100% - 18px) 14px,
        calc(100% - 12px) 14px,
        calc(100% - 44px) 0.55em;
    background-size:
        6px 6px,
        6px 6px,
        1px 1.6em;
    background-repeat: no-repeat;
    color: #333;
    outline: none;
}

.page-index .quick-filter-select option {
    color: #333;
}

.page-index .quick-filter-chip {
    height: 34px;
    border-radius: 0 4px 4px 0;
    border: 0;
    background: rgb(0 91 182 / 95%);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

.page-index .land-table {
    margin: 8px 14px 0;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1;
}

.page-index .land-table-header {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 0.7fr 0.7fr;
    gap: 10px;
    padding: 8px 22px 8px 8px;
    font-size: 12px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
}
.page-index .land-table-header span{
    text-align: center;
}
.page-index .land-table-body {
    list-style: none;
    overflow: auto;
    padding-right: 6px;
    padding-bottom: 6px;
}


/* 滚动条样式*/
/* 自定义滚动条样式 - WebKit 浏览器 (Chrome/Edge/Safari) */
#landList::-webkit-scrollbar {
  width: 10px; /* 滚动条宽度 */
}

#landList::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.15); /* 轨道背景色，适配蓝色背景 */
  border-radius: 10px;
}

#landList::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.7); /* 滑块颜色 */
  border-radius: 10px;
}

#landList::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.9); /* 滑块 hover 效果 */
}

/* Firefox 浏览器兼容 */
#landList {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.7) rgba(255, 255, 255, 0.15);
}

/*滚动条样式*/


.page-index .land-table-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 0.7fr 0.7fr;
    gap: 10px;
    padding: 10px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    align-items: center;
        cursor: pointer;
}

.page-index .land-table-row:hover {
    background: rgba(255, 255, 255, 0.08);
}
.page-index .land-table-row span{
    text-align: center;
}
.page-index .col-action-link {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: bold;
}

.page-index .col-action-link:hover {
    text-decoration: underline;
}

.page-index .map-panel-bottom {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-index .panel-chevron {
    width: 34px;
    height: 34px;
    cursor: pointer;
    background:url(more_down20260421.png);
    background-repeat: no-repeat;
     /* 下面是新增动画 */
  animation: chevronBounce 1.6s infinite ease-in-out;
}
/* 上下跳动 + 轻微缩放闪烁 */
@keyframes chevronBounce {
  0% {
    transform: translateY(-2px) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(4px) scale(1.05);
    opacity: 1;
  }
  100% {
    transform: translateY(-2px) scale(1);
    opacity: 0.8;
  }
}
.page-index .map-panel-left .land-list-footer {
    margin-top: 12px;
}

.page-index .map-panel-left .expand-btn,
.page-index .map-panel-left .collapse-btn {
    height: 30px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
}

.page-index .map-panel-right {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    overflow: visible;
    padding: 0;
    border-radius: 0;
}

.page-index .legend-card {
    background: rgba(0, 102, 204, 0.78);
    backdrop-filter: blur(6px);
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    padding: 14px;
}

.page-index .legend-title {
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    color: #fff;
    margin-bottom: 12px;
}

.page-index .legend-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.page-index .legend-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.page-index .legend-row:first-child {
    border-top: 0;
}

.page-index .legend-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.page-index .legend-dot-hot {
    background: #8BC34A;
}

.page-index .legend-dot-semi {
    background: #FFC107;
}

.page-index .legend-dot-reserve {
    background: #F44336;
}

.page-index .legend-text {
    font-size: 14px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.95);
}

.page-index .compare-btn {
    margin-top: 12px;
    width: 100%;
    height: 44px;
    border-radius: 8px;
    border: 0;
    background: rgba(0, 102, 204, 0.92);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    font-size: 14px;
    font-weight: bold;
}

.page-index .compare-btn:hover {
    background: rgba(0, 82, 163, 0.95);
}

.page-index .compare-icon {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    position: relative;
}

.page-index .compare-icon::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 4px;
    width: 10px;
    height: 10px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 2px;
}

.page-index .land-overview {
    margin-top: 0;
    padding: 26px 0 34px;
}

.page-index .land-overview h2 {
    font-size: 16px;
    margin-bottom: 18px;
}

.page-index .overview-cards {
    gap: 14px;
}

.page-index .overview-card {
    width: 25%;
    padding: 18px 10px;
    border-radius: 4px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.page-index .card-number {
    font-size: 28px;
    margin-bottom: 6px;
}

.page-index .card-label {
    font-size: 12px;
}

.page-index .quick-service-guide {
    background-color: #f5f8ff;
    padding: 26px 0;
    margin-top: 0;
}

.page-index .qs-inner {
    display: flex;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    width: 100%;
}

.page-index .quick-service {
    flex: 0 0 46%;
    background: transparent;
    padding: 28px;
    border-radius: 0;
    box-shadow: none;
}

.page-index .service-guide {
    flex: 1;
    width: auto;
    background: transparent;
    padding: 28px;
    border-radius: 0;
    box-shadow: none;
    border-left: 1px solid #e9eef6;
}

.page-index .quick-service h2,
.page-index .service-guide h2 {
    font-size: 16px;
    margin: 0 0 18px;
    padding: 0;
    background: transparent;
    color: #333;
    border-radius: 0;
}

.page-index .quick-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
}

.page-index .service-tile {
    border-radius: 4px;
    padding: 18px 16px;
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    min-height: 110px;
}

.page-index .service-tile-large {
    grid-row: 1 / span 2;
    background: #2f6fc8;
/*    min-height: 238px;
    justify-content: flex-start;*/
}
/*
.page-index .service-tile-large .service-tile-icon {
    margin-top: 30px;
}

.page-index .service-tile-large .service-tile-title {
    margin-top: auto;
}

.page-index .service-tile-large .service-tile-desc {
    margin-bottom: 6px;
}*/

.page-index .service-tile-blue {
    background: #1f4e8f;
}

.page-index .service-tile-green {
    background: #2aa98c;
}

.page-index .service-tile-icon {
    font-size: 38px;
    margin-bottom: 12px;
    line-height: 1;
}

.page-index .service-tile-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}

.page-index .service-tile-desc {
    font-size: 12px;
    line-height: 1.4;
    opacity: 0.92;
    text-align: center;
}

.page-index .guide-list {
    list-style: none;
}

.page-index .guide-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eef2f8;
    margin-bottom: 0;
}

.page-index .guide-list li:last-child {
    border-bottom: 0;
}

.page-index .guide-item-header {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.page-index .guide-index {
    font-size: 13px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
}

.page-index .guide-title {
    flex: 1;
    font-size: 13px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    line-height: 1.4;
}

.page-index .guide-title:hover {
    color: #0066cc;
}

.page-index .guide-date {
    font-size: 12px;
    color: #999;
    white-space: nowrap;
    margin-left: 10px;
}

.page-index .guide-desc {
    margin-top: 8px;
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .page-index .map-panel-left {
        width: 320px;
    }

    .page-index .map-panel-right {
        width: 170px;
    }

    .page-index .overview-cards {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
    }
    .page-index .header .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 8px 20px;
    }
    .filter-result-wrapper {
    flex-direction: column;
    }
    .filter-section {
    width: 100%;
    padding-right: 0px;
    border-right: 0px solid #ddd;
    }
    .result-section {
    margin-top: 26px;}
    .guide-content {
        flex-direction: column;
    }
    .contact-info {
    width: 100%;}


    .page-index .header-right nav ul {
        flex-wrap: wrap;
        gap: 10px;
    }

    .page-index .header-right nav ul li {
        margin-left: 0;
    }

    .page-index {
        --header-h: 92px;
    }

    .page-index .map-panel-left {
        left: 12px;
        right: 12px;
        width: auto;
        top: auto;
        bottom: 12px;
        max-height: 46%;
    }

    .page-index .map-panel-right {
        right: 12px;
        top: 56px;
        width: 170px;
    }

    .page-index .land-table-header,
    .page-index .land-table-row {
        grid-template-columns: 1.2fr 0.9fr 0.9fr 0.7fr 0.6fr;
        gap: 8px;
    }


    .page-index .overview-cards {
        gap: 12px;
    }

    .page-index .overview-card {
        width: calc(50% - 6px);
    }

    .page-index .qs-inner {
        flex-direction: column;
    }

    .page-index .service-guide {
        border-left: 0;
        border-top: 1px solid #e9eef6;
    }

    .page-index .quick-service-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .page-index .service-tile-large {
        grid-row: auto;
        min-height: 150px;
    }
    .land-info-card {grid-template-columns: 1fr;}
    .guide-list {
    padding: 0px;
    }
    body.is-view-grid .factories-grid {
    grid-template-columns: repeat(1, 1fr);
}
.land-info-header {
    flex-wrap: wrap;
}
body.is-view-grid .plots-grid {
    grid-template-columns: repeat(1, 1fr);
}
}

@media (max-width: 420px) {
    .page-index .overview-card {
        width: 100%;
    }

    .page-index .map-panel-right {
        width: 140px;
    }
}

/* 厂房详情页 */
.page-factory-detail {
    background: #f5f7fa;
}

.page-factory-detail .detail-container {
    padding: 18px 0 32px;
}

.page-factory-detail .factory-back-wrap {
    margin-bottom: 12px;
}

.page-factory-detail .factory-back-btn {
    display: inline-block;
    min-width: 48px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    border-radius: 4px;
    background: #0f63c5;
}

.page-factory-detail .factory-back-btn:hover {
    background: #0b54a8;
}

.page-factory-detail .factory-card {
    background: #fff;
    border: 1px solid #eef1f6;
    border-radius: 2px;
    padding: 16px 20px 18px;
}

.page-factory-detail .factory-card-title {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1;
    color: #222;
    font-weight: 700;
}

.page-factory-detail .factory-main {
    display: flex;
    gap: 18px;
}

.page-factory-detail .factory-media {
    width: 478px;
    flex: 0 0 478px;
}

.page-factory-detail .factory-gallery-main {
    position: relative;
    width: 100%;
    height: 267px;
    border: 1px solid #e4e9f0;
    overflow: hidden;
    background: #e1e1e1;
}

.page-factory-detail .factory-gallery-main .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-factory-detail .factory-swiper-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 24px;
    height: 48px;
    margin-top: -24px;
    border: 0;
    background: rgba(0, 0, 0, 0.72);
    cursor: pointer;
    padding: 0;
}

.page-factory-detail .factory-swiper-nav::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
}

.page-factory-detail .factory-swiper-prev {
    left: 0;
}

.page-factory-detail .factory-swiper-prev::before {
    transform: translate(-35%, -50%) rotate(-45deg);
}

.page-factory-detail .factory-swiper-next {
    right: 0;
}

.page-factory-detail .factory-swiper-next::before {
    transform: translate(-70%, -50%) rotate(135deg);
}

.page-factory-detail .factory-gallery-thumb-wrap {
    margin-top: 10px;
    position: relative;
    padding: 0 26px;
}

.page-factory-detail .factory-gallery-thumbs {
    width: 100%;
}

.page-factory-detail .factory-thumb-nav {
    position: absolute;
    top: 0;
    width: 22px;
    height: 53px;
    border: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.78);
    cursor: pointer;
    z-index: 2;
}

.page-factory-detail .factory-thumb-nav::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
}

.page-factory-detail .factory-thumb-prev {
    left: 0;
}

.page-factory-detail .factory-thumb-prev::before {
    transform: translate(-35%, -50%) rotate(-45deg);
}

.page-factory-detail .factory-thumb-next {
    right: 0;
}

.page-factory-detail .factory-thumb-next::before {
    transform: translate(-70%, -50%) rotate(135deg);
}

.page-factory-detail .factory-thumb-nav.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
}

.page-factory-detail .factory-gallery-thumbs .swiper-slide {
    width: 90px;
    height: 53px;
    border: 1px solid #d8dee9;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.9;
}

.page-factory-detail .factory-gallery-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-factory-detail .factory-gallery-thumbs .swiper-slide-thumb-active {
    border-color: #202226;
    box-shadow: inset 0 0 0 1px #202226;
    opacity: 1;
}

.page-factory-detail .factory-info {
    flex: 1;
    min-width: 0;
    padding-top: 2px;
}

.page-factory-detail .factory-name {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.2;
    color: #1f1f1f;
    font-weight: 700;
}

.page-factory-detail .factory-lines {
    font-size: 16px;
    color: #6f7f93;
    line-height: 1.75;
}

.page-factory-detail .factory-lines .line {
    display: flex;
    align-items: baseline;
    gap: 22px;
    flex-wrap: wrap;
}

.page-factory-detail .factory-lines .kv {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
}

.page-factory-detail .factory-lines .label {
    color: #7d8da1;
    white-space: nowrap;
}

.page-factory-detail .factory-lines .value {
    color: #4f637b;
}

.page-factory-detail .factory-lines .line-price {
    margin: 1px 0 2px;
}

.page-factory-detail .factory-lines .label-rent {
    margin-left: 20px;
}

.page-factory-detail .factory-lines .value-primary,
.page-factory-detail .factory-lines .value-price {
    color: #ff2d2d;
    font-size: 22px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.page-factory-detail .factory-lines sup {
    font-size: 58%;
    top: -0.55em;
    position: relative;
}

.page-factory-detail .factory-lines .value-phone {
    color: #1a67c9;
    font-weight: 700;
}

.page-factory-detail .factory-action {
    margin-top: 20px;
    text-align: right;
}

.page-factory-detail .factory-register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 114px;
    height: 34px;
    border: 0;
    border-radius: 3px;
    background: #1f67c8;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.page-factory-detail .factory-register-btn:hover {
    background: #1655a7;
}

.page-factory-detail .factory-register-btn .btn-icon {
    width: 14px;
    height: 14px;
    border: 1px solid #fff;
    border-radius: 2px;
    position: relative;
}

.page-factory-detail .factory-register-btn .btn-icon::after {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    width: 6px;
    height: 6px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(-45deg);
}

.page-factory-detail .factory-map-card {
    margin-top: 16px;
    border: 1px solid #eaf0f7;
    background: #fff;
}

.page-factory-detail .factory-map-tabs {
    height: 56px;
    line-height: 56px;
    text-align: center;
    background: #cad8ea;
    color: #3d4e64;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.page-factory-detail .factory-map-box {
    height: 730px;
    overflow: hidden;
    background: #e8edf2;
}

.page-factory-detail .factory-map-box img {

}

@media (max-width: 1200px) {
    .page-factory-detail .factory-main {
        flex-direction: column;
    }

    .page-factory-detail .factory-media {
        width: 100%;
        flex-basis: auto;
    }
}



/* 对比按钮样式增强 */
.page-index .compare-btn {
    position: relative;
}

.page-index .compare-count {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background-color: #ff5722;
    color: #fff;
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold;
    padding: 0 5px;
}

/* 对比面板样式 */
.page-index .compare-panel {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 10px;
    width: 320px;
    background: rgba(0, 102, 204, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    z-index: 100;
    overflow: hidden;
}

.page-index .compare-panel.show {
    display: block;
}

.page-index .compare-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.1);
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}

.page-index .compare-panel-title {
    letter-spacing: 0.5px;
}

.page-index .compare-panel-close {
    width: 24px;
    height: 24px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    font-size: 18px;
}

.page-index .compare-panel-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.page-index .compare-panel-body {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
}

.page-index .compare-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    color: rgba(255, 255, 255, 0.7);
}

.page-index .compare-empty-icon {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.5;
}

.page-index .compare-empty-text {
    font-size: 14px;
}

.page-index .compare-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-index .compare-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    margin-bottom: 8px;
    cursor: pointer;
}

.page-index .compare-item:hover {
    background: rgba(255, 255, 255, 0.12);
}

.page-index .compare-item:last-child {
    margin-bottom: 0;
}

.page-index .compare-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: url('dk.png') center/cover no-repeat;
    flex-shrink: 0;
    margin-right: 10px;
}

.page-index .compare-item-info {
    flex: 1;
    min-width: 0;
}

.page-index .compare-item-name {
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.page-index .compare-item-meta {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.page-index .compare-item-remove {
    width: 24px;
    height: 24px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 10px;
}

.page-index .compare-item-remove:hover {
    background: rgba(255, 87, 34, 0.8);
}

.page-index .compare-panel-footer {
    display: flex;
    gap: 10px;
    padding: 12px 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.page-index .compare-panel-clear,
.page-index .compare-panel-compare {
    flex: 1;
    height: 36px;
    border-radius: 6px;
    border: 0;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}

.page-index .compare-panel-clear {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.page-index .compare-panel-clear:hover {
    background: rgba(255, 255, 255, 0.22);
}

.page-index .compare-panel-compare {
    background: #ff5722;
    color: #fff;
}

.page-index .compare-panel-compare:hover {
    background: #e64a19;
}

.page-index .compare-panel-compare:disabled {
    background: #9e9e9e;
    cursor: not-allowed;
}

/* 全屏对比弹窗样式 */
.compare-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
}

.compare-modal.show {
    display: block;
}

.compare-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.compare-modal-content {
    position: relative;
    margin: 40px auto;
    width: 90%;
    max-width: 1200px;
    max-height: calc(100vh - 80px);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.compare-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: #0066cc;
    color: #fff;
    flex-shrink: 0;
}

.compare-modal-title {
    font-size: 18px;
    font-weight: bold;
}

.compare-modal-close {
    width: 32px;
    height: 32px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    font-size: 24px;
}

.compare-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.compare-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.compare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.compare-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.compare-card-header {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.compare-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compare-card-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    background: rgba(0, 102, 204, 0.9);
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.compare-card-title {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.compare-card-body {
    padding: 12px 16px;
}

.compare-card-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 13px;
}

.compare-card-row:last-child {
    border-bottom: none;
}

.compare-card-label {
    color: #666;
}

.compare-card-value {
    color: #333;
    font-weight: 500;
}

/* 地块列表中的对比按钮 */
.page-index .col-action-link.compare-add {
    color: #ffc107;
}

.page-index .col-action-link.compare-remove {
    color: #f44336;
}
