index.scss 1011 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. page{
  2. background: #f1f2f3;
  3. }
  4. .panel{
  5. padding:10px;
  6. background: #fff;
  7. }
  8. .billno{
  9. font-size: 32rpx;
  10. font-weight: bold;
  11. letter-spacing: 2px;
  12. }
  13. .mr-5{
  14. margin-right: 5px;
  15. }
  16. .mr-10{
  17. margin-right: 15px;
  18. }
  19. .mt-5{
  20. margin-bottom:5px
  21. }
  22. .small{
  23. font-size: 26rpx;
  24. color:#333;
  25. line-height: 25px;
  26. }
  27. .btn-wrapper {
  28. height: 100%;
  29. }
  30. .btn {
  31. display: inline-flex;
  32. justify-content: center;
  33. align-items: center;
  34. width: 120rpx;
  35. height: 100%;
  36. color: white;
  37. }
  38. .delete-btn {
  39. background-color: #e34d59;
  40. }
  41. .edit-btn {
  42. background-color: #ed7b2f;
  43. }
  44. .favor-btn {
  45. background-color: #0052d9;
  46. }
  47. .column {
  48. flex-direction: column;
  49. }
  50. .dialog-input {
  51. padding-top: 12px;
  52. padding-bottom: 12px;
  53. text-align: left;
  54. margin-top: 32rpx;
  55. border-radius: 8rpx;
  56. background-color: #ccc;
  57. box-sizing: border-box;
  58. }
  59. .placeholder {
  60. color: rgba(0, 0, 0, 0.4);
  61. line-height: 96rpx;
  62. }
  63. .d-title{
  64. font-size: 26rpx;
  65. color:#999;
  66. margin-bottom: 5px;
  67. }
  68. .t-class{
  69. box-shadow: 0px 5px 5px #333;
  70. }