reading.wxss 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. .readingPage {
  2. height: 100%;
  3. /* overflow: hidden; */
  4. /* background: #eee; */
  5. }
  6. .read_num {
  7. width: 100%;
  8. height: 81rpx;
  9. background: #eee;
  10. display: flex;
  11. align-items: center;
  12. padding-left: 30rpx;
  13. box-sizing: border-box;
  14. color: rgba(0, 0, 0, .8);
  15. font-size: 28rpx;
  16. }
  17. .read_num_icon {
  18. width: 37rpx;
  19. height: 37rpx;
  20. margin-right: 17rpx;
  21. }
  22. .videoSection {
  23. width: 750rpx;
  24. height: 421.9rpx;
  25. }
  26. audio {
  27. background: #000;
  28. width: 100%;
  29. height: 200rpx;
  30. position: fixed;
  31. bottom: 200rpx;
  32. }
  33. .comment_section {
  34. position: fixed;
  35. top: 0;
  36. left: 0;
  37. width: 100%;
  38. height: 98%;
  39. z-index: 9999;
  40. background: rgba(0, 0, 0, .3);
  41. overflow: hidden;
  42. }
  43. .textSection {
  44. width: 100%;
  45. height: 500rpx;
  46. /* padding-bottom: 200rpx; */
  47. overflow: visible;
  48. background: #fff;
  49. }
  50. .btn_wrapper {
  51. width: 100%;
  52. height: 110rpx;
  53. display: flex;
  54. align-items: center;
  55. justify-content: center;
  56. }
  57. .btn_wrapper .reading_btn {
  58. width: 271rpx;
  59. height: 80rpx;
  60. background: #3FACFF;
  61. border-radius: 100rpx;
  62. display: flex;
  63. align-items: center;
  64. justify-content: center;
  65. }
  66. .btn_wrapper .reading_btn image {
  67. width: 39rpx;
  68. height: 50rpx;
  69. margin-right: 20rpx;
  70. }
  71. .btn_wrapper .reading_btn text {
  72. color: #fff;
  73. font-size: 30rpx;
  74. font-weight: 30rpx;
  75. }
  76. .textSection .textContent {
  77. font-size: 32rpx;
  78. line-height: 56rpx;
  79. text-align: center;
  80. display: block;
  81. margin: 0 50rpx;
  82. color: #444;
  83. }
  84. ::-webkit-scrollbar {
  85. width: 0;
  86. height: 0;
  87. color: transparent;
  88. }
  89. /**底部按钮区域**/
  90. .footSection {
  91. width: 750rpx;
  92. height: 152rpx;
  93. /* position: fixed; */
  94. /* bottom: 0; */
  95. display: flex;
  96. flex-direction: row;
  97. justify-content: space-between;
  98. align-items: center;
  99. }
  100. .readingBtn {
  101. width: 148rpx;
  102. height: 148rpx;
  103. border-radius: 50%;
  104. display: flex;
  105. align-items: center;
  106. margin: 60rpx auto 0;
  107. }
  108. .footerBtn {
  109. display: flex;
  110. flex-direction: column;
  111. margin-top: 30rpx;
  112. }
  113. .collectBtn {
  114. margin-left: 40rpx
  115. }
  116. .shareBtn {
  117. margin-right: 40rpx
  118. }
  119. .footerBtn image {
  120. width: 80rpx;
  121. height: 80rpx;
  122. display: block;
  123. margin: 0 auto 3rpx;
  124. }
  125. .footerBtn text {
  126. width: 112rpx;
  127. height: 40rpx;
  128. font-size: 30rpx;
  129. color: rgba(0, 0, 0, .6);
  130. text-align: center;
  131. }
  132. .footSection .microphone {
  133. display: block;
  134. /* margin: -12rpx auto 8rpx; */
  135. width: 108rpx;
  136. height: 106rpx;
  137. }
  138. .footSection .readingBtn text {
  139. margin-top: -10rpx;
  140. }
  141. .score_dialog {
  142. width: 100%;
  143. height: 100%;
  144. background: rgba(0, 0, 0, .6);
  145. display: flex;
  146. flex-direction: column;
  147. justify-content: center;
  148. align-items: center;
  149. position: fixed;
  150. top: 0;
  151. left: 0;
  152. }
  153. .score_dialog .close {
  154. margin-top: 55rpx;
  155. width: 76rpx;
  156. height: 76rpx;
  157. }
  158. .score_dialog .close .close_icon {
  159. width: 100%;
  160. height: 100%;
  161. }
  162. .score_dialog .score_section {
  163. width: 552rpx;
  164. height: 562rpx;
  165. background: #fffdf7;
  166. border-radius: 30rpx;
  167. }
  168. .readingPage .score_section {
  169. width: 100%;
  170. padding: 0 110rpx;
  171. box-sizing: border-box;
  172. height: 524rpx;
  173. background: #fffbf7;
  174. border-top: 10rpx solid #eee;
  175. }
  176. .score_section .title {
  177. width: 100%;
  178. text-align: center;
  179. margin-top: 60rpx;
  180. margin-bottom: 30rpx;
  181. color: #e76634;
  182. font-size: 44rpx;
  183. }
  184. .score_section .star_row {
  185. width: 100%;
  186. display: flex;
  187. flex-direction: row;
  188. align-items: center;
  189. justify-content: space-between;
  190. padding: 0 100rpx;
  191. box-sizing: border-box;
  192. margin-bottom: 42rpx;
  193. }
  194. .score_section .star_row .star {
  195. width: 55rpx;
  196. height: 53rpx;
  197. }
  198. .score_section .score_item {
  199. width: 100%;
  200. display: flex;
  201. align-items: center;
  202. text-align: center;
  203. font-size: 38rpx;
  204. color: #ab722d;
  205. padding-left: 110rpx;
  206. box-sizing: border-box;
  207. margin-bottom: 10rpx;
  208. justify-content: space-between;
  209. padding-right: 100rpx;
  210. }
  211. .score_item_left{
  212. display: flex;align-items: center;
  213. }
  214. .score_section .score_item .score_item_left .score_square {
  215. width: 17.6rpx;
  216. height: 17.6rpx;
  217. background: #cda069;
  218. margin-right: 34.4rpx;
  219. }