dropdown.scss
1.51 KB
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
@import '@/styles/_support.scss';
.drop-list {
display: inline-block;
min-width: 10rem;
position: relative;
margin: 0 1rem;
font-size: $fontSizeTitle;
.list {
position: absolute;
width: 110%;
left: 0;
right: 0;
margin: 0 auto;
font-size: $fontSize;
.space {
height: 1.5rem;
}
}
span {
display: block;
text-align: center;
}
span:hover {}
ul {
display: none;
overflow: hidden;
box-shadow: 0 0 1.5rem 0 rgba(255, 87, 0, 0.15);
border-radius: .5rem;
li {
// border-bottom: solid 1px #f1f1f1;
background: #ffffff;
text-align: center;
padding: 1.5rem 0;
position: relative;
&:after {
content: "";
width: 7rem;
height: 1px;
background: #f1f1f1;
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%); //居中处理
}
}
li:last-child {
border-bottom: none;
&:after {
background: transparent;
}
}
li:hover {
color: $cOrange;
}
}
}
.user {
width: 9.25rem;
height: 3rem;
border-radius: 3rem;
background-color: $cOrange;
display: flex;
align-items: center;
justify-content: center;
color: #ffffff;
margin: 0 auto;
span {
max-width: 4.25rem;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.icon-img {
margin: 0 .5rem;
}
}
// 登陆
.login {}
@media (max-width: 1100px) {
.drop-list {
margin: 0 -2px;
}
}