/* 找载体 - 对齐目标站 findPark 布局 */

.park-page {
    min-width: 1200px;
    background: #f0f2f5;
    font-family: PingFangSC, "PingFang SC", "Microsoft YaHei", sans-serif;
    padding: 40px 0 60px;
}

.park-wrap {
    width: 1440px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
}

.park-block {
    background: #fff;
    border-radius: 8px;
    padding: 32px 28px 40px;
    margin-bottom: 24px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.park-block-title {
    margin: 0 0 8px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.park-block-subtitle {
    margin: 0 0 28px;
    text-align: center;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ========== 载体信息 - 三列卡片 ========== */
.park-carrier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 20px;
    margin-top: 28px;
}

.park-zt-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eef0f3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s, transform 0.2s;
}

.park-zt-card:hover {
    box-shadow: 0 6px 20px rgba(11, 90, 218, 0.12);
    transform: translateY(-2px);
}

.park-zt-card .zt-cover {
    height: 180px;
    position: relative;
    background: linear-gradient(160deg, #5b9cf5 0%, #2b65f8 40%, #1a4fd6 100%);
    background-size: cover;
    background-position: center;
}

.park-zt-card .zt-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.15) 100%);
}

.park-zt-card .zt-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: #fff;
    line-height: 1.4;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.park-zt-card .zt-badge-red {
    background: linear-gradient(135deg, #ff6b6b, #e53935);
}

.park-zt-card .zt-badge-purple {
    background: linear-gradient(135deg, #9b7fd4, #7b5cbf);
}

.park-zt-card .zt-badge-blue {
    background: linear-gradient(135deg, #4dabf7, #228be6);
}

.park-zt-card .zt-body {
    padding: 16px;
}

.park-zt-card .zt-name {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 44px;
}

.park-zt-card .zt-loc {
    margin: 0 0 14px;
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.park-zt-card .zt-btn {
    display: block;
    width: 100%;
    border: none;
    background: #2b65f8;
    color: #fff;
    font-size: 15px;
    padding: 12px 0;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 8px;
}

.park-zt-card .zt-btn:hover {
    background: #1a4fd6;
}

.park-more-wrap {
    text-align: center;
    margin-top: 32px;
}

.park-more-btn {
    display: inline-block;
    min-width: 160px;
    padding: 10px 32px;
    background: #fff;
    border: 1px solid #2b65f8;
    color: #2b65f8;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.park-more-btn:hover {
    background: #f0f6ff;
}

/* ========== 找园区 - 统计条 ========== */
.park-overview-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.park-overview-stat {
    flex: 1;
    background: linear-gradient(135deg, #eef4ff 0%, #e3edff 100%);
    border-radius: 8px;
    padding: 20px 16px;
    text-align: center;
    border: 1px solid #d6e4ff;
}

.park-overview-stat .val {
    font-size: 28px;
    font-weight: 700;
    color: #2b65f8;
    line-height: 1.2;
}

.park-overview-stat .lbl {
    font-size: 13px;
    color: #666;
    margin-top: 6px;
}

/* ========== 找园区 - 三栏 ========== */
.park-three-col {
    display: flex;
    gap: 0;
    border: 1px solid #e3e8ef;
    border-radius: 8px;
    overflow: hidden;
    min-height: 300px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.park-col {
    display: flex;
    flex-direction: column;
    background: #fff;
}

.park-col-region {
    width: 200px;
    flex-shrink: 0;
    border-right: 1px solid #e3e8ef;
}

.park-col-list {
    width: 260px;
    flex-shrink: 0;
    border-right: 1px solid #e3e8ef;
}

.park-col-intro {
    flex: 1;
    min-width: 0;
}

.park-col .col-head {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    background: linear-gradient(180deg, #f7f9fc 0%, #f2f5f9 100%);
    border-bottom: 1px solid #e3e8ef;
    flex-shrink: 0;
}

.park-col-region .col-body,
.park-col-list .col-body {
    background: #f8fafc;
}

.park-col .col-body {
    flex: 1;
    overflow-y: auto;
    max-height: 340px;
    min-height: 260px;
}

/* 区域树 */
.park-region-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    border-left: 3px solid transparent;
    border-bottom: 1px solid #eef1f5;
    transition: all 0.15s;
}

.park-region-name {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.park-region-count {
    flex-shrink: 0;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    line-height: 20px;
    text-align: center;
    font-size: 11px;
    color: #888;
    background: #eef1f5;
    border-radius: 10px;
}

.park-region-item:hover {
    background: #eef4ff;
}

.park-region-item.active {
    background: #e6f0ff;
    border-left-color: #2b65f8;
    color: #2b65f8;
    font-weight: 500;
}

.park-region-item.active .park-region-count {
    background: #2b65f8;
    color: #fff;
}

.park-region-parent {
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    background: #f0f3f7;
    border-bottom: 1px solid #e3e8ef;
}

.park-region-group {
    padding: 8px 14px 6px 22px;
    font-size: 12px;
    font-weight: 600;
    color: #888;
    background: #fafbfc;
    border-bottom: 1px solid #eef1f5;
    letter-spacing: 0.5px;
}

.park-region-city-zone {
    padding-left: 18px;
    background: #f8fbff;
}

.park-region-city-zone .park-region-name {
    color: #1a56db;
    font-weight: 500;
}

.park-region-child {
    padding-left: 22px;
}

/* 园区列表 */
.park-list-item {
    padding: 12px 14px;
    cursor: pointer;
    border-left: 3px solid transparent;
    border-bottom: 1px solid #eef1f5;
    transition: all 0.15s;
}

.park-list-item-name {
    font-size: 13px;
    color: #333;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.park-list-item-sub {
    margin-top: 4px;
    font-size: 12px;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.park-list-item:hover {
    background: #eef4ff;
}

.park-list-item.active {
    background: #e6f0ff;
    border-left-color: #2b65f8;
}

.park-list-item.active .park-list-item-name {
    color: #2b65f8;
    font-weight: 500;
}

.park-list-kind {
    display: inline-block;
    padding: 0 5px;
    margin-right: 4px;
    font-size: 11px;
    line-height: 18px;
    border-radius: 3px;
    vertical-align: middle;
}

.park-list-kind-park {
    color: #2b65f8;
    background: #e6f0ff;
}

.park-list-kind-carrier {
    color: #7c3aed;
    background: #f3e8ff;
}

.park-list-item.active .park-list-kind-park,
.park-list-item.active .park-list-kind-carrier {
    color: #fff;
    background: #2b65f8;
}

.park-intro-tag-carrier {
    color: #7c3aed;
    background: #f3e8ff;
    border-color: #e9d5ff;
}

.park-intro-hint {
    color: #888;
    font-size: 13px;
}

/* 园区介绍 */
.park-col-intro .col-body {
    background: #fff;
}

.park-intro-wrap {
    padding: 16px 18px;
}

.park-intro-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.park-intro-tag {
    font-size: 12px;
    padding: 4px 10px;
    background: #eef4ff;
    color: #2b65f8;
    border: 1px solid #d6e4ff;
    border-radius: 4px;
}

.park-intro-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 14px;
}

.park-intro-info-item {
    padding: 10px 12px;
    background: #f5f8ff;
    border: 1px solid #e8eef8;
    border-radius: 6px;
    font-size: 12px;
    line-height: 1.5;
}

.park-intro-info-item .label {
    display: block;
    color: #999;
    margin-bottom: 4px;
}

.park-intro-info-item .value {
    color: #333;
    word-break: break-all;
}

.park-intro-info-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.park-intro-content {
    padding: 14px 0 0;
    margin-top: 4px;
    border-top: 1px dashed #e8e8e8;
    font-size: 13px;
    color: #555;
    line-height: 1.85;
    text-align: justify;
}

.park-intro-empty {
    padding: 40px 20px;
    text-align: center;
    color: #999;
    font-size: 13px;
}

/* ========== 企业资源库 ========== */
.park-enterprise-bank {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.park-enterprise-bank .bank-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #fafafa;
    border-bottom: 1px solid #e8e8e8;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.park-enterprise-bank .bank-head em {
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    color: #999;
    margin-left: 12px;
}

.park-enterprise-bank .bank-body {
    padding: 20px;
    max-height: 520px;
    overflow-y: auto;
}

.park-ent-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.park-ent-card {
    background: #f8fafc;
    border: 1px solid #e8ecf0;
    border-radius: 6px;
    padding: 16px 18px;
    cursor: pointer;
    transition: all 0.2s;
}

.park-ent-card:hover {
    border-color: #2b65f8;
    box-shadow: 0 2px 12px rgba(43, 101, 248, 0.1);
}

.park-ent-card .ent-name {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
}

.park-ent-card .ent-row {
    display: flex;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 2px;
}

.park-ent-card .ent-row label {
    width: 72px;
    flex-shrink: 0;
    color: #999;
}

.park-ent-card .ent-row span {
    flex: 1;
    color: #444;
    word-break: break-all;
}

.park-ent-pagination {
    padding: 16px 20px;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

.park-empty-tip {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 20px;
    color: #999;
    font-size: 14px;
}

/* ========== 右侧抽屉（企业 / 园区 / 载体） ========== */
.park-drawer-layer,
.park-company-drawer-layer {
    border-radius: 0 !important;
    box-shadow: -6px 0 32px rgba(0, 0, 0, 0.12) !important;
    overflow: hidden;
}

.park-drawer-layer .layui-layer-content,
.park-company-drawer-layer .layui-layer-content {
    padding: 0 !important;
    height: 100% !important;
    overflow: hidden !important;
    max-height: none !important;
}

.park-side-drawer,
.park-company-drawer {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
}

.park-detail-drawer-body {
    padding-top: 16px;
}

.park-detail-drawer-body .park-modal-detail {
    margin-bottom: 8px;
}

.park-detail-drawer-body .park-modal-company-table-wrap {
    max-height: none;
}

.park-detail-drawer-body .park-modal-company-head {
    margin-top: 16px;
    padding-top: 20px;
}

.park-drawer-header {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid #eef0f3;
    background: #fff;
}

.park-drawer-title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #2b65f8;
    line-height: 1.4;
    flex: 1;
    min-width: 0;
    word-break: break-all;
}

.park-drawer-close {
    flex-shrink: 0;
    padding: 6px 18px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    background: #fff;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}

.park-drawer-close:hover {
    color: #2b65f8;
    border-color: #2b65f8;
}

.park-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 8px 24px 32px;
}

.park-drawer-section {
    margin-top: 24px;
}

.park-drawer-section-title {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    padding-left: 10px;
    border-left: 4px solid #2b65f8;
    line-height: 1.3;
}

.park-reg-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border: 1px solid #eef0f3;
    border-radius: 4px;
    overflow: hidden;
}

.park-reg-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    min-height: 44px;
    border-bottom: 1px solid #eef0f3;
    font-size: 13px;
    line-height: 1.5;
}

.park-reg-row:nth-child(odd) {
    border-right: 1px solid #eef0f3;
}

.park-reg-row.is-full {
    grid-column: 1 / -1;
    border-right: none;
}

.park-reg-label {
    padding: 10px 12px;
    background: #f8f9fb;
    color: #888;
    flex-shrink: 0;
}

.park-reg-value {
    padding: 10px 14px;
    color: #333;
    word-break: break-all;
}

.park-drawer-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.park-drawer-stat {
    flex: 1;
    min-width: 100px;
    text-align: center;
    padding: 14px 8px;
    background: #f5f8ff;
    border: 1px solid #e8eef8;
    border-radius: 6px;
}

.park-drawer-stat .num {
    font-size: 22px;
    font-weight: 700;
    color: #2b65f8;
    line-height: 1.2;
}

.park-drawer-stat .txt {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

.park-drawer-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.park-drawer-table th,
.park-drawer-table td {
    padding: 10px 12px;
    text-align: left;
    border: 1px solid #eef0f3;
    word-break: break-all;
}

.park-drawer-table th {
    background: #f8f9fb;
    color: #666;
    font-weight: 500;
    white-space: nowrap;
}

.park-drawer-table tbody tr:hover {
    background: #fafbfc;
}

.park-drawer-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 14px;
}

.park-drawer-consult {
    margin-top: 24px;
    padding: 20px 0 8px;
    border-top: 1px solid #eef0f3;
    text-align: center;
}

.park-consult-btn {
    min-width: 200px;
    height: 40px;
    padding: 0 24px;
    font-size: 14px;
    color: #fff;
    background: #2b65f8;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.15s;
}

.park-consult-btn:hover {
    background: #1a56db;
}

.park-consult-tip {
    margin: 10px 0 0;
    font-size: 12px;
    color: #999;
}

.park-consult-form {
    padding: 20px 10px 10px;
}

.park-consult-form .layui-form-label {
    width: 90px;
    padding: 9px 10px;
}

.park-consult-form .layui-input-block {
    margin-left: 110px;
    margin-right: 20px;
}

.park-consult-form .f_red {
    color: #ff0000;
}

.park-consult-question {
    margin-bottom: 10px;
    color: #666;
    font-size: 13px;
}

.park-consult-reload-q {
    color: #2b65f8;
}

.park-modal-detail { margin-bottom: 20px; }

.park-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.park-detail-tag {
    font-size: 12px;
    padding: 4px 10px;
    background: #eef4ff;
    color: #2b65f8;
    border-radius: 3px;
}

.park-detail-intro {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.park-detail-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.park-detail-info-item .label {
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
}

.park-detail-info-item .value {
    font-size: 14px;
    color: #333;
}

.park-modal-company-head {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    padding: 16px 0 12px;
    border-top: 1px solid #f0f0f0;
    margin-top: 8px;
}

.park-modal-company-head em {
    color: #2b65f8;
    font-style: normal;
    font-weight: 700;
}

.park-modal-company-table-wrap {
    max-height: 360px;
    overflow-y: auto;
}

.park-company-table {
    width: 100%;
    border-collapse: collapse;
}

.park-company-table th,
.park-company-table td {
    padding: 12px 14px;
    text-align: left;
    font-size: 13px;
    border-bottom: 1px solid #f5f5f5;
}

.park-company-table th {
    background: #fafafa;
    color: #666;
    font-weight: 500;
}

.park-company-table .company-link {
    color: #2b65f8;
    cursor: pointer;
}

.park-company-table .company-link:hover {
    text-decoration: underline;
}

/* 列表页 */
.park-list-page {
    padding: 0 0 60px;
    background: #f0f2f5;
}

.park-list-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    background: #fff;
    border-radius: 8px;
    padding: 24px 28px;
    margin-bottom: 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.park-list-filter-label {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 40px;
    white-space: nowrap;
}

.park-list-filter-input {
    width: 320px;
    max-width: 100%;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    background: #fff;
    outline: none;
    box-sizing: border-box;
}

.park-list-filter-input:focus {
    border-color: #2b65f8;
}

.park-list-filter-select {
    width: 180px;
    max-width: 100%;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    background: #fff;
    outline: none;
    box-sizing: border-box;
    cursor: pointer;
}

.park-list-filter-select:focus {
    border-color: #2b65f8;
}

.park-list-filter-btn {
    flex-shrink: 0;
    min-width: 88px;
    height: 40px;
    padding: 0 24px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    background: #fff;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.park-list-filter-btn.primary {
    background: #2b65f8;
    border-color: #2b65f8;
    color: #fff;
}

.park-list-filter-btn.primary:hover {
    background: #1a4fd6;
    border-color: #1a4fd6;
}

.park-list-filter-btn:hover {
    color: #2b65f8;
    border-color: #2b65f8;
}

.park-list-panel {
    padding: 24px 28px 16px;
}

.park-list-panel .park-carrier-grid {
    margin-top: 0;
}

.park-list-panel .xhb_column {
    padding-bottom: 8px;
}

.park-list-panel #laypage {
    text-align: center;
}

.park-list-count {
    margin-bottom: 16px;
    font-size: 14px;
    color: #666;
}

.park-zt-card .zt-desc {
    margin: 0 0 12px;
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.park-zt-card .zt-loc-icon {
    display: inline-block;
    width: 12px;
    height: 14px;
    margin-right: 4px;
    vertical-align: -2px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.park-list-nav {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.park-list-nav em {
    color: #2b65f8;
    font-style: normal;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .park-carrier-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .park-three-col {
        flex-direction: column;
    }

    .park-col-region,
    .park-col-list {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
    }

    .park-col .col-body {
        max-height: 240px;
    }

    .park-ent-grid {
        grid-template-columns: 1fr;
    }

    .park-overview-stats {
        flex-wrap: wrap;
    }

    .park-overview-stat {
        min-width: calc(33% - 12px);
    }
}

@media (max-width: 640px) {
    .park-carrier-grid {
        grid-template-columns: 1fr;
    }
}
