137 lines
2.4 KiB
Plaintext
137 lines
2.4 KiB
Plaintext
|
@import '../../common/common.wxss';
|
||
|
|
||
|
.orders-address {
|
||
|
position: relative;
|
||
|
padding: 20rpx 50rpx 20rpx 35rpx;
|
||
|
font-size: 14px;
|
||
|
line-height: 25px;
|
||
|
border-bottom: 20rpx solid #ededed;
|
||
|
color: #adadad;
|
||
|
}
|
||
|
|
||
|
.orders-address::after {
|
||
|
position: absolute;
|
||
|
right: 30rpx;
|
||
|
top: 60rpx;
|
||
|
content: '';
|
||
|
width: 8px;
|
||
|
height: 8px;
|
||
|
border-top: 4rpx solid #7f7f7f;
|
||
|
border-right: 4rpx solid #7f7f7f;
|
||
|
-webkit-transform: rotate(45deg);
|
||
|
transform: rotate(45deg);
|
||
|
}
|
||
|
|
||
|
.orders-address-name {
|
||
|
display: inline-block;
|
||
|
width: 300rpx;
|
||
|
}
|
||
|
|
||
|
.orders-no-address {
|
||
|
position: relative;
|
||
|
height: 90rpx;
|
||
|
line-height: 90rpx;
|
||
|
color: #adadad;
|
||
|
border-bottom: 10rpx solid #ededed;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.orders-no-address::after {
|
||
|
position: absolute;
|
||
|
right: 30rpx;
|
||
|
top: 34rpx;
|
||
|
content: '';
|
||
|
width: 16rpx;
|
||
|
height: 16rpx;
|
||
|
border-top: 4rpx solid #7f7f7f;
|
||
|
border-right: 4rpx solid #7f7f7f;
|
||
|
-webkit-transform: rotate(45deg);
|
||
|
transform: rotate(45deg);
|
||
|
}
|
||
|
|
||
|
.orders-box {
|
||
|
padding-bottom: 105rpx;
|
||
|
}
|
||
|
|
||
|
.orders-list {
|
||
|
position: relative;
|
||
|
padding: 20rpx 20rpx 20rpx 220rpx;
|
||
|
height: 180rpx;
|
||
|
border-bottom: 10rpx solid #ededed;
|
||
|
}
|
||
|
|
||
|
.orders-thumb {
|
||
|
position: absolute;
|
||
|
top: 20rpx;
|
||
|
left: 20rpx;
|
||
|
width: 180rpx;
|
||
|
height: 180rpx;
|
||
|
}
|
||
|
|
||
|
.orders-list view {
|
||
|
line-height: 60rpx;
|
||
|
}
|
||
|
|
||
|
.order-notes {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
/* 垂直居中对齐 */
|
||
|
padding-left: 10px;
|
||
|
/* background-color: #f9f9f9; */
|
||
|
border-radius: 8px;
|
||
|
/* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
|
||
|
margin: 20px 0;
|
||
|
/* border-bottom: 10rpx solid #ededed; */
|
||
|
}
|
||
|
.orders-count-num{
|
||
|
font-size: 14px;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
.order-notes-label {
|
||
|
font-size: 16px;
|
||
|
color: #333;
|
||
|
margin-right: 10px;
|
||
|
/* 标签和输入框之间的间距 */
|
||
|
}
|
||
|
|
||
|
.order-notes-input {
|
||
|
flex: 1;
|
||
|
/* 输入框占据剩余空间 */
|
||
|
padding-left: 10px;
|
||
|
margin-right: 10px;
|
||
|
font-size: 14px;
|
||
|
border: 1px solid #ddd;
|
||
|
border-radius: 4px;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
.order-notes-input::placeholder {
|
||
|
color: #aaa;
|
||
|
}
|
||
|
|
||
|
.orders-footer {
|
||
|
position: fixed;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 95rpx;
|
||
|
line-height: 95rpx;
|
||
|
border-top: 1rpx solid #ededed;
|
||
|
}
|
||
|
|
||
|
.orders-footer .orders-footer-total {
|
||
|
display: inline-block;
|
||
|
width: 510rpx;
|
||
|
padding-left: 30rpx;
|
||
|
box-sizing: border-box;
|
||
|
color: #a55350;
|
||
|
}
|
||
|
|
||
|
.orders-footer .orders-footer-btn {
|
||
|
display: inline-block;
|
||
|
width: 240rpx;
|
||
|
text-align: center;
|
||
|
color: #fff;
|
||
|
background: #AB956D;
|
||
|
}
|