mirror of
https://github.com/wu736139669/ASHEBShop-h5.git
synced 2026-08-05 05:55:36 +00:00
87 lines
1.4 KiB
CSS
87 lines
1.4 KiB
CSS
.loading {
|
|
text-align: center;
|
|
|
|
}
|
|
.goods-list {
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 20px 5px;
|
|
background: #98E1D1;
|
|
}
|
|
.goods-row {
|
|
height: 130px;
|
|
background: #98E1D1;
|
|
}
|
|
.goods-item {
|
|
height: 120px;
|
|
background: #fff;
|
|
border-radius: 6px;
|
|
}
|
|
.goods-img {
|
|
position: relative;
|
|
float:left;
|
|
width: 120px;
|
|
height:100%;
|
|
}
|
|
.goods-img img {
|
|
position: absolute;
|
|
display: block;
|
|
top:0;
|
|
right:0;
|
|
bottom: 0;
|
|
left:0;
|
|
width: 100px;
|
|
height: 100px;
|
|
margin: auto;
|
|
}
|
|
.coupon {
|
|
float:right;
|
|
width : 80px;
|
|
height: 100%;
|
|
background: #FF6347;
|
|
text-align: center;
|
|
color:#fff;
|
|
border-radius: 0 6px 6px 0;
|
|
}
|
|
.coupon .price {
|
|
margin-top: 5px;
|
|
font-size: 20px
|
|
}
|
|
.coupon .txt {
|
|
font-size: 12px;
|
|
|
|
}
|
|
.coupon .btn {
|
|
width:65px;
|
|
margin:10px auto 0;
|
|
border:1px solid #fff;
|
|
border-radius: 3px;
|
|
font-size: 14px;
|
|
}
|
|
.coupon .btnurl {
|
|
width:65px;
|
|
margin:20px auto 0;
|
|
border:1px solid #fff;
|
|
border-radius: 3px;
|
|
font-size: 14px;
|
|
}
|
|
.goods-info {
|
|
overflow: hidden;
|
|
margin-right: 85px;
|
|
}
|
|
.goods-info .title {
|
|
height: 70px;
|
|
font-size: 12px;
|
|
}
|
|
.goods-info .final-price {
|
|
}
|
|
.goods-info .final-value {
|
|
color:#FF6347;
|
|
font-size:16px;
|
|
}
|
|
.goods-info .final-price .origin-value {
|
|
font-size:9px;
|
|
color:#ddd;
|
|
margin-left: 3px;
|
|
}
|
|
|