You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.1 KiB
62 lines
1.1 KiB
/* pages/list/card/index.wxss */
|
|
.bgimg {
|
|
position: absolute;
|
|
width: 100%;
|
|
}
|
|
.list {
|
|
margin-top: 417rpx;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
.item {
|
|
display: flex;
|
|
width: 700rpx;
|
|
height: 260rpx;
|
|
background: rgba(255, 255, 255, 0.5);
|
|
border: 1rpx solid #FFFFFF;
|
|
border-radius: 13rpx;
|
|
margin: 30rpx auto;
|
|
overflow: hidden;
|
|
}
|
|
.item image {
|
|
display: block;
|
|
width: 360rpx;
|
|
height: 261rpx;
|
|
flex-shrink: 0;
|
|
}
|
|
.item-info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
margin-top: 42rpx;
|
|
margin-bottom: 35rpx;
|
|
font-weight: 600;
|
|
color: #333;
|
|
flex: 1;
|
|
font-size: 35rpx;
|
|
margin-right: 26rpx;
|
|
}
|
|
.item-bottom {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
font-weight: 400;
|
|
}
|
|
.item-bottom .price {
|
|
font-weight: 500;
|
|
font-size: 47rpx;
|
|
color: #D62828;
|
|
}
|
|
.item-bottom .price::before {
|
|
content: "¥";
|
|
font-size: 22rpx;
|
|
}
|
|
.item-bottom .btn {
|
|
width: 180rpx;
|
|
line-height: 60rpx;
|
|
background: #FFFFFF;
|
|
color: #D62828;
|
|
font-size: 28rpx;
|
|
text-align: center;
|
|
border-radius: 30px;
|
|
}
|