30 lines
551 B
CSS
30 lines
551 B
CSS
|
|
.content {
|
|
padding-top: 0.9rem;
|
|
padding-bottom: 1rem;
|
|
background-color: #ffff;
|
|
}
|
|
.content p{
|
|
padding-top: 0.2rem;
|
|
font-size: 0.24rem;
|
|
margin-bottom: 0.14rem;
|
|
color: #666;
|
|
}
|
|
.content ul {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
.content ul li {
|
|
|
|
width: 22.8%;
|
|
text-align: center;
|
|
font-size: 0.28rem;
|
|
border: 1px solid #ccc;
|
|
margin-bottom: 0.1rem;
|
|
padding: 0.1rem 0;
|
|
box-sizing: border-box;
|
|
margin-right: 0.1rem;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
} |