index.wxss 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. /* pages/order/invoicingDetail/index.wxss */
  2. page {
  3. background-color: #f4f4f3;
  4. padding: 0;
  5. margin: 0;
  6. }
  7. /* 发票类型开票详情 */
  8. .invoicDetail {
  9. margin: 20rpx 0;
  10. /* height: 708rpx; */
  11. width: 100%;
  12. background-color: #fff;
  13. position: relative;
  14. /* top: -300rpx; */
  15. border-radius: 28rpx;
  16. overflow: hidden;
  17. }
  18. .invoicTop {
  19. height: 65rpx;
  20. width: 100%;
  21. /* background-color: blue; */
  22. display: flex;
  23. align-items: center;
  24. padding: 0 20rpx;
  25. }
  26. .invoicTopLeft {
  27. width: 20rpx;
  28. height: 20rpx;
  29. border-right: solid #ec3a43 6rpx;
  30. margin-right: 9rpx;
  31. }
  32. .invoicTopInfo {
  33. font-size: 28rpx;
  34. color: #000;
  35. /* font-weight: 700; */
  36. margin-top: 20rpx;
  37. }
  38. .invoicTopInfo::before {
  39. content: '';
  40. height: 20rpx;
  41. width: 6rpx;
  42. background: var(--subtitleColor);
  43. display: inline-block;
  44. margin-right: 10rpx;
  45. border-radius: 4rpx;
  46. background-image: initial;
  47. background-position-x: initial;
  48. background-position-y: initial;
  49. background-size: initial;
  50. background-repeat-x: initial;
  51. background-repeat-y: initial;
  52. background-attachment: initial;
  53. background-origin: initial;
  54. background-clip: initial;
  55. background-color: var(--subtitleColor);
  56. border-top-left-radius: 2px;
  57. border-top-right-radius: 2px;
  58. border-bottom-right-radius: 2px;
  59. border-bottom-left-radius: 2px;
  60. }
  61. /* 发票类型 */
  62. .invoicType {
  63. display: flex;
  64. width: 708rpx;
  65. height: 80rpx;
  66. border-bottom: solid #dbdcdd 2rpx;
  67. align-items: center;
  68. margin: 0 20rpx;
  69. }
  70. .invoicTypeInfo {
  71. display: flex;
  72. width: 708rpx;
  73. /* height: 80rpx; */
  74. border-bottom: solid #dbdcdd 2rpx;
  75. align-items: center;
  76. margin: 0 20rpx;
  77. }
  78. .invoicTypeInfoOne {
  79. display: flex;
  80. width: 708rpx;
  81. height: 80rpx;
  82. border-bottom: solid #dbdcdd 2rpx;
  83. align-items: center;
  84. margin: 0 20rpx;
  85. padding: 20rpx 0;
  86. }
  87. .type {
  88. font-size: 28rpx;
  89. margin-right: auto;
  90. color: #433f3f;
  91. }
  92. .invoiceSample{color: #c9caca;width: 100%;text-align: center;font-size: 22rpx;margin-bottom: 20rpx;}
  93. .typeInput {
  94. text-align: right;
  95. text-align-last: right;
  96. margin-right: 15rpx;
  97. /* box-sizing:border-box; */
  98. font-size: 26rpx;
  99. color: #959595;
  100. }
  101. .typeInfoTitle {
  102. overflow: hidden;
  103. width: 417rpx;
  104. margin-right: -16rpx;
  105. text-align: right;
  106. white-space: wrap;
  107. padding: 4rpx 0 8rpx 0;
  108. /* float: left; */
  109. /* height: 100%; */
  110. /* width: 200rpx; */
  111. /* overflow: scroll; */
  112. }
  113. .typeInfoOne {
  114. /* display: block; */
  115. position: relative;
  116. /* left: 190rpx; */
  117. font-size: 26rpx;
  118. color: #959595;
  119. margin-right: 15rpx;
  120. width: 90rpx;
  121. height: 74rpx;
  122. /* float: left; */
  123. }
  124. .typeInfo {
  125. font-size: 26rpx;
  126. color: #959595;
  127. text-overflow: -o-ellipsis-lastline;
  128. overflow: hidden;
  129. text-overflow: ellipsis;
  130. display: -webkit-box;
  131. -webkit-line-clamp: 2;
  132. -webkit-box-orient: vertical;
  133. /* margin-right: 15rpx; */
  134. /* width: 200rpx; */
  135. /* width: 200rpx; */
  136. }
  137. .typeInfoEmail {
  138. position: relative;
  139. right: 25rpx;
  140. }
  141. .invoicEmail {
  142. display: flex;
  143. width: 708rpx;
  144. height: 80rpx;
  145. align-items: center;
  146. margin: 0 20rpx;
  147. }
  148. /* 提示说明 */
  149. .tipInfo {
  150. height: 158rpx;
  151. background-color: #fff;
  152. border-radius: 28rpx;
  153. }
  154. .tip {
  155. display: flex;
  156. align-items: center;
  157. height: 50%;
  158. padding: 0 20rpx;
  159. }
  160. .tipRed {
  161. width: 22rpx;
  162. height: 22rpx;
  163. border-right: #ec3a43 solid 6rpx;
  164. margin-right: 9rpx;
  165. }
  166. .tipTitle {
  167. font-size: 28rpx;
  168. color: #3e3939;
  169. }
  170. .tipTitle::before {
  171. content: '';
  172. height: 20rpx;
  173. width: 6rpx;
  174. background: #EE3A43;
  175. display: inline-block;
  176. margin-right: 10rpx;
  177. border-radius: 4rpx;
  178. background-image: initial;
  179. background-position-x: initial;
  180. background-position-y: initial;
  181. background-size: initial;
  182. background-repeat-x: initial;
  183. background-repeat-y: initial;
  184. background-attachment: initial;
  185. background-origin: initial;
  186. background-clip: initial;
  187. background-color: rgb(238, 58, 67);
  188. border-top-left-radius: 2px;
  189. border-top-right-radius: 2px;
  190. border-bottom-right-radius: 2px;
  191. border-bottom-left-radius: 2px;
  192. }
  193. /* 提示文案 */
  194. .prompt {
  195. font-size: 26rpx;
  196. color: #c5c6c7;
  197. margin-left: 20rpx;
  198. }
  199. /* 底部 */
  200. .editInfo {
  201. position: fixed;
  202. bottom: 0;
  203. height: 87rpx;
  204. width: 100%;
  205. background-color: #fff;
  206. display: flex;
  207. justify-content: center;
  208. align-items: center;
  209. }
  210. .infobtn {
  211. background-color: var(--themeColor);
  212. border-radius: 20rpx;
  213. width: 630rpx;
  214. height: 73rpx;
  215. text-align: center;
  216. line-height: 73rpx;
  217. color: #000;
  218. }