33 lines
602 B
CSS
33 lines
602 B
CSS
.list {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
background: #00000008;
|
|
padding-left: 0.2rem;
|
|
justify-content: flex-start !important;
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
.list .shuliang {
|
|
overflow-y: scroll;
|
|
width: 20%;
|
|
padding-top: .3rem;
|
|
margin-left: 0.2rem;
|
|
flex-shrink: 0;
|
|
}
|
|
.list .shuliang .title{
|
|
font-size: .3rem;
|
|
color: black;
|
|
margin-bottom: .1rem;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
text-align: center;
|
|
|
|
}
|
|
.list .shuliang .number{
|
|
font-size: .2rem;
|
|
color: var(--themeColor);
|
|
text-align: center;
|
|
|
|
}
|