fileItem.wxss 540 B

1234567891011121314151617181920212223242526272829303132
  1. /* component/fileItem/fileItem.wxss */
  2. .fileitem_bg {
  3. width: 667rpx;
  4. height: 99rpx;
  5. margin-bottom: 48rpx;
  6. display: flex;
  7. flex-direction: row;
  8. align-items: center;
  9. }
  10. .fileitem_icon {
  11. width: 54rpx;
  12. height: 44rpx
  13. }
  14. .fileitem_content {
  15. flex: 1;
  16. height: 100%;
  17. display: flex;
  18. flex-direction: column;
  19. align-items: flex-start;
  20. justify-content: center;
  21. margin-left: 18rpx;
  22. }
  23. .fileitem_more_icon {
  24. width: 32rpx;
  25. height: 7rpx;
  26. align-self: flex-start;
  27. margin-top: 21rpx;
  28. }