index.wxss 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. /* pages/order/Invoicing/index.wxss */
  2. /* 顶部 */
  3. page {
  4. background: #f4f4f3;
  5. }
  6. /* 顶部 */
  7. .top {
  8. display: flex;
  9. justify-content: space-between;
  10. height: 71rpx;
  11. background-color: var(--subtitleColor);
  12. color: var(--subtitleColor);
  13. line-height: 71rpx;
  14. font-size: 23rpx;
  15. }
  16. /* 消费码 */
  17. .code {
  18. display: flex;
  19. height: 76rpx;
  20. padding: 0 20rpx;
  21. }
  22. .left {
  23. width: 6rpx;
  24. height: 19rpx;
  25. margin: 27rpx 7rpx 20rpx 35rpx;
  26. }
  27. .chooseCode {
  28. font-size: 24rpx;
  29. margin: 18rpx 0 18rpx 7rpx;
  30. }
  31. /* 选择项 */
  32. .chooseTerm {
  33. background-color: #fff;
  34. height: 142rpx;
  35. border-radius: 26rpx;
  36. margin-bottom: 20rpx;
  37. }
  38. .chooseTerm2 {
  39. display: flex;
  40. position: relative;
  41. top: 28rpx;
  42. }
  43. .checkbox {
  44. margin: auto 31rpx;
  45. }
  46. checkbox .wx-checkbox-input {
  47. width: 30rpx;
  48. height: 30rpx;
  49. border-radius: 50%;
  50. border: 1rpx solid var(--subtitleColor)
  51. }
  52. /* 选择信息说明 */
  53. .info {
  54. margin-right: 20rpx;
  55. width: 100%;
  56. height: 100%;
  57. }
  58. .infoBox {
  59. display: flex;
  60. }
  61. .infoText {
  62. font-size: 28rpx;
  63. /* height: 24rpx; */
  64. height: 39rpx;
  65. white-space: nowrap;
  66. text-overflow: ellipsis;
  67. overflow: hidden;
  68. max-width: 400rpx;
  69. font-weight: 600;
  70. margin-bottom: 10rpx;
  71. /* overflow: hidden; */
  72. }
  73. .infoText2 {
  74. font-size: 26rpx;
  75. width: 110rpx;
  76. color:#888886
  77. }
  78. .leftInfo {
  79. width: 182rpx;
  80. height: 100%;
  81. margin-right: 5rpx;
  82. margin-left: -75rpx;
  83. margin: auto 0;
  84. }
  85. .infoText3 {
  86. font-size: 26rpx;
  87. width: 354rpx;
  88. height: 22rpx;
  89. color:#888886;
  90. text-overflow: ellipsis;
  91. }
  92. .infoText4 {
  93. font-size: 26rpx;
  94. color: #eb3943;
  95. width: 116rpx;
  96. /* font-weight: 600; */
  97. text-align: right;
  98. transform: translate(-7rpx);
  99. margin-bottom:10rpx ;
  100. }
  101. .infoText5 {
  102. color: #3e3939;
  103. font-weight: normal;
  104. }
  105. .infoText6 {
  106. font-size: 26rpx;
  107. width: 156rpx;
  108. }
  109. .box {
  110. width: 100%;
  111. height: 200rpx;
  112. }
  113. /* 底部开票 */
  114. .bottom_top {
  115. display: flex
  116. }
  117. .checked {
  118. margin-left: 30rpx;
  119. }
  120. .checkbox2 {
  121. position: relative;
  122. right: -31rpx;
  123. }
  124. .allCheckedBig{
  125. margin-top: 22rpx;
  126. }
  127. .allChecked {
  128. font-size: 23rpx;
  129. color: #b3b3b3;
  130. margin-left: 25rpx;
  131. }
  132. .consumption {
  133. display: block;
  134. width: 600rpx;
  135. height: 32rpx;
  136. position: relative;
  137. top: 34rpx;
  138. left: 116rpx
  139. }
  140. .allRadio radio .wx-radio-input {
  141. border-radius: 50%;
  142. width: 28rpx;
  143. height: 28rpx;
  144. position: relative;
  145. top: 5rpx;
  146. left: 30rpx;
  147. border: var(--subtitleColor)
  148. }
  149. .bottom {
  150. height: 220rpx;
  151. position: fixed;
  152. bottom: 0;
  153. width: 100%;
  154. background-color: #fff;
  155. border-radius: 18rpx;
  156. }
  157. .bottom2 {
  158. display: flex;
  159. justify-content: space-around;
  160. }
  161. .record {
  162. border-radius: 16rpx;
  163. width: 295rpx;
  164. height: 70rpx;
  165. background-color: #fff;
  166. color: #000;
  167. text-align: center;
  168. line-height: 70rpx;
  169. border: 1rpx solid #000;
  170. position: relative;
  171. left: 22rpx;
  172. top: 26rpx
  173. }
  174. .goInvoice {
  175. border-radius: 16rpx;
  176. width: 295rpx;
  177. height: 70rpx;
  178. background-color: var(--themeColor);
  179. color: #000;
  180. text-align: center;
  181. line-height: 70rpx;
  182. border: 1rpx solid var(--themeColor);
  183. position: relative;
  184. left: -22rpx;
  185. top: 26rpx
  186. }
  187. /* 样式调整 */
  188. .order-title {
  189. font-size: 28rpx;
  190. color: #000;
  191. margin-top: 14rpx;
  192. vertical-align: center;
  193. width: 100%;
  194. }
  195. .order-title-line {
  196. padding-bottom: 10rpx;
  197. }
  198. .order-title:before {
  199. content: '';
  200. height: 20rpx;
  201. width: 6rpx;
  202. background: var(--subtitleColor);
  203. display: inline-block;
  204. margin-right: 10rpx;
  205. border-radius: 4rpx;
  206. background-image: initial;
  207. background-position-x: initial;
  208. background-position-y: initial;
  209. background-size: initial;
  210. background-repeat-x: initial;
  211. background-repeat-y: initial;
  212. background-attachment: initial;
  213. background-origin: initial;
  214. background-clip: initial;
  215. background-color: var(--subtitleColor);
  216. border-top-left-radius: 2px;
  217. border-top-right-radius: 2px;
  218. border-bottom-right-radius: 2px;
  219. border-bottom-left-radius: 2px;
  220. }
  221. .order-title-button>.button {
  222. position: relative;
  223. top: -10rpx;
  224. float: right;
  225. }
  226. .cards-tips {
  227. background: var(--subtitleColor);
  228. top: 0;
  229. font-size: 26rpx;
  230. color: #000;
  231. /* line-height: 2.5; */
  232. white-space: nowrap;
  233. padding: 0 20rpx;
  234. position: relative;
  235. }
  236. .arrow-right:before {
  237. content:'';
  238. position:absolute;
  239. top:50%;
  240. right:0;
  241. margin-top:-5px;
  242. border-top:5px solid transparent;
  243. border-bottom:5px solid transparent;
  244. border-left:5px solid black;
  245. }