/*! reset css !*/
html, body, p, ol, ul, li,dl,dd,dt {
    margin: 0;
    padding: 0;
}
html {
    box-sizing: border-box;
}

*, *:before, *:after {
    /*-webkit-user-select: none;*/
    outline: none;
    box-sizing: inherit;
    -webkit-box-sizing: inherit;
}
body {
    -webkit-text-size-adjust: none;
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: transparent;
    font-size: 14px;
    font-family: "Helvetica Neue", Helvetica, STHeiTi, sans-serif;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
}
/*! custom css !*/
.country-title {
    /*padding-left: 15px;*/
}
.country-title > dd {
    margin-left: 15px;
}
.country-title > dt {
    height: 20px;
    width: 100%;
    line-height: 20px;
    background-color: #f0f0f5;
    padding-left: 15px;
}
.country-title > dd {
    position: relative;
    height: 45px;
    line-height: 45px;
    background-color: white;
}
.country-title > dd:after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    content: '';
    background-color: #d9d9d9;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}
.country-title > dd:last-of-type:after {
    height: 0;
    content: '';
}
.letter-nav {
    position: fixed;
    top: 50%;
    right: 10px;
    margin-top: -50%;
}
.letter-nav li {
    line-height: 135%;
    text-align: center;
}
.letter-nav a {
    color: #222222;
}
.active {
    background-color: gray;
    color: white;
}