surprise
2024-04-07 c15f50e77f5588d704301029ba499aab23b0d109
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
html,
body,
#app,
input,
b {
  height: 100%;
  margin: 0;
  padding: 0;
  font-style: normal;
  outline: none;
}
body,
p,
ul,
ol,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "微软雅黑";
}
p {
  margin: 0;
  padding: 0;
}
a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  color: rgba(63, 147, 229, 1);
  text-decoration: none;
}
body {
  height: 100%;
  /* height: 100vh;
  overflow: hidden; */
 
}
 
 
.clearfix::after {
  content: "";
  height: 0;
  line-height: 0;
  display: block;
  clear: both;
  visibility: hidden;
}
 
.clearfix {
  zoom: 1;
 
}
 
input,
select,
button {
  -webkit-appearance: none;
  appearance: none;
}
 
.scrollbar::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 10px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
 
.scrollbar::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 10px;
  background-color: skyblue;
  background-image: -webkit-linear-gradient(45deg,
      rgba(255, 255, 255, 0.2) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.2) 75%,
      transparent 75%,
      transparent);
}
 
.scrollbar::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #ededed;
  border-radius: 10px;
}
 
.button_box {
  background: rgba(61, 190, 253, 0.1) !important;
  border: 1px solid #00A6E2 !important;
  color: rgba(196, 229, 246, 0.85) !important;
}
 
.button_box:hover {
  background: #3DBEFD !important;
  color: rgba(1, 15, 22, 0.85) !important;
 
}
.contentRight_l_left{
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 1s ease, transform 1s ease;
}
.contentRight_l_rgiht{
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 1s ease, transform 1s ease;
 
}