|
|
|
@ -19,6 +19,7 @@ |
|
|
|
} |
|
|
|
|
|
|
|
.m-map { |
|
|
|
position: relative; |
|
|
|
width: 100%; |
|
|
|
height: 650px; |
|
|
|
margin-bottom: 10px; |
|
|
|
@ -77,6 +78,44 @@ |
|
|
|
overflow-y: auto; |
|
|
|
} |
|
|
|
|
|
|
|
.m-per { |
|
|
|
position: absolute; |
|
|
|
z-index: 100; |
|
|
|
top: 20px; |
|
|
|
left: 0; |
|
|
|
right: 0; |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|
|
|
|
|
.item { |
|
|
|
display: flex; |
|
|
|
width: 160px; |
|
|
|
|
|
|
|
img { |
|
|
|
display: block; |
|
|
|
margin-right: 16px; |
|
|
|
width: 48px; |
|
|
|
height: 48px; |
|
|
|
} |
|
|
|
.item-info { |
|
|
|
font-size: 14px; |
|
|
|
font-family: PingFangSC-Regular, PingFang SC; |
|
|
|
font-weight: 400; |
|
|
|
color: rgba(255, 255, 255, 0.65); |
|
|
|
line-height: 20px; |
|
|
|
vertical-align: bottom; |
|
|
|
div { |
|
|
|
margin-bottom: 6px; |
|
|
|
} |
|
|
|
b { |
|
|
|
font-weight: 500; |
|
|
|
font-size: 24px; |
|
|
|
color: #ffffff; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.m-cate { |
|
|
|
.list { |
|
|
|
@include scrollBar; |
|
|
|
@ -97,6 +136,13 @@ |
|
|
|
|
|
|
|
&:hover { |
|
|
|
color: #fff; |
|
|
|
|
|
|
|
.item-progress { |
|
|
|
b::after { |
|
|
|
transition: background-position 1.3s; |
|
|
|
background-position: -100% -100%; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.item-name { |
|
|
|
@ -148,9 +194,29 @@ |
|
|
|
border-radius: 1px; |
|
|
|
overflow: hidden; |
|
|
|
b { |
|
|
|
position: relative; |
|
|
|
display: block; |
|
|
|
height: 16px; |
|
|
|
background: linear-gradient(270deg, #6fdeff 0%, rgba(111, 222, 255, 0.1) 100%); |
|
|
|
|
|
|
|
&::after { |
|
|
|
content: ""; |
|
|
|
position: absolute; |
|
|
|
left: 0; |
|
|
|
top: 0; |
|
|
|
right: 0; |
|
|
|
bottom: 0; |
|
|
|
background: linear-gradient( |
|
|
|
-45deg, |
|
|
|
transparent 40%, |
|
|
|
transparent, |
|
|
|
rgba(255, 255, 255, 0.5), |
|
|
|
transparent 60% |
|
|
|
) |
|
|
|
no-repeat; |
|
|
|
background-size: 200% 200%; |
|
|
|
background-position: 200% 200%; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|