104 lines
1.9 KiB
Plaintext
104 lines
1.9 KiB
Plaintext
/* packageG/mycomponent/fight_group.wxss */
|
|
.content {
|
|
padding-left: 20rpx;
|
|
}
|
|
|
|
.content .goods_box {
|
|
background: #fff;
|
|
margin: 10px;
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
display: flex;
|
|
border-bottom: solid 2rpx #ebebeb;
|
|
}
|
|
|
|
.content .goods_box .goods_img {
|
|
width: 240rpx;
|
|
height: 240rpx;
|
|
background: #f2f2f2;
|
|
overflow: hidden;
|
|
border-radius: 8rpx;
|
|
margin-right: 20rpx;
|
|
}
|
|
|
|
.content .goods_box .goods_img image {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.content .goods_box .goods_info {
|
|
width: 450rpx;
|
|
text-align: left;
|
|
}
|
|
|
|
.content .goods_box .goods_info .name {
|
|
font-size: 14px;
|
|
line-height: 40rpx;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 2;
|
|
}
|
|
|
|
.content .goods_box .goods_info .price {
|
|
font-size: 16px;
|
|
margin-top: 12rpx;
|
|
color: #f15353;
|
|
}
|
|
|
|
.content .goods_box .goods_info .price .span {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.content .goods_box .goods_info .price .span:last-child {
|
|
color: #8c8c8c;
|
|
margin-left: 20rpx;
|
|
}
|
|
|
|
.content .goods_box .goods_info .number {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-top: 52rpx;
|
|
}
|
|
|
|
.content .goods_box .goods_info .number .left {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.content .goods_box .goods_info .number .left .iconfont {
|
|
font-size: 48rpx;
|
|
color: #f15353;
|
|
margin-right: 12rpx;
|
|
}
|
|
|
|
.content .goods_box .goods_info .number .left .span {
|
|
color: #f15353;
|
|
font-size: 14px;
|
|
border-left: solid 2rpx #ebebeb;
|
|
padding-left: 12rpx;
|
|
}
|
|
|
|
.content .goods_box .goods_info .number .go_group {
|
|
width: 160rpx;
|
|
height: 56rpx;
|
|
border-radius: 8rpx;
|
|
background: #f15353;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.content .goods_box .goods_info .number .go_group .span {
|
|
color: #fff;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.content .goods_box .goods_info .number .go_group .fa {
|
|
color: #fff;
|
|
font-size: 32rpx;
|
|
margin-left: 20rpx;
|
|
}
|