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
|
| ::-webkit-scrollbar {
| /*滚动条整体样式*/
| width: 6px;
| height: 6px;
| /*高宽分别对应横竖滚动条的尺寸*/
| }
|
| ::-webkit-scrollbar-thumb {
| /*滚动条里面小方块*/
| border-radius: 4px;
| background: #406285;
| }
|
| ::-webkit-scrollbar-track {
| /*滚动条里面轨道*/
| border-radius: 4px;
| background: #192c41;
| cursor: pointer;
| }
| .commonTitle{
| position: relative;
| .topTitle{
| width: 100%;
| height: 27.5px;
| background-image: url("~@/assets/img/menuTitle1.png");
| background-repeat: no-repeat;
| background-size: 100% 100%;
| font-family: PangMenZhengDao;
| text-shadow: 0px 6px 9px #20618e;
| display: flex;
| flex-direction: row;
| align-items: center;
| flex-shrink: 0;
| align-self: flex-start;
|
| span{
| margin-left: 30px;
| font-size: 14px;
| color: #ffffff;
| text-shadow: 0px 2px 0px 0px rgba(0,8,10,0.46);
| }
| }
| }
| .clearfix {
| zoom: 1;
| }
|
| .clearfix:after {
| content: ".";
| width: 0;
| height: 0;
| visibility: hidden;
| display: block;
| clear: both;
| overflow:hidden;
| }
|
| .fl {
| float: left
| }
|
| .fr {
| float: right
| }
|
| .tl {
| text-align: left;
| }
|
| .tc {
| text-align: center
| }
|
| .tr {
| text-align: right;
| }
|
| .ellipse {
| overflow: hidden;
| text-overflow: ellipsis;
| white-space: nowrap;
| }
|
| .ellipseMore {
| display:-webkit-box;
| -webkit-box-orient:vertical;
| -webkit-line-clamp:3;
| overflow:hidden;
| text-overflow:ellipsis;
| word-break: break-all;
| }
|
| .inline{
| display: inline-block;
| *display: inline;
| *zoom: 1;
| }
|
| .imgBox{
| font-size: 0;
| line-height: 0;
| img {
| width: 100%;
| height: 100%;
| }
| }
|
|