index.less 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. @import "../../../../styles/base.less";
  2. page {
  3. background: #f6f6f6;
  4. }
  5. .box {
  6. border-radius: 30rpx;
  7. .order-number {
  8. display: flex;
  9. justify-content: space-between;
  10. .number {
  11. font-size: 30rpx;
  12. }
  13. .state {
  14. font-size: 30rpx;
  15. }
  16. }
  17. .order-txt {
  18. display: flex;
  19. margin: 20rpx 0rpx 0 0;
  20. .order-image {
  21. width: 240rpx;
  22. height: 180rpx;
  23. margin-right: 20rpx;
  24. }
  25. .ellipsis{
  26. width: 100%;
  27. overflow: hidden;
  28. text-overflow: ellipsis;
  29. display: -webkit-box;
  30. -webkit-line-clamp: 1;
  31. -webkit-box-orient: vertical;
  32. }
  33. .order-text {
  34. margin-top: 5rpx;
  35. .order-price {
  36. color: red;
  37. margin-top: 20rpx;
  38. }
  39. .order-time {
  40. font-size: 26rpx;
  41. margin-top: 20rpx;
  42. color:#666666;
  43. }
  44. }
  45. }
  46. }
  47. .explain {
  48. box-sizing: border-box;
  49. width: 100%;
  50. margin: 20rpx 0;
  51. padding: 20rpx;
  52. border:1rpx solid #eeeeee;
  53. }
  54. .popup-cause{
  55. display: flex;
  56. flex-direction: column;
  57. justify-content: space-between;
  58. height: 100%;
  59. .title{
  60. padding-top: 60rpx;
  61. }
  62. .cause-list {
  63. padding: 40rpx 20rpx;
  64. .cause {
  65. display: flex;
  66. align-items: center;
  67. justify-content: space-between;
  68. padding:20rpx;
  69. }
  70. }
  71. }
  72. .footer {
  73. position: fixed;
  74. bottom:0;
  75. left: 0;
  76. right: 0;
  77. .submit-text {
  78. color:#ffffff;
  79. }
  80. }