53 lines
959 B
CSS
53 lines
959 B
CSS
.content_theme1 {
|
|
padding-top: 0.9rem;
|
|
padding-bottom: 1rem;
|
|
}
|
|
.padding_30 {
|
|
padding: 0.3rem 0.3rem 0 0.3rem;
|
|
}
|
|
.item_list .title {
|
|
font-size: 0.34rem;
|
|
color: #333;
|
|
margin-bottom: 0.26rem;
|
|
margin-top: 0.3rem;
|
|
}
|
|
.model_list {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
margin-top: 0.24rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
.model_list .item {
|
|
margin-bottom: 0.6rem;
|
|
}
|
|
.item {
|
|
position: relative;
|
|
text-align: center;
|
|
width: 22%;
|
|
}
|
|
.top {
|
|
position: relative;
|
|
}
|
|
.item span {
|
|
font-size: 0.22rem;
|
|
position: absolute;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
bottom: 0.06rem;
|
|
padding: 0.02rem 0.1rem;
|
|
background: rgb(0 0 0 / 58%);
|
|
color: #fff;
|
|
border-radius: 0.2rem;
|
|
}
|
|
.item img {
|
|
width: 1.2rem;
|
|
height: 1.2rem;
|
|
border-radius: 100%;
|
|
}
|
|
.item p {
|
|
font-size: 0.24rem;
|
|
color: #7e7979;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
} |