.character-panel {
    flex-direction: column-reverse;
    padding-right: 150px;
    position: fixed;
    display: flex;
    bottom: 0px;
    top: calc(var(--nav-height) + 60px);
}

.character-panel .streamer {
    flex-direction: column-reverse;
    align-items: center;
    font-family: serif;
    text-shadow: 0px 0px 10px black;
    font-weight: bold;
    background: var(--signature) no-repeat center/contain;
    box-sizing: border-box;
    font-size: 48px;
    display: flex;
    height: 180px;
    width: 830px;
}

.character-panel .contents > img {height: 350px; border-radius: var(--border-radius); border: 2px solid white;}
.character-panel .contents > div {flex-grow: 1;}
.character-panel .contents {
    flex-direction: row-reverse;
    flex-grow: 1;
    display: flex;
    width: 100%;
}

.character-panel .contents h1 img {height: 160px;}
.character-panel .contents h1 {margin-bottom: 10px;}
.character-panel .contents p {
    font-family: serif;
    font-weight: bold;
    background: linear-gradient(0deg, var(--dark-color) 40%, var(--color) 20%, #ffffff 40%);
    font-size: 32px;
    color: transparent;

    -webkit-background-clip: text;
    background-clip: text;
}

/* 移动端 */
@media (max-aspect-ratio: 4/3) {
    .character-panel {width: 100%; padding-right: 0px; top: var(--nav-height);}
    .character-panel .contents h1 {margin: 0px 5% 30vh 5%; width: 90%;}
    .character-panel .contents h1 img {width: 95%;}
    .character-panel .contents p {font-size: 26px; padding-left: 10vw;}
    .character-panel .contents > img {position: absolute; z-index: -99; width: 50%; right: 25vw; bottom: 50vw; margin: auto;}
    .character-panel .streamer {
        width: 100%;
    }
}