@font - face {
    font - family: 'MyCustomFont'; 
    src: url('fonts/nishiki-teki-2.ttf') format('woff2');
}
* {
    margin: 0;
    padding: 0;
}



h1 {
    text-align: center;
    padding: 60px 0;
    font-size: 40px;
    line-height: 1.6;
}

h1 span {
    font-size: 1.2em;
    color: yellow;
    padding: 0 10px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.rank-container {
    width: 400px;
    color: #333;
    font-size: 14px;
    background-color: #fff;
    border-radius: 5px;
}

.rank-title {
    font-size: 30px;
    padding: 30px 20px;
}
.rank-body{
    padding:0  30px 20px;
}
.item{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.item .num{
    font-size: 20px;
    margin-right: 20px;
}
.item dl{
    display: flex;
    align-items: center;
    flex: 1;
}
.avatar{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    margin-right: 10px;
    position: relative;
}
.avatar img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.avatar .img-bd{
    width: 46px;
    height: 54px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.rank-ability{
    color: #999;
}
.item:nth-child(1) .num{
    color:#de5149;
}
.item:nth-child(2) .num{
    color:#ef8634;
}
.item:nth-child(3) .num{
    color:#f6cb46;
}