.app-ranking {
    font-size: 13px;
    color: var(--color);
    background-color: #F5F5F5;
}

.app-ranking .top {
    padding: 20px 0;
    background-color: #65D8D4;
}

.app-ranking .top .title {
    font-size: 36px;
    text-align: center;
    color: #fff;
    padding: 30px 0;
}

.app-ranking .top .data {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.app-ranking .top .data .item:nth-child(2) img {
    width: 120px;
}

.app-ranking .top .data .item {
    gap: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.app-ranking .top .data .item .avatar {
    position: relative;
    display: inline-flex;
    clip-path: polygon(0 25%, 0 75%, 50% 100%, 100% 75%, 100% 25%, 50% 0);
}

.app-ranking .top .data .item img {
    width: 100px;
}

.app-ranking .top .data .item .rank {
    z-index: 12;
    position: absolute;
    right: 0;
    top: 0;
    border-style: solid;
    border-color: transparent transparent red transparent;
    border-width: 0 12px 12px 12px;
    height: 0;
    width: 36px;
    margin: 10px 0 25px 0;
    border-bottom-color: #ffa940;
}

.app-ranking .top .data .item .rank::before {
    content: attr(data-content-before);
    position: absolute;
    left: 2px;
    top: 2px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

.app-ranking .top .data .item .rank::after {
    position: absolute;
    content: "";
    top: 10px;
    left: -12px;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: #FFA940 transparent transparent transparent;
    border-width: 18px 18px 0 18px;
    z-index: -1;
}

.app-ranking .top .data .item:nth-child(3) .rank {
    border-bottom-color: #748BFF;
}

.app-ranking .top .data .item:nth-child(3) .rank::after {
    border-color: #748BFF transparent transparent transparent;
}

.app-ranking .top .data .item .name {
    font-size: 16px;
    color: #fff;
}

.app-ranking .top .data .item .count {
    font-size: 12px;
    color: #fff;
}

.app-ranking .list {
    z-index: 10;
    padding: 20px 10px;
    position: relative;
    margin-top: -10px;
    background-color: #fff;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.app-ranking .list .item {
    display: flex;
    padding: 10px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.app-ranking .list .item .user {
    gap: 26px;
    display: flex;
    color: #666;
}

.app-ranking .list .item .infos {
    color: #aaa;
    gap: 6px;
    font-size: 12px;
    display: flex;
    flex-direction: column;
}