12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /* pages/myOrder/myOrder.wxss */
- /* 设置页面背景 */
- .orderWrapper{
- height: 100%;
- background-color: #E2F0D9;
- }
- .myOrder{
- position: relative;
- display: flex;
- height: 160rpx;
- background-color: #FFF2CC;
- padding-left: 20rpx;
- font-size: 28rpx;
- margin: 20rpx;
- border-radius: 20rpx;
- }
- .orderContent,
- .orderStatus{
- height: 140rpx;
- padding: 10rpx 0;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- /* 右侧部分的定位 */
- .orderStatus{
- position: absolute;
- right: 100rpx;
- }
- /* 设置活动内容左边距并加粗 */
- .orderDetail,
- .orderDetailStatus{
- margin-left: 20rpx;
- font-weight: bold;
- }
- /* 设置订单状态的字体颜色 */
- .orderDetailStatus{
- color: red;
- }
|