/* ===== SYHUO 货运系统 - 黑色风格首页样式 ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: "Microsoft YaHei", Arial, sans-serif; 
    background: #0a0a0a; 
    font-size: 14px; 
    color: #e8e8e8;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }

/* ===== 覆盖.page-wrapper的宽度限制 ===== */
.page-wrapper {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    overflow-x: visible !important;
}

/* ===== 满屏宽度包装器（突破page-wrapper限制） ===== */
.freight-top-fullwidth,
.freight-nav-fullwidth {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
}

/* ===== 货运顶部区域（与music-top一致）===== */
.freight-top {
    background: linear-gradient(180deg, #222 0%, #1a1a1a 100%) !important;
    border-bottom: 2px solid #444 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5) !important;
    padding: 20px 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    position: relative !important;
    z-index: 10 !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.freight-top .freight-logo h1 {
    color: #fff !important;
    font-size: 20px !important;
    font-weight: bold !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

/* 模块图标样式 */
.module-icon {
    font-size: 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    background: linear-gradient(135deg, #00bcd4, #0097a7) !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 12px rgba(0,188,212,0.4), inset 0 1px 0 rgba(255,255,255,0.15) !important;
}

/* 用户导航 */
.freight-user-nav {
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
}
.freight-user-nav a {
    color: #b0bec5 !important;
    padding: 8px 18px !important;
    border-radius: 20px !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    background: rgba(255,255,255,0.05) !important;
    backdrop-filter: blur(4px) !important;
}
.freight-user-nav a:hover {
    color: #fff !important;
    border-color: #00bcd4 !important;
    background: rgba(0,188,212,0.15) !important;
    box-shadow: 0 0 12px rgba(0,188,212,0.2) !important;
    transform: translateY(-1px) !important;
}

/* ===== 表单分组卡片（毛玻璃+渐变边框） ===== */
.form-section {
    background: rgba(30, 30, 38, 0.85);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(12px);
    overflow: hidden;
}
.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00bcd4, #4dd0e1, #00bcd4);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px 16px 0 0;
}
.form-section:hover {
    border-color: rgba(0,188,212,0.3);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 20px rgba(0,188,212,0.06), inset 0 1px 0 rgba(255,255,255,0.08);
    transform: translateY(-2px);
}
.form-section:hover::before {
    opacity: 1;
}

.form-section .section-title {
    font-size: 15px;
    color: #ccc;
    font-weight: bold;
    margin: 0 0 16px 0;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #2a2a2a;
    border-radius: 6px;
    border: 1px solid #3a3a3a;
}
.form-section .section-title i {
    color: #00bcd4;
    font-size: 16px;
}

.form-row { display: flex; gap: 20px; margin-bottom: 15px; }
.form-group {
    flex: 1;
    position: relative;
    padding: 14px;
    background: rgba(30, 30, 38, 0.6);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}
.form-group:hover {
    border-color: rgba(0,188,212,0.15);
    background: rgba(30, 30, 38, 0.8);
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #aaa;
    font-size: 13px;
    font-weight: 500;
}
.form-group label .req { color: #e74c3c; }

/* 输入框基础样式 - 双层结构内框 */
.form-control {
    width: 100%;
    height: 40px;
    padding: 0 14px;
    border: 2px solid rgba(255,255,255,0.1) !important;
    font-size: 14px;
    outline: none;
    background: rgba(20,20,28,0.8) !important;
    color: #e8e8e8 !important;
    border-radius: 10px !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(4px);
}
.form-control:focus { 
    border-color: var(--input-accent, #00bcd4) !important;
    box-shadow: 0 0 0 4px rgba(0,188,212,0.08), 0 0 16px rgba(0,188,212,0.1) !important;
    background: rgba(25,25,35,0.9) !important;
}
.form-control::placeholder { color: #888; }
textarea.form-control {
    height: 70px;
    padding: 8px 12px;
    resize: vertical;
}
select.form-control {
    -webkit-appearance: auto;
    appearance: auto;
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)) !important;
    color: #d0d0d0 !important;
    padding: 0 30px 0 12px !important;
}
select.form-control option { background: #1a1a1a; color: #d0d0d0; }

/* ===== 输入框 - 双层结构（毛玻璃+彩色边框）===== */
.input-group {
    display: flex;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    background: rgba(20,20,28,0.8) !important;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(6px);
}
.input-group:focus-within {
    border-color: var(--input-accent, #00bcd4);
    box-shadow: 0 0 0 4px rgba(0,188,212,0.08), 0 0 16px rgba(0,188,212,0.1);
}
.input-group .form-control {
    flex: 1;
    border: none !important;
    height: 38px;
    box-shadow: none !important;
    outline: none !important;
    background: transparent !important;
    color: #e8e8e8 !important;
    font-size: 14px;
    padding: 0 12px;
}
.input-group .form-control::placeholder { color: #888; }
.input-group .input-group-text {
    background: transparent !important;
    border: none;
    display: flex;
    align-items: center;
    padding: 0 10px;
    flex-shrink: 0;
}

/* 选址按钮 - 配合彩色主题（优化版） */
.input-group .btn-locate {
    align-self: stretch;
    padding: 0 18px;
    border: none;
    border-left: 2px solid rgba(255,255,255,0.1);
    background:
        linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)) !important;
    color: var(--input-accent, #00bcd4) !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.input-group .btn-locate:hover {
    background:
        linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06)) !important;
    transform: scale(1.03);
}

/* ===== 彩色主题系统 - 优化版（高可见度 + 发光效果）===== */

/* 红色 - 发货地址 */
.input-red {
    --input-accent: #ff4757;
    --input-rgb: 255,71,87;
    border-color: rgba(255,71,87,0.7) !important;
    box-shadow: inset 0 1px 3px rgba(255,71,87,0.08), 0 2px 8px rgba(0,0,0,0.15) !important;
}
.input-red:focus-within,
.form-control.input-red:focus {
    border-color: #ff4757 !important;
    box-shadow:
        inset 0 1px 5px rgba(255,71,87,0.12),
        0 0 0 4px rgba(255,71,87,0.18),
        0 0 20px rgba(255,71,87,0.1) !important;
}

/* 绿色 - 收货地址 */
.input-green {
    --input-accent: #2ed573;
    --input-rgb: 46,213,115;
    border-color: rgba(46,213,115,0.7) !important;
    box-shadow: inset 0 1px 3px rgba(46,213,115,0.08), 0 2px 8px rgba(0,0,0,0.15) !important;
}
.input-green:focus-within,
.form-control.input-green:focus {
    border-color: #2ed573 !important;
    box-shadow:
        inset 0 1px 5px rgba(46,213,115,0.12),
        0 0 0 4px rgba(46,213,115,0.18),
        0 0 20px rgba(46,213,115,0.1) !important;
}

/* 蓝色 - 时间/日期 */
.input-blue {
    --input-accent: #3742fa;
    --input-rgb: 55,66,250;
    border-color: rgba(55,66,250,0.7) !important;
    box-shadow: inset 0 1px 3px rgba(55,66,250,0.08), 0 2px 8px rgba(0,0,0,0.15) !important;
}
.input-blue:focus-within,
.form-control.input-blue:focus {
    border-color: #3742fa !important;
    box-shadow:
        inset 0 1px 5px rgba(55,66,250,0.12),
        0 0 0 4px rgba(55,66,250,0.18),
        0 0 20px rgba(55,66,250,0.1) !important;
}

/* 橙色 - 联系人/其他 */
.input-orange {
    --input-accent: #00bcd4;
    --input-rgb: 0,188,212;
    border-color: rgba(0,188,212,0.7) !important;
    box-shadow: inset 0 1px 3px rgba(0,188,212,0.08), 0 2px 8px rgba(0,0,0,0.15) !important;
}
.input-orange:focus-within,
.form-control.input-orange:focus {
    border-color: #00bcd4 !important;
    box-shadow:
        inset 0 1px 5px rgba(0,188,212,0.12),
        0 0 0 4px rgba(0,188,212,0.18),
        0 0 20px rgba(0,188,212,0.1) !important;
}

/* 紫色 - 货物信息 */
.input-purple {
    --input-accent: #a55eea;
    --input-rgb: 165,94,234;
    border-color: rgba(165,94,234,0.7) !important;
    box-shadow: inset 0 1px 3px rgba(165,94,234,0.08), 0 2px 8px rgba(0,0,0,0.15) !important;
}
.input-purple:focus-within,
.form-control.input-purple:focus {
    border-color: #a55eea !important;
    box-shadow:
        inset 0 1px 5px rgba(165,94,234,0.12),
        0 0 0 4px rgba(165,94,234,0.18),
        0 0 20px rgba(165,94,234,0.1) !important;
}

/* 青色 - 价格/数字/描述 */
.input-cyan {
    --input-accent: #00d2d3;
    --input-rgb: 0,210,211;
    border-color: rgba(0,210,211,0.7) !important;
    box-shadow: inset 0 1px 3px rgba(0,210,211,0.08), 0 2px 8px rgba(0,0,0,0.15) !important;
}
.input-cyan:focus-within,
.form-control.input-cyan:focus {
    border-color: #00d2d3 !important;
    box-shadow:
        inset 0 1px 5px rgba(0,210,211,0.12),
        0 0 0 4px rgba(0,210,211,0.18),
        0 0 20px rgba(0,210,211,0.1) !important;
}

/* 地址建议下拉框 */
.addr-input-wrap { position: relative; }
.addr-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border: 1px solid #444;
    border-radius: 6px;
    margin-top: 4px;
    max-height: 180px;
    overflow-y: auto;
    z-index: 50;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.addr-suggestions.show { display: block; }
.addr-suggestions div {
    padding: 10px 14px;
    cursor: pointer;
    color: #ddd;
    font-size: 13px;
    border-bottom: 1px solid #2a2a2a;
}
.addr-suggestions div:last-child { border-bottom: none; }
.addr-suggestions div:hover { background: rgba(0,188,212,0.1); color: #fff; }

/* 价格估算区域 - 黑色主题（在form-section内） */
.price-estimate-box h5 {
    margin: 0 0 16px 0;
    font-size: 16px;
    color: #e8e8e8;
    font-weight: 600;
}
.price-estimate-box h5 i { margin-right: 6px; color: #00bcd4; }
.price-estimate-box p { margin: 0; color: #888; font-size: 13px; }

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
    text-align: center;
}
.price-item {
    padding: 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.price-label {
    color: #00bcd4;
    font-size: 12px;
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
.price-value {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #ff0000;
    line-height: 1.3;
}
.price-note {
    margin: 12px 0 0;
    color: #e74c3c;
    font-size: 11px;
    text-align: center;
}

/* 按钮样式 */
.btn {
    height: 36px;
    padding: 0 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.25s;
    display: inline-block;
}
.btn-primary { 
    background: #e74c3c; 
    color: #fff; 
}
.btn-primary:hover { 
    background: #c0392b; 
    transform: translateY(-1px); 
    box-shadow: 0 4px 12px rgba(231,76,60,0.35); 
}

.submit-area {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
}

/* 复选框行（在form-section内） */
.form-section .checkbox-row { margin: 0; padding: 10px 14px; background: linear-gradient(145deg, #242424, #1e1e1e); border-radius: 6px; border: 1px solid #333; }
.form-section .checkbox-row label { font-size: 13px; color: #bbb; cursor: pointer; display: flex; align-items: center; gap: 8px; }
.form-section .checkbox-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #00bcd4;
    cursor: pointer;
}

/* 服务说明 */
.tips {
    margin-top: 20px;
    padding: 15px 18px;
    background: rgba(255,255,255,0.02);
    border: 1px solid #2a2a2a;
    border-radius: 8px;
}
.tips h4 { font-size: 14px; color: #ccc; margin-bottom: 10px; }
.tips h4 i { color: #00bcd4; margin-right: 6px; }
.tips ul { list-style: none; padding: 0; }
.tips ul li {
    font-size: 13px;
    color: #888;
    line-height: 2.2;
    padding-left: 15px;
    position: relative;
}
.tips ul li:before {
    content: "·";
    position: absolute;
    left: 0;
    color: #00bcd4;
    font-weight: bold;
    font-size: 16px;
}

/* ===== 车型分组导航（与music-nav完全一致）- 满屏宽度 ===== */
.freight-nav {
    background: linear-gradient(180deg, #1a1a1a 0%, #161616 100%) !important;
    border-bottom: 1px solid #333 !important;
    border-top: 1px solid #2a2a2a !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 2px 8px rgba(0,0,0,0.3) !important;
    padding: 14px 15px !important;
    width: 100% !important;
    margin: 0 !important;
}
.freight-nav-container {
    max-width: none !important;
    margin: 0 !important;
    display: flex !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
}
.freight-nav a {
    padding: 8px 18px !important;
    background: #282828 !important;
    border: 1px solid #333 !important;
    border-radius: 4px !important;
    color: #999 !important;
    font-size: 13px !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    font-weight: normal !important;
}
.freight-nav a:hover {
    background: linear-gradient(145deg, #303030, #262626) !important;
    border-color: #00bcd4 !important;
    color: #fff !important;
}
.freight-nav a.active {
    color: #fff !important;
    background: #00bcd4 !important;
    border-color: #00bcd4 !important;
    font-weight: bold !important;
}

/* ===== 主内容区（与music-main一致）- 立体效果 ===== */
.freight-main {
    background: linear-gradient(180deg, #1c1c1c 0%, #181818 50%, #141414 100%) !important;
    min-height: calc(100vh - 200px);
    padding: 24px 15px !important;
    width: 100% !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.02), 0 -4px 20px rgba(0,0,0,0.4) !important;
}
.freight-content {
    max-width: 1400px !important;
    margin: 0 auto !important;
    width: 100% !important;
}

/* ===== 车型卡片容器 - 横向一排滚动布局 ===== */
.vehicle-card-wrapper {
    position: relative;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 260px;
}
.vehicle-card-container {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 54px 10px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #00bcd4 #222;
    flex: 1;
    height: 240px;
}
.vehicle-card-container::-webkit-scrollbar { height: 6px; }
.vehicle-card-container::-webkit-scrollbar-track { background: #222; border-radius: 3px; }
.vehicle-card-container::-webkit-scrollbar-thumb { background: #00bcd4; border-radius: 3px; }

/* 左右滚动按钮 */
.vehicle-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #00bcd4;
    color: #ffffff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vehicle-scroll-btn:hover { background: #00838f; }
.vehicle-scroll-btn:disabled { background: #dddddd; cursor: not-allowed; opacity: 0.5; }
.vehicle-scroll-btn.prev { left: -18px; }
.vehicle-scroll-btn.next { right: -18px; }

/* 车型卡片样式 — 黑色主题独立样式 */
.vehicle-type-card {
    flex: 0 0 calc((100% - 90px) / 6);
    min-width: 160px;
    max-width: 240px;
    height: auto;
    width: auto;
    background: #3a3a42;
    border: 2px solid #00bcd4;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.vehicle-image-container {
    height: 120px;
    overflow: hidden;
    background: #2e2e36;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vehicle-card-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.vehicle-info {
    padding: 15px;
    background: #3a3a42;
    position: static;
}

.vehicle-info .vehicle-name {
    font-size: 14px;
    font-weight: bold;
    color: #f0f0f0;
    margin-bottom: 8px;
}

.vehicle-price-detail {
    margin-bottom: 5px;
}

.vehicle-price-detail .price-main {
    font-size: 16px;
    color: #4dd0e1;
    font-weight: bold;
    margin-bottom: 4px;
}

.vehicle-price-detail .price-extra {
    font-size: 12px;
    color: #b0b0b8;
}

.vehicle-type-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border-color: #4dd0e1;
}

.vehicle-type-card.selected {
    background: #1a2528 !important;
    border-color: #00bcd4;
    border-width: 2px;
}

.vehicle-type-card.selected::after {
    content: '\2713';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: #27ae60;
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    animation: checkmark 0.3s ease-in-out;
}

@keyframes checkmark {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .freight-top {
        padding: 15px !important;
    }
    .freight-top .logo h1 {
        font-size: 17px !important;
    }

    .freight-nav {
        padding: 10px 15px !important;
    }
    .freight-nav a {
        padding: 6px 14px !important;
        font-size: 12px !important;
    }

    .freight-main {
        padding: 15px !important;
    }

    /* 移动端表单分组 */
    .form-section {
        padding: 15px 16px;
        margin-bottom: 15px;
        border-radius: 8px;
    }
    .form-section .section-title {
        font-size: 14px;
        padding: 8px 12px;
        margin-bottom: 14px;
    }

    /* 移动端双层结构 */
    .form-group { padding: 10px; border-radius: 8px; }
    .input-group { border-radius: 6px; }
    .form-control { border-radius: 6px !important; }

    .form-row {
        flex-direction: column;
        gap: 12px;
    }

    /* 移动端车型卡片 - 横向滚动 */
    .vehicle-card-wrapper { padding: 0; }
    .vehicle-card-container { gap: 12px; padding: 8px 0; }
    .vehicle-type-card {
        flex: 0 0 160px;
        min-width: 140px;
    }
    .vehicle-scroll-btn { width: 30px; height: 30px; font-size: 18px; }
    .vehicle-scroll-btn.prev { left: 5px; }
    .vehicle-scroll-btn.next { right: 5px; }

    .price-grid {
        flex-wrap: wrap;
        gap: 20px;
    }
    .price-item {
        flex: 0 0 calc(50% - 10px);
    }

    .btn-primary {
        width: 100%;
    }
}

/* ===== 地图选址弹层（黑色主题） ===== */
.map-picker-modal {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: #1a1a1a; z-index: 99999;
    display: flex; flex-direction: column;
}
.map-picker-header {
    display: flex; align-items: center; padding: 10px 12px;
    background: linear-gradient(180deg, #252525, #1e1e1e); border-bottom: 1px solid #333; gap: 8px;
    flex-shrink: 0; z-index: 20;
}
.map-picker-back {
    border: none; background: none; font-size: 20px; color: #00bcd4;
    padding: 4px 8px; cursor: pointer; display: flex; align-items: center;
}
.map-picker-search-box {
    flex: 1; display: flex; align-items: center;
    background: #2a2a2a; border-radius: 20px; padding: 8px 14px;
    border: 1px solid #333;
}
.map-picker-search-box i { color: #888; margin-right: 8px; font-size: 14px; }
.map-picker-search-box input {
    border: none; outline: none; background: none; width: 100%; font-size: 14px; color: #e8e8e8;
}
.map-picker-suggestions {
    position: absolute; top: 52px; left: 0; right: 0; bottom: 0;
    background: #1e1e1e; z-index: 15; overflow-y: auto;
}
.map-picker-suggestion-item {
    padding: 14px 16px; border-bottom: 1px solid #2a2a2a; cursor: pointer;
    display: flex; align-items: flex-start; gap: 12px;
}
.map-picker-suggestion-item:hover { background: #252525; }
.map-picker-suggestion-item .poi-icon {
    width: 20px; padding-top: 2px; color: #666; flex-shrink: 0; text-align: center;
}
.map-picker-suggestion-item .poi-info { flex: 1; min-width: 0; }
.map-picker-suggestion-item .name { font-size: 15px; color: #e8e8e8; line-height: 1.4; }
.map-picker-suggestion-item .addr { font-size: 12px; color: #888; margin-top: 3px; line-height: 1.3; }
.map-picker-suggestion-item .poi-distance {
    flex-shrink: 0; font-size: 13px; color: #00bcd4; font-weight: 500;
    padding-top: 2px; white-space: nowrap;
}

/* 地图区域 */
.map-picker-map-wrap {
    height: 40vh; min-height: 250px; position: relative; flex-shrink: 0;
}
#mapPickerContainer { width: 100%; height: 100%; }
#mapPickerContainer .amap-logo,
#mapPickerContainer .amap-copyright { display: none !important; opacity: 0 !important; }
.suo-map-brand {
    position: absolute; left: 8px; bottom: 6px; z-index: 5;
    font-size: 15px; color: #00bcd4; font-weight: 700; letter-spacing: 1px;
    pointer-events: none; text-shadow: 0 0 4px rgba(0,0,0,0.9), 0 0 8px rgba(0,0,0,0.7);
}
.map-picker-center-pin {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%);
    font-size: 36px; color: #e74c3c; z-index: 5; pointer-events: none;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.5));
}
.map-picker-locate-btn {
    position: absolute; right: 12px; bottom: 12px;
    width: 32px; height: 32px; border-radius: 50%;
    border: none; background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    z-index: 10;
}
.locate-icon {
    width: 16px; height: 16px;
    border: 2px solid #00bcd4; border-radius: 50%; position: relative; display: block;
}
.locate-icon::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%); width: 6px; height: 6px;
    background: #00bcd4; border-radius: 50%;
}

/* POI列表和底部按钮 */
.map-picker-poi-panel {
    background: #1e1e1e; border-top: 1px solid #333;
    flex: 1; overflow-y: auto; min-height: 0;
}
.map-picker-poi-title {
    padding: 10px 16px; font-size: 13px; color: #888; font-weight: 600;
}
.map-picker-poi-list { overflow-y: auto; }
.map-picker-poi-loading { padding: 20px; text-align: center; color: #666; font-size: 13px; }
.map-picker-poi-item {
    padding: 12px 16px; border-bottom: 1px solid #2a2a2a; cursor: pointer;
    display: flex; align-items: flex-start; gap: 10px;
}
.map-picker-poi-item:hover { background: #252525; }
.map-picker-poi-item .poi-icon { color: #666; font-size: 16px; padding-top: 2px; }
.map-picker-poi-item .poi-info { flex: 1; min-width: 0; }
.map-picker-poi-item .name { font-size: 14px; color: #e8e8e8; line-height: 1.4; }
.map-picker-poi-item .addr { font-size: 12px; color: #888; margin-top: 2px; }
.map-picker-poi-item .distance { font-size: 12px; color: #00bcd4; margin-left: 8px; white-space: nowrap; }

.map-picker-bottom {
    background: linear-gradient(180deg, #252525, #1e1e1e); border-top: 1px solid #333;
    padding: 12px 16px; display: flex; align-items: center; gap: 12px;
    flex-shrink: 0;
}
.map-picker-selected-info { flex: 1; min-width: 0; }
.map-picker-selected-name {
    font-size: 15px; color: #e8e8e8; font-weight: 600; margin-bottom: 2px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.map-picker-selected-addr { font-size: 12px; color: #888; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.map-picker-confirm-btn {
    padding: 10px 28px; background: #e74c3c;
    color: #fff; border: none; border-radius: 22px; font-size: 15px; font-weight: 600;
    cursor: pointer; white-space: nowrap; transition: all 0.3s;
}
.map-picker-confirm-btn:hover { transform: scale(1.03); box-shadow: 0 4px 12px rgba(231,76,60,0.4); }
