.person-show-wrap {
    max-width: 1200px;
}
.person-show-wrap .content {
    padding: 60px 0;
}
.person-show-wrap .wrap {
    padding: 15px 0;
}
.person-show-wrap .label {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    padding: unset;
    position: relative;
    display: flex;
    align-items: center;
    line-height: 1;
}
.person-show-wrap .label::before {
    content: "";
    display: block;
    width: 4px;
    height: 20px;
    background: var(--color);
    margin-right: 8px;
    border-radius: 4px;
    transform: translateY(-1px);
}
.person-show-wrap .value {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-top: 8px;
    padding-left: 12px;
}
.person-show-wrap .cover {
    max-width: 180px;
    float: right;
}
.person-show-wrap .cover img {
    width: 100%;
    object-fit: contain;
}
.person-show-wrap .panel {
    padding-bottom: 15px;
}
.person-show-wrap .panel > header {
    background: var(--color);
    line-height: 50px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}
.person-show-wrap .panel > header > span {
    font-size: 14px;
    font-weight: 400;
}
.person-show-wrap .panel p {
    font-size: 16px;
}
@media screen and (max-width: 640px) {
    .person-show-wrap .panel > header {
        margin-bottom: 15px;
    }
    .person-show-wrap .cover {
        max-width: 100%;
    }
    .person-show-wrap .content {
        padding: 30px 0;
    }
}
