noveldetails.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. /* 返回 */
  2. .nav {
  3. background-color: #101010;
  4. z-index: 3;
  5. position: fixed;
  6. top: 0;
  7. left: 0;
  8. width: 100%;
  9. /* height: 10%; */
  10. height: .88rem;
  11. display: flex;
  12. }
  13. .back{
  14. position: absolute;
  15. left: 0;
  16. top: 0;
  17. z-index: 3;
  18. width: 10%;
  19. height: .88rem;
  20. display: flex;
  21. justify-content: center;
  22. align-items: center;
  23. }
  24. .back img {
  25. width: .18rem;
  26. }
  27. /* 页面标题 */
  28. .pageTitle {
  29. height: .88rem;
  30. width: 100%;
  31. display: flex;
  32. justify-content: center;
  33. align-items: center;
  34. }
  35. .pageTitle img {
  36. width: 1.6rem;
  37. height: .8rem;
  38. }
  39. .novelText {
  40. padding: 1rem .26rem;
  41. padding-bottom: 0;
  42. }
  43. /* 单条视频 */
  44. .videoContent {
  45. background-color: #1C1A1B;
  46. height: 98px;
  47. margin: .26rem;
  48. }
  49. .videoTitle {
  50. text-align: left;
  51. font-size: .3rem;
  52. padding: .2rem .3rem 0 .3rem;
  53. white-space: nowrap;
  54. /* //文本超出隐藏 */
  55. overflow: hidden;
  56. /* //文本超出省略号替代 */
  57. text-overflow: ellipsis;
  58. }
  59. .contentText {
  60. margin: 3px .3rem;
  61. white-space: nowrap;
  62. /* //文本超出隐藏 */
  63. overflow: hidden;
  64. /* //文本超出省略号替代 */
  65. text-overflow: ellipsis;
  66. font-size: .28rem;
  67. }
  68. .videoData {
  69. display: flex;
  70. align-items: center;
  71. margin: .2rem .3rem 0 .3rem;
  72. }
  73. .videoDataLeft {
  74. display: flex;
  75. align-items: center;
  76. margin-right: .1rem;
  77. }
  78. .videoDataImgLook {
  79. width:.3rem;
  80. height: .2rem;
  81. }
  82. .videoDataImgZan {
  83. width:.28rem;
  84. height: .3rem;
  85. }
  86. .videoText {
  87. margin-left: .1rem;
  88. font-size: .24rem;
  89. }
  90. .videoDataRgiht {
  91. display: flex;
  92. align-items: center;
  93. margin-left: 30px;
  94. }
  95. .toolTip {
  96. width: 100%;
  97. height: 100%;
  98. background-color: rgba(0,0,0,.8);
  99. position: fixed;
  100. top: 0;
  101. left: 0;
  102. display: none;
  103. }
  104. .tipcenter {
  105. width: 7rem;
  106. height: 4.3rem;
  107. position: fixed;
  108. top: 50%;
  109. left: 50%;
  110. transform: translate(-50%,-50%);
  111. text-align: center;
  112. }
  113. .toolTiptextwrap {
  114. width: 6rem;
  115. height: 2.5rem;
  116. background-color: #1C1A1B;
  117. border-radius: .12rem;
  118. display: flex;
  119. flex-wrap: wrap;
  120. justify-content: space-between;
  121. align-items: center;
  122. padding: .5rem;
  123. }
  124. .btn {
  125. width: 2.8rem;
  126. height: 1.1rem;
  127. border-radius: .8rem;
  128. background-color: #333333;
  129. display: flex;
  130. align-items: center;
  131. line-height: 1.1rem;
  132. }
  133. .btnImg {
  134. width: .32rem;
  135. height: .32rem;
  136. margin-left: .3rem;
  137. }
  138. .btnText {
  139. margin-left: .1rem;
  140. font-size: .3rem;
  141. }
  142. .clear {
  143. margin-top: .3rem;
  144. width: .48rem;
  145. height: .48rem;
  146. }
  147. .tip {
  148. width: 6rem;
  149. height: 1rem;
  150. color: #fff;
  151. position: fixed;
  152. top: 50%;
  153. left: 50%;
  154. transform: translate(-50%,-50%);
  155. display: none;
  156. }
  157. .textwrap {
  158. display: flex;
  159. justify-content: center;
  160. align-items: center;
  161. }
  162. .tiptext {
  163. background-color: #000;
  164. border-radius: .1rem;
  165. text-align: center;
  166. padding: .1rem .2rem;
  167. }