44 lines
918 B
CSS
44 lines
918 B
CSS
@import "../tool/color.css";
|
|
@import "../tool/size.css";
|
|
@import "../tool/utils.css";
|
|
|
|
.type_list {
|
|
overflow-x: scroll;
|
|
height: .8rem;
|
|
li {
|
|
flex-shrink: 0;
|
|
font-size: var(--f16);
|
|
color: var(--textColor);
|
|
margin-right: var(--f10);
|
|
position: relative;
|
|
&:last-child {
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
|
|
.active {
|
|
&::after {
|
|
content: "";
|
|
width: .6rem;
|
|
height: .1rem;
|
|
border-radius: .5rem;
|
|
background: var(--themeColor);
|
|
display: inline-block;
|
|
position: absolute;
|
|
bottom: -0.24rem;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
}
|
|
}
|
|
}
|
|
|
|
.type_list_content {
|
|
.swiper-slide {
|
|
font-size: var(--f16);
|
|
height: calc(100vh - .96rem - .8rem - 1rem);
|
|
overflow-y: scroll;
|
|
}
|
|
.default-model {
|
|
margin-top: 0 !important;
|
|
}
|
|
} |