king
2023-02-14 3620d67cfd2f2af19ef4d656734badd4445c90b8
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
.menu-voucher-wrap {
  position: relative;
  box-sizing: border-box;
  background: #ffffff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 150px;
  overflow-y: auto;
  overflow-x: hidden;
  color: #000000;
 
  .voucher-header {
    padding: 10px;
    border-bottom: 1px solid #eeeeee;
 
    .header-btn {
      height: 28px;
      min-width: 80px;
      margin-right: 10px;
    }
  }
  .voucher-body {
    .voucher-code {
      display: inline-block;
      width: 160px;
      margin-right: 15px;
      
      .ant-select {
        width: 65px;
        margin-right: 10px;
      }
      .ant-input {
        width: 60px;
      }
      .ant-input-number {
        display: inline-block;
        width: 60px;
        .ant-input-number-handler-wrap {
          display: none;
        }
      }
    }
    .voucher-affix {
      .ant-input-number {
        display: inline-block;
        width: 50px;
        .ant-input-number-handler-wrap {
          display: none;
        }
      }
    }
    .pre-wrap {
      padding: 10px 0px;
    }
    .voucher-date {
      display: inline-block;
      .ant-calendar-picker {
        width: 120px;
      }
    }
    .voucher-text {
      display: inline-block;
      width: calc(56% - 350px);
      margin-left: 12px;
    }
    .voucher-affix {
      float: right;
      width: 240px;
      .ant-input {
        width: 60px;
      }
    }
    .pre-temp-wrap {
      padding: 10px 0px;
      .temp-text {
        display: inline-block;
        width: 22%;
        white-space: nowrap;
        padding-left: 10px;
 
        .ant-input {
          width: calc(100% - 70px);
        }
        .ant-select {
          width: calc(100% - 70px);
        }
      }
      .temp-action {
        float: right;
        .ant-btn {
          margin-left: 15px;
        }
      }
    }
  }
 
  .add-background {
    background: #26C281;
    border-color: #26C281;
    color: #ffffff;
  }
  .print-background {
    background-color: #8E44AD;
    border-color: #8E44AD;
    color: #ffffff;
  }
  .out-background {
    background-color: rgb(50, 197, 210);
    border-color: rgb(50, 197, 210);
    color: #ffffff;
  }
 
  .system-background {
    background: var(--mk-sys-color);
    border-color: var(--mk-sys-color);
    color: #ffffff;
  }
  .user {
    padding: 15px 30px 0px;
  }
}
 
.mk-vcode-dropdown {
  .ant-empty-image svg {
    max-width: 100%;
  }
  .ant-empty-description {
    display: none;
  }
}
.mk-voucher-dropdown-wrap {
  background: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  min-height: 66px;
  .ant-btn {
    display: block;
    width: 100%;
    border: none;
  }
  .split {
    width: 100%;
    height: 1px;
    background: #d8d8d8;
  }
}
.mk-temp-add-modal {
  .ant-form-item {
    .ant-form-item-label {
      width: 170px;
    }
    .ant-form-item-control-wrapper {
      width: 250px;
      display: inline-block;
    }
  }
}