king
2025-05-23 24842b40de5cd60700bf69dfd38a0332f5431e36
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
.mk-app-manage {
  background: #fff;
  min-height: 100vh;
  padding: 70px 30px;
 
  .loading-mask {
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.35);
 
    .ant-spin {
      position: absolute;
      left: 50%;
      top: 50%;
    }
  }
  .view-wrap {
    width: 100%;
    position: relative;
    display: flex;
 
    .ant-table {
      th {
        white-space: nowrap;
      }
      td {
        word-break: break-all;
      }
    }
    .left-view {
      flex: 1;
      width: 60%;
      padding-right: 5px;
      .trans-table, .script-table {
        margin-top: 40px;
        .ant-input-search {
          width: 250px;
          float: right;
        }
        .ant-typography, .ant-typography p {
          margin-bottom: 0;
        }
      }
      .trans-table.no-footer {
        .ant-pagination {
          display: none;
        }
      }
    }
    .right-view {
      width: 40%;
      padding-left: 20px;
 
      .app-title {
        font-size: 16px;
        font-weight: 500;
        height: 30px;
        line-height: 30px;
        border-bottom: 1px solid #d8d8d8;
        margin-bottom: 17px;
      }
      .sub-app {
        margin: 10px 10px 25px;
        border: 1px solid #e8e8e8;
        height: 185px;
        border-radius: 4px;
        padding-top: 10px;
 
        .app-item {
          height: 30px;
          line-height: 30px;
          div {
            display: inline-block;
            white-space: nowrap;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            line-height: 30px;
          }
          .label {
            width: 40%;
            text-align: right;
            color: rgba(0, 0, 0, 0.65);
          }
          .content {
            width: 60%;
            padding-left: 10px;
            color: rgba(0, 0, 0, 0.85);
          }
        }
        .action {
          text-align: right;
          padding: 5px 20px;
          margin-top: 10px;
          border-top: 1px solid #e8e8e8;
 
          .ant-typography-copy {
            color: #26C281;
          }
          .ant-btn {
            padding: 0 5px;
            margin: 0 10px;
          }
          .anticon-swap {
            color: #1890ff;
            padding: 5px 10px;
          }
        }
      }
    }
  }
  .ant-table-wrapper {
    .ant-table-body {
      border: 1px solid #e8e8e8;
      border-bottom: 0;
      border-radius: 4px;
    }
    .ant-table-tbody {
      > tr.ant-table-row-selected td {
        background: #bae7ff;
      }
    }
  }
  .app-action {
    >button {
      margin-bottom: 10px;
    }
  }
}