body {
    font-family: "Microsoft YaHei", "Hiragino Sans GB", "Helvetica Neue", Helvetica, tahoma, arial, "WenQuanYi Micro Hei", Verdana, sans-serif;
    font-size: 14px;
    color: #333;
}

a {
    text-decoration: none;
    color: #ff6000;
}

a:hover {
    text-decoration: underline;
}


.substation {
    width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
}

.search-box {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    position: relative;
}

.search-input {
    display: flex;
}

.search-input input {
    width: 300px;
    height: 38px;
    padding: 0 10px;
    border: 1px solid #ccc;
    border-right: none;
    outline: none;
    font-size: 14px;
}

.search-input .search-btn {
    width: 80px;
    height: 40px;
    border: none;
    background-color: #ff6000;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
}

.search-result {
    position: absolute;
    top: 50px;
    left: 20px;
    width: 312px;
    border: 1px solid #ccc;
    background-color: #fff;
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
}

.search-result a {
    display: block;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
}

.search-result a:hover {
    background-color: #f5f5f5;
}


.cascading-selection {
    margin-left: 20px;
}

.cascading-selection span {
    margin-right: 10px;
    color: #666;
}

.cascading-selection select {
    height: 40px;
    padding: 0 10px;
    border: 1px solid #ccc;
    margin-right: 10px;
}

.hot-cities {
    margin-bottom: 20px;
}

.hot-cities h2 {
    font-size: 16px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-weight: 600;
}

.hot-city-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.hot-city-list li {
    margin-right: 20px;
    margin-bottom: 10px;
}

.city-list-container h2 {
    font-size: 16px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-weight: 600;
}

.province-city-list {
    border: 1px solid #eee;
}

/* 字母表头背景色 */
.province-initial {
    background: #f5f5f5;
    color: #8c8c8c;
    font-size: 19px;
    font-weight: bold;
    width: 40px;
    min-width: 40px;
    display: flex;
    height: inherit;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #eee;
}

/* 省份分组整体样式 */
.province-group {
    border-bottom: 1px solid #eee;
    display: flex;
}

.province-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.province-item {
    display: flex;
    gap: 15px;
}

/* 省份名称样式 */
.province-name {
    font-weight: bold;
    color: #333;
    min-width: 68px;
    width: 68px;
    font-size: 16px;
    display: flex;
    border-right: 1px solid #eee;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
}

.city-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 12px 0;
}

.city-list a {
    color: #333;
    transition: background 0.2s, color 0.2s;
    font-size: 14px;
}

.city-list a:hover {
    cursor: pointer;
    color: #ff6000;
}

/* 高亮字母分组 */
.province-initial.active,
.province-initial.active-bg {
    background: #ff6000 !important;
    color: #fff !important;
}

/* 高亮省份名和同省城市 */
.province-item.active,
.province-item.active-bg {
    background: #fff3e0 !important;
}