.label{
    font-size: 14px;
    font-weight: 700;
    margin: 1rem 0 0 0;
}

.group{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;       /* 允许换行 */
    gap: 12px;
}

.group div{
    border-radius: 12px;
    border: 1px solid #FFF;
    width: 48px;
    height: 28px;
    text-align: center;
    line-height: 28px;
    margin-right: 0.8rem;
    cursor: pointer;
    color: #fff;
}

.image_ratio_box div{
    height: 48px;
    line-height: 48px;
}

.selected{
    background: #614CF2;
    border: 1px solid #614CF2 !important;
    color: #9191A8 !important;
}

textarea{
    background: #2F3349;
    line-height: 22px;
    border-radius: 6px;
    border: #4673AC dashed 1px;
    margin-top: 1rem;
    width: calc(100vw - 3.2rem);
    height: 168px;
    cursor: pointer;
    padding: 0.8rem;
    text-align: justify;
    color: #9191A8;
    max-width: 750px;
}

.pm-image-preview {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.pm-thumb {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    background: #f5f5f5;
}

.pm-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pm-thumb .pm-remove {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    cursor: pointer;
}