1
0

videoshare.wxss 11 KB

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