51 lines
876 B
Plaintext
51 lines
876 B
Plaintext
.type-time {
|
|
text-align: right;
|
|
padding-right: 4%;
|
|
padding-top: 5%;
|
|
font-size: 18px;
|
|
|
|
span {
|
|
padding: 0 2%;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.select {
|
|
color: #45A2FF;
|
|
position: relative;
|
|
|
|
&:after {
|
|
content: '';
|
|
position: absolute;
|
|
display: block;
|
|
width: 70%;
|
|
left: 8px;
|
|
bottom: -14px;
|
|
height: 8px;
|
|
background: url("../images/light.png") no-repeat;
|
|
background-size: 100% 100%;
|
|
}
|
|
}
|
|
|
|
.unSelect {
|
|
color: #A3A4A4;
|
|
}
|
|
}
|
|
*::-webkit-scrollbar {
|
|
width: 12px;
|
|
height: 12px;
|
|
}
|
|
*::-webkit-scrollbar-button {
|
|
width: 0;
|
|
height: 0;
|
|
display: none;
|
|
}
|
|
*::-webkit-scrollbar-corner {
|
|
background-color: transparent;
|
|
}
|
|
*::-webkit-scrollbar-thumb {
|
|
border: 4px solid rgba(0, 0, 0, 0);
|
|
height: 6px;
|
|
border-radius: 25px;
|
|
background-clip: padding-box;
|
|
background-color: rgba(0, 0, 0, 0.30);
|
|
} |