video.wxss 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. .content{
  2. width: 100%;
  3. height: 100%;
  4. position: absolute;
  5. top: 0;
  6. }
  7. .upload_video{
  8. width: 100%;
  9. height: 100%;
  10. position: absolute;
  11. top: 0;
  12. left: 0;
  13. background-repeat: no-repeat;
  14. background-size: 100% auto;
  15. background-position: center;
  16. overflow-y:hidden;
  17. padding-top:0px;
  18. display:inline-block;
  19. box-sizing:border-box;
  20. }
  21. .bottom{
  22. position: absolute;
  23. width: 100%;
  24. bottom:0;
  25. height: 70px;
  26. background-color: rgba(0, 0, 0, 0.5);
  27. padding: 0 30px;
  28. padding-top: 10px;
  29. }
  30. .bottom view{
  31. font-size:14px;
  32. color: #fff;
  33. line-height: 25px;
  34. }
  35. .top{
  36. position:absolute;
  37. width:100%;
  38. top:0;
  39. height:50px;
  40. padding-top:10px;
  41. padding-bottom:10px;
  42. }
  43. .top .right{
  44. width:32px;
  45. height:50px;
  46. float:right;
  47. margin-right:30px;
  48. }
  49. .top .right .num{
  50. width:30px;
  51. height:30px;
  52. background-color:transparent;
  53. border:1px solid #fff;
  54. border-radius:100px;
  55. color:#fff;
  56. text-align:center;
  57. line-height:30px;
  58. }
  59. .top .right .txt{
  60. color:#fff;
  61. font-size:12px;
  62. text-align:center;
  63. margin-top:5px;
  64. }