/* 排行榜样式 */
.paim {
    height: 100%;
    overflow: hidden;
}

.paim ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.paim li {
    height: 20%;
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.paim li p {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.paim li p span {
    width: 30px;
    height: 30px;
    background: rgba(0, 186, 255, .1);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #00baff;
    font-size: 14px;
}

.paim li p i {
    color: #00baff;
    font-style: normal;
    font-size: 14px;
}

.paim li h3 {
    position: absolute;
    left: 80px;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 16px;
    font-weight: normal;
}

.paim li .pmbar {
    width: 100%;
    height: 10px;
    background: rgba(0, 186, 255, .1);
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 5px;
}

.paim li .pmbar span {
    height: 100%;
    background: #00baff;
    display: block;
    border-radius: 5px;
} 