You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.3 KiB
SCSS
71 lines
1.3 KiB
SCSS
//main-container全局样式
|
|
.page-product-receipt {
|
|
background: #f2f2f2 linear-gradient(0deg, #f2f2f2 0%, #f8262c 51%, #d9001b 100%) no-repeat;
|
|
background-size: 100% 600rpx;
|
|
padding: 118rpx 30rpx 162rpx;
|
|
min-height: 100%;
|
|
}
|
|
|
|
//查询条件
|
|
.queryFrom {
|
|
background-color: #fff;
|
|
margin-top: 10px;
|
|
padding: 20rpx;
|
|
border-radius: 10rpx;
|
|
box-shadow: 0 0 20rpx 0 rgba(128, 128, 128, 0.2);
|
|
|
|
.u-form-item {
|
|
line-height: 35rpx;
|
|
}
|
|
}
|
|
|
|
//表单样式
|
|
.page-form {
|
|
background-color: #fff;
|
|
margin-top: 10px;
|
|
padding: 30rpx;
|
|
border-radius: 10rpx;
|
|
box-shadow: 0 0 20rpx 0 rgba(128, 128, 128, 0.2);
|
|
|
|
.u-form-item {
|
|
line-height: 35rpx;
|
|
}
|
|
}
|
|
|
|
//页面列表样式
|
|
.page-list {
|
|
margin-top: 20rpx;
|
|
box-shadow: 0 0 20rpx 0 rgba(128, 128, 128, 0.2);
|
|
|
|
.page-list-item {
|
|
margin-bottom: 20rpx;
|
|
background-color: #fff;
|
|
padding: 20rpx 20rpx 25rpx;
|
|
border-radius: 10rpx;
|
|
|
|
}
|
|
|
|
/* 奇数行背景色 */
|
|
.page-list-item:nth-child(odd) {
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
/* 偶数行背景色 */
|
|
.page-list-item:nth-child(even) {
|
|
background-color: #f5f5f5;
|
|
}
|
|
}
|
|
|
|
|
|
//底部按钮
|
|
.bottom-bar {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 99;
|
|
background: #ffffff;
|
|
box-shadow: 0 1rpx 20rpx 0 rgba(128, 128, 128, 0.2);
|
|
padding: 20rpx;
|
|
}
|