detailsList.wxss 1.1 KB

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