submitorder.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. .container {
  2. margin: 0rpx 30rpx;
  3. width: calc(100% - 60rpx);
  4. padding: 0;
  5. }
  6. .dizhi_boxs {
  7. width: calc( 100% - 40rpx);
  8. background-color: #fff;
  9. border-radius: 10rpx;
  10. padding: 30rpx 20rpx;
  11. display: flex;
  12. align-items: center;
  13. justify-content: space-between;
  14. }
  15. .address_info {
  16. display: flex;
  17. align-items: center;
  18. }
  19. .location_icon {
  20. width: 35rpx;
  21. height: 35rpx;
  22. margin-right: 10rpx;
  23. }
  24. .address_text {
  25. font-size: 28rpx;
  26. color: #333;
  27. }
  28. .contact_info {
  29. margin-left: 10rpx;
  30. }
  31. .name {
  32. font-size: 28rpx;
  33. color: #333;
  34. margin-right: 20rpx;
  35. }
  36. .phone {
  37. font-size: 28rpx;
  38. color: #333;
  39. }
  40. .right_arrow {
  41. width: 35rpx;
  42. height: 35rpx;
  43. margin-left: 20rpx;
  44. }
  45. .product_list {
  46. width: 100%;
  47. margin-top: 20rpx;
  48. margin-bottom: 140rpx;
  49. }
  50. .product_item {
  51. width: calc( 100% - 40rpx);
  52. padding: 20rpx;
  53. background-color: #fff;
  54. border-radius: 10rpx;
  55. display: flex;
  56. align-items: center;
  57. margin-bottom: 20rpx;
  58. }
  59. .product_image {
  60. width: 180rpx;
  61. height: 180rpx;
  62. margin-right: 20rpx;
  63. }
  64. .product_details {
  65. flex: 1;
  66. }
  67. .product_name {
  68. font-size: 32rpx;
  69. color: #333;
  70. margin-bottom: 10rpx;
  71. }
  72. .product_desc {
  73. font-size: 28rpx;
  74. color: #666;
  75. margin-bottom: 10rpx;
  76. }
  77. .price_and_quantity {
  78. display: flex;
  79. justify-content: space-between;
  80. align-items: center;
  81. margin-top: 30rpx;
  82. }
  83. .product_price {
  84. font-size: 32rpx;
  85. color: #ff5722;
  86. }
  87. .quantity_selector {
  88. display: flex;
  89. align-items: center;
  90. }
  91. .decrease, .increase {
  92. width: 40rpx;
  93. height: 40rpx;
  94. background-color: #f5f5f5;
  95. border-radius: 50%;
  96. display: flex;
  97. align-items: center;
  98. justify-content: center;
  99. font-size: 28rpx;
  100. color: #333;
  101. margin: 0 10rpx;
  102. }
  103. .quantity {
  104. font-size: 28rpx;
  105. color: #333;
  106. }
  107. .footer {
  108. background: #fff;
  109. width: calc( 100% - 40rpx);
  110. position: fixed;
  111. bottom: 0;
  112. left: 0;
  113. display: flex;
  114. justify-content: space-between;
  115. align-items: center;
  116. padding-bottom: 40rpx;
  117. padding-top: 20rpx;
  118. padding-left: 20rpx;
  119. padding-right: 20rpx;
  120. z-index: 999;
  121. }
  122. .total_amount {
  123. font-size: 32rpx;
  124. color: #ff5722;
  125. }
  126. .pay_button {
  127. width: 300rpx !important;
  128. height: 80rpx !important;
  129. background-color: #3b8cff;
  130. color: #fff;
  131. font-size: 32rpx;
  132. border-radius: 40rpx;
  133. }