| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- .B2Scene {
- :global {
- .B2top {
- display: flex;
- justify-content: space-between;
- border-radius: 10px;
- background-color: #fff;
- padding: 15px 24px;
- // 级联选择器的 placeholder
- .ant-select-selection-placeholder {
- color: black;
- }
- &>div {
- display: flex;
- .B2topRow {
- margin-right: 20px;
- &:last-child {
- margin-right: 0;
- }
- }
- }
- }
- .tableMain {
- border-radius: 10px;
- margin-top: 15px;
- height: calc(100% - 80px);
- background-color: #fff;
- .ant-table-body {
- height: 625px;
- overflow-y: auto !important;
- overflow-y: overlay !important;
- .B2audit {
- cursor: pointer;
- color: #1677ff
- }
- .B2auditNo {
- pointer-events: none;
- color: #999;
- }
- .anticon-question-circle {
- color: #1677ff;
- }
- .ant-table-cell {
- padding: 8px !important;
- }
- }
- // 下载json
- .B2TabA{
- color: var(--themeColor);
-
- }
- .B2TabANo{
- color: #ccc;
- cursor: not-allowed;
- }
- }
- }
- }
- .AuditMo {
- :global {
- .ant-modal-close {
- display: none;
- }
- .ant-modal {
- width: 800px !important;
- }
- .B2Amain {
- .B2Arow {
- margin-top: 30px;
- display: flex;
- .B2Arow1 {
- width: 100px;
- text-align: right;
- &>span {
- font-size: 14px;
- color: #ff4d4f;
- }
- }
- .B2Arow2 {
- width: calc(100% - 100px);
- }
- &:nth-of-type(1) {
- .B2Arow1 {
- position: relative;
- top: 3px;
- }
- }
- }
- .B2Abtn {
- margin-top: 20px;
- text-align: center;
- }
- }
- }
- }
|