.navigation{
    width: 350px;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    z-index:200;
    background: #FFFFFF;
    transform: translateX(100%);
    transition: .5s;
}

.navigation-header {
    height: 108px;
    background: url("../image/right-side-header-background.png") round;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #FFFFFF;
    font-size: 20px;
    padding: 0 30px;
    font-family: AlibabaPuHuiTi-Medium;

}
.navigation-header-close{
    width: 16px;
    height: 16px;
    background: url("../image/right-side-close.png") round;
    cursor: pointer;
}


.navigation-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 30px;
    color: #666666;

}

.navigation-content li{
    display: flex;
    gap: 12px;
    height: auto;
    border-bottom: 1px dashed #E6E6E6;
    transition: .2s;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px 0 0;
}

.navigation-content li > div.li-title{
    display: flex;
    gap: 8px;
    align-items: center;
    color: #FF9000;
    font-family: AlibabaPuHuiTi-Regular;
    font-size: 16px;
}

.navigation-content li > .li-title-icon{
    width: 125px;
    height: 16px;
}

.navigation-content li > .li-title-icon img{
    width: 100%;
    height: 100%;
}


.navigation-detail{
    height: auto;
    display: flex;
    font-size: 14px;
    flex-wrap: wrap;
}

.navigation-detail li {
    padding: 0;
    display: block;
    border: none;
    cursor: pointer;
    width: 33%;
    height: 35px;
}

