works.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. .videoSection{
  2. width: 750rpx;
  3. height: 428rpx;
  4. }
  5. .readAuthorSection{
  6. width: 100%;
  7. height: 152rpx;
  8. display: flex;
  9. /* justify-items: center; */
  10. align-items: center
  11. }
  12. .readAuthorSection .avatar{
  13. width: 108rpx;
  14. height: 108rpx;
  15. border-radius: 50%;
  16. margin-left: 22rpx;
  17. }
  18. .readAuthorSection .nickName{
  19. margin-left: 8rpx;
  20. width: 160rpx;
  21. height: 46rpx;
  22. font-size: 32rpx;
  23. color: #101010;
  24. }
  25. .readAuthorSection .like{
  26. display: flex;
  27. align-items: center;
  28. justify-content: center;
  29. margin-left: 90rpx;
  30. width: 160rpx;
  31. height: 60rpx;
  32. border: 2rpx solid rgba(255,152,0,1);
  33. font-size: 28rpx;
  34. border-radius: 30rpx;
  35. text-align: center;
  36. /* line-height: 60rpx; */
  37. color: #ff9800;
  38. }
  39. .readAuthorSection .like image{
  40. width: 36rpx;
  41. height: 36rpx;
  42. margin-right: 15rpx;
  43. }
  44. .readAuthorSection .follow{
  45. margin-left: 12rpx;
  46. width: 160rpx;
  47. height: 60rpx;
  48. border: 2rpx solid #259b24;
  49. font-size: 28rpx;
  50. border-radius: 30rpx;
  51. text-align: center;
  52. line-height: 60rpx;
  53. color: #259b24;
  54. }
  55. .userSection{
  56. width: 100%;
  57. height: 196rpx;
  58. }
  59. .userSection .title{
  60. }
  61. .userSection .avatarRow{
  62. display: flex;
  63. align-items: center;
  64. overflow: hidden;
  65. }
  66. .userSection .avatarRow .userItem{
  67. margin-right: 20rpx;
  68. }
  69. .avatarRow .userItem image {
  70. width: 100rpx;
  71. height: 100rpx;
  72. border-radius: 50%;
  73. }
  74. .avatarRow .userItem .nickName {
  75. width: 100rpx;
  76. height: 20rpx;
  77. color: #101010;
  78. font-size: 24rpx;
  79. text-align: center;
  80. text-overflow: ellipsis;
  81. white-space: nowrap;
  82. overflow: hidden;
  83. }
  84. .commentSection{
  85. }
  86. .commentSection .title{
  87. }
  88. .commentSection .commentInput{
  89. }
  90. .commentSection .commentArea{
  91. }
  92. .footSection{
  93. width: 750rpx;
  94. height: 124rpx;
  95. position: fixed;
  96. bottom: 0;
  97. background: #aaa;
  98. display: flex;
  99. flex-direction: row;
  100. justify-content: space-between;
  101. }
  102. .readingBtn{
  103. width: 148rpx;
  104. height: 148rpx;
  105. border-radius: 50%;
  106. background: #aaa;
  107. }
  108. .footerBtn{
  109. display: flex;
  110. flex-direction: column;
  111. }
  112. .footerBtn image{
  113. width: 48rpx;
  114. height: 48rpx;
  115. }