index.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. page {
  2. background-color: #f5f5f5;
  3. }
  4. .content-wrapper {
  5. margin-top: 340rpx;
  6. position: relative;
  7. padding: 0 30rpx;
  8. }
  9. .main-content {
  10. height: 500rpx;
  11. }
  12. .order-group-wrapper {
  13. margin-bottom: 16rpx;
  14. }
  15. .order-group-note {
  16. font-size: 28rpx;
  17. }
  18. .cell-box {
  19. border-radius: 10rpx;
  20. overflow: hidden;
  21. margin-bottom: 20rpx;
  22. }
  23. .icon-color {
  24. color: #aaa;
  25. }
  26. .cell-class {
  27. height: 100rpx;
  28. display: flex;
  29. align-items: center;
  30. }
  31. .order-content {
  32. overflow: hidden;
  33. width: 100%;
  34. display: flex;
  35. background-color: #fff;
  36. border-radius: 16rpx;
  37. }
  38. .order-item {
  39. flex: 1;
  40. height: 180rpx;
  41. overflow: hidden;
  42. position: relative;
  43. text-align: center;
  44. }
  45. .order-content-box {
  46. margin: auto;
  47. position: absolute;
  48. width: 100%;
  49. top: 50%;
  50. left: 50%;
  51. -webkit-transform: translate(-50%, -50%);
  52. -ms-transform: translate(-50%, -50%);
  53. transform: translate(-50%, -50%);
  54. }
  55. .order-content-t {
  56. margin-top: 10rpx;
  57. font-size: 24rpx;
  58. color: #333;
  59. letter-spacing: 0;
  60. text-align: center;
  61. }
  62. .popup-content {
  63. background: #f5f5f5;
  64. margin-bottom: env(safe-area-inset-bottom);
  65. border-radius: 16rpx 16rpx 0 0;
  66. }
  67. .popup-content .popup-title {
  68. background: #fff;
  69. text-align: center;
  70. font-size: 24rpx;
  71. color: #999;
  72. height: 112rpx;
  73. text-align: center;
  74. line-height: 112rpx;
  75. border-radius: 16rpx 16rpx 0 0;
  76. }
  77. .border-bottom-1px {
  78. position: relative;
  79. }
  80. .border-bottom-1px::after {
  81. position: absolute;
  82. display: block;
  83. content: '';
  84. box-sizing: border-box;
  85. top: 0;
  86. left: 0;
  87. width: 200%;
  88. height: 200%;
  89. transform: scale(0.5);
  90. transform-origin: left top;
  91. border-bottom: 2rpx solid #e5e5e5;
  92. }
  93. .popup-content .popup-phone,
  94. .popup-content .popup-close {
  95. background: #fff;
  96. height: 100rpx;
  97. display: flex;
  98. justify-content: center;
  99. align-items: center;
  100. text-align: center;
  101. font-size: 30rpx;
  102. font-family: PingFangSC-Regular, PingFang SC;
  103. font-weight: 400;
  104. color: #333;
  105. }
  106. .popup-content .popup-phone.online {
  107. margin-bottom: 20rpx;
  108. }
  109. .popup-content .popup-phone.online::after {
  110. content: none;
  111. }
  112. .popup-content .popup-close {
  113. color: #333;
  114. border: 0;
  115. margin-top: 16rpx;
  116. }
  117. .my-order {
  118. border-radius: 10rpx;
  119. }
  120. .footer__version {
  121. text-align: center;
  122. margin-top: 50rpx;
  123. color: #999;
  124. margin-bottom: 4rpx;
  125. font-size: 24rpx;
  126. line-height: 32rpx;
  127. }
  128. .cell-box .order-group__left {
  129. margin-right: 0;
  130. }
  131. .cell-box .t-cell-padding {
  132. padding: 24rpx 18rpx 24rpx 32rpx;
  133. }