* { margin: 0; padding: 0; box-sizing: border-box; }
.park-color-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px;
}
.park-color-header {
    text-align: center;
    margin-bottom: 25px;
}
.park-color-header h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 8px;
}
.park-color-header p {
    font-size: 14px;
    color: #999;
}
.park-scene-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 20px;
}
.park-scene-container {
    position: relative;
    width: 100%;
}
.park-scene-container svg {
    width: 100%;
    height: auto;
    display: block;
}
.color-picker-panel {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 20px 25px;
}
.color-row {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}
.color-row:last-of-type {
    border-bottom: none;
}
.color-row-label {
    width: 90px;
    flex-shrink: 0;
    font-size: 14px;
    color: #666;
    font-weight: 500;
    padding-top: 8px;
}
.color-row-content {
    flex: 1;
    min-width: 0;
}
.color-tabs {
    display: flex !important;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}
.color-tab {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    font-size: 12px;
    color: #666;
    background: #f5f5f5;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}
.color-tab:hover {
    background: #e8e8e8;
    color: #333;
}
.color-tab.active {
    background: #f19b00;
    color: #fff;
}
.color-tab-count {
    font-size: 11px;
    opacity: 0.7;
}
.color-row-colors {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.color-swatch {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    position: relative;
}
.color-swatch:hover {
    transform: scale(1.1);
}
.color-swatch.active {
    border-color: #f19b00;
    box-shadow: 0 0 0 2px rgba(241, 155, 0, 0.25);
}
.color-swatch.white {
    border: 1px solid #e0e0e0;
}
.color-swatch.white.active {
    border-color: #f19b00;
}
.park-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}
.btn {
    padding: 10px 30px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-primary {
    background: #f19b00;
    color: #fff;
}
.btn-primary:hover {
    background: #e69500;
}
.btn-default {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #e5e5e5;
}
.btn-default:hover {
    background: #ebebeb;
}
@media (max-width: 600px) {
    .color-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .color-row-label {
        width: auto;
        padding-top: 0;
    }
    .color-tabs {
        gap: 5px;
        margin-bottom: 10px;
    }
    .color-tab {
        padding: 4px 10px;
        font-size: 11px;
    }
    .color-swatch {
        width: 30px;
        height: 30px;
    }
}

/* 选色工具弹窗 */
.park_color_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.park_color_modal.is-open {
    display: flex;
}
.park_color_modal_mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
}
.park_color_modal_box {
    position: relative;
    background: #fff;
    border-radius: 12px;
    max-width: 1100px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 0 20px 20px;
    box-sizing: border-box;
}
.park_color_modal_close {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    z-index: 10;
    transition: all 0.2s;
}
.park_color_modal_close:hover {
    background: #e8e8e8;
    color: #666;
}

@media (max-width: 768px) {
    .park_color_modal_box {
        width: 95%;
        max-height: 92vh;
        padding: 0 12px 15px;
    }
    .park-color-wrap {
        padding: 15px 0 0 !important;
    }
    .park-color-header h1 {
        font-size: 18px !important;
    }
}
