accounting_rules.wxss 1.3 KB

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