1
0

videoshare.wxss 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620
  1. /* pages/videoshare/videoshare.wxss */
  2. page {
  3. position: relative;
  4. width: 100%;
  5. height: 100%;
  6. overflow: hidden;
  7. }
  8. .page {
  9. position: relative;
  10. width: 100%;
  11. height: 100%;
  12. overflow: hidden;
  13. box-sizing: border-box;
  14. background: #000;
  15. }
  16. .videoBox {
  17. width: 100%;
  18. height: 100%;
  19. }
  20. .videoBoxUp {
  21. width: 100%;
  22. height: 420rpx;
  23. margin-top: 360rpx;
  24. }
  25. .bgcolor {
  26. width: 100%;
  27. position: absolute;
  28. left: 0;
  29. height: 410rpx;
  30. bottom: 100rpx;
  31. pointer-events: none;
  32. z-index: 8;
  33. /* background-image: linear-gradient(180deg,
  34. rgba(0, 0, 0, 0) 0%,
  35. rgba(0, 0, 0, 0.6) 100%); */
  36. }
  37. .bgcolorshow {
  38. bottom: 0;
  39. }
  40. .personBox {
  41. position: absolute;
  42. bottom: 360rpx;
  43. left: 40rpx;
  44. /* width: 380rpx; */
  45. height: 48rpx;
  46. z-index: 8;
  47. background-color: rgba(0, 0, 0, 0.5);
  48. border-radius: 24rpx;
  49. padding: 0 16rpx;
  50. }
  51. .personBox .everyNumBox {
  52. float: left;
  53. /* width: 50%; */
  54. }
  55. .personBox .everyNumBox cover-image {
  56. width: 22rpx;
  57. height: 26rpx;
  58. float: left;
  59. margin-left: 12rpx;
  60. position: relative;
  61. top: 11rpx;
  62. }
  63. .personBox .everyNumBox cover-view {
  64. float: left;
  65. font-family: PingFang-SC-Medium, Source Han Sans CN Medium;
  66. font-size: 24rpx;
  67. color: #ffffff;
  68. margin-left: 10rpx;
  69. line-height: 48rpx;
  70. }
  71. .personMsgBox {
  72. position: absolute;
  73. bottom: 180rpx;
  74. left: 40rpx;
  75. z-index: 8;
  76. }
  77. .personMsgBox .headImg {
  78. width: 80rpx;
  79. height: 80rpx;
  80. border-radius: 40rpx;
  81. border: 2px solid #fff;
  82. background-color: #fff;
  83. overflow: hidden;
  84. }
  85. .personMsgBox .headImg cover-image {
  86. display: block;
  87. width: 100%;
  88. height: 100%;
  89. }
  90. .personMsgBox .name {
  91. margin-left: 20rpx;
  92. font-family: PingFang-SC-Medium, Source Han Sans CN Medium;
  93. font-size: 32rpx;
  94. color: #ffffff;
  95. line-height: 80rpx;
  96. }
  97. .zanBox {
  98. position: absolute;
  99. right: 36rpx;
  100. bottom: 270rpx;
  101. text-align: center;
  102. z-index: 8;
  103. }
  104. #myVideo {
  105. display: block;
  106. width: 100%;
  107. height: 100%;
  108. }
  109. .videoTitle {
  110. font-family: PingFang-SC-Medium, Source Han Sans CN Medium;
  111. font-size: 28rpx;
  112. width: 480rpx;
  113. height: 40rpx;
  114. line-height: 40rpx;
  115. color: #ffffff;
  116. z-index: 8;
  117. }
  118. .videocontent {
  119. font-family: PingFang-SC-Medium, Source Han Sans CN Medium;
  120. font-size: 28rpx;
  121. width: 480rpx;
  122. max-height: 80rpx;
  123. line-height: 40rpx;
  124. color: #ffffff;
  125. white-space: pre-wrap;
  126. }
  127. .showDscText {
  128. /* position: absolute;
  129. bottom: 82rpx; */
  130. display: inline;
  131. color: #fff;
  132. /* right: 0rpx; */
  133. font-weight: 700;
  134. font-size: 28rpx;
  135. margin-left: 10rpx;
  136. position: relative;
  137. top: 6rpx;
  138. }
  139. .videocontentshow {
  140. max-height: 400rpx;
  141. }
  142. .hideText {
  143. display: inline;
  144. color: #fff;
  145. font-size: 28rpx;
  146. margin-left: 40rpx;
  147. font-weight: 700;
  148. position: relative;
  149. top: 6rpx;
  150. }
  151. .videotype {
  152. font-family: PingFang-SC-Medium, Source Han Sans CN Medium;
  153. font-size: 28rpx;
  154. width: 560rpx;
  155. height: 80rpx;
  156. line-height: 40rpx;
  157. color: #ffffff;
  158. }
  159. .videomsgbox{
  160. position: absolute;
  161. bottom: 186rpx;
  162. left: 25rpx;
  163. z-index: 8;
  164. }
  165. .alertbox {
  166. position: fixed;
  167. display: block;
  168. padding: 20rpx 32rpx;
  169. top: 50%;
  170. left: 50%;
  171. z-index: 8;
  172. background: rgba(0, 0, 0, 0.8);
  173. color: #fff;
  174. max-width: 400rpx;
  175. transform: translateX(-50%) translateY(-50%);
  176. word-wrap: break-word;
  177. font-size: 24rpx;
  178. border-radius: 10rpx;
  179. }
  180. /* 右侧 */
  181. .sharenumBox {
  182. display: block;
  183. position: absolute;
  184. right: 0;
  185. bottom: 256rpx;
  186. z-index: 97;
  187. background-color: transparent;
  188. border: 0px solid transparent;
  189. }
  190. .sharenumBox button {
  191. display: block;
  192. background-color: transparent;
  193. border: 0px solid transparent;
  194. height: 100rpx;
  195. margin-bottom: 32rpx;
  196. }
  197. .sharenumBox button::after {
  198. border: 1px solid transparent;
  199. }
  200. .sharenumBox cover-image {
  201. display: block;
  202. width: 46rpx;
  203. height: 42rpx;
  204. }
  205. .sharenumBox cover-view {
  206. font-family: PingFang-SC-Medium, Source Han Sans CN Medium;
  207. font-size: 26rpx;
  208. color: #fff;
  209. margin-bottom: 16rpx;
  210. background-color: transparent;
  211. }
  212. .sharenumBoxshow cover-view {
  213. color: #fff !important;
  214. }
  215. .box-center cover-image {
  216. display: block;
  217. margin: 0 auto;
  218. }
  219. .avatarBox {
  220. width: 80rpx !important;
  221. height: 80rpx !important;
  222. border-radius: 50% !important;
  223. }
  224. .personamebox1{
  225. width: 140rpx;
  226. }
  227. .signUpBtn{
  228. display: block;
  229. width: 230rpx;
  230. height: 60rpx;
  231. background-color: #28A1FF;
  232. font-size: 28rpx;
  233. color: #fff;
  234. text-align: center;
  235. line-height: 60rpx;
  236. border-radius: 8rpx;
  237. margin-bottom: 4rpx;
  238. }
  239. .pricebtnimg{
  240. display: block;
  241. position: relative;
  242. left: -4rpx;
  243. top: -20rpx;
  244. width: 140rpx !important;
  245. height: 140rpx !important;
  246. z-index: 9;
  247. }
  248. .videoloading{
  249. display: block;
  250. width: 100%;
  251. height: 100%;
  252. z-index: 99;
  253. background-color: transparent;
  254. position: fixed;
  255. top: 0;
  256. left:0;
  257. }
  258. .box-center cover-image.bwicon{
  259. width: 60rpx;
  260. height: 60rpx;
  261. }
  262. .box-center cover-view.btext{
  263. position: relative;
  264. top: -8px;
  265. }
  266. /*--*/
  267. .shareTips {
  268. width: 100%;
  269. height: 56rpx;
  270. background-color: #FDDAC4;
  271. color: #F96400;
  272. position: fixed;
  273. bottom: 100rpx;
  274. left: 0rpx;
  275. line-height: 56rpx;
  276. text-align: center;
  277. font-size: 24rpx;
  278. }
  279. .cutAndShare {
  280. width: 100%;
  281. height: 100rpx;
  282. position: fixed;
  283. bottom: 0rpx;
  284. left: 0rpx;
  285. background-color: #fff;
  286. box-shadow: 0rpx -10rpx 10rpx 6rpx rgba(0, 0, 0, 0.1);
  287. display: flex;
  288. }
  289. .shareCutImg {
  290. width: 40%;
  291. height: 100%;
  292. display: flex;
  293. align-items: center;
  294. justify-content: center;
  295. font-size: 32rpx;
  296. }
  297. .shareBtn {
  298. flex: 1;
  299. height: 100%;
  300. background-color: #F96400;
  301. border-radius: 0rpx !important;
  302. line-height: 100rpx;
  303. color: #fff;
  304. font-size: 32rpx;
  305. }
  306. .cutMask {
  307. width: 100%;
  308. height: 100vh;
  309. position: fixed;
  310. top: 0rpx;
  311. left: 0rpx;
  312. background-color: rgba(0, 0, 0, 0.5);
  313. z-index: 999999 !important;
  314. }
  315. .cutBlock {
  316. width: 100%;
  317. height: 70%;
  318. background-color: #fff;
  319. position: absolute;
  320. bottom: 0rpx;
  321. left: 0rpx;
  322. box-sizing: border-box;
  323. padding: 88rpx 0rpx 100rpx;
  324. }
  325. .cutTitle {
  326. width: 100%;
  327. height: 88rpx;
  328. background-color: #F96400;
  329. color: #fff;
  330. font-size: 32rpx;
  331. text-align: center;
  332. line-height: 88rpx;
  333. position: absolute;
  334. top: 0rpx;
  335. left: 0rpx;
  336. }
  337. .cutConfirm {
  338. width: 100%;
  339. height: 100rpx;
  340. background-color: #F96400;
  341. color: #fff;
  342. position: absolute;
  343. bottom: 0rpx;
  344. left: 0rpx;
  345. text-align: center;
  346. line-height: 100rpx;
  347. font-size: 32rpx;
  348. border-radius: 0rpx;
  349. }
  350. .cutContent {
  351. width: 100%;
  352. height: 100%;
  353. overflow: auto;
  354. }
  355. .cutShareLabel {
  356. width: 100%;
  357. height: 66rpx;
  358. line-height: 66rpx;
  359. box-sizing: border-box;
  360. padding: 0rpx 20rpx;
  361. }
  362. .cutImglistBox {
  363. width: 100%;
  364. height: auto;
  365. overflow: hidden;
  366. box-sizing: border-box;
  367. padding: 20rpx;
  368. display: flex;
  369. flex-wrap: wrap;
  370. }
  371. .uploadImg {
  372. width: 150rpx;
  373. height: 150rpx;
  374. border: 2rpx solid #D7DFE4;
  375. display: flex;
  376. flex-direction: column;
  377. justify-content: center;
  378. align-items: center;
  379. }
  380. .uploadImg>image {
  381. width: 50rpx;
  382. }
  383. .u-text {
  384. font-size: 28rpx;
  385. color: #B5C6D3;
  386. }
  387. .imageItem {
  388. width: 150rpx;
  389. height: 150rpx;
  390. background-color: #ccc;
  391. margin-right: 10rpx;
  392. margin-bottom: 10rpx;
  393. position: relative;
  394. }
  395. .imageItem>image {
  396. width: 100%;
  397. height: 100%;
  398. }
  399. .imgdel {
  400. width: 60rpx;
  401. height: 60rpx;
  402. background-color: rgba(0, 0, 0, 0.5);
  403. border-radius: 50%;
  404. display: flex;
  405. justify-content: center;
  406. align-items: center;
  407. position: absolute;
  408. top: 50%;
  409. left: 50%;
  410. transform: translate(-50%, -50%);
  411. box-shadow: 0rpx 0rpx 10rpx 10rpx rgba(0, 0, 0, 0.05);
  412. }
  413. .imgdel>image {
  414. width: 50rpx;
  415. }
  416. .u-textarea-box {
  417. width: 100%;
  418. height: 400rpx;
  419. box-sizing: border-box;
  420. padding: 20rpx;
  421. }
  422. .u-textarea {
  423. width: 100%;
  424. background-color: #F0F4F7;
  425. padding: 10rpx;
  426. }
  427. .shareApprovalbtn {
  428. width: 100%;
  429. height: 88rpx;
  430. background-color: #249EFB;
  431. color: #fff;
  432. font-size: 30rpx;
  433. text-align: center;
  434. line-height: 88rpx;
  435. position: fixed;
  436. bottom: 0rpx;
  437. left: 0rpx;
  438. z-index: 99;
  439. }
  440. .shareMask {
  441. width: 100%;
  442. height: 100vh;
  443. background-color: rgba(0, 0, 0, 0.4);
  444. position: fixed;
  445. top: 0rpx;
  446. left: 0rpx;
  447. z-index: 999;
  448. }
  449. .shareBlock {
  450. width: 100%;
  451. height: 75%;
  452. background-color: #fff;
  453. position: absolute;
  454. bottom: 0rpx;
  455. left: 0rpx;
  456. box-sizing: border-box;
  457. padding-top: 88rpx;
  458. }
  459. .shareBlockTitle {
  460. width: 100%;
  461. height: 88rpx;
  462. background-color: #249EFB;
  463. color: #fff;
  464. font-size: 30rpx;
  465. text-align: center;
  466. line-height: 88rpx;
  467. position: absolute;
  468. top: 0rpx;
  469. left: 0rpx;
  470. }
  471. .shareBlockContent {
  472. width: 100%;
  473. height: 100%;
  474. overflow: auto;
  475. box-sizing: border-box;
  476. padding: 20rpx;
  477. }
  478. .shareApprovalItem {
  479. width: 100%;
  480. height: auto;
  481. overflow: hidden;
  482. display: flex;
  483. }
  484. .shareApprovalLeft {
  485. width: 130rpx;
  486. }
  487. .shareApprovalLeft>image {
  488. width: 96rpx;
  489. height: 96rpx;
  490. border-radius: 50%;
  491. overflow: hidden;
  492. }
  493. .shareApprovalRight {
  494. flex: 1;
  495. }
  496. .shareApprovalText {
  497. width: 100%;
  498. height: 66rpx;
  499. line-height: 66rpx;
  500. }
  501. .shareApprovalText .satName {
  502. color: 30rpx;
  503. color: #333333;
  504. }
  505. .shareApprovalText .satTime {
  506. color: #A8BBCB;
  507. font-size: 26rpx;
  508. margin-left: 20rpx;
  509. }
  510. .shareApprovalImgBox {
  511. width: 100%;
  512. height: auto;
  513. overflow: hidden;
  514. display: flex;
  515. flex-wrap: wrap;
  516. }
  517. .shareApprovalImgItem {
  518. width: 180rpx;
  519. height: 150rpx;
  520. background-color: #ccc;
  521. margin-right: 10rpx;
  522. margin-bottom: 10rpx;
  523. }
  524. .shareApprovalImgItem > image {
  525. width: 100%;
  526. height: 100%;
  527. }
  528. .shareApprovalMsg {
  529. width: 100%;
  530. box-sizing: border-box;
  531. padding: 5rpx 0rpx 20rpx;
  532. font-size: 26rpx;
  533. color: #333333;
  534. }
  535. .shareApproValBtnBox {
  536. width: 100%;
  537. height: 88rpx;
  538. display: flex;
  539. align-items: center;
  540. justify-content: space-around;
  541. }
  542. .aConfirmBtn {
  543. width: 260rpx;
  544. height: 88rpx;
  545. line-height: 88rpx;
  546. border-radius: 44rpx;
  547. background-color: #249EFB;
  548. color: #fff;
  549. font-size: 30rpx;
  550. }
  551. .aRejectBtn {
  552. width: 260rpx;
  553. height: 88rpx;
  554. line-height: 88rpx;
  555. border-radius: 44rpx;
  556. background-color: #B5CADD;
  557. color: #fff;
  558. font-size: 30rpx;
  559. }