companystrengthmsg.wxss 7.6 KB

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