.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 #614CF2;
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 48px;
    margin-right: 0.8rem;
    cursor: pointer;
}

.active{
    background: #614CF2;
}

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