invoice.wxss 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. /* pages/invoice/invoice.wxss */
  2. .invoice {
  3. padding: 0;
  4. margin: 0;
  5. position: absolute;
  6. top: 0;
  7. left: 0;
  8. right: 0;
  9. bottom: 0;
  10. }
  11. .invoice .top-opt {
  12. width: 100%;
  13. height: 178rpx;
  14. background: rgba(250, 252, 255, 1);
  15. padding: 20rpx 40rpx;
  16. box-sizing: border-box;
  17. position: fixed;
  18. top:0;
  19. z-index: 9999;
  20. }
  21. .invoice .top-opt .title {
  22. display: flex;
  23. align-items: center;
  24. justify-content: center;
  25. font-size: 28rpx;
  26. font-family: PingFangSC-Regular, PingFang SC;
  27. font-weight: 400;
  28. color: rgba(104, 107, 120, 1);
  29. line-height: 40rpx;
  30. }
  31. .invoice .top-opt .title .item {
  32. width: 240rpx;
  33. height: 72rpx;
  34. text-align: center;
  35. line-height: 72rpx;
  36. background: rgba(255, 255, 255, 1);
  37. }
  38. .invoice .top-opt .title .item:first-child {
  39. border-radius: 200rpx 0rpx 0rpx 200rpx;
  40. }
  41. .invoice .top-opt .title .item:last-child {
  42. border-radius: 0rpx 200rpx 200rpx 0rpx;
  43. }
  44. .invoice .top-opt .title .active {
  45. background: rgba(0, 145, 255, 1);
  46. font-weight: 500;
  47. color: rgba(255, 255, 255, 1);
  48. }
  49. .invoice .date {
  50. display: flex;
  51. align-items: center;
  52. justify-content: space-between;
  53. font-size: 28rpx;
  54. font-family: PingFangSC-Regular, PingFang SC;
  55. font-weight: 400;
  56. color: rgba(104, 107, 120, 1);
  57. }
  58. .invoice picker {
  59. height: 80rpx;
  60. display: flex;
  61. align-items: center;
  62. }
  63. .invoice .picker .icon-up {
  64. display: inline-block;
  65. width: 16rpx;
  66. height: 10rpx;
  67. margin-left: 22rpx;
  68. vertical-align: middle;
  69. }
  70. .invoice .right {
  71. width: 178rpx;
  72. display: flex;
  73. align-items: center;
  74. justify-content: space-between;
  75. }
  76. .invoice .right .icon-doubt {
  77. width: 32rpx;
  78. height: 34rpx;
  79. display: inline-block;
  80. }
  81. .invoice .content {
  82. width: 100%;
  83. position: relative;
  84. padding: 40rpx;
  85. top:160rpx;
  86. box-sizing: border-box;
  87. }
  88. .invoice .content .open-invoce {
  89. width: 670rpx;
  90. height: 200rpx;
  91. background: rgba(249, 250, 252, 1);
  92. border-radius: 16rpx;
  93. border: 2rpx solid rgba(241, 241, 241, 1);
  94. padding: 36rpx 44rpx 40rpx 36rpx;
  95. box-sizing: border-box;
  96. font-size: 28rpx;
  97. font-family: PingFangSC-Regular, PingFang SC;
  98. font-weight: 400;
  99. color: rgba(104, 107, 120, 1);
  100. line-height: 40px;
  101. }
  102. .invoice .content .open-invoce:not(:first-child) {
  103. margin-top: 20rpx;
  104. }
  105. .invoice .content .open-invoce .top,
  106. .invoice .content .open-invoce .bottom {
  107. display: flex;
  108. justify-content: space-between;
  109. height: 60rpx;
  110. line-height: 60rpx;
  111. }
  112. .invoice .content .open-invoce .top .bold {
  113. font-size: 36rpx;
  114. font-weight: 500;
  115. color: rgba(66, 70, 86, 1);
  116. line-height: 50rpx;
  117. margin-right: 10rpx;
  118. }
  119. .invoice .content .open-invoce .bottom .open {
  120. width: 120rpx;
  121. height: 60rpx;
  122. background: rgba(0, 145, 255, 1);
  123. border-radius: 200rpx;
  124. text-align: center;
  125. font-weight: 500;
  126. color: rgba(255, 255, 255, 1);
  127. line-height: 60rpx;
  128. }
  129. .invoice .content .open-invoce .bottom .opening {
  130. width: 120rpx;
  131. height: 60rpx;
  132. border-radius: 200rpx;
  133. text-align: center;
  134. font-weight: 500;
  135. color: rgba(0,145,255,1);
  136. border: 2rpx solid rgba(0,145,255,1);
  137. line-height: 60rpx;
  138. }
  139. .invoice .content .open-invoce .bottom .alreadyopen {
  140. width: 120rpx;
  141. height: 60rpx;
  142. background-color: rgba(0, 145, 255, 0);
  143. border-radius: 200rpx;
  144. text-align: center;
  145. font-weight: 500;
  146. color: #D7D7D7;
  147. border: 2rpx solid rgba(242, 242, 242, 1);
  148. line-height: 60rpx;
  149. }
  150. .invoice .content .my-invoce {
  151. width: 670rpx;
  152. height: 200rpx;
  153. background: rgba(249, 250, 252, 1);
  154. border-radius: 16rpx;
  155. border: 2rpx solid rgba(241, 241, 241, 1);
  156. padding: 34rpx 40rpx 40rpx 36rpx;
  157. box-sizing: border-box;
  158. font-size: 28rpx;
  159. font-family: PingFangSC-Regular, PingFang SC;
  160. font-weight: 400;
  161. color: rgba(104, 107, 120, 1);
  162. }
  163. .invoice .content .my-invoce:not(:first-child) {
  164. margin-top: 20rpx;
  165. }
  166. .invoice .content .my-invoce .top,
  167. .invoice .content .my-invoce .bottom {
  168. display: flex;
  169. align-items: center;
  170. justify-content: space-between;
  171. height: 60rpx;
  172. line-height: 60rpx;
  173. }
  174. .invoice .content .my-invoce .top .bold {
  175. font-size: 36rpx;
  176. font-weight: 500;
  177. color: rgba(66, 70, 86, 1);
  178. /* line-height:50px; */
  179. }
  180. .invoice .content .my-invoce .top .left {
  181. display: flex;
  182. align-items: center;
  183. justify-content: space-between;
  184. }
  185. .invoice .content .my-invoce .top .tag {
  186. width: 120rpx;
  187. height: 47rpx;
  188. display: inline-block;
  189. margin-left: 10rpx;
  190. }
  191. .invoice .content .my-invoce .top .icon-up {
  192. display: inline-block;
  193. width: 16rpx;
  194. height: 10rpx;
  195. }
  196. .invoice .content .my-invoce .top .icon-left {
  197. display: inline-block;
  198. width: 10rpx;
  199. height: 16rpx;
  200. }
  201. .invoice .content .my-invoce .bottom .view {
  202. width:160rpx;
  203. height:60rpx;
  204. background:rgba(0,145,255,1);
  205. border-radius:200rpx;
  206. font-size:28rpx;
  207. font-family:PingFangSC-Medium,PingFang SC;
  208. font-weight:500;
  209. color:rgba(255,255,255,1);
  210. line-height:60rpx;
  211. text-align: center;
  212. }
  213. .invoice .content .my-invoce .bottom .expired{
  214. width:160rpx;
  215. height:60rpx;
  216. border-radius:200px;
  217. border:2rpx solid rgba(230,231,233,1);
  218. font-size:28rpx;
  219. font-family:PingFangSC-Medium,PingFang SC;
  220. font-weight:500;
  221. color:rgba(204,204,204,1);
  222. line-height:60rpx;
  223. text-align: center;
  224. }