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.
74 lines
1.3 KiB
74 lines
1.3 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: 300rpx;
|
|
height: 200rpx;
|
|
margin: 30rpx;
|
|
border-radius: 20rpx;
|
|
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;
|
|
}
|
|
.all-bg {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: url(https://fastadmin.oss-cn-shenzhen.aliyuncs.com/xcxImages/card/bg.png) repeat-y;
|
|
background-size: 100%;
|
|
z-index: -1;
|
|
height: 100%;
|
|
}
|