.character-list-wrap {
    width: auto;
}
.list-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}
.img-row {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}
.img-row.single-img-row {
    justify-content: center;
    gap: 0;
}
.img-box {
    position: relative;
    width: 120px;
    height: 240px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.img-box.single-size {
    width: 240px;
    height: 240px;
}
.selected-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 1;
    pointer-events: none;
}
.img-box.single-size .selected-circle {
    width: 260px;
    height: 260px;
}
.img-box.active .selected-circle {
    opacity: 1;
}
.content-img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    position: relative;
    z-index: 2;
    transition: filter 0.2s ease;
    pointer-events: none;
}
.img-box:hover .content-img {
    filter: drop-shadow(0 0 10px #4096ff);
}
/* 角标向上移动10px：bottom 从6改为16，整体往上偏移 */
.badge-icon {
    position: absolute;
    right: 6px;
    bottom: 16px;
    width: 45px;
    height: 45px;
    z-index: 99;
    pointer-events: none;
    object-fit: contain;
}
.text-row {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.label-text {
    font-size: 16px;
}
.dice-icon {
    width: 22px;
    height: 22px;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.dice-icon:hover {
    transform: scale(1.18);
}