.ai-option-item {
    padding: 5px;
    max-width: 100%;
    box-sizing: border-box;
    display: inline-block;
    position: relative;
    font-size: 0;
    &.single-checked {
        .ai-option-text {
            background: #eaf5ff;
            border: 1rpx solid #1890ff;
        }
    }
    &.multi-checked {
        .ai-option-text {
            background: #eaf5ff;
            border: 1rpx solid #1890ff;
        }
        &:before {
            content: "";
            position: absolute;
            right: 5px;
            top: 4px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: #1890ff;
            box-shadow: 0 1px 3px 0 rgba(24, 144, 255, 0.3);
        }
        &:after {
            content: "";
            position: absolute;
            right: 8px;
            top: 8px;
            width: 6px;
            height: 3px;
            border-color: #fff;
            border-style: solid;
            border-width: 0 0 1px 1px;
            transform: rotate(-45deg);
        }
    }
}
.ai-option-text {
    background-color: #fff;
    padding: 8px 15px;
    line-height: 22px;
    color: #1890ff;
    font-size: 32rpx;
    display: inline-block;
    border-radius: 20px;
    border: 1px solid transparent;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 60px;
    text-align: left;
}
