index.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. .top {
  2. display: flex;
  3. flex-direction: column;
  4. justify-items: center;
  5. margin-bottom: 100rpx;
  6. }
  7. .address {
  8. padding: 40rpx 50rpx 30rpx 50rpx;
  9. display: flex;
  10. flex-direction: row;
  11. align-items: center;
  12. }
  13. .address_line {
  14. height: 15rpx;
  15. background: #f2f2f2;
  16. }
  17. .address .left {
  18. width: 50rpx;
  19. height: 50rpx;
  20. }
  21. .address .center{
  22. display: flex;
  23. flex-direction: column;
  24. flex-grow: 1;
  25. padding: 0 20rpx 0 20rpx;
  26. }
  27. .address .center text {
  28. display: flex;
  29. justify-content: left;
  30. align-items: flex-start;
  31. word-wrap: break-word;
  32. }
  33. .address .right{
  34. width: 50rpx;
  35. height: 50rpx;
  36. }
  37. .tips {
  38. flex-grow: 1;
  39. padding-left: 20rpx;
  40. }
  41. .tips text {
  42. display: flex;
  43. justify-content: left;
  44. color: #707070;
  45. font-size: 35rpx;
  46. }
  47. .order .split_line {
  48. margin:0 20rpx 0 30rpx;
  49. border-bottom: 1px solid #E5E5E5;
  50. }
  51. .order .title {
  52. display: flex;
  53. justify-content: left;
  54. font-size: 35rpx;
  55. margin:40rpx 50rpx 25rpx 50rpx;
  56. }
  57. .order .oper {
  58. display: flex;
  59. flex-direction: row;
  60. justify-content: space-between;
  61. margin: 0 50rpx 25rpx 50rpx;
  62. }
  63. .order .price {
  64. color: #666666;
  65. font-size: 35rpx;
  66. }
  67. .order .edit-num {
  68. display: flex;
  69. flex-direction: row;
  70. align-items: center;
  71. }
  72. .edit-num .num {
  73. margin: 0 15rpx 0 15rpx;
  74. font-size: 30rpx;
  75. }
  76. .edit-num .sub, .edit-num .add {
  77. width: 45rpx;
  78. height: 45rpx;
  79. }
  80. .bottom {
  81. width: 750rpx;
  82. height: 100rpx;
  83. position: fixed;
  84. bottom: 0;
  85. display: flex;
  86. flex-direction: row;
  87. }
  88. .bottom .left {
  89. background: #434343;
  90. color: #fff;
  91. display: flex;
  92. flex-grow: 1;
  93. align-items: center;
  94. padding-left: 50rpx;
  95. font-size: 35rpx;
  96. }
  97. .bottom .right {
  98. background: #539804;
  99. color: #fff;
  100. width: 250rpx;
  101. display: flex;
  102. font-size: 35rpx;
  103. align-items: center;
  104. justify-content: center;
  105. }