/* pages/outStore/outStoreDetail/outStoreDetail.wxss */
|
|
|
|
.imageView {
|
|
height: 110px;
|
|
margin-top: 10px;
|
|
margin-left: 15px;
|
|
margin-right: 15px;
|
|
margin-bottom: 10px;
|
|
position: relative;
|
|
align-items: center;
|
|
}
|
|
|
|
.currentImage {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.totalMoneyView {
|
|
position: absolute;
|
|
width: 100%;
|
|
/* height: 100%; */
|
|
top: 40rpx;
|
|
text-align: center;
|
|
}
|
|
|
|
.balanceView {
|
|
position: absolute;
|
|
width: 100%;
|
|
/* height: 100%; */
|
|
top: 100rpx;
|
|
text-align: center;
|
|
}
|
|
|
|
.totalMoney {
|
|
color: white;
|
|
font-size: 20px;
|
|
}
|
|
|
|
.balance {
|
|
color: white;
|
|
font-size: 30px;
|
|
}
|
|
|
|
.listContainer {
|
|
width: 100%;
|
|
/* height: 100%; */
|
|
height: calc(100% - 170px);
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.scrollView{
|
|
height: 100%;
|
|
}
|
|
|
|
.listItem {
|
|
/* width: 100%; */
|
|
height: 150rpx;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: #fff;
|
|
padding: 0 20rpx 20rpx 20rpx;
|
|
border-bottom: 1rpx solid #ddd;
|
|
background: white;
|
|
}
|
|
|
|
.topView{
|
|
height: 50%;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
padding-top: 20rpx;
|
|
}
|
|
|
|
.goodsNameView {
|
|
height: 100%;
|
|
width: 50%;
|
|
}
|
|
|
|
.priceView{
|
|
/* padding-right: 20px; */
|
|
height: 100%;
|
|
width: 50%;
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
.bottomView {
|
|
height: 50%;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
padding-top: 20rpx;
|
|
|
|
}
|
|
|
|
.goodsNum {
|
|
height: 100%;
|
|
width: 50%;
|
|
/* padding-top: 20rpx; */
|
|
}
|
|
|
|
.goodsNumText {
|
|
font-size: 16px;
|
|
color: #666;
|
|
}
|
|
|
|
.goodsMoney {
|
|
height: 100%;
|
|
width: 50%;
|
|
/* padding-right: 20px; */
|
|
text-align: right;
|
|
}
|
|
|
|
.goodsMoneyText {
|
|
font-size: 16px;
|
|
color: #666;
|
|
}
|
|
|
|
page {
|
|
background-color: #f0eff5;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|