fileList.wxss 925 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /* pages/publics/fileList/fileList.wxss */
  2. /* scroll-view ::-webkit-scrollbar {
  3. display:none;
  4. width:0;
  5. height:0;
  6. color:transparent;
  7. } */
  8. .tab-item{
  9. font-size: 34rpx;
  10. text-align: center;
  11. line-height: 60rpx;
  12. color: #333333;
  13. height: 54rpx;
  14. display: flex;
  15. justify-content: center;
  16. flex-direction: row;
  17. padding: 0 10rpx;
  18. }
  19. .tab-item.active{
  20. font-size: 34rpx;
  21. color: #508FF4;
  22. border-bottom: 7rpx solid #508FF4;
  23. position: relative;
  24. }
  25. .list li{
  26. padding: 20rpx 0;
  27. display: flex;
  28. flex-direction: column;
  29. justify-content: center;
  30. border-bottom: 1px solid rgb(102 102 102 / 12%);
  31. }
  32. /* .list li .title::before {
  33. content: '·';
  34. font-size: 20rpx;
  35. font-weight: bold;
  36. margin-right: 5px;
  37. } */
  38. .list li .title{
  39. display: block;
  40. font-size: 28rpx;
  41. color: #333333;
  42. margin-left: 20rpx;
  43. }
  44. .list li .time{
  45. margin-left: 20rpx;
  46. color: #999999;
  47. font-size:24rpx;
  48. width: 90%;
  49. margin-top: 5px;
  50. }