accounting_rules.wxss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. .box{
  2. width: 100%;
  3. display: flex;
  4. flex-direction: column;
  5. align-items: center;
  6. }
  7. .box .title{
  8. font-size:48rpx;
  9. font-family:PingFang SC;
  10. font-weight:bold;
  11. color:rgba(42,42,42,1);
  12. }
  13. .box .content{
  14. width: 80%;
  15. }
  16. .temporary{
  17. width: 100%;
  18. display: flex;
  19. align-items: center;
  20. justify-content: space-between;
  21. padding: 15rpx 0;
  22. }
  23. .temporary text:nth-of-type(1){
  24. height: 2rpx;
  25. background:#DFDFDF;
  26. width: 30%;
  27. }
  28. .temporary text:nth-of-type(3){
  29. height: 2rpx;
  30. background: #DFDFDF;
  31. width: 30%;
  32. }
  33. .temporary text:nth-of-type(2){
  34. font-size:26rpx;
  35. font-family:PingFang SC;
  36. font-weight:500;
  37. color:rgba(42,42,42,1);
  38. }
  39. .rule{
  40. width: 100%;
  41. display: flex;
  42. flex-direction: column;
  43. }
  44. .rule view{
  45. width: 100%;
  46. display: flex;
  47. justify-content: space-between;
  48. align-items: center;
  49. }
  50. .rule text{
  51. font-size:24rpx;
  52. font-family:PingFang SC;
  53. font-weight:400;
  54. color:#A3A3A3;
  55. padding: 20rpx 0rpx;
  56. }
  57. .dispatch{
  58. width: 100%;
  59. padding: 20rpx 0rpx;
  60. font-size:24rpx;
  61. font-family:PingFang SC;
  62. font-weight:400;
  63. color:#A3A3A3;
  64. display: flex;
  65. flex-direction: column;
  66. }
  67. .dispatch view{
  68. display: flex;
  69. justify-content: space-between;
  70. align-items: center;
  71. }
  72. .dispatch text{
  73. padding: 20rpx 0rpx;
  74. }