index.wxss 1.8 KB

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