view.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /* pages/channel/view/view.wxss */
  2. .page___title{
  3. text-align: center;
  4. font-size: 30rpx;
  5. line-height: 26px;
  6. }
  7. .fixed{
  8. width:100%;
  9. display: inline-block;
  10. position: fixed;
  11. left: 0;
  12. bottom:100px;
  13. }
  14. .fixed .num{
  15. float:right;
  16. margin-right:45px;
  17. font-size:30px;
  18. line-height: 30px;
  19. color: red;
  20. }
  21. .image {
  22. width: 100%;
  23. height: 360rpx;
  24. }
  25. .content{
  26. width: 100%;
  27. height: 100%;
  28. position: absolute;
  29. top: 0;
  30. }
  31. .upload_img{
  32. width: 100%;
  33. height: 100%;
  34. position: absolute;
  35. top: 0;
  36. left: 0;
  37. background-repeat: no-repeat;
  38. background-size: 100% auto;
  39. background-position: center;
  40. }
  41. .upload_img:before {
  42. content: '';
  43. display: inline-block;
  44. height: 100%;
  45. vertical-align: middle;
  46. }
  47. .bottom{
  48. position: absolute;
  49. width: 100%;
  50. bottom:0;
  51. height: 70px;
  52. background-color: rgba(0, 0, 0, 0.5);
  53. padding: 0 30px;
  54. padding-top: 10px;
  55. box-sizing:border-box;
  56. }
  57. .bottom view{
  58. font-size:14px;
  59. color: #fff;
  60. line-height: 25px;
  61. }
  62. .top{
  63. position:absolute;
  64. width:100%;
  65. top:0;
  66. height:50px;
  67. padding-top:10px;
  68. padding-bottom:10px;
  69. }
  70. .top .right{
  71. width:32px;
  72. height:50px;
  73. float:right;
  74. margin-right:30px;
  75. }
  76. .top .right .num{
  77. width:30px;
  78. height:30px;
  79. background-color:transparent;
  80. border:1px solid #fff;
  81. border-radius:100px;
  82. color:#fff;
  83. text-align:center;
  84. line-height:30px;
  85. }
  86. .top .right .txt{
  87. color:#fff;
  88. font-size:12px;
  89. text-align:center;
  90. margin-top:5px;
  91. }
  92. .upload_video{
  93. width: 100%;
  94. height: 100%;
  95. position: absolute;
  96. top: 0;
  97. left: 0;
  98. background-repeat: no-repeat;
  99. background-size: 100% auto;
  100. background-position: center;
  101. overflow-y:hidden;
  102. padding-top:0px;
  103. display:inline-block;
  104. box-sizing:border-box;
  105. }