.person{
    display: flex;
    flex-wrap: wrap;
}
.person-item{
    width: 50%;
    justify-content: center;
    text-align: center;
}
.person-item-block{
    margin: 5px;
    border: 1px solid #EBD3A580;
    border-radius: 5px;
}
.person-item-avatar{

}
.person-item-avatar img{
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.person-info{
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding:8px;
}
.person-info-top{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
.person-info-title-name{
    color: #EBD3A5;
    font-size: 14px;
    margin-left: 10px;
}
.person-info-title-country{
    color: #EBD3A580;
    font-size: 12px;
    margin-left: 10px;
}
.person-info-avatar{
    background-image: url('/static/images/crown.png'); /* 替换为你的背景图URL */
    background-size: cover; /* 使背景图覆盖整个容器，同时保持宽高比 */
    background-position: center; /* 将背景图居中显示 */
    background-repeat: no-repeat; /* 防止背景图重复 */
    width: 60px;
    height: 60px;
    text-align: center;
}
.person-info-avatar img{
    width: 47px;
    height: 47px;
    margin-top: 11px;
    border-radius: 21px;
    border: 1px solid #EBD3A5;
}
.person-info-left{
    display: flex;
    align-items: center;
}
.person-info-right{
    display: flex;
}
.person-info-right-btn{
    width: 60px;
    height: 24px;
    font-size: 12px;
    line-height: 24px;
    border-radius: 12px;
    border: #EBD3A5 1px solid ;
    color:#2C170A;
    text-align: center;
    background: linear-gradient(to right, #E6C287, #F7DFBC, #E6C287);
}
.person-info-right-btn:hover{
    background: #E6C287;
}

.person-info-size{
    font-size: 12px;
    line-height: 25px;
}
.person-info-size-name{
    color: #EBD3A580;
}
.person-info-size-value{
    color: #EBD3A5;
    padding: 0 30px;

}

