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
| @charset "utf-8";
|
| /*-----------------
| Author:xxxx
| update:2020
| -------------------*/
| /** 弹出框CSS**/
| .mask {
| background-color: rgba(0, 0, 0, 0.2);
| width: 100%;
| height: 100%;
| position: fixed;
| top: 0;
| left: 0;
| z-index: 999;
| }
|
| .prompt_box {
| width: 600px;
| height: 400px;
| background: #ffffff;
| border-radius: 6px;
| position: fixed;
| top: 25%;
| left: 50%;
| margin-left: -200px;
| overflow: hidden;
| }
|
| .prompt_box .prompt_title {
| height: 40px;
| line-height: 40px;
| padding-left: 20px;
| border-bottom: 2px solid #ef344a;
| background: #e6e6e6;
| position: relative;
| }
|
| .prompt_box .prompt_title h3 {
| font-size: 16px;
| color: #333333;
| margin-top: 0;
| padding-top: 10px;
| }
|
| .prompt_box .prompt_cont {
| position: relative;
| height: 358px;
| }
|
| .prompt_box .prompt_cont .prompt_text {
| padding: 20px;
| font-size: 16px;
| }
|
| .prompt_box .prompt_cont .prompt_sure {
| position: absolute;
| right: 40%;
| bottom: 5%;
| width: 80px;
| height: 36px;
| background: #c04352;
| border-radius: 5px;
| color: #ffffff;
| font-size: 14px;
| line-height: 36px;
| text-align: center;
| cursor: pointer;
| }
|
| .hide {
| display: none;
| }
|
| .show {
| display: block;
| }
|
|
| .prompt_text {
| height: 300px;
| overflow-y: scroll;
| }
|
| /*chrome 和Safari ----隐藏滚动条*/
| .prompt_text::-webkit-scrollbar {
| width: 0 !important;
| }
|
| /*IE 10+ ----隐藏滚动条*/
| .prompt_text {
| -ms-overflow-style: none;
| }
|
| /*Firefox ----隐藏滚动条*/
| .prompt_text {
| scrollbar-width: none;
| }
|
|
|
|