index.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. .hc-ledger-page {
  2. height: 100%;
  3. .hc-tab-bar {
  4. position: relative;
  5. border-top: 2rpx solid #f3f3f3;
  6. border-bottom: 2rpx solid #f3f3f3;
  7. height: 92rpx;
  8. }
  9. .hc-content-bar {
  10. position: fixed;
  11. bottom: 146rpx;
  12. left: 0;
  13. right: 0;
  14. height: 408px;
  15. padding: 24rpx;
  16. background: white;
  17. box-shadow: 0 -4rpx 12rpx 0 rgba(0, 0, 0, 0.1);
  18. border-radius: 14rpx 14rpx 0 0;
  19. z-index: 22;
  20. transition: height 0.3s ease-in-out;
  21. .arrow-bar {
  22. position: absolute;
  23. top: -60rpx;
  24. background: white;
  25. font-size: 50rpx;
  26. color: #007aff;
  27. height: 60rpx;
  28. width: 80rpx;
  29. display: flex;
  30. align-items: center;
  31. justify-content: center;
  32. right: 16rpx;
  33. box-shadow: 0 -4rpx 10rpx 0 rgba(0, 0, 0, .15);
  34. border-radius: 12rpx 12rpx 0 0;
  35. }
  36. .time-form-item {
  37. display: flex;
  38. justify-content: space-between;
  39. padding-bottom: 0.3125rem;
  40. border-bottom: 1px solid #f8e2c8;
  41. font-size: 0.875rem;
  42. }
  43. }
  44. }