﻿.none {
    display: none;
}
.slist_btn {
    width: 92px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 30px auto;
    background: #0068b7;
    border-radius: 10px;
}
.slist_tk {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    -o-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
    overflow: hidden;
    transform: translateX(100%);
    background: #fff;
}
.slist_tk .logo{
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    background: #f7f7f7;
}
.slist_tk .logo img {
    height: 38px;
}
.slist_tk.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}
.slist_tk .item {
    display: flex;
    align-items: center;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    font-size: 15px;
    border-bottom: 1px solid #f2f2f2;
    color: #777;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
}
.slist_tk .item .icon{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

.slist_tk_close{
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
    top: 17px;
    z-index: 999;
}
.slist_tk_close img{
    display: block;
    max-width: 100%;
}

.head-page .other .page-nav-hid .link {
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}
.head-page .other .page-nav-hid .icon{
    width: 23px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
}
.head-page .other .page-nav-hid .icon img{
    max-width: 100%;
    display: block;
    max-height: 100%;
}
.langure a{
    margin-left: 8px;
}