| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 | .clearCheckbox .ant-checkbox-inner {    border-color: #FFF;}.searchModal {    position: fixed;    top: 148px;    right: 470px;    z-index: 200;    border-radius: 6px;    min-width: 200px;    max-width: 550px;    min-height: 50px;    max-height: 320px;    background-color: #FFF;    border: 1px solid #d19999;    padding: 6px;    box-sizing: border-box;    cursor: pointer;    .close {        position: absolute;        top: -18px;        right: -24px;        padding: 4px;        font-size: 18px;        color: red;    }    .bts {        position: absolute;        bottom: 0;        right: -33px;        background-color: #FFF;    }}.MYtable {    tbody {        td {            padding: 0px !important;            .ant-progress-bg {                border-radius: 0 !important;                height: 100% !important;            }            .ant-progress-inner {                border-radius: 0 !important;                height: 100%;                background-color: #fff;            }            .ant-progress-line,            .ant-progress-outer {                height: 100%;            }        }        tr:hover {            background-color: #d6d0d0 !important;        }        tr:active {            background-color: #d6d0d0 !important;        }    }}.more {    width: 500px;    max-height: 200px;}#filterQueryContentAd {    width: 100%;    .ant-popover-inner-content {        padding: 0;    }    .bt {        border-radius: 6px !important;        padding: 4px 8px;    }}.selectedFilterAd {    overflow: auto;    display: flex;    gap: 10px;    max-width: 100%;    margin-top: 10px;    &::-webkit-scrollbar {        // display: none; /* Chrome Safari */        width: 1px;        height: 1px;    }    &::-webkit-scrollbar-thumb {        border-radius: 4px;        -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0);        background-color: #ddd;        background: rgba(0, 0, 0, 0);    }    &:hover::-webkit-scrollbar-thumb {        background: rgba(82, 82, 82, 0.3);        -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.2);    }    >div {        max-width: 250px;        height: 32px;        display: flex;        align-items: center;        gap: 2px;        border: 1px solid #dfe1e6;        border-radius: 6px;        cursor: pointer;        background-color: #F2F4F7;        color: #313233;        .text {            width: calc(100% - 40px);            white-space: nowrap;            text-overflow: ellipsis;            overflow: hidden;            padding: 0 0 0 10px;        }        .close {            height: 32px;            width: 32px;            border-left: 1px solid #d9d9d9;            text-align: center;            line-height: 32px;            color: red;            &:hover {                color: #1890ff;            }        }    }}.expandClassname {    .ant-table-expanded-row>td {        position: relative;        height: 308px;        .expandContent {            position: absolute;            left: 4px;            top: 6px;            display: flex;            gap: 8px;        }    }}
 |