orderdetails.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. .container {
  2. margin: 0rpx 30rpx;
  3. width: calc(100% - 60rpx);
  4. padding: 0 0;
  5. }
  6. .top_boxs {
  7. width: calc( 100% - 60rpx );
  8. padding: 30rpx;
  9. background: #fff;
  10. border-radius: 16rpx;
  11. margin-bottom: 20rpx;
  12. }
  13. .list_boxs {
  14. width: calc( 100% - 60rpx );
  15. padding: 30rpx;
  16. background: #fff;
  17. border-radius: 16rpx;
  18. }
  19. .title {
  20. font-size: 34rpx;
  21. }
  22. .button_boxs {
  23. padding: 30rpx;
  24. width: calc(100% - 60rpx);
  25. background: #fff;
  26. position: fixed;
  27. bottom: 0;
  28. left: 0;
  29. display: flex;
  30. justify-content: space-between;
  31. padding-bottom: 40rpx;
  32. }
  33. .displayboxs {
  34. display: flex;
  35. }
  36. .left {
  37. width: 10%;
  38. }
  39. .left image {
  40. width: 40rpx;
  41. height: 40rpx;
  42. }
  43. .right {
  44. width: 90%;
  45. font-size: 30rpx;
  46. }
  47. .product_info {
  48. display: flex;
  49. margin-top: 20rpx;
  50. }
  51. .product_image {
  52. width: 120rpx;
  53. height: 120rpx;
  54. margin-right: 20rpx;
  55. }
  56. .product_details {
  57. flex: 1;
  58. }
  59. .product_name {
  60. font-size: 32rpx;
  61. color: #333;
  62. }
  63. .product_description {
  64. font-size: 28rpx;
  65. color: #666;
  66. margin-top: 10rpx;
  67. }
  68. .product_quantity {
  69. font-size: 28rpx;
  70. color: #999;
  71. margin-top: 10rpx;
  72. }
  73. .product_price {
  74. font-size: 32rpx;
  75. color: #ff5722;
  76. margin-left: 20rpx;
  77. }
  78. .order_info {
  79. margin-top: 30rpx;
  80. border-top: 1rpx solid #d8d8d8;
  81. padding-top: 30rpx;
  82. }
  83. .order_item {
  84. display: flex;
  85. justify-content: space-between;
  86. font-size: 28rpx;
  87. color: #333;
  88. margin-bottom: 10rpx;
  89. }
  90. .buttons {
  91. width: 300rpx !important;
  92. border: 1rpx solid #c7c9cc !important;
  93. background: #f4f4f5;
  94. color: #c7c9cc;
  95. border-radius: 40rpx;
  96. }
  97. .buttons2 {
  98. width: 300rpx !important;
  99. border: 1rpx solid #409eff;
  100. background: #409eff;
  101. color: #fff;
  102. border-radius: 40rpx;
  103. }