.logo__link .store-name{
    margin-left: 8px;
    font-size: 18px;
    color: #686868;
}
.logo__link .store-name-94{

}
.top-header {
    position: absolute;
    top: 0%;
    right: 0%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 3% 5% 0 5%;
}
.top-header .nav__header {
    display: flex;
    align-items: center;
    /*justify-content: center;*/
}
.nav-icon{
    background: transparent;
    color: #ffffff;
    border: none;
    height: 34px;
}
.nav-icon .nav__icon-toggle-bar {
    background-color: #ffffff;
}
.nav{
    background: transparent;
    box-shadow: none;
}
.nav__menu > li > a {
    font-weight: 400;
    color: #ffffff;
    line-height: unset;
}

.nav__menu > li > a:hover {
    color: #ffffff;
    text-decoration: none;
}

.nav__menu > .active > a {
    color: #ffffff;
}
.nav__menu > .active > a,
.nav__menu > .active > a:hover,
.nav__menu > .active > a:focus {
    color: #ffffff;
    background: none;
}

.nav__menu > .active > a::before {
    background: #ffffff;
    transform: translateX(0);
}
.search-wrapper {
    position: relative;
    margin-right: 10px;
}
.search-wrapper .form{
    margin: 0;
}
.search-wrapper .form-group{
    margin: 0;
}
.search-wrapper .form-control {
    background: transparent;
    display: none;
    color: #fff;
}
.search-wrapper.active  .form-control {
    display: block;
}
.search-wrapper .search-icon{
    color: #ffffff;
    width: 26px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
    z-index: 10;
    cursor: pointer;
}
.top-header .menu-wrapper{
    position: relative;
}
.top-header .menu-container {
    position: absolute;
    top: 34px;
    right: 3px;
    z-index: 10;
    display: none;
    height: 0;
}
.top-header .menu-container.active{
    height: auto;
    display:block;
    animation-name: fadeIn;
    animation-duration: .3s;
    animation-fill-mode: both;
}
.top-header .menu-container .menu-list{
    list-style: none;
    width: 120px;
    background: rgba(0,0,0,.3);
    padding: 20px;
    font-size: 13px;
    border-radius: 6px;
}
.top-header .menu-container .menu-list li{
    margin: 3px 0;
    text-align: right;
}
.top-header .menu-container .menu-list li a{
    color: #ffffff;
    position: relative;
    overflow: hidden;
    display: inline-block;
}
.top-header .menu-container .menu-list li .menu-effect::before{
    background: #ffffff;
    left: -1px;
    bottom: 0px;
    width: 100%;
    height: 2px;
    content: '';
    position: absolute;
    transition: transform .5s ease;
    transform: translateX(-100%);
}
.top-header .menu-container .menu-list li:hover .menu-effect::before{
    transform: translateX(0);
}
/*后退*/
.top-header .back-wrapper {
    width: 200px;
}
.top-header .back-wrapper .back-icon{
    width: 26px;
    cursor: pointer;
}