index.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. .container {
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. justify-content: flex-start;
  6. align-content: center;
  7. flex-wrap: nowrap;
  8. height: 100vh;
  9. }
  10. .header,
  11. .data,
  12. .order-other {
  13. width: 100%;
  14. display: flex;
  15. flex-direction: column;
  16. flex-wrap: nowrap;
  17. justify-content: center;
  18. height: 70px;
  19. background-color: #fff;
  20. border-bottom: 6px solid #eee;
  21. padding-left: 20px;
  22. }
  23. .header .address {
  24. font-size: 20px;
  25. color: #333;
  26. }
  27. .header .detail {
  28. font-size: 16px;
  29. margin-top: 5px;
  30. color: rgb(151, 151, 151);
  31. }
  32. .with-line {
  33. padding-top: 10px;
  34. padding-bottom: 10px;
  35. border-bottom: 2px solid #eee;
  36. }
  37. .content {
  38. display: flex;
  39. flex-direction: column;
  40. flex-wrap: nowrap;
  41. justify-content: center;
  42. width: calc(100% - 40px);
  43. }
  44. .shop-name {
  45. font-size: 16px;
  46. color: #333;
  47. }
  48. .item {
  49. display: flex;
  50. justify-content: space-between;
  51. align-content: space-between;
  52. width: 100%;
  53. }
  54. .item .item-detail {
  55. display: flex;
  56. flex-direction: row;
  57. justify-content: center;
  58. align-content: center;
  59. }
  60. .color-grey {
  61. color: rgb(151, 151, 151);
  62. }
  63. .color-red {
  64. color: rgba(255, 0, 0, 0.575);
  65. }
  66. .item .item-detail .pic {
  67. width: 80px;
  68. height: 48px;
  69. margin-right: 10px;
  70. }
  71. .item .item-detail .bug-detail {
  72. display: flex;
  73. flex-direction: column;
  74. justify-content: space-between;
  75. align-content: center;
  76. align-items: flex-start;
  77. }
  78. .item .item-detail .bug-detail .num,
  79. .item-price .price-old {
  80. font-size: 14px;
  81. }
  82. .item .item-price {
  83. display: flex;
  84. flex-direction: column;
  85. justify-content: flex-start;
  86. align-content: center;
  87. align-items: flex-end;
  88. }
  89. .package,
  90. .pay,
  91. .data-detail {
  92. display: flex;
  93. justify-content: space-between;
  94. align-content: space-between;
  95. }
  96. .content {
  97. padding-bottom: 40px;
  98. }
  99. .data {
  100. border-top: 6px solid #eee;
  101. height: unset;
  102. width: calc(100% - 40px);
  103. padding: 10px 20px;
  104. }
  105. .order-other {
  106. height: unset;
  107. width: calc(100% - 40px);
  108. padding: 10px 20px;
  109. }
  110. .order-other .other-detail {
  111. display: flex;
  112. justify-content: flex-start;
  113. align-content: space-between;
  114. margin: 10px 0;
  115. }