king
2020-07-29 ca51b8836f1578f81012cbe7ff63bf6061229823
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
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
html {
  font-size: 100px;
  height: 100%;
}
 
body {
  width: 100%;
  font-size: 14px;
  background: #ffffff;
  height: 100%;
  overflow-x: hidden;
}
 
ul,
ol,
li {
  list-style: none;
}
 
a {
  text-decoration: none;
  color: black;
}
 
img {
  max-width: 100%;
  border: 0;
  vertical-align: middle;
}
 
p {
  -webkit-box-orient: vertical;
}
 
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
 
.el-message-box__header {
  padding: 10px 15px 10px;
}
.el-message-box {
  width: unset;
}
.el-message-box__headerbtn {
  display: none;
}
.el-message-box__btns {
  padding: 15px 15px 5px;
}
.el-message-box__btns .el-button {
  border-radius: 5px;
}