invoice.wxss 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. .invoice {
  17. height: calc(100vh - env(safe-area-inset-bottom));
  18. padding: 24rpx;
  19. position: relative;
  20. }
  21. .invoice .box {
  22. padding: 20rpx 0;
  23. border-radius: 16rpx;
  24. }
  25. .invoice .box .item {
  26. padding: 16rpx 30rpx;
  27. }
  28. .invoice .box .item .label {
  29. font-size: 28rpx;
  30. color: #101010;
  31. }
  32. .invoice .box .item .content {
  33. min-width: 440rpx;
  34. }
  35. .invoice .footer {
  36. left: 0;
  37. bottom: 0;
  38. width: 100%;
  39. padding: 24rpx;
  40. position: absolute;
  41. }
  42. .invoice .footer .btn {
  43. height: 88rpx;
  44. }
  45. .invoice .footer .submit-btn {
  46. color: #ffffff;
  47. background-color: #E39B37;
  48. }
  49. .invoice .footer .cancel-btn {
  50. color: #E39B37;
  51. background-color: #ffffff;
  52. }
  53. .invoice .invoice-type {
  54. padding: 40rpx;
  55. padding-bottom: 0;
  56. }
  57. .invoice .invoice-type .invoice-type--item {
  58. padding: 28rpx 36rpx;
  59. border-radius: 40rpx;
  60. margin-bottom: 30rpx;
  61. }
  62. .invoice .invoice-type .invoice-type-confirm-btn {
  63. padding: 90rpx 0 50rpx 0;
  64. }
  65. .invoice .invoice-type .invoice-type-confirm-btn .confirm {
  66. background-color: #FF9E1E;
  67. }