29 lines
518 B
SCSS
29 lines
518 B
SCSS
.payment {
|
|
width: 750rpx;
|
|
height: 98rpx;
|
|
position: fixed;
|
|
bottom: 0;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
background-color: #fff;
|
|
align-items: center;
|
|
.price {
|
|
font-size: 34rpx;
|
|
margin-left: 74rpx;
|
|
.title {
|
|
color: #333;
|
|
}
|
|
.counts{
|
|
color: #ff3838;
|
|
}
|
|
}
|
|
.submit {
|
|
width: 250rpx;
|
|
height: 98rpx;
|
|
background-color: #47c877;
|
|
font-size: 30rpx;
|
|
color: #fff;
|
|
line-height: 98rpx;
|
|
text-align: center;
|
|
}
|
|
} |