1
0

publicpraisemsg.wxss 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403
  1. page{
  2. display: block;
  3. width: 100%;
  4. height: 100%;
  5. }
  6. .titbox{
  7. padding: 32rpx 20rpx 16rpx;
  8. }
  9. .sharebox{
  10. margin-left: 20rpx;
  11. }
  12. .sharebox image{
  13. display: block;
  14. width: 24rpx;
  15. height: 20rpx;
  16. margin-right: 8rpx;
  17. position: relative;
  18. top:7rpx;
  19. }
  20. .textbox{
  21. padding: 24rpx 20rpx;
  22. }
  23. .msgbox{
  24. padding: 0 20rpx 140rpx;
  25. }
  26. .msgbox>view{
  27. margin-bottom: 24rpx;
  28. }
  29. .iamgeBox image{
  30. display: block;
  31. width: 100%;
  32. margin-bottom: 24rpx;
  33. }
  34. /* 图片展示 */
  35. .iamgeBox image {
  36. /* float: left;
  37. width: 210rpx;
  38. height: 154rpx;
  39. margin-right: 4rpx;
  40. margin-bottom: 4rpx; */
  41. /* max-height: 340rpx; */
  42. }
  43. .iamgeBox image:nth-of-type(3n){
  44. /* margin-right: 0; */
  45. }
  46. /* 一张图片 */
  47. view.oneImg image {
  48. display: block;
  49. width: 100%;
  50. max-height: max-content;
  51. }
  52. view.fourImg image:nth-of-type(2n){
  53. margin-right: 50rpx;
  54. }
  55. .prebox{
  56. position: fixed;
  57. top: 36%;
  58. left: 0;
  59. width: 68rpx;
  60. height: 104rpx;
  61. opacity: 0.9;
  62. background: #384855;
  63. border-radius: 0 52rpx 52rpx 0;
  64. }
  65. .prebox image{
  66. display: block;
  67. position: absolute;
  68. width: 32rpx;
  69. height: 36rpx;
  70. top: 34rpx;
  71. left: 10rpx;
  72. z-index: 99;
  73. }
  74. .nextbox{
  75. position: fixed;
  76. top: 36%;
  77. right: 0;
  78. width: 68rpx;
  79. height: 104rpx;
  80. opacity: 0.9;
  81. background: #384855;
  82. border-radius: 52rpx 0 0 52rpx;
  83. }
  84. .nextbox image{
  85. display: block;
  86. position: absolute;
  87. width: 32rpx;
  88. height: 36rpx;
  89. top: 34rpx;
  90. right: 10rpx;
  91. z-index: 99;
  92. }
  93. /* 视频 */
  94. .page {
  95. position: relative;
  96. width: 100%;
  97. height: 100%;
  98. overflow: hidden;
  99. box-sizing: border-box;
  100. background: #000;
  101. }
  102. .videoBox {
  103. display: block;
  104. width: 100%;
  105. height: 100%;
  106. }
  107. .videoBoxUp {
  108. display: block;
  109. width: 100%;
  110. height: 420rpx;
  111. margin-top: 360rpx;
  112. }
  113. .bgcolor {
  114. width: 100%;
  115. position: absolute;
  116. left: 0;
  117. height: 410rpx;
  118. bottom: 100rpx;
  119. pointer-events: none;
  120. z-index: 8;
  121. /* background-image: linear-gradient(180deg,
  122. rgba(0, 0, 0, 0) 0%,
  123. rgba(0, 0, 0, 0.6) 100%); */
  124. }
  125. .bgcolorshow {
  126. bottom: 0;
  127. }
  128. .personBox {
  129. position: absolute;
  130. bottom: 360rpx;
  131. left: 40rpx;
  132. /* width: 380rpx; */
  133. height: 48rpx;
  134. z-index: 8;
  135. background-color: rgba(0, 0, 0, 0.5);
  136. border-radius: 24rpx;
  137. padding: 0 16rpx;
  138. }
  139. .personBox .everyNumBox {
  140. float: left;
  141. /* width: 50%; */
  142. }
  143. .personBox .everyNumBox image {
  144. width: 22rpx;
  145. height: 26rpx;
  146. float: left;
  147. margin-left: 12rpx;
  148. position: relative;
  149. top: 11rpx;
  150. }
  151. .personBox .everyNumBox view view {
  152. float: left;
  153. font-family: PingFang-SC-Medium, Source Han Sans CN Medium;
  154. font-size: 24rpx;
  155. color: #ffffff;
  156. margin-left: 10rpx;
  157. line-height: 48rpx;
  158. }
  159. .personMsgBox {
  160. position: absolute;
  161. bottom: 180rpx;
  162. left: 40rpx;
  163. z-index: 8;
  164. }
  165. .personMsgBox .headImg {
  166. width: 80rpx;
  167. height: 80rpx;
  168. border-radius: 40rpx;
  169. border: 2px solid #fff;
  170. background-color: #fff;
  171. overflow: hidden;
  172. }
  173. .personMsgBox .headImg image {
  174. display: block;
  175. width: 100%;
  176. height: 100%;
  177. }
  178. .personMsgBox .name {
  179. margin-left: 20rpx;
  180. font-family: PingFang-SC-Medium, Source Han Sans CN Medium;
  181. font-size: 32rpx;
  182. color: #ffffff;
  183. line-height: 80rpx;
  184. }
  185. .zanBox {
  186. position: absolute;
  187. right: 36rpx;
  188. bottom: 270rpx;
  189. text-align: center;
  190. z-index: 8;
  191. }
  192. #myVideo {
  193. display: block;
  194. width: 100%;
  195. height: 100%;
  196. }
  197. .videoTitle {
  198. font-family: PingFang-SC-Medium, Source Han Sans CN Medium;
  199. font-size: 28rpx;
  200. width: 480rpx;
  201. height: 40rpx;
  202. line-height: 40rpx;
  203. color: #ffffff;
  204. z-index: 8;
  205. }
  206. .videocontent {
  207. font-family: PingFang-SC-Medium, Source Han Sans CN Medium;
  208. font-size: 28rpx;
  209. width: 445rpx;
  210. max-height: 80rpx;
  211. line-height: 40rpx;
  212. color: #ffffff;
  213. white-space: pre-wrap;
  214. }
  215. .showAllContent {
  216. max-height: 400rpx;
  217. }
  218. .hideContent {
  219. display: inline;
  220. font-weight: 700;
  221. color: #fff;
  222. margin-left: 10rpx;
  223. font-size: 28rpx;
  224. }
  225. .showdscText {
  226. position: absolute;
  227. right: -12rpx;
  228. bottom: -2rpx;
  229. color: #fff;
  230. font-size: 28rpx;
  231. }
  232. .videotype {
  233. font-family: PingFang-SC-Medium, Source Han Sans CN Medium;
  234. font-size: 28rpx;
  235. width: 560rpx;
  236. height: 80rpx;
  237. line-height: 40rpx;
  238. color: #ffffff;
  239. }
  240. .videomsgbox{
  241. position: absolute;
  242. bottom: 156rpx;
  243. left: 25rpx;
  244. z-index: 8;
  245. }
  246. .alertbox {
  247. position: fixed;
  248. display: block;
  249. padding: 20rpx 32rpx;
  250. top: 50%;
  251. left: 50%;
  252. z-index: 8;
  253. background: rgba(0, 0, 0, 0.8);
  254. color: #fff;
  255. max-width: 400rpx;
  256. transform: translateX(-50%) translateY(-50%);
  257. word-wrap: break-word;
  258. font-size: 24rpx;
  259. border-radius: 10rpx;
  260. }
  261. /* 右侧 */
  262. .personamebox1{
  263. width: 140rpx;
  264. }
  265. .sharenumBox {
  266. overflow: inherit;
  267. display: block;
  268. position: absolute;
  269. right: 0;
  270. bottom: 156rpx;
  271. z-index: 97;
  272. background-color: transparent;
  273. border: 0px solid transparent;
  274. }
  275. .sharenumBox button {
  276. display: block;
  277. background-color: transparent;
  278. border: 0px solid transparent;
  279. height: 100rpx;
  280. margin-bottom: 32rpx;
  281. }
  282. .sharenumBox button::after {
  283. border: 1px solid transparent;
  284. }
  285. .sharenumBox image {
  286. display: block;
  287. width: 46rpx;
  288. height: 42rpx;
  289. }
  290. .sharenumBox view {
  291. font-family: PingFang-SC-Medium, Source Han Sans CN Medium;
  292. font-size: 26rpx;
  293. color: #fff;
  294. margin-bottom: 16rpx;
  295. background-color: transparent;
  296. }
  297. .sharenumBoxshow view {
  298. color: #fff !important;
  299. }
  300. .box-center image {
  301. display: block;
  302. margin: 0 auto;
  303. }
  304. .avatarBox {
  305. width: 80rpx !important;
  306. height: 80rpx !important;
  307. border-radius: 50% !important;
  308. }
  309. .rightbtnbox{
  310. display: block;
  311. position: fixed;
  312. right: 0rpx;
  313. bottom:200rpx;
  314. z-index: 9;
  315. }
  316. .pricebtnimg{
  317. display: block;
  318. position: relative;
  319. right: 7rpx;
  320. width: 140rpx;
  321. height: 140rpx;
  322. z-index: 9;
  323. margin-bottom: 6rpx;
  324. }
  325. .tcollectbox{
  326. display: block;
  327. width: 98rpx;
  328. height: 98rpx;
  329. background-color: #ffffff;
  330. box-shadow: 0 2rpx 8rpx 0 rgba(56,72,85,0.20);
  331. border: solid 1px #B6CADE;
  332. border-radius: 50%;
  333. position: relative;
  334. right: -20rpx;
  335. overflow: hidden;
  336. }
  337. .tcollectbox image{
  338. display: block;
  339. width: 27rpx;
  340. height: 27rpx;
  341. margin: 18rpx auto 12rpx;
  342. }
  343. .tsharebox{
  344. background-color: #259cfa;
  345. box-shadow: 0px 2rpx 15rpx 1px
  346. rgba(36, 157, 250, 0.48);
  347. border: solid 1px #249dfa;
  348. margin-bottom: 24rpx;
  349. }
  350. .sharenumBox .pricebtnimg{
  351. position: relative;
  352. right: 4rpx;
  353. top: 0;
  354. width: 140rpx;
  355. height: 140rpx;
  356. margin-top: 24rpx;
  357. }
  358. .box-center image.bwicon{
  359. width: 60rpx;
  360. height: 60rpx;
  361. }
  362. .box-center view.btext{
  363. position: relative;
  364. top: -8px;
  365. }