- 新增 .editorconfig、.eslintrc、.gitignore 配置文件 - 添加管理员文章管理页面配置和功能实现 - 添加经销商申请注册页面配置和功能实现 - 添加经销商银行卡管理页面配置和功能实现 - 添加经销商客户管理页面配置和功能实现 - 添加用户地址管理页面配置和功能实现 - 添加用户聊天消息页面配置和功能实现 - 添加用户礼品管理页面配置和功能实现
45 lines
963 B
SCSS
45 lines
963 B
SCSS
.order-confirm-page {
|
|
padding-bottom: 100px; // 留出底部固定按钮的空间
|
|
|
|
.fixed-bottom {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 10px 20px;
|
|
background-color: #fff;
|
|
border-top: 1px solid #eee;
|
|
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
|
|
|
|
.total-price {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.submit-btn {
|
|
width: 150px;
|
|
}
|
|
}
|
|
}
|
|
.address-bottom-line{
|
|
width: 100%;
|
|
border-radius: 24rpx 24rpx 0 0;
|
|
background: #fff;
|
|
padding: 26rpx 49rpx 0 34rpx;
|
|
position: relative;
|
|
&:before {
|
|
position: absolute;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
height: 5px;
|
|
background: repeating-linear-gradient(-45deg, #ff6c6c, #ff6c6c 20%, transparent 0, transparent 25%, #1989fa 0,
|
|
#1989fa 45%, transparent 0, transparent 50%);
|
|
background-size: 120px;
|
|
content: "";
|
|
}
|
|
}
|