/** 国家手机区号 **/
.area_country_position{
    position: absolute;
    left: 0;
    top: 100%;
    transform: translateY(13px);
    z-index: 55;
}
.area_country_wrapper{
    font-size: 0;
    border: 1px solid #D6D7DC;
    box-sizing: border-box;
    padding: 5px 14px 14px 14px;
    /*background-color: #F6F9FA;*/
    background-color: #FFF;
    margin-bottom: 20px;
    max-height: 500px;
    overflow-y: scroll;
}
.area_country_wrapper::-webkit-scrollbar {display:none}
.area_country_wrapper .category_wrapper{
    font-size: 14px;
    color: #909090;
    line-height: 16px;
    display: flex;
    flex-direction: row;
    width: 100%;
    border-bottom: 2px solid #D8D8D8;
    margin-bottom: 8px;
}
.area_list{
}
.category_wrapper .category_item{
    /*padding: 2px 8px;*/
    padding: 10px;
    cursor: pointer;
}
.area_country_wrapper .category_wrapper .active{
    color: #088DE8;
    position: relative;
}
.area_country_wrapper .category_wrapper .active .height:before{
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #088DE8;
    bottom: -2px;
    left: 0;
    content: '';
}
.area_country_wrapper .area_item_wrapper{
    display: inline-block;
    /*width: 110px;*/
    width: 136px;
    /*border-bottom: 1px solid #E1E1E1;*/
    /*border-right: 1px solid #E1E1E1;*/
}
.area_country_wrapper .area_item_wrapper:nth-child(-n+4){
    /*border-top: 1px solid #E1E1E1;*/
}
/** 热门 **/
.area_country_wrapper .area_list .hot_section{
    /*width: 444px;*/
    width: 544px;
    /*border-left: 1px solid #E1E1E1;*/
}
/** ABC...Z **/
.area_country_wrapper .area_list .section_wrapper{
    /*width: 475px;*/
    display: flex;
    flex-direction: row;
}
.section_wrapper .section_name{
    /*font-size: 12px;*/
    font-size: 14px;
    /*width: 30px;*/
    width: 40px;
    padding-top: 14px;
    /*text-align: center;*/
    /*color: #088DE8;*/
    color: #909090;
    box-sizing: border-box;
    /*padding-left: 6px;*/
    padding-left: 10px;
}
.area_country_wrapper .area_list .section{
    margin-top: 8px;
    /*border-left: 1px solid #E1E1E1;*/
    /*width: 444px;*/
    width: 544px;
}
.area_country_wrapper .area_list .section:first-child{
    margin-top: 0;
}
.area_country_wrapper .area_item{
    font-size: 12px;
    padding: 6px 10px;
    color: #323232;
    display: flex;
    flex-direction: row;
    /*justify-content: space-between;*/
}
.area_country_wrapper .area_item.active{
    background-color: #4BC5F4;
    color: #fff;
}
.area_country_wrapper .area_item:hover {
    background-color: #4BC5F4;
    color: #fff;
}
.area_item  .country_name{
    /*width: 58px; */
    overflow: hidden;
    display: inline-block;
    text-overflow:ellipsis;
    white-space:nowrap;
    margin-right: 6px;
}
.area_country_position:before, .area_country_position:after {
    position: absolute;
    display: inline-block;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    content: '';
}
.area_country_position:before {
    top: -7px;
    left: 23px;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-bottom: 7px solid #ccc;
}
.area_country_position:after {
    top: -6px;
    left: 20px;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    border-left: 10px solid transparent;
}
/** 手机选择区号 **/
.area_code{
    line-height: 20px;
}
.area_code_content{
    position: relative;
    width: 64px;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-justify-content: space-between;
    -moz-box-justify-content: space-between;
    /*height: 44px;*/
    /*border: 1px solid #dbdbdb;*/
    box-sizing: border-box;
    padding: 0 6px 0 13px;
    color: #444;
    cursor: pointer;
}
.active.area_code_content{
    border-color: #088DE8;
}
.area_code_content span{
    font-size: 14px;
}
.area_code_content .select_icon{
    display: inline-block;
    border-radius: 2px;
    border-style: solid;
    border-width: 5px;
    border-color: #909090 transparent transparent transparent;
    transform: translateY(30%);
}
.area_code_content .phone_code_name{
    max-width: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.active .select_icon{
    border-color:transparent transparent #909090 transparent;
    transform: translateY(-30%);
}
.flex_row{
    display: -webkit-box; /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
    display: -moz-box; /* Firefox 17- */
    display: -webkit-flex; /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
    display: -moz-flex; /* Firefox 18+ */
    display: -ms-flexbox; /* IE 10 */
    display: flex; /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-flex-direction: row;
    -moz-box-flex-direction: row;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-box-align-items: center;
    -moz-box-align-items: center;
}
