body, dd, dl, dt, form, h1, h2, p, ul {
    font-size: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* 页面整体背景 - 简约设计 */
html, body {
    background: #ffffff !important;
    min-height: 100vh;
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
}

.body1000, .wrapper, #main {
    background: transparent !important;
}

/* 主容器样式 */
.changecitydiv {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    margin: 30px auto;
    max-width: 1200px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

/* 头部区域样式 */
.changecitydiv .vhd {
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.vhd .vhd_l {
    flex: 1;
    padding: 0;
    color: #333;
    font-size: 14px;
    font-weight: 400;
}

.vhd .vhd_r {
    flex: 1;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.vhd .vhd_r b {
    color: #666;
    font-weight: 400;
}

/* 搜索表单样式 */
#changcityForm {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* 输入框样式 */
.focus1, .focus2 {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 180px;
    font-size: 14px;
    background: #ffffff;
    transition: border-color 0.2s ease;
    outline: none;
}

.focus1 {
    border-color: #007bff;
}

.focus2 {
    border-color: #ddd;
}

.focus2:focus {
    border-color: #007bff;
}

/* 提交按钮样式 */
.vsubmit {
    padding: 8px 20px;
    background: #3592E2;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    transition: background-color 0.2s ease;
}


/* 主站按钮样式 */
.msubmit {
    background: #7a47d1de;
    padding: 8px 16px;
    color: white !important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 400;
    transition: background-color 0.2s ease;
    display: inline-block;
}

/* 热门分站区域 */
#blist {
    padding: 20px;
    border-top: 1px solid #e9ecef;
    font-size: 14px;
    line-height: 1.5;
    background: #f8f9fa;
    border-radius: 4px;
    margin: 20px 0;
}

#blist a {
    display: inline-block;
    margin: 4px 8px;
    padding: 6px 12px;
    background: #ffffff;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 400;
    transition: background-color 0.2s ease;
    border: 1px solid #dee2e6;
}

#blist a:hover {
    background: #e9ecef;
    color: #333;
}

/* 城市列表区域 */
#clist {
    padding-top: 20px;
    overflow: visible;
    background: white;
    border-radius: 4px;
    border: 1px solid #e9ecef;
    margin-top: 20px;
}

#clist div.lister {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

#clist div.lister:hover {
    background: #f8f9fa;
}

#clist div.lister:last-child {
    border-bottom: none;
}

/* 省份/拼音标签样式 */
.province dt, .pinyin dt {
    background: #6c757d;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    min-width: 60px;
    text-align: center;
    flex-shrink: 0;
}

/* 城市链接区域 */
.province dd, .pinyin dd {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.province dd a, .pinyin dd a {
    display: inline-block;
    padding: 6px 12px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    border: 1px solid #dee2e6;
    font-size: 14px;
}

.province dd a:hover, .pinyin dd a:hover {
    background: #e9ecef;
    color: #333;
}

/* 热门城市特殊样式 */
a.fontred {
    background: #dc3545 !important;
    color: white !important;
    font-weight: 500;
    border-color: #dc3545 !important;
}

a.fontred:hover {
    background: #c82333 !important;
    color: white !important;
}

/* 信息速递区域 */
.smp_box {
    background: white;
    border-radius: 4px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #e9ecef;
}

.smp_box_title, .smp_box .hd {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #007bff;
}

.smp_box ul {
    list-style: none;
    padding: 0;
}

.smp_box li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.smp_box li:hover {
    background: #f8f9fa;
}

.smp_box li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.smp_box li a:hover {
    color: #007bff;
}

.smp_box li em {
    color: #6c757d;
    font-style: normal;
    font-size: 12px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .changecitydiv {
        margin: 15px;
        padding: 15px;
    }
    
    .changecitydiv .vhd {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .vhd .vhd_l, .vhd .vhd_r {
        width: 100%;
        padding: 8px 0;
    }
    
    #changcityForm {
        justify-content: center;
    }
    
    .focus1, .focus2 {
        width: 150px;
    }
    
    #clist div.lister {
        flex-direction: column;
        gap: 12px;
    }
    
    .province dt, .pinyin dt {
        align-self: flex-start;
        min-width: 50px;
    }
}

/* 清除浮动 */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.clear, .clear5, .clear15 {
    clear: both;
    height: 0;
    overflow: hidden;
}

.clear5 {
    height: 5px;
}

.clear15 {
    height: 15px;
}