orderdetails.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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. width: 100%;
  50. margin-top: 20rpx;
  51. }
  52. .product_image {
  53. width: 120rpx;
  54. height: 120rpx;
  55. margin-right: 20rpx;
  56. }
  57. .product_details {
  58. width: calc( 100% - 240rpx );
  59. /* flex: 1; */
  60. }
  61. .product_name {
  62. font-size: 32rpx;
  63. color: #333;
  64. }
  65. .product_description {
  66. font-size: 28rpx;
  67. color: #666;
  68. margin-top: 10rpx;
  69. }
  70. .product_quantity {
  71. font-size: 28rpx;
  72. color: #999;
  73. margin-top: 10rpx;
  74. }
  75. .product_price {
  76. width: 60rpx;
  77. font-size: 32rpx;
  78. color: #ff5722;
  79. margin-left: 20rpx;
  80. }
  81. .order_info {
  82. margin-top: 30rpx;
  83. border-top: 1rpx solid #d8d8d8;
  84. padding-top: 30rpx;
  85. }
  86. .order_item {
  87. display: flex;
  88. justify-content: space-between;
  89. font-size: 28rpx;
  90. color: #333;
  91. margin-bottom: 10rpx;
  92. }
  93. .buttons {
  94. width: 300rpx !important;
  95. border: 1rpx solid #c7c9cc !important;
  96. background: #f4f4f5;
  97. color: #c7c9cc;
  98. border-radius: 40rpx;
  99. }
  100. .buttons2 {
  101. width: 300rpx !important;
  102. border: 1rpx solid #409eff;
  103. background: #409eff;
  104. color: #fff;
  105. border-radius: 40rpx;
  106. }