king
2024-11-13 c75f0c4f74701911e4e00e7b3fca7a269beaedd6
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
.mk-msg-icon {
  font-size: 16px;
  margin-top: 17px;
  margin-right: 20px;
  margin-left: 0px;
  color: #1CD66C;
  cursor: pointer;
}
.mk-msg-icon[data-title] {
  position: relative;
 
  &::before {
    content: " ";
    position: absolute;
    top: 6px;
    left: 2px;
    z-index: -1;
    width: 12px;
    height: 3px;
    display: block;
    background: #fff;
  }
  &::after {
    position: absolute;
    top: -10px;
    left: 15px;
    color: #f5222d;
    font-size: 12px;
    line-height: 16px;
    white-space: nowrap;
    font-weight: 600;
    content: attr(data-title);
  }
}
.mk-msg-wrap {
  position: fixed;
  width: 300px;
  top: 50px;
  right: 120px;
  z-index: -1;
  opacity: 0;
  padding: 10px 10px 30px;
  font-size: 13px;
  background-color: #000000;
  background-clip: padding-box;
  color: rgba(0, 0, 0, 0.85);
  border: 0;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
  transition: all 0.2s;
 
  .title {
    position: relative;
    text-align: left;
    font-size: 14px;
    height: 20px;
    color: #ffffff;
 
    .anticon-close {
      position: absolute;
      right: 5px;
      color: #ffffff;
      cursor: pointer;
      transition: color 0.2s;
    }
  }
  .msg-list {
    .msg-item {
      position: relative;
      height: 55px;
      background: #e8e8e8;
      margin: 10px 0px;
      padding: 8px;
      border-radius: 4px;
      font-size: 14px;
      cursor: pointer;
      span {
        display: block;
      }
    }
    .time {
      position: absolute;
      top: 5px;
      right: 8px;
      font-size: 13px;
    }
  }
 
  .jump {
    position: absolute;
    right: 15px;
    bottom: 12px;
    font-size: 14px;
    cursor: pointer;
    color: var(--mk-sys-color1);
    transition: color 0.2s;
  }
  .jump:hover {
    color: #ffffff;
  }
}
.mk-msg-wrap.visible {
  z-index: 3000;
  opacity: 1;
}