.unsolved-popup-shape{
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0,0,0,0.5);
    z-index: 555;
    top: 0;
    left: 0;
    margin: 0;
    position: absolute;
}

.unsolved-popup-shape .unsolved-popup-parent{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unsolved-popup-shape .unsolved-popup-container{
    width: 360px;
    display: flex;
    flex-direction: column;
    height: auto;
    background: #fff;
    position: absolute;
    max-height: 80%;
    overflow-y: scroll;
    padding: 20px;
}

.unsolved-popup-shape .unsolved-popup-container::-webkit-scrollbar{
    width: 0;
    display: none;
}

.unsolved-popup-shape p.title {
    font-family: PingFangSC-Medium;
    font-size: 16px;
    color: #000000;
    font-weight: 500;
    width: 100%;
    text-align: left;
    line-height: 22px;
}

.unsolved-popup-shape .unsolved-tag-parent{
    width: calc(100% + 16px);
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

.unsolved-popup-shape .unsolved-tag-parent span {
    margin-right: 16px;
    margin-top: 10px;
    display: flex;
    margin-left: 0;
    flex-direction: row;
    width: calc(50% - 16px);
}


.unsolved-popup-shape .unsolved-tag-parent .ckb {
    width: 0 !important;
    margin: 0;
}

.unsolved-popup-shape .unsolved-tag-parent label{
    background: #F5F5F5;
    border-radius: 16px;
    line-height: 20px;
    padding: 6px 10px;
    cursor:pointer;
    font-size: 14px;
    color: #4B4B4B;
    word-break: break-all;
    width: 100%;
    text-align: center;
}

.unsolved-popup-shape .unsolved-tag-parent input:checked~label{
    background: #FEF2E5;
    border-radius: 16px;
    line-height: 20px;
    padding: 6px 10px;
    cursor:pointer;
    font-size: 14px;
    color: #EB6101;
}

.unsolved-popup-shape .unsolved-but-choose{
    margin-top: 28px;
    display: flex;
    flex-direction: row-reverse;
    padding: 0;
    width: 100%;
}

.unsolved-popup-shape .unsolved-but-choose .unsolved-determine{
    background: #EB6101;
    border: 1px solid rgba(235,97,1,1);
    font-size: 14px;
    color: #FFF;
    height: 36px;
    line-height: 20px;
    padding: 8px 29px;
    margin: 0;
    width: auto !important;
}

.unsolved-popup-shape .unsolved-but-choose .unsolved-cancel{
    background: #FFFFFF;
    border: 1px solid rgba(235,97,1,1);
    font-size: 14px;
    color: #EB6101;
    height: 36px;
    line-height: 20px;
    padding: 8px 29px;
    width: auto !important;
    margin: 0 8px;
}

.unsolved-popup-shape .unsolved-remarks-textarea{
    width: calc(100% - 24px);
    height: 96px;
    border: 1px solid rgba(235,235,235,1);
    display: flex;
    flex-direction: column;
    padding: 14px 12px 10px 12px;
    margin-top: 24px;
}

.unsolved-popup-shape .unsolved-remarks-textarea .remarks{
    background: none;
    width: 100%;
    height: 75px;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    border: none;
    resize: none;
    text-align: left;
    outline: none; /* 禁用默认的焦点框 */
}

.unsolved-popup-shape .unsolved-remarks-textarea .remarks::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.unsolved-popup-shape .unsolved-remarks-textarea .remarks::placeholder{
    color: #CCC;
}

.unsolved-popup-shape .unsolved-remarks-textarea .unsolved-word-prompt {
    font-family: DaQi-Font;
    font-size: 14px;
    color: #CCCCCC;
    text-align: right;
    font-weight: 400;
    line-height: 16px;
    margin-top: 5px;
    align-self: end;
    width: 100%;
}

