king
2022-10-08 2ccd33975abf91f9a7929ca8ed6fc03d74ee424d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
.menus-detail-modal {
  .ant-modal {
    top: 70px;
  }
  .ant-modal-body {
    min-height: 200px;
    .menu-line {
      display: flex;
      div {
        padding: 16px 16px;
        border-top: 1px solid #e8e8e8;
        border-left: 1px solid #e8e8e8;
        word-break: break-all;
      }
      div:last-child {
        border-right: 1px solid #e8e8e8;
      }
      .sort {
        width: 10%;
        text-align: center;
      }
      .sign {
        width: 35%;
      }
      .name {
        width: 35%;
      }
      .action {
        width: 20%;
        text-align: center;
        span {
          display: inline-block;
          padding: 0 10px;
          cursor: pointer;
          color: #1890ff;
        }
      }
    }
    .menu-line:first-child {
      background-color: #fafafa;
    }
    .menu-line:last-child {
      div {
        border-bottom: 1px solid #e8e8e8;
      }
    }
  }
}