12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- @import "../../../../styles/base.less";
- page {
- background: #f6f6f6;
- }
- .box {
- border-radius: 30rpx;
- .order-number {
- display: flex;
- justify-content: space-between;
- .number {
- font-size: 30rpx;
- }
- .state {
- font-size: 30rpx;
- }
- }
- .order-txt {
- display: flex;
- margin: 20rpx 0rpx 0 0;
- .order-image {
- width: 240rpx;
- height: 180rpx;
- margin-right: 20rpx;
- }
- .ellipsis{
- width: 100%;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 1;
- -webkit-box-orient: vertical;
- }
- .order-text {
- margin-top: 5rpx;
- .order-price {
- color: red;
- margin-top: 20rpx;
- }
- .order-time {
- font-size: 26rpx;
- margin-top: 20rpx;
- color:#666666;
- }
- }
- }
- }
- .explain {
- box-sizing: border-box;
- width: 100%;
- margin: 20rpx 0;
- padding: 20rpx;
- border:1rpx solid #eeeeee;
- }
- .popup-cause{
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- height: 100%;
- .title{
- padding-top: 60rpx;
- }
- .cause-list {
- padding: 40rpx 20rpx;
- .cause {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding:20rpx;
- }
- }
- }
- .footer {
- position: fixed;
- bottom:0;
- left: 0;
- right: 0;
- .submit-text {
- color:#ffffff;
- }
- }
|