wallet.wxss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. .basicInForm {
  2. width: 100%;
  3. background: #fe8464;
  4. color: #fff;
  5. text-align: center;
  6. padding: 50rpx 0 20rpx;
  7. }
  8. .today-box {
  9. margin-bottom: 30rpx;
  10. }
  11. .today-income {
  12. font-size: 30rpx;
  13. }
  14. .today-income-money {
  15. font-size: 60rpx;
  16. font-weight: bold;
  17. line-height: 2;
  18. }
  19. .flex {
  20. display: flex;
  21. }
  22. .flex-item {
  23. flex: 1;
  24. }
  25. .other-item {
  26. position: relative;
  27. }
  28. .other-income .other-item:first-child::after {
  29. position: absolute;
  30. content: "";
  31. top: 0;
  32. bottom: 0;
  33. right: 0;
  34. width: 1px;
  35. border-left: 1px solid #fff;
  36. transform: scaleX(0.5);
  37. }
  38. .income-money {
  39. font-weight: bold;
  40. line-height: 2;
  41. }
  42. .income-data {
  43. padding: 20rpx 30rpx;
  44. }
  45. .common-title {
  46. display: flex;
  47. color: #999;
  48. align-content: center;
  49. align-items: center;
  50. }
  51. .common-title .subtit {
  52. margin-right: 10px;
  53. }
  54. .common-nav {
  55. color: rgb(59,140,232);
  56. margin: 5px;
  57. }
  58. .common-money {
  59. font-size: 40rpx;
  60. line-height: 2;
  61. }
  62. .income-btn {
  63. margin: 40rpx 30rpx;
  64. line-height: 70rpx;
  65. background-color: #fe8464;
  66. border-radius: 5px;
  67. color: #fff;
  68. text-align: center;
  69. font-weight: bold;
  70. font-size: 30rpx;
  71. }