        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Microsoft YaHei", Arial, sans-serif;
            background-color: #f5f5f5;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .main-container {
            display: flex;
            width: 100%;
            box-sizing: border-box;
            padding: 0.79rem 0.78rem;
            gap: 0.14rem;
        }

        /* 地图区域 */
        .map-section {
            width: 12.53rem;
            height: 7.89rem;
            position: relative;
            flex-shrink: 0;
            overflow: hidden;
        }

        #map-container {
            width: 100%;
            height: 100%;
            min-height: 400px;
            position: relative;
        }

        .map-copyright {
            position: absolute;
            bottom: 0.1rem;
            left: 0.1rem;
            background-color: rgba(255, 255, 255, 0.8);
            padding: 0.05rem 0.1rem;
            border-radius: 0.03rem;
            font-size: 0.12rem;
            color: #666;
            z-index: 999;
        }

        /* 右侧侧边栏 */
        .sidebar {
            width: 4.96rem;
            height: 7.89rem;
            display: flex;
            flex-direction: column;
            background-color: #fff;
            padding-top: 0.1rem;
            flex-shrink: 0;
            position: relative;
        }
        /* 省份城市下拉列表 */
        .province-dropdown {
            width: 175%;
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            margin-top: 0.05rem;
            background-color: #fff;
            border-radius: 0.04rem;
            box-shadow: 0 0.04rem 0.12rem rgba(0, 0, 0, 0.15);
            z-index: 1000;
            overflow: hidden;
            max-height: 5rem;
            flex-direction: column;
        }
        .province-dropdown.show {
            display: flex;
        }
        .province-dropdown-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            background-color: #fff;
            height: 0.56rem;
            padding: 0 0.2rem;
            border-bottom: 0.01rem solid #eee;
        }
        .province-dropdown-tab {
            text-align: center;
            font-size: 0.14rem;
            font-weight: bold;
            color: #333;
            flex: 1;
            opacity: 0.5;
            padding-bottom: 0;
            cursor: pointer;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }
        .province-dropdown-tab.active {
            opacity: 1;
        }
        .province-dropdown-tab.active::after {
            content: '';
            position: absolute;
            bottom: -0.01rem;
            left: 0;
            right: 0;
            height: 0.02rem;
            background-color: #D3986E;
            z-index: 1;
        }
        .province-modal-body {
            flex: 1;
            overflow-y: auto;
            padding: 0.1rem 0;
            max-height: 4.4rem;
        }
        .province-list-item {
            padding: 0.15rem 0.2rem;
            font-size: 0.16rem;
            color: #333;
            cursor: pointer;
            border-bottom: 0.01rem solid #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .province-list-item:hover {
            background-color: #f5f5f5;
        }
        .province-list-item.selected {
            background-color: #f0f0f0;
            font-weight: bold;
        }
        .province-list-item-check {
            display: none;
            width: 0.16rem;
            height: 0.16rem;
            color: #000;
            font-size: 0.16rem;
            line-height: 1;
        }
        .province-list-item.selected .province-list-item-check {
            display: block;
        }
        .city-list-item {
            padding: 0.15rem 0.2rem;
            font-size: 0.16rem;
            color: #333;
            cursor: pointer;
            border-bottom: 0.01rem solid #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .city-list-item:hover {
            background-color: #f5f5f5;
        }
        .city-list-item.selected {
            background-color: #f0f0f0;
            font-weight: bold;
        }
        .city-list-item-check {
            display: none;
            width: 0.16rem;
            height: 0.16rem;
            color: #000;
            font-size: 0.16rem;
            line-height: 1;
        }
        .city-list-item.selected .city-list-item-check {
            display: block;
        }

        /* 类型下拉列表 */
        .type-dropdown {
            width: 175%;
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            margin-top: 0.05rem;
            background-color: #fff;
            border-radius: 0.04rem;
            box-shadow: 0 0.04rem 0.12rem rgba(0, 0, 0, 0.15);
            z-index: 1000;
            overflow: hidden;
        }
        .type-dropdown.show {
            display: block;
        }
        .type-dropdown-body {
            padding: 0.1rem 0;
        }
        .type-dropdown-item {
            padding: 0.15rem 0.2rem;
            font-size: 0.14rem;
            color: #333;
            cursor: pointer;
            border-bottom: 0.01rem solid #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .type-dropdown-item:last-child {
            border-bottom: none;
        }
        .type-dropdown-item:hover {
            background-color: #f5f5f5;
        }
        .type-dropdown-item.selected {
            background-color: #f0f0f0;
            font-weight: bold;
        }
        .type-dropdown-item-check {
            display: none;
            width: 0.16rem;
            height: 0.16rem;
            color: #000;
            font-size: 0.16rem;
            line-height: 1;
        }
        .type-dropdown-item.selected .type-dropdown-item-check {
            display: block;
        }

        /* 筛选区域 */
        .filter-section {
            display: flex;
            gap: 0.1rem;
            align-items: center;
            background: none;
            padding-left: 0.1rem;
            padding-right: 0.1rem;
            background-color: #fff;
        }

        .filter-item {
            flex-shrink: 0;
            flex: 1;
        }

        .filter-select {
            width: 100%;
            height: 0.56rem;
            padding: 0 0.15rem;
            border: none;
            border-radius: 0.04rem;
            font-size: 0.14rem;
            color: #333;
            background-color: #F4F4F4;
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 0.1rem center;
            background-size: 0.2rem;
        }

        .filter-select:focus {
            outline: none;
        }

        /* 省份触发按钮样式统一 */
        #province-trigger {
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 0.1rem center;
            background-size: 0.2rem;
            padding-right: 0.3rem;
        }

        /* 销售门店列表 */
        .dealer-list {
            width: 100%;
            flex: 1;
            overflow-y: auto;
            background-color: #ffffff;
        }

        .dealer-item {
            background-color: #fff;
            padding: 0.2rem;
            cursor: pointer;
            transition: all 0.3s;margin-bottom: 0.1rem;
        }
        
        .dealer-consult-btn {
            width: auto;
            min-width: 1.2rem;
            height: 0.32rem;
            padding: 0 0.3rem;
            margin-top: 0.15rem;
            border: 0.01rem solid #794c33;
            background-color: #794c33;
            color: #fff;
            font-size: 0.14rem;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            border-radius: 0.02rem;
        }
        
        .dealer-consult-btn.selected {
            background-color: #794c33;
            color: #fff;
        }
        
        .dealer-consult-btn:hover {
            opacity: 0.8;
        }

        .dealer-item:hover {
            box-shadow: 0 0.04rem 0.12rem rgba(0, 0, 0, 0.1);
        }

        .dealer-item.active {
            border-color: #333;
        }

        .dealer-brand {
            font-size: 0.14rem;
            color: #666;
            margin-bottom: 0.08rem;
        }

        .dealer-name {
            font-size: 0.16rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 0.08rem;
        }

        .dealer-address {
            font-size: 0.14rem;
            color: #666;
            line-height: 1.6;
        }

        /* 门店详情页面 */
        .dealer-detail {
            display: none;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #fff;
            z-index: 1000;
            flex-direction: column;
            height: 100%;
        }
        .dealer-detail.show {
            display: flex;
        }
        .dealer-detail-header {
            height: 0.8rem;
            display: flex;
            align-items: center;
            padding: 0 0.2rem;
            border-bottom: 0.01rem solid #eee;
        }
        .dealer-detail-back {
            font-size: 0.16rem;
            color: #333;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.1rem;
        }
        .dealer-detail-content {
            flex: 1;
            overflow-y: auto;
            padding: 0.3rem 0.2rem;
        }
        .dealer-detail-title {
            font-size: 0.2rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 0.3rem;
            line-height: 1.5;
        }
        .dealer-detail-info {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }
        .dealer-detail-info-item {
            display: flex;
            flex-direction: column;
            gap: 0.1rem;
        }
        .dealer-detail-info-label {
            font-size: 0.14rem;
            color: #999;
        }
        .dealer-detail-info-value {
            font-size: 0.16rem;
            color: #333;
            line-height: 1.6;
        }

        /* 滚动条样式 */
        .dealer-list::-webkit-scrollbar {
            width: 0.06rem;
        }

        .dealer-list::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .dealer-list::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 0.03rem;
        }

        .dealer-list::-webkit-scrollbar-thumb:hover {
            background: #999;
        }

        /* 响应式 - 移动端适配 */
        @media (max-width: 768px) {
            body {
                background-color: #fff;
            }

            .header-placeholder {
                height: 1rem !important;
            }

            .main-container {
                flex-direction: column;
                padding: 0.2rem;
                gap: 0.1rem;
                background-color: #F6F6F6;
            }

            .map-section {
                width: 100%;
                height: 50vh;
                min-height: 300px;
                order: 1;
            }

            .sidebar {
                width: 100%;
                height: 50vh;
                min-height: 300px;
                order: 2;
                padding-top: 0;
                background-color: #F6F6F6;
            }

            /* 筛选区域移动端优化 */
            .filter-section {
                flex-direction: row;
                gap: 0.24rem;
                padding: 0;
                background-color: #F6F6F6;
                margin-top: 0.1rem;
            }

            .filter-item {
                width: calc(50% - 0.12rem);
                flex: none;
                background-color: #ffffff !important;
            }

            .filter-select {
                width: 100% !important;
                height: 0.71rem;
                font-weight: normal;
                font-size: 0.28rem;
                color: #000000;
                background-color: #ffffff !important;
                border: none;
                border-radius: 0;
                padding: 0 0.3rem 0 0.12rem;
                background-position: right 0.1rem center;
                background-size: 0.3rem;
            }

            /* 省份触发按钮移动端优化 */
            #province-trigger {
                width: 100% !important;
                height: 0.71rem;
                font-weight: normal;
                font-size: 0.28rem;
                color: #000000;
                background-color: #ffffff !important;
                border: none;
                border-radius: 0;
                padding: 0 0.3rem 0 0.12rem;
                background-position: right 0.1rem center;
                background-size: 0.3rem;
            }

            /* 销售门店列表移动端优化 */
            .dealer-list {
                padding: 0.1rem;
                margin-top: 0.24rem;
            }

            .dealer-item {
                padding: 0.15rem;
                margin-bottom: 0.08rem;
                border-radius: 0.04rem;
            }

            .dealer-name {
                font-size: 0.3rem;
                margin-bottom: 0.06rem;
            }

            .dealer-address {
                font-size: 0.23rem;
            }
            
            .dealer-consult-btn {
                height: 0.4rem;
                min-width: 1.5rem;
                padding: 0 0.35rem;
                font-size: 0.2rem;
                margin-top: 0.12rem;
                border: 0.01rem solid #62574f;
                background-color: #62574f;
                color: #fff;
            }
            
            .dealer-consult-btn.selected {
                background-color: #62574f;
                color: #fff;
            }

            /* 详情页面移动端优化 */
            .dealer-detail-header {
                height: 0.7rem;
                padding: 0 0.15rem;
            }

            .dealer-detail-back {
                font-size: 0.3rem;
                gap: 0.08rem;
            }

            .dealer-detail-content {
                padding: 0.2rem 0.15rem;
            }

            .dealer-detail-title {
                font-size: 0.3rem;
                margin-bottom: 0.25rem;
            }

            .dealer-detail-info {
                gap: 0.15rem;
            }

            .dealer-detail-info-label {
                font-size: 0.23rem;
            }

            .dealer-detail-info-value {
                font-size: 0.23rem;
                line-height: 1.5;
            }

            /* 省份城市下拉列表移动端优化 */
            .province-dropdown {
                max-height: 4rem;
            }

            .province-dropdown-header {
                height: 0.7rem;
                padding: 0 0.2rem;
            }

            .province-dropdown-tab {
                font-size: 0.18rem;
                padding-bottom: 0;
            }

            .province-modal-body {
                padding: 0.1rem 0;
                max-height: 3.3rem;
            }

            .province-list-item,
            .city-list-item {
                padding: 0.12rem 0.15rem;
                font-size: 0.23rem;
            }
            .province-list-item-check,
            .city-list-item-check {
                width: 0.24rem;
                height: 0.24rem;
                font-size: 0.24rem;
            }

            /* 类型下拉列表移动端优化 */
            .type-dropdown-item {
                padding: 0.12rem 0.15rem;
                font-size: 0.23rem;
            }
            .type-dropdown-item-check {
                width: 0.24rem;
                height: 0.24rem;
                font-size: 0.24rem;
            }

            /* 地图版权信息移动端优化 */
            .map-copyright {
                font-size: 0.1rem;
                padding: 0.03rem 0.08rem;
                bottom: 0.05rem;
                left: 0.05rem;
            }

            /* 滚动条移动端优化 */
            .dealer-list::-webkit-scrollbar {
                width: 0.04rem;
            }

            .province-modal-body::-webkit-scrollbar {
                width: 0.04rem;
            }

        .dealer-detail-content::-webkit-scrollbar {
            width: 0.04rem;
        }
        }
        .BMap_bubble {
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            overflow: hidden;
        }
        .BMap_bubble .BMap_bubble_content {
            padding: 0 !important;
        }
        .dealer-info-window {
            padding: 12px 14px;
            line-height: 1.7;
            font-size: 14px;
            color: #222;
        }
        .dealer-info-window .title {
            margin: 0 0 8px 0;
            font-size: 16px;
            font-weight: 700;
            color: #111;
        }
        .dealer-info-window .address {
            margin: 6px 0;
            color: #555;
        }
        .dealer-info-window .phone {
            display: inline-block;
            margin-top: 6px;
            color: #000000;
            text-decoration: none;
        }
        .dealer-info-window .phone:hover {
            text-decoration: underline;
        }
