documentItem.wxss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /* component/documentItem/documentItem.wxss */
  2. .topLayout {
  3. display: flex;
  4. flex-direction: row;
  5. justify-content: space-between;
  6. align-items: center;
  7. }
  8. .topLayout_ImgLayout {
  9. display: flex;
  10. flex-direction: row;
  11. align-items: center;
  12. }
  13. .topLayout_ImgLayout_img {
  14. width: 70rpx;
  15. height: 70rpx;
  16. margin-left: 27rpx;
  17. }
  18. .topLayout_ImgLayout_text {
  19. font-size: 34rpx;
  20. margin-left: 37rpx
  21. }
  22. .topLayout_ImgLayout_more {
  23. height: 43rpx;
  24. display: flex;
  25. flex-direction: row;
  26. align-items: center;
  27. margin-right: 28rpx;
  28. }
  29. .topLayout_ImgLayout_more_img {
  30. width: 32rpx;
  31. height: 8rpx;
  32. }
  33. .timeLayout {
  34. display: flex;
  35. flex-direction: row;
  36. justify-content: space-between;
  37. align-items: center;
  38. margin-top: 23rpx
  39. }
  40. .timeLayout_time {
  41. font-size: 28rpx;
  42. margin-left: 27rpx;
  43. }
  44. .timeLayout_download_text {
  45. margin-right: 25rpx;
  46. color: #64C55A;
  47. font-size: 28rpx;
  48. }
  49. .playerLayout {
  50. width: 100%;
  51. height: 425rpx;
  52. background-color: royalblue;
  53. margin-top: 22rpx;
  54. }
  55. .player {
  56. width: 100%;
  57. height: 100%;
  58. }