.switcher{
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.switcher>img{
    height: 14px;
    width: auto;
}
.switcher span{
    display: inline-block !important;
    margin: 0 0 0 5px !important;
    font-size:13px !important;
    line-height: 1 !important;
}

.switcher>ul{
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute;
    top: 30px;
    left: 0;
    width: 150px !important;
    border: 1px solid #CDCDCD ;
}
.switcher>ul.show{
    display: block !important;
}
.switcher>ul li{
    display: block !important;
    margin: 0 !important;
    padding: 16px !important;
    border-bottom: 1px solid #CDCDCD ;
    background-color: #fff;
    text-align: left;
}
.switcher>ul li:last-child{
    border-bottom: 0;
}

/* 下矢印 */
.switcher:after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    margin: 0 0 0 10px;
    border-right: 1px solid rgba(51, 51, 51, 1);
    border-bottom: 1px solid rgba(51, 51, 51, 1);
    transform-origin: right;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media all and (max-width:769px) {
    .switcher a{
        margin: 0 !important;
    }

    .switcher span{
        color: #fff;
    }
    .switcher li span{
        color: #222;
    }
    .switcher:after {
        border-right: 1px solid rgb(255, 255, 255);
        border-bottom: 1px solid rgb(255, 255, 255);
    }
    
}