
.c_park_design {
    width: 100%;
    max-width: 1400px;
    padding: 10px;
    box-sizing: border-box;
    background: #ffffff;
    margin: auto;
}

/* Banner 大图区域 */
.park_banner {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
    margin-top: 30px;
}

.park_banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.park_banner_title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 56px;
    font-weight: 800;
    letter-spacing: 8px;
    text-align: center;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    z-index: 10;
}

@media (max-width: 1024px) {
    .park_banner_title {
        font-size: 42px;
        letter-spacing: 6px;
    }
}

@media (max-width: 768px) {
    .park_banner_title {
        font-size: 32px;
        letter-spacing: 4px;
    }
    .park_banner img{
        width: 400%;
        height: 300px;
    }
    .park_banner{
        height: 300px;
    }
}

@media (max-width: 480px) {
    .park_banner_title {
        font-size: 22px;
        letter-spacing: 2px;
    }
}

.park_section {
    margin-bottom: 20px;
}

.park_two_col {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.park_col {
    flex: 1;
    background: #fafafa;
    border-radius: 8px;
    padding: 30px;
    box-sizing: border-box;
}

.park_col_title {
    font-size: 22px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #4ec548;
    display: flex;
    align-items: center;
    gap: 10px;
}

.park_col_title::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 22px;
    background: #4ec548;
    border-radius: 3px;
}

.park_task_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.park_task_list li {
    font-size: 16px;
    color: #333;
    padding: 12px 0 12px 30px;
    position: relative;
    border-bottom: 1px dashed #e5e5e5;
    line-height: 1.5;
}

.park_task_list li:last-child {
    border-bottom: none;
}

.park_task_list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #4ec548;
    color: #fff;
    font-size: 12px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-weight: bold;
}

.park_concept_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.park_concept_list li {
    font-size: 16px;
    color: #333;
    padding: 20px 25px;
    background: #fff;
    border-left: 4px solid #4ec548;
    border-radius: 4px;
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.park_image_section {
    text-align: center;
}

.park_image_wrap {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
    box-sizing: border-box;
}

.park_image_wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.park_image_caption {
    font-size: 18px;
    font-weight: bold;
    color: #1a1a1a;
    padding-top: 15px;
    letter-spacing: 2px;
    display: inline-block;
    padding-left: 30px;
    padding-right: 30px;
}

/* 停车场布局设计 - 三图网格 */
.park_layout_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.park_layout_item {
    background: #fafafa;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.park_layout_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(10, 153, 2, 0.18);
    border-color: #4ec548;
}

.park_layout_img {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #f0f0f0;
}

.park_layout_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.park_layout_item:hover .park_layout_img img {
    transform: scale(1.05);
}

.park_layout_zoom {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 14px;
    letter-spacing: 2px;
}

.park_layout_item:hover .park_layout_zoom {
    opacity: 1;
}

.park_layout_caption {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    padding: 16px 12px;
    background: #fff;
    letter-spacing: 1px;
    border-top: 2px solid #4ec548;
}

@media (max-width: 1024px) {
    .park_layout_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .park_layout_img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .park_layout_grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .park_layout_img {
        height: 240px;
    }
    .park_layout_zoom {
        opacity: 1;
        background: rgba(0, 0, 0, 0.25);
    }
    .park_layout_zoom span {
        display: none;
    }
}

/* 图片大图预览弹窗 */
.park_lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999999;
    display: none;
    align-items: center;
    justify-content: center;
}

.park_lightbox.is-open {
    display: flex;
}

.park_lightbox_mask {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(6px);
}

.park_lightbox_box {
    position: relative;
    z-index: 2;
    width: 94%;
    max-width: 1400px;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: parkLightboxIn 0.3s ease;
}

@keyframes parkLightboxIn {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.park_lightbox_box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.park_lightbox_close,
.park_lightbox_prev,
.park_lightbox_next {
    position: absolute;
    color: #fff;
    cursor: pointer;
    user-select: none;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.park_lightbox_close {
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    font-size: 32px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.park_lightbox_close:hover {
    background: rgba(10, 153, 2, 0.9);
    transform: rotate(90deg);
}

.park_lightbox_prev,
.park_lightbox_next {
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    font-size: 28px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.park_lightbox_prev:hover,
.park_lightbox_next:hover {
    background: rgba(10, 153, 2, 0.9);
}

.park_lightbox_prev {
    left: 20px;
}

.park_lightbox_next {
    right: 20px;
}

.park_lightbox_counter {
    position: absolute;
    bottom: -44px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 15px;
    letter-spacing: 2px;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 22px;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .park_lightbox_box {
        width: 100%;
        height: 80%;
    }
    .park_lightbox_prev,
    .park_lightbox_next {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }
    .park_lightbox_prev {
        left: 10px;
    }
    .park_lightbox_next {
        right: 10px;
    }
    .park_lightbox_close {
        top: 12px;
        right: 12px;
        background: rgba(0, 0, 0, 0.5);
    }
    .park_lightbox_counter {
        bottom: -50px;
        font-size: 13px;
    }
}

.park_main_title {
    font-size: 32px;
    font-weight: bold;
    color: #1a1a1a;
    text-align: center;
    margin: 40px 0 20px 0;
    letter-spacing: 4px;
    position: relative;
    padding-bottom: 20px;
}

.park_main_title::after {
    content: "";
    display: block;
    width: 400px;
    height: 4px;
    background: #4ec548;
    margin: 15px auto 0;
    border-radius: 2px;
}

.park_gallery_title {
    font-size: 22px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0 0 25px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #4ec548;
    display: flex;
    align-items: center;
    gap: 10px;
}

.park_gallery_title::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 22px;
    background: #4ec548;
    border-radius: 3px;
}

.park_gallery_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.park_gallery_grid_3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.park_gallery_grid_4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.park_gallery_item {
    background: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e5e5
}

.park_gallery_item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.park_gallery_img {
    width: 100%;
    display: block;
    overflow: hidden;
}

.park_gallery_img img {
    width: 100%;
    object-fit: cover;
    display: block;
}



.park_gallery_item:hover .park_gallery_img img {
    transform: none;
}

.park_gallery_caption {
    font-size: 14px;
    color: #333;
    text-align: center;
    padding: 5px;
    background: #fff;
    letter-spacing: 2px;
}

/* 交通设施区块 */
.park_traffic {
    background: #f5f5f5;
    padding: 40px 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.traffic_row {
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}

.traffic_row:last-child {
    margin-bottom: 0;
}

.traffic_col_3 {
    grid-template-columns: repeat(3, 1fr);
}

.traffic_col_4 {
    grid-template-columns: repeat(4, 1fr);
}

.traffic_col_2 {
    grid-template-columns: repeat(2, 1fr);
}

.traffic_col_9 {
    grid-template-columns: repeat(9, 1fr);
    gap: 10px;
}

.traffic_item {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

.traffic_item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.traffic_img {
    width: 100%;
    padding: 15px 10px;
    background: #fafafa;
    box-sizing: border-box;
}

.traffic_col_3 .traffic_img img,
.traffic_col_4 .traffic_img img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.traffic_col_2 .traffic_img {
    padding: 20px 15px;
}

.traffic_col_2 .traffic_img img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.traffic_col_9 .traffic_img {
    padding: 8px 5px;
    background: #fff;
}

.traffic_col_9 .traffic_img img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
}

.traffic_name {
    font-size: 13px;
    color: #333;
    padding: 12px 8px;
    line-height: 1.4;
}

.traffic_col_9 .traffic_name {
    font-size: 11px;
    padding: 6px 4px;
    line-height: 1.3;
}

@media screen and (max-width: 860px) {
    .park_gallery_grid_4{
        grid-template-columns: repeat(2, 1fr);
    }
    .c_park_design {
        padding: 30px 20px;
    }

    .park_two_col {
        flex-direction: column;
        gap: 20px;
    }

    .park_col {
        padding: 20px;
    }

    .park_col_title {
        font-size: 18px;
    }

    .park_task_list li {
        font-size: 14px;
        padding: 10px 0 10px 28px;
    }

    .park_concept_list li {
        font-size: 14px;
        padding: 15px 18px;
    }

    .park_image_caption {
        font-size: 15px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .park_gallery_title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .park_main_title {
        font-size: 24px;
        letter-spacing: 2px;
        margin: 30px 0 15px 0;
    }

    .park_main_title::after {
        width:300px;
        height: 3px;
        margin-top: 12px;
    }

    .park_gallery_grid {
        gap: 15px;
        grid-template-columns: repeat(1, 1fr);
    }

    .park_gallery_grid_3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .park_gallery_img img {

    }

    .park_gallery_grid_3 .park_gallery_img img {

    }

    .park_gallery_caption {
        font-size: 14px;
        padding: 14px 10px;
        letter-spacing: 1px;
    }

    .park_traffic {
        padding: 25px 15px;
        margin-bottom: 25px;
    }

    .traffic_row {
        gap: 10px;
        margin-bottom: 15px;
    }

    .traffic_col_3,
    .traffic_col_4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .traffic_col_2 {
        grid-template-columns: 1fr;
    }

    .traffic_col_9 {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .traffic_col_3 .traffic_img img,
    .traffic_col_4 .traffic_img img {
        height: 90px;
    }

    .traffic_col_2 .traffic_img img {
        height: 80px;
    }

    .traffic_col_9 .traffic_img img {
        width: 45px;
        height: 45px;
    }

    .traffic_name {
        font-size: 11px;
        padding: 8px 5px;
    }

    .traffic_col_9 .traffic_name {
        font-size: 10px;
        padding: 4px 2px;
    }
}

@media screen and (max-width: 560px) {
    .c_park_design {
        padding: 20px 12px;
    }

    .park_col_title {
        font-size: 16px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .park_task_list li {
        font-size: 13px;
    }

    .park_concept_list li {
        font-size: 13px;
        padding: 12px 15px;
    }

    .park_image_wrap {
        padding: 10px;
    }

    .park_image_caption {
        font-size: 14px;
        margin-top: 15px;
        padding-top: 10px;
        letter-spacing: 1px;
    }

    .park_gallery_title {
        font-size: 16px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .park_main_title {
        font-size: 20px;
        letter-spacing: 1px;
        margin: 25px 0 12px 0;
        padding-bottom: 15px;
    }

    .park_main_title::after {
        width: 40px;
        height: 3px;
        margin-top: 10px;
    }

    .park_gallery_grid {
        gap: 10px;
    }

    .park_gallery_grid_3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }


    .park_gallery_caption {
        font-size: 12px;
        padding: 10px 8px;
        letter-spacing: 0.5px;
    }

    .park_traffic {
        padding: 18px 10px;
        margin-bottom: 20px;
    }

    .traffic_row {
        gap: 8px;
        margin-bottom: 12px;
    }

    .traffic_col_3,
    .traffic_col_4,
    .traffic_col_2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .traffic_col_9 {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .traffic_col_3 .traffic_img img,
    .traffic_col_4 .traffic_img img {
        height: 70px;
    }

    .traffic_col_2 .traffic_img img {
        height: 70px;
    }

    .traffic_col_9 .traffic_img img {
        width: 40px;
        height: 40px;
    }

    .traffic_name {
        font-size: 10.5px;
        padding: 6px 4px;
    }

    .traffic_col_9 .traffic_name {
        font-size: 9.5px;
        padding: 3px 2px;
    }
}

/* 倍特丽停车场地坪设计方案 */
.park_case_block {
    width: 100%;
    padding: 60px 20px 40px;
    box-sizing: border-box;
    background: #ffffff;
}

.park_case_title_wrap {
    text-align: center;
    margin-bottom: 40px;
}

.park_case_title {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 6px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.park_case_subtitle {
    font-size: 16px;
    color: #4ec548;
    letter-spacing: 3px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.park_case_divider {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #4ec548, #81c784);
    margin: 0 auto;
    border-radius: 2px;
}

.park_case_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.park_case_item {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 8px;
}

.park_case_item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(10, 153, 2, 0.18);
}

.park_case_img {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #f5f5f5;
}

.park_case_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.park_case_item:hover .park_case_img img {
    transform: scale(1.08);
}

.park_case_name {
    text-align: center;
    padding: 22px 15px;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 3px;
    border-top: 3px solid #4ec548;
    background: #fff;
}

@media (max-width: 1024px) {
    .park_case_title {
        font-size: 30px;
        letter-spacing: 4px;
    }
    .park_case_subtitle {
        font-size: 13px;
        letter-spacing: 2px;
    }
    .park_case_img {
        height: 240px;
    }
    .park_case_name {
        font-size: 17px;
        letter-spacing: 2px;
        padding: 18px 10px;
    }
}

@media (max-width: 768px) {
    .park_concept_list{
        gap: 10px;
    }
    .park_case_block {
        padding: 10px 15px 30px;
    }
    .park_case_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .park_case_title {
        font-size: 24px;
        letter-spacing: 2px;
    }
    .park_case_img {
        height: 220px;
    }
    .park_case_name {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .park_case_title {
        font-size: 20px;
        letter-spacing: 1px;
    }
    .park_case_subtitle {
        font-size: 11px;
        letter-spacing: 1px;
    }
    .park_case_img {
        height: 180px;
    }
    .park_case_name {
        font-size: 14px;
        padding: 14px 8px;
        font-weight: 100;
    }
}

/* 查看详情按钮 */
.park_case_img {
    position: relative;
}

.park_case_btn {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    padding: 12px 36px;
    background: rgba(10, 153, 2, 0.92);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(10, 153, 2, 0.4);
    transition: all 0.3s ease;
    user-select: none;
    white-space: nowrap;
    z-index: 5;
}

.park_case_btn:hover {
    background: #4ec548;
    box-shadow: 0 10px 28px rgba(10, 153, 2, 0.55);
    transform: translateX(-50%) translateY(-2px);
}

.park_case_btn:active {
    transform: translateX(-50%) translateY(0);
}

/* PDF 预览弹窗 */
.park_pdf_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999999;
    display: none;
    align-items: center;
    justify-content: center;
}

.park_pdf_modal.is-open {
    display: flex;
}

.park_pdf_mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.park_pdf_box {
    position: relative;
    width: 92%;
    max-width: 1200px;
    height: 88%;
    max-height: 900px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: parkPdfFadeIn 0.3s ease;
}

@keyframes parkPdfFadeIn {
    from { transform: scale(0.95); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.park_pdf_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: linear-gradient(90deg, #4ec548, #66bb6a);
    color: #fff;
    flex-shrink: 0;
}

.park_pdf_title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
}

.park_pdf_close {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s ease;
    user-select: none;
}

.park_pdf_close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.park_pdf_body {
    position: relative;
    flex: 1;
    background: #f5f5f5;
    overflow: hidden;
}

.park_pdf_iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.park_pdf_loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    z-index: 2;
    gap: 20px;
}

.park_pdf_spinner {
    width: 52px;
    height: 52px;
    border: 4px solid #eee;
    border-top-color: #4ec548;
    border-radius: 50%;
    animation: parkPdfSpin 0.9s linear infinite;
}

@keyframes parkPdfSpin {
    to { transform: rotate(360deg); }
}

.park_pdf_loading_text {
    font-size: 15px;
    color: #666;
    letter-spacing: 2px;
}

/* 响应式 */
@media (max-width: 768px) {
    .park_pdf_box {
        width: 96%;
        height: 92%;
        border-radius: 8px;
    }
    .park_pdf_title {
        font-size: 15px;
        letter-spacing: 1px;
    }
    .park_case_btn {
        bottom: 15px;
        padding: 10px 26px;
        font-size: 14px;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .park_pdf_box {
        width: 98%;
        height: 96%;
        border-radius: 6px;
    }
    .park_pdf_header {
        padding: 12px 16px;
    }
    .park_pdf_title {
        font-size: 13px;
    }
    .park_pdf_loading_text {
        font-size: 13px;
    }
    .park_case_btn {
        padding: 9px 22px;
        font-size: 13px;
    }
}


/* ============================================================
   让停车空间 焕新如初 - 新增板块
   ============================================================ */
.park_renew{
    width: 100%;
    max-width: 1200px;
    margin:20px auto 10px;
    padding: 20px 15px 20px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 10px;
}
.park_renew_title{
    margin: 0 0 10px;
    font-size: 46px;
    font-weight: 700;
    color: #222;
    line-height: 1.25;
    text-align: center;
    letter-spacing: 1px;
}
.park_renew_title span{
    color: #4ec548;
}
.park_renew_title::after{
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    border-radius: 4px;
    background: #4ec548;
    margin: 16px auto 0;
}
.park_renew_intro{
    margin: 26px auto 18px;
    font-size: 14px;
    line-height: 2;
    color: #333;
    text-align: justify;
}
.park_renew_intro p{
    margin: 0;
}
.park_renew_brand{
    margin: 0 auto 24px;
    font-size: 14px;
    line-height: 2;
    color: #333;
    text-align: justify;
}
.park_renew_brand strong{
    color: #4ec548;
    font-weight: 700;
}
.park_renew_bar{
    max-width: 1080px;
    margin: 0 auto 38px;
    padding: 14px 30px;
    background: #4ec548;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
    border-radius: 50px;
    box-shadow: 0 6px 18px rgba(10,153,2,.25);
}

.park_renew_cards{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 0 auto;
}
.park_renew_card{
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.park_renew_card:hover{
    transform: translateY(-4px);
    border-color: #4ec548;
    box-shadow: 0 12px 28px rgba(10,153,2,.18);
}
.park_renew_card h3{
    order: 1;
    margin: 6px 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
}
.park_renew_card h3 span{
    color: #4ec548;
}
.park_renew_line{
    order: 2;
    width: 48px;
    height: 3px;
    background: #4ec548;
    border-radius: 2px;
    margin: 10px 0 14px 10px;
}
.park_renew_icon{
    order: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #4ec548;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(10,153,2,.25);
    margin: 0 auto 12px -4px;
    flex: none;
}
.park_renew_icon img{
    width: 75px;
    height: 75px;
    display: block;
}
.park_renew_card p{
    order: 3;
    margin: 0 0 0 10px;
    font-size: 14px;
    color: #555;
    line-height: 1.85;
    text-align: justify;
}
.park_renew_card .park_renew_icon{
    margin-right: auto;
    margin-left: 10px;
}
@media (max-width: 1440px){
    .park_renew_title{
        font-size: 30px;
    }
}
.park_color_tool_wrap{
    padding: 60px 0; background: #f8f9fa;
}
.park_color_tool_wrap h2{
    font-size: 32px; color: #333; margin-bottom: 10px;
}
/* 小屏适配 */
@media (max-width: 1600px) {
    .park_renew_title{
        font-size: 32px;
    }
    .park_renew_card h3 {
        font-size: 17px;
        margin: 0 0 0 10px !important;
        display: inline-block;
        vertical-align: middle;
        line-height: 1.4;
    }
    .park_renew_icon {
        margin: 0 !important;
        display: inline-block;
        vertical-align: middle;
    }
    .park_renew_card{
        display: block;
    }
    .park_color_tool_wrap{
        padding: 30px 0;
    }
    .park_case_block{
        padding: 20px 20px 40px;
    }
    .park_case_title{
        font-size: 26px;
        margin-bottom: 5px
    }
    .park_case_subtitle{
        font-size: 14px;
        margin-bottom: 10px;
    }
    .park_case_title_wrap{
        margin-bottom: 20px;
    }
    .park_case_grid{
        max-width: 1200px;
    }
    .park_case_name{
        font-size: 18px;
        margin-bottom: 5px;
        line-height: 1.4;
        padding: 12px 10px;
        font-weight: normal;
    }
    .c_park_design{
        max-width: 1200px;
    }
    .park_col{
        padding: 15px;
    }
    .park_col_title{
        font-size: 20px;
    }
    .park_task_list li{
        font-size: 14px;
    }
    .park_main_title{
        font-size: 26px;
    }
    .park_main_title::after{
        width: 180px;
    }
    .park_gallery_grid{
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 900px){
    .park_color_tool_wrap h3{
        font-size: 26px; color: #333; margin-bottom: 10px;
    }
    .park_case_title_wrap{
        margin-bottom: 20px;
    }
    .park_color_tool_wrap{
        padding: 20px 0;
    }
    .park_renew{
        padding: 0px 12px 10px;
    }
    .park_renew_title{
        font-size: 30px;
    }
    .park_renew_intro,
    .park_renew_brand{
        font-size: 14px;
        line-height: 1.9;
    }
    .park_renew_bar{
        font-size: 15px;
        padding: 12px 20px;
        letter-spacing: 1px;
    }
    .park_renew_cards{
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .park_renew_card{
        padding: 15px 18px 12px;
        display: block;
    }
    .park_renew_icon{
        width: 60px;
        height: 60px;
        margin: 0 !important;
        display: inline-block;
        vertical-align: middle;
    }
    .park_renew_icon img{
        width: 60px;
        height: 60px;
    }
    .park_renew_card h3{
        font-size: 17px;
        margin: 0 0 0 10px !important;
        display: inline-block;
        vertical-align: middle;
        line-height: 1.4;
    }
    .park_renew_card h3 span{
        color: #4ec548;
        font-weight: 700;
    }
    .park_renew_line{
        order: 2;
        margin: 10px 0 8px 0 !important;
        width: 48px;
        height: 3px;
        background: #4ec548;
        border-radius: 2px;
    }
    .park_renew_card p{
        order: 3;
        margin: 0 !important;
        font-size: 13px;
        line-height: 1.8;
    }
}
