.country-select {
    position: absolute;
    width: 116px;
    height: 36px;
    line-height: 36px;
    border: 1px solid #ccc;
    border-right: none;
    font-size: 14px;
    color: #666;
    padding-left: 6px;
    cursor: pointer;
    text-align: left;
    font-weight: 400;
    font-family: tahoma, arial;
}
.country-select.bind {
	height: 32px;
	line-height: 32px;
}
.country-select > .text {
    font-weight: 400;
    font-family: tahoma, arial;
}
.country-select > .arrow {
    background: url(/images/icon.png) no-repeat;
    /* background-color: #f00; */
    position: absolute;
    right: 4px;
    background-position: -388px -845px;
    width: 16px;
    height: 16px;
    top: 50%;
    margin-top: -8px;
}
.country-select.show > .arrow {
    background-position: -404px -845px;
}
.country-input-content.country-other {
	padding-left: 116px;
}

.country-panel {
    background-color: #fff;
    position: absolute;
    cursor: default;
    z-index: 110;
    box-shadow: 0 0 2px 2px #eee;
    border: 1px solid #eee;
    padding: 10px 14px;
    width: 316px;
    height: auto;
    display: none;
    text-align: left;
}

.country-panel>.arrow {}

.country-panel>.arrow::after {
    border-bottom: 10px solid #fff;
    border-left: 10px solid rgba(0, 0, 0, 0);
    border-right: 10px solid rgba(0, 0, 0, 0);
    border-top: 0px solid rgba(0, 0, 0, 0);
    display: block;
    left: 49px;
    position: absolute;
    top: -9px;
    content: "";
}

.country-panel>.arrow::before {
    border-bottom: 10px solid #b5b5b5;
    border-left: 10px solid rgba(0, 0, 0, 0);
    border-right: 10px solid rgba(0, 0, 0, 0);
    border-top: 0px solid rgba(0, 0, 0, 0);
    display: block;
    left: 49px;
    position: absolute;
    top: -10px;
    content: "";
}

.country-panel .search-content {
    width: auto;
    height: auto;
    position: relative;
    background: #f7f7f7;
    margin-bottom: 12px;
}

.country-panel .search-content>.search-icon {
    display: inline-block;
    width: 32px;
    height: 34px;
    position: absolute;
    left: 5px;
    top: 2px;
    background: url(/images/icon.png) no-repeat;
    background-position: -130px -85px;
}

.country-panel .search-content>input {
    display: inline-block;
    *display: inline;
    width: 100%;
    height: 38px;
    line-height: 38px;
    background: #f7f7f7;
    border: 1px solid #eee;
    padding-left: 42px;
}

.country-panel .search-content>input:focus {
    outline: none;
}

.country-panel .search-result {
    line-height: 20px;
}

.country-panel .capital-list {
    line-height: 0;
    font-size: 0;
    margin-left: -2px;
    margin-right: -2px;
}

.country-panel .capital-list>li {
    display: inline-block;
    *display: inline;
    margin-right: 6px;
    padding: 0 2px;
    font-size: 13px;
    line-height: 20px;
    color: #666;
    cursor: pointer;
}

.country-panel .capital-list>li:hover {
    color: #C81623;
}

.country-panel .capital-list>li.cur {
    color: #e4393c;
    cursor: default;
}

.country-panel .current-capital {
    position: relative;
    height: 21px;
    line-height: 21px;
}

.country-panel .current-capital>.text {
    background: #ffffff;
    position: absolute;
    z-index: 2;
    padding-right: 10px;
    font-size: 13px;
    color: #666;
}

.country-panel .current-capital>.line {
    position: absolute;
    width: 100%;
    height: 1px;
    top: 10px;
    background: #eee;
}

.country-panel .country-list {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 150px;
    overflow: auto;
    margin-top: 10px;
}

.country-panel .country-list::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.country-panel .country-list::-webkit-scrollbar-thumb {
    background: #afb0b1;
    border-radius: 2px;
}

.country-panel .country-list>ul {}

.country-panel .country-list ul>li {
    width: 100%;
    cursor: pointer;
    margin-bottom: 10px;
    display: block;
    height: 20px;
    line-height: 20px;
    font-size: 13px;
    color: #666;
}

.country-panel .country-list ul>li:hover {
    background-color: #f4f4f4;
}

.country-panel .country-list ul>li>.name {
    float: left;
}

.country-panel .country-list ul>li>.code {
    float: right;
    margin-right: 5px;
}
.country-no-result {
    display: none;
    font-size: 14px;
    color: #666;
}