.pcImg {
    margin-top: .6rem;
}

.common {
    margin-top: .5rem;
    margin-bottom: .2rem;
}

.common ul li {
    border-top: 1px solid #e7e7e7;
    display: flex;
}

.common ul li a {
    width: 100%;
    display: block;
    height: .6rem;
    line-height: .6rem;
    padding-left: .45rem;
    padding-right: .45rem;
    position: relative;
}

.common ul li a .text {
    font-size: .16rem;
    color: #555;
    float: left;
}

.common ul li a::after {
    content: '';
    width: 0.1rem;
    height: 0.1rem;
    border-radius: 50%;
    background-color: #555;
    position: absolute;
    left: .25rem;
    top: .25rem;
}

.common ul li a:hover .text {
    color: #ed6c00;
}

.common ul li a:hover::after {
    content: '';
    width: 0.1rem;
    height: 0.1rem;
    border-radius: 50%;
    background-color: #ed6c00;
    position: absolute;
    left: .25rem;
    top: .25rem;
}

.common ul li a span {
    float: right;
    font-size: .14rem;
    color: #999;
}

@media all and (min-width: 320px) and (max-width: 750px) {
    .common ul li a {
        width: 100%;
        display: block;
        height: 60px;
        line-height: 60px;
        padding-left: 15px;
        padding-right: 15px;
        position: relative;
    }
    .common ul li a .text {
        width: 72%;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        font-size: 14px;
    }
    .common ul li a span {
        float: right;
        font-size: 12px;
        color: #999;
    }
    .common ul li a::after {
        content: '';
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background-color: #555;
        position: absolute;
        left: 7px;
        top: 27px;
    }
    .common ul li a:hover .text {
        color: #555;
    }
    .common ul li a:hover::after {
        content: '';
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background-color: #555;
        position: absolute;
        left: 7px;
        top: 27px;
    }
}