div {
    font-family: 'AppleGothic', 'Microsoft Yahei', '微软雅黑';
}

.global-nav {
    position: fixed;
    left: -100%;
    bottom: 0;
    z-index: 1013;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.global-nav__nav-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 45px;
    border-top: 1px solid #e5e5e5;
    background-color: #fff;
    /*控制背景颜色*/
}

.global-nav__nav-item {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
}

.global-nav__nav-item i {
    font-size: 20px;

}

.global-nav__nav-item span {
    font-size: 10px;
    color: #000;
}

.global-nav__nav-link {
    position: relative;
    display: block;
    width: 62px;
    height: 45px;
    line-height: 18px;
    padding-top: 6px;
    text-align: center;
    white-space: nowrap;
    color: #000;
    /*控制图标颜色*/
}

.global-nav__nav-link:hover {
    background: #fafafa;
    color: #000;
    /*控制图标颜色*/
}

.global-nav__nav-link:active {
    color: #ff7171;
}

.global-nav__iconfont {
    font-family: "global-nav__iconfont";
    font-size: 24px;
    font-style: normal;
}

.global-nav__nav-tit {
    display: block;
    font-size: 12px;
}

.global-nav__nav-shop-cart-num,
.global-nav__operate-cart-num {
    position: absolute;
    height: 11px;

    line-height: 13px;
    padding: 0px 3.5px;

    border-radius: 5.5px;
    background-color: #fd4609;
    color: #fff;


}

.global-nav__nav-shop-cart-num {
    right: 10px;
    top: 3px;
}

.global-nav__operate-wrap {
    position: relative;
    width: 54.5px;
    height: 45px;
    background-color: rgba(153, 153, 153, .75);
    right: -51px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.global-nav__operate-wrap:before,
.global-nav__operate-wrap:after {
    content: '';
    position: absolute;
    top: 18px;
    width: 7px;
    height: 7px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
}

.global-nav__operate-wrap:before {
    display: none;
    right: 5px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.global-nav__operate-wrap:after {
    right: 7px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.global-nav__yhd-logo {
    position: absolute;
    right: 15px;
    top: 8px;
    width: 29px;
    height: 30px;
    background-image: url(../Images/global_nav_login.png);
    background-repeat: no-repeat;
    background-size: 100%;
    -webkit-transition: width .5s ease;
    transition: width .5s ease;
}

.global-nav__operate-cart-num {
    right: -8px;
    top: -4px;
    -webkit-transition: opacity .5s ease;
    transition: opacity .5s ease;
}

.global-nav--current {
    left: 0;
}

.global-nav--current .global-nav__operate-wrap {
    width: 20px;
    right: 0;
}

.global-nav--current .global-nav__yhd-logo {
    width: 0;
}

.global-nav--current .global-nav__operate-cart-num {
    opacity: 0;
}

.global-nav--current .global-nav__operate-wrap:before {
    display: block;
}

.global-nav--current .global-nav__operate-wrap:after {
    display: none;
}
