.cityCon {
    position: relative;
    z-index: 100;
}
.cityList {
    position: absolute;
    width: 350px;
    height: 250px;
    left: 0;
    top: 35px;
    border-radius: 10px;
    background-color: #ffffff;
    border: 1px solid #e4e4e4;
    box-sizing: border-box;
    padding: 12px;
    overflow-y: auto;
    box-shadow: 0 0 5px 0 rgba(204, 204, 204, 0.5);
    display: none;
}
.cityList.active {
    display: block;
}
.cityCard {
    width: 100%;
    display: flex;
    line-height: 35px;
    padding-bottom: 12px;
}
.country {
    width: 70px;
    font-size: 14px;
    color: #3D3D3D;
    font-weight: bold;
    flex-grow: 0;
    flex-shrink: 0;
}
.cities {
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
    flex-wrap: wrap;
    width: 254px;
}
.cities a {
    font-size: 14px;
    color: #3d3d3d;
    /*margin-right: 5px;*/
    box-sizing: border-box;
    padding: 0 14px;
    /*border: 1px solid ;*/
    background-color: #F5F5F5;
    border-radius: 16px;
    word-break: keep-all;
    transition: all .3s;
    flex-grow: 0;
    flex-shrink: 0;
    height: 36px;
    line-height: 36px;
    margin: 0 0 12px 8px;
}
.cities a.active {
    color: #ffffff;
    background-color: #448B5B;
}
.cities a:hover {
    color: #ffffff;
    background-color: #448B5B;
}
.truncate-text-90 {
    width: 90px; /* 设置最大宽度 */
    white-space: nowrap; /* 防止文本换行 */
    overflow: hidden; /* 隐藏超出的部分 */
    text-overflow: ellipsis; /* 显示省略号 */
}
