28 lines
409 B
Plaintext
28 lines
409 B
Plaintext
@import '/variable.less';
|
|
|
|
.home-card {
|
|
display: inline-flex;
|
|
flex-direction: column;
|
|
width: 340rpx;
|
|
height: 488rpx;
|
|
border-radius: 9px;
|
|
background: @bg-color-white;
|
|
|
|
&__image {
|
|
width: 340rpx;
|
|
height: 340rpx;
|
|
}
|
|
|
|
&__info {
|
|
padding: 32rpx;
|
|
font-weight: 400;
|
|
font-size: @font-size-small;
|
|
}
|
|
|
|
&__tag-group {
|
|
display: flex;
|
|
gap: 16rpx;
|
|
margin-top: 16rpx;
|
|
}
|
|
}
|