:root {
    --primary-color: #e63946;
    --primary-gradient: linear-gradient(135deg, #e63946, #ff6b6b);
    --bg-light: #f8f9fa;
    --text-main: #212529;
    --text-sub: #6c757d;
    --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,.12);
    --radius: 10px;
    --transition: all .35s cubic-bezier(.4,0,.2,1);
}
body { background: var(--bg-light); font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial; }

.m { display: flex; gap: 20px; max-width: 1200px; margin: 0 auto; padding: 20px; }
.m3 { flex: 3; }

/* ===== 企业名单 ===== */
.company-list {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    padding: 20px;
    margin-top: 16px;
}

/* 标题样式统一 */
.moban_headtxt {
    height: 48px;
    line-height: 48px;
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    border-left: 4px solid #e63946;
    padding-left: 14px;
    background: #fff;
    border-radius: 6px 6px 0 0;
}

/* 列表 Grid */
.company-list ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 0;
    margin: 0;
}

.company-list li {
    list-style: none;
    background: #fafbfc;
    border-radius: 8px;
    transition: all .35s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
    position: relative;
    overflow: hidden;
}

/* 左侧红点 */
.company-list li .dot {
    width: 6px;
    height: 6px;
    background: #e63946;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
    transition: transform .3s;
}

/* 链接样式 */
.company-list li a {
    display: block;
    padding: 14px 16px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hover 效果 */
.company-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(230,57,70,.15);
    background: #fff;
}

.company-list li:hover a {
    color: #e63946;
}

.company-list li:hover .dot {
    transform: scale(1.6);
}

/* ===== 响应式 ===== */
@media (max-width: 1200px) {
    .company-list ul {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .company-list ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .company-list ul {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* ===== 城市列表 · 新版 ===== */
.city-list {
    width: 1200px;
    margin: 20px auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    padding: 0;
    overflow: hidden;
}

/* 标题 */
.city-list h1 {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    height: 48px;
    line-height: 48px;
    padding-left: 16px;
    border-left: 4px solid #e63946;
    background: #fff;
    margin: 0;
}

/* 列表容器 */
.city-list ul {
    display: grid;
    grid-template-columns: repeat(13, 1fr);
    gap: 0;
    padding: 10px 0;
    margin: 0;
}

/* 单项 */
.city-list ul li {
    list-style: none;
    text-align: center;
}

/* 链接 */
.city-list ul li a {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    color: #444;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .35s cubic-bezier(.4,0,.2,1);
    position: relative;
}

/* 底部小横杠（代替原来的右边框） */
.city-list ul li a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #e63946;
    transition: width .3s ease;
}

/* Hover 效果 */
.city-list ul li:hover a {
    color: #e63946;
    background: #fff5f5;
    border-radius: 6px;
}

.city-list ul li:hover a::after {
    width: 24px;
}

/* ===== 响应式 ===== */
@media (max-width: 1240px) {
    .city-list { width: 96%; }
}

@media (max-width: 1200px) {
    .city-list ul { grid-template-columns: repeat(11, 1fr); }
}

@media (max-width: 992px) {
    .city-list ul { grid-template-columns: repeat(8, 1fr); }
}

@media (max-width: 640px) {
    .city-list ul { grid-template-columns: repeat(6, 1fr); }
    .city-list h1 { font-size: 16px; }
}

@media (max-width: 480px) {
    .city-list ul { grid-template-columns: repeat(4, 1fr); }
}