index.wxss 695 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /* pages/agent/serviceBillDetail/index.wxss */
  2. page{
  3. background: #f1f2f3;
  4. }
  5. .panel{
  6. padding:10px;
  7. background: #fff;
  8. }
  9. .billno{
  10. font-size: 32rpx;
  11. font-weight: bold;
  12. letter-spacing: 2px;
  13. }
  14. .mr-5{
  15. margin-right: 5px;
  16. }
  17. .mr-10{
  18. margin-right: 15px;
  19. }
  20. .mt-5{
  21. margin-bottom:5px
  22. }
  23. .small{
  24. font-size: 26rpx;
  25. color:#333;
  26. line-height: 25px;
  27. }
  28. .btn-wrapper {
  29. height: 100%;
  30. }
  31. .btn {
  32. display: inline-flex;
  33. justify-content: center;
  34. align-items: center;
  35. width: 120rpx;
  36. height: 100%;
  37. color: white;
  38. }
  39. .delete-btn {
  40. background-color: #e34d59;
  41. }
  42. .edit-btn {
  43. background-color: #ed7b2f;
  44. }
  45. .favor-btn {
  46. background-color: #0052d9;
  47. }
  48. .column {
  49. flex-direction: column;
  50. }