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
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
159
160
161
162
163
164
165
.mk-pay-container {
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  // background: #F1F2F7;
  
  .mk-pay-box {
    margin: 0 auto;
    width: 1000px;
    height: calc(100vh - 40px);
    // background: #ffffff;
    padding: 15px 20px;
    // box-shadow: 0px 0px 3px #bcbcbc;
 
    header {
      .plat-logo {
        max-width: 180px;
        max-height: 40px;
      }
      .user-name {
        float: right;
        font-size: 16px;
        line-height: 35px;
      }
    }
 
    .pay-tip {
      font-size: 13px;
      margin-top: 25px;
      margin-bottom: 4vh;
 
      .pay-total {
        float: right;
        span {
          color: red;
          margin: 0 5px;
        }
      }
    }
 
    .mk-pay-type {
      margin: 0px 0px 10px 20px;
      padding-top: 20px;
      .tip {
        margin-right: 5px;
      }
    }
 
    .mk-pay-content {
      min-height: 500px;
      box-shadow: 0px 0px 40px #dfdfdf;
      margin-bottom: 6vh;
 
      .ant-tabs-bar {
        .ant-tabs-tab {
          padding: 12px 16px 8px;
          img {
            width: 80px;
          }
        }
      }
      .qrcode-box {
        position: relative;
        display: inline-block;
        width: 50%;
        text-align: center;
        p {
          font-size: 12px;
          margin-top: 10px;
          span {
            color: #e31613;
            font-weight: bold;
          }
        }
        p.overdue {
          color: #e31613;
          span {
            color: #67a4ff;
            cursor: pointer;
            font-weight: normal;
          }
        }
        canvas {
          padding: 15px;
          border: 1px solid #dddddd;
        }
        .overdue-mask {
          display: inline-block;
          width: 250px;
          height: 250px;
          position: absolute;
          top: 40px;
          left: calc(50% - 125px);
          background: rgba(0, 0, 0, .4);
          p {
            margin-top: 110px;
            background: #ffffff;
            display: inline-block;
            font-size: 13px;
            padding: 5px 10px;
            cursor: pointer;
          }
        }
        .qr-mask {
          position: absolute;
          width: 240px;
          height: 240px;
          top: 45px;
          background: rgba(255, 255, 255, 0.95);
          left: calc(50% - 120px);
        }
        .qrcode-tip {
          background: #ff7674;
          width: 250px;
          margin: 10px auto;
          img {
            width: 40px;
            margin: 4px;
            vertical-align: top;
          }
          div {
            display: inline-block;
            margin-top: 8px;
            margin-left: 10px;
        
            p {
              margin: 0;
              color: #ffffff;
              text-align: left;
            }
          }
        }
      }
      .overdone {
        text-align: center;
        padding-top: 150px;
        font-size: 16px;
        p:first-child {
          color: #26C281;
          margin-bottom: 5px;
          font-size: 18px;
        }
      }
      .weixin-scan {
        vertical-align: top;
        width: 280px;
        margin-top: 20px;
      }
    }
    .mk-pay-msg {
      display: inline-block;
      width: 20%;
      height: calc(100% - 40px);
    }
    .mk-pay-bottom {
      border-top: 1px solid #dddddd;
      padding-top: 10px;
      p {
        margin-bottom: 5px;
        text-align: center;
        font-size: 12px;
      }
    }
  }
}