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.
hezhiying/pages/ConfirmOrder/ConfirmOrder.scss

228 lines
3.5 KiB

1 year ago
.page{
1 year ago
1 year ago
}
/* 地址 */
.address-data{
position: relative;
1 year ago
padding: 10rpx 20rpx;
1 year ago
background-color: #FFFFFF;
1 year ago
margin:0 24rpx;
1 year ago
overflow: hidden;
1 year ago
margin-top:24rpx;
border-radius: 8rpx;
1 year ago
.address-list{
width: 100%;
.list{
display: flex;
align-items: center;
width: 100%;
height: 60rpx;
1 year ago
.moren{
padding:5rpx 10rpx;
background-color: #9F751F;
border-radius: 10rpx;
1 year ago
font-size: 24rpx;
1 year ago
color:#ffffff;
margin-right: 10rpx;
}
text{
font-weight: bold;
font-size: 28rpx;
color: #9F751F;
1 year ago
margin-right: 10rpx;
}
.address{
1 year ago
font-size: 24rpx;
color: #9F751F;
1 year ago
}
.tips{
color: $base;
}
}
}
}
/* 商品 */
.goods-data{
1 year ago
1 year ago
background-color: #FFFFFF;
border-radius: 20rpx;
margin: 20rpx auto;
1 year ago
1 year ago
.goods-list{
width: 100%;
.list{
display: flex;
align-items: center;
width: 100%;
height: 200rpx;
.thumb{
display: flex;
align-items: center;
width: 30%;
height: 100%;
image{
width: 160rpx;
height: 160rpx;
border-radius: 10rpx;
}
}
.item{
width: 70%;
height: 160rpx;
.title{
display: flex;
flex-direction: column;
// justify-content: center;
width: 100%;
height: 80rpx;
.name{
font-size: 28rpx;
color: #222222;
}
.attr{
font-size: 24rpx;
color: #C0C0C0;
}
}
.price-number{
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
height: 60rpx;
.price{
display: flex;
align-items: center;
text{
color: $base;
font-weight: bold;
}
.min{
font-size: 26rpx;
}
.max{
font-size: 32rpx;
}
}
.number{
display: flex;
align-items: center;
text{
font-size: 26rpx;
color: #222222;
}
}
}
.tag{
display: flex;
align-items: center;
width: 100%;
height: 40rpx;
text{
padding: 2rpx 12rpx;
color: $base;
border: 2rpx solid $base;
border-radius: 40rpx;
font-size: 24rpx;
}
}
}
}
}
1 year ago
1 year ago
}
1 year ago
1 year ago
/**
* 地址提示
*/
.address-tips{
position: fixed;
left: 0;
bottom: 100rpx;
z-index: 100;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 60rpx;
padding: 0 4%;
background-color: #fef2ce;
text{
font-size: 26rpx;
color: #fbbd08;
}
}
/* 订单金额 */
.order-price{
1 year ago
margin: 20rpx 24rpx;
1 year ago
background-color: #FFFFFF;
border-radius: 20rpx;
.price-list{
padding: 0 4%;
.list{
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
height: 80rpx;
.title{
display: flex;
align-items: center;
text{
font-size: 26rpx;
color: #555555;
}
}
.price{
display: flex;
align-items: center;
text{
font-size: 26rpx;
font-weight: bold;
1 year ago
color: $base;
1 year ago
}
.highlight{
color: $base;
}
}
}
}
}
/* 顶部合计提交 */
.footer-submit{
position: fixed;
left: 0;
bottom: 0;
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
height: 100rpx;
background-color: #FFFFFF;
padding: 0 4%;
.price{
display: flex;
align-items: flex-end;
text{
color: $base;
}
.min{
1 year ago
font-size: 28rpx;
1 year ago
}
1 year ago
1 year ago
}
.submit{
display: flex;
align-items: center;
justify-content: center;
width: 200rpx;
height: 70rpx;
background-color: $base;
1 year ago
border-radius: 10rpx;
1 year ago
text{
font-size: 26rpx;
color: #FFFFFF;
}
}
}