58 lines
954 B
SCSS
58 lines
954 B
SCSS
/* 热门推荐 */
|
|
.hot {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
min-height: 508rpx;
|
|
margin: 20rpx 20rpx 0;
|
|
border-radius: 10rpx;
|
|
background-color: #fff;
|
|
|
|
.title {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 24rpx 24rpx 0;
|
|
font-size: 32rpx;
|
|
color: #262626;
|
|
position: relative;
|
|
|
|
.title-desc {
|
|
font-size: 24rpx;
|
|
color: #7f7f7f;
|
|
margin-left: 18rpx;
|
|
}
|
|
}
|
|
|
|
.item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: calc(50% - 1rpx);
|
|
height: 254rpx;
|
|
border-right: 1rpx solid #eee;
|
|
border-top: 1rpx solid #eee;
|
|
|
|
.title {
|
|
justify-content: start;
|
|
}
|
|
|
|
&:nth-child(2n) {
|
|
border-right: 0 none;
|
|
}
|
|
|
|
&:nth-child(-n + 2) {
|
|
border-top: 0 none;
|
|
}
|
|
|
|
.image {
|
|
width: 150rpx;
|
|
height: 150rpx;
|
|
}
|
|
}
|
|
|
|
.cards {
|
|
flex: 1;
|
|
padding: 15rpx 20rpx;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
} |