@charset "utf-8";
/* This file now only contains homepage specific styles. Common styles are in common.css */
/* ================== 广告列表 ================== */
.alist {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 15px;
}

.alist li {
    height: 107px;
    width: 590px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.alist li:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.alist li img {
    height: 90px;
    width: 590px;
    object-fit: cover;
}

/* ================== 企业选址表单 ================== */
/* 2025-12-27 恢复自GitHub: 首页企业选址表单样式 */
.weituo {
    color: #333;
}

.weituo select {
    width: 100%;
    height: 32px;
    line-height: 32px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    padding: 0 8px;
    background: #fff;
    transition: border-color 0.2s;
}

.weituo select:focus {
    border-color: #3266A0;
    outline: none;
}

.input1 {
    height: 30px;
    font-size: 14px;
    line-height: 30px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 8px;
    transition: border-color 0.2s;
}

.input1:focus {
    border-color: #3266A0;
    outline: none;
}

.weituo button {
    width: 100%;
    height: 42px;
    background: linear-gradient(135deg, #FF6B00 0%, #FF4500 100%);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.2);
}

.weituo button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 69, 0, 0.3);
}

/* ================== 需求信息列表 ================== */
/* 2025-12-27 恢复自GitHub: 首页求租求购信息列表样式 */
.xuqiu {
    background: #fff;
}

.xuqiu .row {
    display: flex;
    height: 38px;
    line-height: 38px;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
}

.xuqiu .row:hover {
    background: #fafafa;
}

.xuqiu .row:nth-child(even) {
    background: #fafcfd;
}

.xuqiu .row:nth-child(even):hover {
    background: #f5f9fc;
}

.xuqiu .l {
    text-align: center;
}

.xuqiu .title {
    flex: 1;
    word-break: keep-all;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 0 10px;
}

.xuqiu .title a:hover {
    color: #3266A0;
}

/* ================== 推荐园区 ================== */
/* 2025-12-27 恢复自GitHub: 首页推荐园区列表样式 */
.tjyq {
    padding: 0;
}

.tjyq li {
    padding: 0 12px;
    height: 37px;
    line-height: 37px;
    border-bottom: 1px solid #f5f5f5;
    word-break: keep-all;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: background 0.2s;
}

.tjyq li:hover {
    background: #f9fafb;
}

.tjyq li:last-child {
    border-bottom: none;
}

.tjyq li a:hover {
    color: #3266A0;
}

/* ================== 企业选址表单内联样式 ================== */
/* 2025-12-27 恢复自GitHub: 企业选址表单的详细布局样式 */
.weituo .form-cont {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 15px 10px;
}

.weituo .form-row {
    display: flex;
    align-items: center;
}

.weituo .lbl {
    width: 42px;
    text-align: right;
    color: #666;
    font-size: 14px;
}

.weituo .flex1 {
    flex: 1;
}

.weituo input.flex1 {
    flex: 0 0 150px;
    width: 150px;
}

.weituo .radio-group {
    flex: 1;
    font-size: 12px;
    display: flex;
    align-items: center;
    color: #666;
    gap: 0;
    justify-content: space-between;
}

.weituo .radio-group label {
    margin-right: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.weituo .radio-group input {
    margin-right: 3px;
    vertical-align: middle;
}

.weituo .area-group {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 5px;
}

.weituo .input-small {
    width: 55px;
    text-align: center;
}

.weituo .btn-box {
    text-align: center;
    margin-top: 5px;
}

.weituo .btn-submit {
    width: 100%;
}

/* ================== 需求列表内联样式 ================== */
/* 2025-12-27 恢复自GitHub: 求租求购信息列表的详细样式 */
.xuqiu .list-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.xuqiu .item {
    display: flex;
    height: 39px;
    line-height: 39px;
    border-bottom: 1px dashed #eee;
    transition: background 0.2s;
}

.xuqiu .item:last-child {
    border-bottom: none;
}

.xuqiu .item:hover {
    background: #f9fafb;
}

.xuqiu .item .col-city {
    width: 65px;
    text-align: center;
    color: #666;
}

.xuqiu .item .col-type {
    width: 78px;
    text-align: center;
    color: #FF5A00;
}

.xuqiu .item .col-area {
    width: 80px;
    text-align: center;
    color: #999;
    font-family: Arial, sans-serif;
    margin-right: 10px;
}

/* ================== 用户操作列和宽度定义 ================== */
/* 2025-12-27 恢复自GitHub: 首页布局宽度定义 */
.w209 {
    width: 209px;
}

.w578 {
    width: 578px;
}

.w193 {
    width: 193px;
}

.mt20 {
    margin-top: 20px;
}

.user-actions-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.user-actions-col .action-row {
    display: flex;
    gap: 0;
    flex-direction: column;
}

.user-actions-col .action-row>div {
    flex: 1;
    margin-bottom: 10px;
}

.btn-login,
.btn-reg {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-login {
    background: linear-gradient(135deg, #3266A0 0%, #2557a0 100%);
    color: #fff;
}

.btn-login:hover {
    background: linear-gradient(135deg, #2557a0 0%, #1e4a8c 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(50, 102, 160, 0.3);
}

.btn-reg {
    background: linear-gradient(135deg, #FF6B00 0%, #FF4500 100%);
    color: #fff;
}

.btn-reg:hover {
    background: linear-gradient(135deg, #FF5500 0%, #E03E00 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.3);
}

/* ================== 信息列表1 - 带图 ================== */
.infolist1 {
    padding: 0;
}

.infolist1 .cont1 {
    height: auto;
    display: grid;
    grid-template-columns: repeat(4, 200px);
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 15px;
}

.infolist1 .cont1 li {
    width: 200px;
    height: 220px;
    line-height: 16px;
    margin: 0;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #f0f0f0;
}

.infolist1 .cont1 li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.infolist1 .cont1 li .ti {
    position: relative;
    overflow: hidden;
}

.infolist1 .cont1 li .ti div {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, rgba(255, 90, 0, 0.9) 0%, rgba(255, 69, 0, 0.9) 100%);
    position: absolute;
    z-index: 1000;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.infolist1 .cont1 li .ti div::after {
    content: "推荐";
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
}

.infolist1 .cont1 li img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
    background-color: #f0f0f0;
    /* Lazy load placeholder */
}

.infolist1 .cont1 li:hover img {
    transform: scale(1.05);
}

.infolist1 .cont1 li .tt {
    line-height: 22px;
    padding: 10px;
    height: 65px;
    overflow: hidden;
}

.infolist1 .cont1 li .tt a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #333;
    font-size: 14px;
}

.infolist1 .cont1 li .tt a:hover {
    color: #3266A0;
}

/* 分割线 */
.infolist1 .fengGe {
    margin: 15px 0;
    height: 1px;
    background: linear-gradient(to right, #f0f0f0, #e0e0e0, #f0f0f0);
}

/* 文字列表 */
.infolist1 .cont2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.infolist1 .cont2 li {
    /* clear: both; removed */
    height: 38px;
    line-height: 38px;
    width: 48%;
    padding-left: 15px;
    position: relative;
    border-bottom: 1px dashed #f5f5f5;
    transition: background 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.infolist1 .cont2 li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #3266A0;
}

.infolist1 .cont2 li:hover {
    background: #fafafa;
}

.infolist1 .cont2 li .l {
    /* float: left; */
    flex: 1;
    /* Replace width with flex grow */
    word-break: keep-all;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.infolist1 .cont2 li .l a:hover {
    color: #3266A0;
}

.infolist1 span {
    color: #FFF;
    /* background: #FF5A00; */
    padding: 1px 4px;
    border-radius: 2px;
    font-size: 12px;
}

.infolist1 .cont2 li .r {
    /* float: right; */
    color: #FF5A00;
    font-weight: 500;
    width: 25%;
    text-align: right;
    padding-right: 5px;
}

/* ================== 信息列表2 - 小图列表 ================== */
.infolist2 {
    padding: 10px 0;
}

.infolist2 div {
    padding: 2px 0;
    border-bottom: 1px solid #f5f5f5;
    display: block;
    text-align: left;
}

.infolist2 div a {
    display: block;
    overflow: hidden;
    border-radius: 4px;
    text-decoration: none;
    position: relative; /* 为绝对定位的角标提供锚点 */
}

/* 推荐 SVG 角标样式 */
.recommend-badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 40px;
    height: 40px;
    pointer-events: none; /* 防止遮挡点击 */
    background-image: url('data:image/svg+xml;utf8,<svg t="1767536617694" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4101" width="32" height="32"><path d="M172.757333 409.642667l42.24-42.24 31.68 31.68-42.24 42.24zM218.581333 454.122667l42.24-42.218667 31.68 31.68-42.24 42.24zM264.256 501.973333l42.24-42.261333 33.194667 33.173333-42.24 42.24z" fill="%23ef0909" p-id="4102"></path><path d="M339.2 0L0 345.6V1024L1024 0H339.2z m-36.266667 179.2l14.933334-14.933333 19.2 19.2 57.6-57.6-19.2-19.2 14.933333-14.933334 19.2 19.2 53.333333-53.333333 14.933334 14.933333-53.333334 53.333334 14.933334 14.933333-14.933333 14.933333-14.933333-14.933333-57.6 57.6 10.666667 10.666667-14.933334 14.933333-12.8-10.666667-55.466666 55.466667-14.933334-14.933333L320 198.4l-17.066667-19.2z m-130.133333 128l44.8 6.4-6.4 23.466667c-12.8-4.266667-27.733333-6.4-42.666667-8.533334l4.266667-21.333333zM256 625.066667c-6.4 6.4-12.8 14.933333-21.333333 21.333333-6.4-4.266667-12.8-10.666667-19.2-14.933333 6.4-6.4 12.8-10.666667 17.066666-14.933334 4.266667-4.266667 4.266667-10.666667 0-14.933333l-55.466666-55.466667c-6.4 10.666667-12.8 21.333333-17.066667 32l-19.2-14.933333c6.4-10.666667 12.8-21.333333 19.2-34.133333l-49.066667-49.066667L85.333333 503.466667l-14.933333-14.933334 25.6-25.6-38.4-38.4 14.933333-14.933333L110.933333 448l23.466667-23.466667 14.933333 14.933334-23.466666 23.466666L170.666667 507.733333c6.4-10.666667 12.8-21.333333 17.066666-29.866666 6.4 6.4 12.8 10.666667 17.066667 14.933333l-19.2 32 61.866667 61.866667c17.066667 14.933333 19.2 27.733333 8.533333 38.4z m70.4-61.866667l-14.933333 14.933333-132.266667-132.266666c2.133333 8.533333 2.133333 19.2 4.266667 27.733333H160c-4.266667-38.4-12.8-78.933333-29.866667-123.733333L149.333333 341.333333c6.4 17.066667 10.666667 32 14.933334 49.066667l102.4-102.4 14.933333 14.933333-51.2 51.2 32 32 49.066667-49.066666 14.933334 14.933334-49.066667 44.8 32 32 49.066667-49.066667 14.933334 14.933334-49.066666 49.066666 32 32 55.466666-55.466666 12.8 12.8-113.066666 113.066666 14.933333 17.066667z m155.733333-162.133333L401.066667 320c2.133333 21.333333 2.133333 40.533333 0 59.733333-8.533333-2.133333-17.066667-2.133333-23.466667-4.266666 4.266667-38.4 0-76.8-8.533333-117.333334L320 307.2l-14.933333-14.933333L362.666667 234.666667c-2.133333-4.266667-2.133333-8.533333-4.266667-14.933334l17.066667-17.066666c2.133333 4.266667 4.266667 8.533333 4.266666 14.933333l121.6-121.6 14.933334 14.933333-128 128c4.266667 14.933333 6.4 27.733333 10.666666 42.666667l102.4 102.4-19.2 17.066667z m85.333334-85.333334l-36.266667 36.266667c-6.4-4.266667-12.8-8.533333-19.2-14.933333 12.8-10.666667 25.6-23.466667 36.266667-32 6.4-6.4 6.4-14.933333 0-21.333334L522.666667 256l-61.866667 61.866667-14.933333-14.933334 61.866666-61.866666-10.666666-10.666667 10.666666-49.066667-81.066666 81.066667-14.933334-14.933333 106.666667-106.666667 14.933333 14.933333-14.933333 66.133334 4.266667 4.266666L576 172.8l14.933333 14.933333-53.333333 53.333334 27.733333 27.733333c17.066667 14.933333 17.066667 32 2.133334 46.933333z" fill="%23ef0909" p-id="4103"></path></svg>'), url('data:image/svg+xml;utf8,<svg t="1767538995839" class="icon" viewBox="0 0 1025 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4266" width="32" height="32"><path d="M173.056 409.6l42.496-42.496 31.744 31.744-42.496 42.496-31.744-31.744z m46.08 44.544l42.496-41.984 31.744 31.744-42.496 42.496-31.744-32.256z m46.08 47.616l42.496-42.496 33.28 33.28-42.496 42.496-33.28-33.28z" fill="%23FFFFFF" p-id="4267"></path><path d="M339.456 0l-339.456 345.6V1024L1025.024 0h-685.568z m-35.84 179.2l14.848-14.848 19.456 19.456 57.856-57.856-19.456-19.456 14.848-14.848 19.456 19.456 53.248-53.248 14.848 14.848-53.248 53.248 14.848 14.848-14.848 14.848-14.848-14.848-57.856 57.856 10.752 10.752-14.848 14.848-12.8-10.752-55.296 55.296-14.848-14.848 55.296-55.296-17.408-19.456z m-46.592 445.952c-6.656 6.656-12.8 14.848-21.504 21.504-6.656-4.096-12.8-10.752-19.456-14.848 6.656-6.656 12.8-10.752 16.896-14.848s4.096-10.752 0-14.848l-55.296-55.296c-6.656 10.752-12.8 21.504-16.896 32.256l-19.456-14.848c6.656-10.752 12.8-21.504 19.456-34.304l-49.152-49.152-25.6 23.552-14.848-14.848 25.6-25.6-38.4-38.4 14.848-14.848 38.4 38.4 23.552-23.552 14.848 14.848-23.552 23.552 45.056 45.056c6.656-10.752 12.8-21.504 16.896-29.696 6.656 6.656 12.8 10.752 16.896 14.848l-19.456 32.256 61.952 61.952c17.408 13.312 19.968 26.112 9.216 36.864z m69.632-61.952l-14.848 14.848-132.096-132.096c2.048 8.704 2.048 19.456 4.096 27.648h-23.552c-4.096-38.4-12.8-78.848-29.696-123.904l19.456-8.704c6.656 16.896 10.752 32.256 14.848 49.152l30.208-30.208c-3.072-1.024-5.632-3.072-7.68-5.12-7.168-7.168-11.264-15.872-11.264-25.6-2.56-0.512-4.608-0.512-7.168-1.024l4.096-21.504 9.216 1.536c1.536-3.072 3.584-6.144 5.12-9.216 5.632-13.312 24.064-14.848 34.816-9.216 5.632 3.072 10.24 9.216 11.776 15.36s0.512 11.264-1.536 16.896l34.304-34.304 14.848 14.848-51.2 51.2 32.256 32.256 49.152-49.152 14.848 14.848-49.152 45.056 32.256 32.256 49.152-49.152 14.848 14.848-49.152 49.152 32.256 32.256 55.296-55.296 12.8 12.8-113.152 113.152 14.848 16.384z m156.16-162.304l-80.896-80.896c2.048 21.504 2.048 40.448 0 59.904-8.704-2.048-16.896-2.048-23.552-4.096 4.096-38.4 0-76.8-8.704-117.248l-49.152 49.152-14.848-14.848 57.856-57.856c-2.048-4.096-2.048-8.704-4.096-14.848l16.896-16.896c2.048 4.096 4.096 8.704 4.096 14.848l121.856-121.856 14.848 14.848-128 128c4.096 14.848 6.656 27.648 10.752 42.496l102.4 102.4-19.456 16.896z m85.504-84.992l-36.352 36.352c-6.656-4.096-12.8-8.704-19.456-14.848 12.8-10.752 25.6-23.552 36.352-32.256 6.656-6.656 6.656-14.848 0-21.504l-25.6-27.648-61.952 61.952-14.848-14.848 61.952-61.952-10.752-10.752 10.752-49.152-80.896 80.896-14.848-14.848 106.496-106.496 14.848 14.848-14.848 66.048 4.096 4.096 53.248-53.248 14.848 14.848L538.112 240.64l27.648 27.648c16.896 15.36 16.896 32.768 2.56 47.616z" fill="%23FFFFFF" p-id="4268"></path><path d="M57.856 367.616h228.352V670.72h-228.352z" fill="%23FFFFFF" p-id="4269"></path><path d="M115.2 280.576h228.352V583.68h-228.352z" fill="%23FFFFFF" p-id="4270"></path><path d="M251.904 163.328h195.584v165.888h-195.584z" fill="%23FFFFFF" p-id="4271"></path><path d="M306.176 307.2h135.168v234.496h-135.168zM343.04 52.224h203.264v151.04h-203.264z" fill="%23FFFFFF" p-id="4272"></path><path d="M412.672 166.4h141.312V409.6h-141.312z" fill="%23FFFFFF" p-id="4273"></path><path d="M525.824 111.616h66.048v217.6h-66.048z" fill="%23FFFFFF" p-id="4274"></path></svg>');
     background-repeat: no-repeat;
     background-size: contain;
     /* 重置 .infolist1 span 的污染样式 */
     color: transparent;
     background-color: transparent;
     padding: 0;
     border-radius: 0;
     font-size: 0;
 }

.infolist2 div:hover {
    background: transparent;
}

.infolist2 div:last-child {
    border-bottom: none;
}

.infolist2 div img {
    width: 255px;
    height: 165px;
    object-fit: cover;
    margin: 0 auto 8px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
    display: block;
    background-color: #f0f0f0;
    transition: transform 0.3s;
    /* Lazy load placeholder */
}

.infolist2 div a:hover img {
    transform: scale(1.05);
}

.infolist2 div a span {
    line-height: 22px;
    font-weight: 400;
    font-size: 14px;
    color: #555;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 44px;
    max-width: 100%;
    margin: 0;
}

.infolist2 div a:hover span {
    color: #3266A0;
}

.infolist2 ul {
    margin-top: 10px;
}

.infolist2 ul li {
    line-height: 36px;
    border-bottom: 1px dashed #f5f5f5;
    word-break: keep-all;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding-left: 12px;
    position: relative;
}

.infolist2 ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #3266A0;
}

.infolist2 ul li:last-child {
    border-bottom: none;
}

.infolist2 ul li a:hover {
    color: #3266A0;
}

#boder_none {
    border-bottom: none !important;
}

/* ================== 宽度类 ================== */
.w209 {
    width: 245px;
}

.w578 {
    width: 680px;
}

.w193 {
    width: 235px;
}

.w756 {
    width: 900px;
}

.w233 {
    width: 290px;
}

/* ================== 底部标签区域1 ================== */
/* ================== 底部标签区域1 (Refactored) ================== */

/* ================== 底部标签区域2 ================== */

/* ================== 友情链接 ================== */
.links {
    width: 100%;
    box-sizing: border-box;
    margin: 20px 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f7;
    padding: 15px 20px;
}

.links .t {
    color: #333;
    border-bottom: 2px solid #3266A0;
    height: 40px;
    line-height: 40px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.links .t .linksL {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    color: #333;
}

.links .t .linksR {
    margin-top: 0;
}

.links .friendlinks {
    padding: 5px 0;
    display: flex;
    flex-wrap: wrap;
}

.links .friendlinks a {
    font-size: 13px;
    line-height: 28px;
    padding: 0 12px;
    color: #888;
    transition: color 0.2s;
}

.links .friendlinks a:hover {
    color: #3266A0;
}

/* ================== 内联样式提取补充 ================== */
.user-actions-col {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.user-actions-col .action-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.user-actions-col .action-row>div {
    min-width: 0;
    /* Prevent grid blowout */
    margin: 0;
}

.btn-login,
.btn-reg {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    height: 45px;
    padding: 0;
    line-height: normal;
    text-align: center;
    border-radius: 6px;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-login:visited,
.btn-reg:visited {
    color: #fff !important;
}

.btn-login:hover,
.btn-reg:hover {
    color: #fff;
    transform: translateY(-2px);
}

.btn-login {
    background: linear-gradient(135deg, #3266A0 0%, #2557a0 100%);
    box-shadow: 0 4px 12px rgba(50, 102, 160, 0.3);
}

.btn-login:hover {
    box-shadow: 0 6px 16px rgba(50, 102, 160, 0.4);
}

.btn-reg {
    background: linear-gradient(135deg, #FF6B00 0%, #FF4500 100%);
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.3);
}

.btn-reg:hover {
    box-shadow: 0 6px 16px rgba(255, 69, 0, 0.4);
}

.d-block {
    display: block !important;
}

.ad-banner {
    border: 1px solid #CCC;
}

.alist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.alist img {
    height: auto !important;
    display: block;
    max-width: 100%;
}

#top .top-inner {
    width: 1200px;
    margin: 0 auto;
    height: 100%;
    position: relative;
}

/* Footer Data */

/* 返回顶部按钮CSS已删除 - 2025-12-27 */

/* 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;
}

/* ========================================
   Mobile Responsive Styles
   ======================================== */

/* 2025-12-30 Fix alignment for right column */
.row-stretch {
    align-items: stretch;
}

.col-flex-stretch {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.box-flex-stretch {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.flex-grow {
    flex: 1;
}

/* =============================== 行业资讯板块 2026-05-12 =============================== */
.news-two-col { display:flex; gap:40px; padding: 10px 5px; }
.news-rich-list { flex:1; list-style: none; padding: 0; margin: 0; }
.news-rich-list li { 
    display: flex; 
    align-items: center; 
    padding: 10px 0; 
    border-bottom: 1px dashed #ececec; 
    transition: all 0.3s ease; 
}
.news-rich-list li:hover { background-color: #fcfcfc; padding-left: 8px; }
.news-rich-list li::before { 
    content: "•"; 
    color: #3266A0; 
    font-size: 16px; 
    margin-right: 8px; 
}
.news-cat {
    display: inline-block;
    padding: 0 6px;
    background-color: #f0f5fa;
    color: #3266A0;
    font-size: 12px;
    border-radius: 3px;
    margin-right: 8px;
    line-height: 20px;
    white-space: nowrap;
    border: 1px solid #d4e3f3;
}
.news-rich-list li a { 
    flex: 1; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    white-space: nowrap; 
    color: #333; 
    font-size: 15px; 
    text-decoration: none;
}
.news-rich-list li a:hover { color: #3266A0; }
.news-rich-list li .date { 
    color: #999; 
    font-size: 13px; 
    margin-left: 15px; 
}

.news-img-grid {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.news-img-item {
    flex: 1;
    display: block;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    background: #f8f8f8;
}
.news-img-item img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.news-img-item:hover img {
    transform: scale(1.05);
}
.news-img-item .title-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 13px;
    padding: 6px 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 响应式：小屏图片网格2列 */
@media (max-width: 768px) {
    .news-img-grid { flex-wrap: wrap; }
    .news-img-item { flex: 0 0 calc(50% - 10px); }
    .news-img-item img { height: 100px; }
}


/* ================== Extracted Common Modules ================== */
.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 {
    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 .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;
}

.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;
}

.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;
	margin-left: 610px;
	/* 1200/2 + 10 - 2025-12-19 */
	right: auto;
	left: 50%;
	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);
}

.footerData1 {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
	border: 1px solid #eef2f7;
	padding: 15px 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.footerData1 dl {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	position: relative;
}

.footerData1 dt {
	order: 1;
	padding: 10px 20px;
	cursor: pointer;
	background: #f5f5f5;
	border-radius: 4px 4px 0 0;
	margin-right: 5px;
	transition: all 0.2s;
	position: relative;
	z-index: 0;
}

.footerData1 dt:hover {
	background: #e8e8e8;
}

.footerData1 dt.active {
	background: #3266A0;
	z-index: 2;
}

.footerData1 dt h3 {
	font-size: 14px;
	font-weight: 600;
	color: #666;
	margin: 0;
}

.footerData1 dt.active h3 {
	color: #fff;
}

.footerData1 dd {
	order: 2;
	width: 100%;
	display: none;
	margin: 0;
	padding-top: 15px; 
	border-top: 2px solid #3266A0;
	margin-top: -2px; /* Pull up to overlap with tabs */
	z-index: 1;
	min-height: 120px;
}

.footerData1 dd.active {
	display: block;
}

.footerData1 dd a {
	display: inline-block;
	padding: 6px 12px;
	margin: 4px;
	background: #f8f9fa;
	border-radius: 4px;
	color: #666;
	font-size: 13px;
	transition: all 0.2s;
	text-decoration: none;
}

.footerData1 dd a:hover {
	background: #3266A0;
	color: #fff;
	text-decoration: none;
}

.footerData2 {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f7;
    padding: 15px 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.FD_t2 {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.FD_t2 li,
.FD_t2 a {
    padding: 4px 10px;
    cursor: pointer;
    margin: 3px;
    background: #f5f5f5;
    border-radius: 4px;
    color: #666;
    font-size: 13px;
    transition: all 0.2s;
}

.FD_t2 li:hover,
.FD_t2 a:hover {
    background: #e8e8e8;
    color: #333;
}

.FD_t2 li.select,
.FD_t2 a.select {
    background: #3266A0;
    color: #fff;
}

.FD_C2 {
    min-height: 100px;
}

.FD_C2 li.fd_show2 {
    display: block;
}

.FD_C2 li {
    display: none;
}

.FD_C2 li a {
    display: inline-block;
    padding: 5px 10px;
    margin: 3px;
    background: #f8f9fa;
    border-radius: 4px;
    color: #666;
    font-size: 13px;
    transition: all 0.2s;
}

.FD_C2 li a:hover {
    background: #FF5A00;
    color: #fff;
}

.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;
}

.footerData1 { background: #fff; border-radius: 8px; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04); border: 1px solid #eef2f7; padding: 15px 20px; margin-top: 20px; margin-bottom: 20px; }

.footerData1 dl { display: flex; flex-wrap: wrap; margin: 0; padding: 0; position: relative; }

.footerData1 dt { order: 1; padding: 10px 20px; cursor: pointer; background: #f5f5f5; border-radius: 4px 4px 0 0; margin-right: 5px; transition: all 0.2s; position: relative; z-index: 0; }

.footerData1 dt.active { background: #3266A0; z-index: 2; }

.footerData1 dt h3 { font-size: 14px; font-weight: 600; color: #666; margin: 0; }

.footerData1 dt.active h3 { color: #fff; }

.footerData1 dd { order: 2; width: 100%; display: none; margin: 0; padding-top: 15px; border-top: 2px solid #3266A0; margin-top: -2px; z-index: 1; min-height: 120px; }

.footerData1 dd.active { display: block; }

.footerData1 dd a { display: inline-block; padding: 6px 12px; margin: 4px; background: #f8f9fa; border-radius: 4px; color: #666; font-size: 13px; transition: all 0.2s; }

.footerData1 dd a:hover { background: #3266A0; color: #fff; }

.content, .smallnav .cont, .top .cont {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

.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;
    }

.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;
    }

.smallnav {
        display: none;
    }

.back-to-top {
        bottom: 20px;
        right: 20px;
        left: auto;
        margin-left: 0;
        width: 40px;
        height: 40px;
    }

.content, .smallnav .cont, .top .cont, .footer .cont {
        width: 750px;
    }

.content, .smallnav .cont, .top .cont, .infoTZ, .footer .cont {
        width: 1200px !important;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box; 
    }

.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;
}

.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; }

/* ==============================================================================
   2026-05-21 新增：城市分站首页“产业园区”推荐卡片模块样式 - By Antigravity
   说明: 采用高强力Grid与!important样式锁定，防范外界污染，PC端锁定5列，响应式降级 - By Antigravity
   ============================================================================== */
.yuanqu-home-list {
    padding: 15px !important;
    background: #fff !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
.yuanqu-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 20px 15px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.yq-grid-item {
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}
.yq-grid-item .yq-img {
    width: 100% !important;
    height: 140px !important;
    overflow: hidden !important;
    border-radius: 6px !important;
    background-color: #f8f9fa !important;
    position: relative !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
}
.yq-grid-item .yq-img a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}
.yq-grid-item .yq-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.4s ease !important;
}
.yq-grid-item:hover .yq-img img {
    transform: scale(1.06) !important;
    filter: brightness(1.05) !important;
}
.yq-grid-item:hover .yq-img {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
}
.yq-grid-item .yq-title {
    margin-top: 10px !important;
    font-size: 14px !important;
    line-height: 20px !important;
    text-align: center !important;
}
.yq-grid-item .yq-title a {
    color: #333 !important;
    text-decoration: none !important;
    display: block !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    transition: color 0.2s ease !important;
}
.yq-grid-item:hover .yq-title a {
    color: #1e9fff !important;
}

/* 优雅的响应式多屏适配 */
@media (max-width: 768px) {
    .yuanqu-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 15px 10px !important;
    }
    .yq-grid-item .yq-img {
        height: 110px !important;
    }
}
@media (max-width: 480px) {
    .yuanqu-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .yq-grid-item .yq-img {
        height: 95px !important;
    }
}

/* ==========================================================================
   新增：新闻首页与行业资讯聚焦图文展示样式 - 2026-06-08 - By 99cfw.com
   ========================================================================== */
.news-featured-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 5px;
}
.news-featured-card {
    width: 48.5%;
    display: flex;
    background: transparent;
    height: 140px;
    margin-bottom: 20px;
}
.news-featured-card:hover {
    /* 去除卡片悬停浮起与投影效果 */
}
.news-featured-card .img-box {
    width: 200px;
    height: 140px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    background: #fafafa;
    border-radius: 4px;
}
.news-featured-card .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.news-featured-card:hover .img-box img {
    transform: scale(1.06);
}
.news-featured-card .info-box {
    padding: 5px 0 5px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    min-width: 0;
}
.news-featured-card .info-box .title {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    margin: 0 0 4px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    transition: color 0.2s ease;
}
.news-featured-card:hover .info-box .title {
    color: #3266A0;
}
.news-featured-card .info-box .desc {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin: 0 0 6px 0;
    text-indent: 2em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    flex: 1;
}
.news-featured-card .info-box .date-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 11px;
    color: #999;
}

/* 聚焦图文移动端及平板响应式适配 */
@media screen and (max-width: 768px) {
    .news-featured-wrap {
        flex-direction: column;
        margin-bottom: 10px;
    }
    .news-featured-card {
        width: 100% !important;
        flex-direction: column;
        height: auto;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px dashed #eee;
    }
    .news-featured-card .img-box {
        width: 100%;
        height: 160px;
    }
    .news-featured-card .info-box {
        padding: 10px 0 0 0;
        gap: 8px;
    }
    .news-featured-card .info-box .title {
        font-size: 14px;
        -webkit-line-clamp: 2;
    }
    .news-featured-card .info-box .desc {
        -webkit-line-clamp: 3;
        margin-bottom: 4px;
    }
    .news-featured-card .info-box .date-row {
        justify-content: flex-start;
    }
}