file.wxss 825 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. @charset "UTF-8";
  2. /* 需要放到文件最上面 */
  3. /* 水平间距 */
  4. /* 水平间距 */
  5. /*
  6. 以下变量是默认值,如不需要修改可以不用给下面的变量重新赋值
  7. */
  8. /* 水平间距 */
  9. .file-list {
  10. padding: 30rpx;
  11. }
  12. .file-list .file-item {
  13. display: flex;
  14. padding: 20rpx;
  15. background: #fff;
  16. display: flex;
  17. align-items: center;
  18. border-radius: 16rpx;
  19. box-shadow: 0px 1px 12px rgba(3, 3, 3, 0.08);
  20. margin-bottom: 30rpx;
  21. }
  22. .file-list .file-item .file-image {
  23. width: 100rpx;
  24. height: 80rpx;
  25. display: flex;
  26. align-items: center;
  27. justify-content: center;
  28. margin-right: 30rpx;
  29. }
  30. .file-list .file-item .title {
  31. font-size: 32rpx;
  32. font-weight: 600;
  33. margin-bottom: 10rpx;
  34. }
  35. .file-list .file-item .sub {
  36. font-weight: 300;
  37. font-size: 24rpx;
  38. margin-top: 10rpx;
  39. color: #8c8c8c;
  40. }