.dialog-container.region-dialog {
    padding-top: 7px;
    width: 980px;
    height: 640px;
    margin-left: -490px;
    margin-top: -320px;
    border-radius: 4px;
}
.region-dialog .region-dialog-search-container {
    position: relative;
    background-color: #edf1f7;
    margin: 0 50px 0 7px;
    height: 62px;
    border-radius: 4px;
    color: #506186;
    font-weight: 700;
    font-size: 16px;
    padding-left: 21px;
}
.region-dialog .region-dialog-input-container {
    position: absolute;
    top: 10px;
    bottom: 10px;
    right: 10px;
    left: 100px;
    border-radius: 4px;
    border: 1px solid #9eafc9;
    background-color: #ffffff;
}
.region-dialog-caption {
    padding-top: 20px;
    display: inline-block;
}
.region-dialog .region-dialog-input-container input {
    border: none;
    background-color: transparent;
}
.region-dialog .dialog-content {
    padding-top: 10px;
}
.region-dialog .region-dialog-item {
    float: left;
    width: 25%;
    line-height: 12px;
    box-sizing: border-box;
    padding: 6px 15px 6px 0;
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: padding 0.3s, height 0.3s, opacity 0.1s;
    -moz-transition: padding 0.3s, height 0.3s, opacity 0.1s;
    -webkit-transition: padding 0.3s, height 0.3s, opacity 0.1s;
}
.region-dialog .region-dialog-item a {
    color: #475367;
    font-size: 13px;
}




/* ===== Current Region Dialog ==== */
.current-region-dialog {
    width: 420px;
    height: 390px;
    margin-left: -24px;
    margin-top: -14px;
}
.current-region-dialog .dialog-content {
    height: 340px;
}
.current-region-dialog a {
    position: relative;
    display: inline-block;
    width: 49%;
    box-sizing: border-box;
    line-height: 14px;
    color: #5f7291;
}
.current-region-dialog a.current-region {
    font-weight: 700;
    color: #5f7eb1;
}
.current-region-dialog a.choose-region {
    color: #5f7eb1;
    padding: 6px 15px 6px 0;
    vertical-align: top;
    line-height: 14px;
}
.current-region-dialog a.choose-region span {
    display: inline;
    border-bottom: 1px solid #bbc8de;
    padding: 0;
}
.current-region-dialog a.choose-region:hover span {
    border-bottom-color: #a6b6d2;
}
.current-region-dialog a span {
    position: relative;
    z-index: 2;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 6px 15px 6px 0;
}
.current-region-dialog a:hover {
    color: #55637a;
}
.current-region-dialog a:hover::before {
    content: '';
    position: absolute;
    z-index: 1;
    background-color: #f3f5fa;
    left: -10px;
    top: -5px;
    bottom: -5px;
    right: 0;
}
.current-region-dialog a.choose-region:hover::before {
    display: none;
}