xinyb
2024-03-12 a724cc9cb339f5ec0a13d5fae58e3edecfd6ff4b
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
*, :after, :before {
  box-sizing: border-box;
}
body {
  color: #43484d;
}
.nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid #f5f5f5;
  line-height: 30px;
  margin-bottom: 10px;
}
.nav .nav-tab {
  cursor: pointer;
  position: relative;
  flex: 1;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 3px solid transparent;
  transition: border .2s cubic-bezier(0.43, 0.37, 1, 1);
}
.nav span.active .active-img {
  display: block;
}
.active-img {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  width: 100%;
  height: 10px;
  background: url("/images/active.png") no-repeat center;
  background-size: 150px 10px;
}
.section-tab {
  display: none;
  margin: 10px 30px;
}
.section-tab.active {
  display: block;
}
.version-content {
  position: relative;
  width: 100%;
  z-index: 2;
}
.version-content .versions {
  position: static;
  margin-bottom: 40px;
  padding: 20px 0;
}
.version-content:after {
  content: "";
  position: absolute;
  width: 5px;
  top: 0;
  left: 0;
  bottom: 0;
  margin-left: -2.5px;
  background-color: #e6eaf5;
}
.version-content:before{
  content: "";
  width: 20px;
  height: 5px;
  border-radius: 4px;
  position: absolute;
  left: 50%;
  margin-left: -10px;
  background-color: #e6eaf5;
}
.version-content:before{
  left: 0;
  top: 0;
}
.version-content .versions .version {
  width: 100%;
  top: 0;
  left: 0;
  margin-top: 15px;
  padding-left: 35px;
  padding-right: 0;
  position: relative;
  margin-left: 0;
}
.version-content .versions .version:before {
  border-right: 13px solid #9d9d9d;
}
.version-content .dot {
  z-index: 10;
  position: absolute;
  left: -8px;
  background-color: #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid #007aff;
  top: 12px;
}
.version-content .ver {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 16px;
}
.version-content .date {
  opacity: 0.7;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
.version-content .versions .version+.version{
  margin-top: 50px;
}
.version-content h5{
  font-size: 18px;
  margin: 12px 0;
}