.rightSign{

}
.signName{
    flex: auto;
    line-height: 26px;
    padding: .1rem 0;
    overflow: hidden;
    padding-left: 27px;
    background: url(../images/icon-arrow.png) left calc(.1rem + 4px) no-repeat;
}
.signBtn{
    flex-shrink: 0;
    width: fit-content;
    min-width: 1.6rem;
    line-height: 26px;
    color: #FFFFFF;
    padding: .1rem .2rem;
    background: var(--baseColor);
    border-radius: 23px;
    text-align: center;
    margin-left: .1rem;
}
.signBtn_org{
    background-color: #FF5C00;
}

.pop::before{
    display: none;
}
.popBox{
    max-width: 800px;
    padding: .3rem .4rem;
    border-radius: 10px;
}
.downList{
    list-style: none;
}
.downList li{
    position: relative;
    padding: .1rem 0;
    padding-left: 15px;
    overflow: hidden;
    border-bottom: 1px solid rgba(235, 235, 235, .8);
}
.downList li::before{
    display: block;
    content: "";
    width: 6px;
    height: 6px;
    background: #7A7A7A;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -3px;
}
.downList li:last-child{
    border-bottom: none;
}
.downList li span{
    display: block;
    line-height: calc(28px + 0.1rem);
}
.downList li a{
    float: right;
    display: block;
    width: fit-content;
    min-width: .88rem;
    color: #181818;
    padding: 0 .2rem;
    line-height: calc(26px + 0.1rem);
    background: #FAFBFF;
    border-radius: 5px;
    border: 1px solid #D1D7E7;
    text-align: center;
    transition: all .3s linear;
}
.downList li a:hover{
    color: #FFFFFF;
    border-color: var(--baseColor);
    background-color: var(--baseColor);
}

@media (max-width:1200px) {
    .signName{
        padding-left: 20px;
        background-size: 10px auto;
        background-position: left calc(0.1rem + 7px);
    }
}
@media (max-width:767px) {
    .rightSign{
        display: block;
        overflow: hidden;
        text-align: center;
    }
    .signName{
        text-align: left;
    }
    .signBtn{
        display: inline-block;
        vertical-align: middle;
        margin: .1rem;
        padding: .06rem .3rem;
    }
}
@media (max-width:640px) {
    .downList li{
        padding-left: 10px;
    }
    .downList li::before{
        width: 4px;
        height: 4px;
        margin-top: -2px;
    }
}