| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 | .test-width {    width: 130px;}.sb-show-main {    position: absolute;    top: 0;}.components-select-demo-renderOptionItem {    .custom-option-render {        display: flex;        font-size: 14px;        line-height: 20px;        word-break: break-all;        padding-left: 12px;        padding-right: 12px;        padding-top: 8px;        padding-bottom: 8px;        color: var(--semi-color-text-0);        position: relative;        align-items: center;        cursor: pointer;        box-sizing: border-box;        .option-right {            margin-left: 8px;            display: inline-flex;            align-items: center;        }        &:active {            background-color: var(--semi-color-fill-1);        }        &-focused {            background-color: var(--semi-color-fill-0);        }        &-selected {            font-weight: 700;        }        &-disabled {            color: var(--semi-color-disabled-text);            cursor: not-allowed;        }        &:first-of-type {            margin-top: $spacing-extra-tight;        }        &:last-of-type {            margin-bottom: $spacing-extra-tight;        }    }}
 |