detailsList.wxss 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. .nav-bar {
  2. width: 100%;
  3. position: fixed;
  4. left: 0;
  5. top: 0;
  6. z-index: 10;
  7. }
  8. .nav-bar .nav-bar-inner {
  9. display: flex;
  10. justify-content: space-between;
  11. background-color: white;
  12. }
  13. .nav-bar .nav-bar-item {
  14. flex: 1;
  15. text-align: center;
  16. }
  17. .nav-bar .nav-bar-item .nav-bar-item-inner {
  18. position: relative;
  19. display: inline-block;
  20. word-break: keep-all;
  21. font-size: 28rpx;
  22. font-weight: 500;
  23. color: #666;
  24. padding: 20rpx 0;
  25. }
  26. .nav-bar .current.nav-bar-item .nav-bar-item-inner::after {
  27. content: "";
  28. position: absolute;
  29. bottom: 0;
  30. left: 0;
  31. right: 0;
  32. height: 3px;
  33. background: linear-gradient(90deg,#ff4936 0%,#ff6e3c 100%);
  34. box-shadow: 0rpx 4rpx 8rpx 0rpx rgba(255,89,0,0.25);
  35. border-radius: 24rpx;
  36. transition: all 400ms ease-in;
  37. }
  38. .cash-list {
  39. margin-top: 100rpx;
  40. }
  41. .list-item {
  42. background: #fff;
  43. border-radius: 10rpx;
  44. padding: 24rpx 20rpx;
  45. margin: 20rpx 20rpx;
  46. line-height: 2;
  47. font-size: 24rpx;
  48. }
  49. .list-item .title {
  50. border-bottom: 2rpx solid #f2f2f2;
  51. font-size: 28rpx;
  52. margin-bottom: 5px;
  53. }