21 lines
402 B
CSS
21 lines
402 B
CSS
.select {
|
|
padding: 0.4rem 0.3rem;
|
|
}
|
|
.title {
|
|
font-size: var(--fontSize18);
|
|
font-weight: 500;
|
|
}
|
|
.select ul {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin-top: 0.2rem;
|
|
}
|
|
.select ul li {
|
|
font-size: 0.28rem;
|
|
background: var(--themeColor);
|
|
padding: 0.06rem 0.22rem;
|
|
margin-right: 0.1rem;
|
|
color: var(--whiteColor);
|
|
border-radius: 0.2rem;
|
|
margin-bottom: 0.2rem;
|
|
} |