public.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. * {
  2. box-sizing: border-box;
  3. }
  4. html, body, p {
  5. margin: 0;
  6. padding: 0;
  7. }
  8. body {
  9. font-size: 14px;
  10. }
  11. .plv-config {
  12. position: fixed;
  13. width: 300px;
  14. height: 430px;
  15. top: 0;
  16. right: 0;
  17. bottom: 0;
  18. left: 0;
  19. padding: 20px;
  20. margin: auto;
  21. text-align: center;
  22. background: #fff;
  23. border-radius: 2px;
  24. }
  25. .plv-config__title {
  26. font-size: 18px;
  27. font-weight: 400;
  28. margin-top: 20px
  29. }
  30. .plv-config__content {
  31. margin-top: 40px;
  32. }
  33. .plv-config__input {
  34. position: relative;
  35. margin: 0 auto;
  36. margin-bottom: 20px;
  37. padding: 0 5px;
  38. width: 220px;
  39. height: 38px;
  40. line-height: 38px;
  41. border: 1px solid #bfbfbf;
  42. border-radius: 3px;
  43. }
  44. .plv-config__checkbox {
  45. text-align: left;
  46. font-size: 13px;
  47. }
  48. .plv-config__checkbox__input {
  49. margin-left: 20px;
  50. vertical-align: top;
  51. }
  52. .plv-config__button {
  53. margin-top: 7px;
  54. width: 220px;
  55. line-height: 38px;
  56. background: #222791;
  57. color: #fff;
  58. border-radius: 3px;
  59. outline: none;
  60. border: none;
  61. }
  62. /* 点赞 */
  63. .plv-watch__likes {
  64. position: absolute;
  65. text-align: center;
  66. }
  67. .plv-watch-pc .plv-watch__likes {
  68. /* pc端位置 */
  69. right: 30px;
  70. top: 20%;
  71. bottom: auto;
  72. }
  73. #tab-chat .plv-watch__likes {
  74. /* 移动端位置 */
  75. right: 16px;
  76. bottom: 120px;
  77. }
  78. .plv-watch__likes-icon {
  79. display: inline-block;
  80. width: 40px;
  81. height: 40px;
  82. background: url('../img/btn-like.png');
  83. background-size: cover;
  84. cursor: pointer;
  85. }
  86. .plv-watch__likes-num {
  87. color: #adadc0;
  88. font-size: 14px;
  89. opacity: 0.8;
  90. }
  91. /* 直播状态 */
  92. .plv-watch-mobile #plv-watch__status {
  93. position: absolute;
  94. top: 0;
  95. right: 0;
  96. }
  97. .plv-watch-mobile #plv-watch__status::after {
  98. border-radius: 2px;
  99. font-size: 12px;
  100. padding: 4px;
  101. border: 1px solid;
  102. line-height: 1;
  103. }
  104. .plv-watch-pc #plv-watch__status {
  105. display: inline-block;
  106. margin-left: 10px;
  107. }
  108. .plv-watch-pc #plv-watch__status::after {
  109. border-radius: 2px;
  110. font-size: 12px;
  111. padding: 0 4px;
  112. border: 1px solid;
  113. line-height: 1;
  114. }
  115. .plv-watch__status--end::after {
  116. border-color: hsla(0,0%,100%,.6);
  117. color: hsla(0,0%,100%,.6);
  118. content: '暂无直播'
  119. }
  120. .plv-watch__status--playback::after {
  121. color: #78a7ed;
  122. border-color: #78a7ed;
  123. content: '回放中'
  124. }
  125. .plv-watch__status--live::after {
  126. color: #f06e6e;
  127. border-color: #f06e6e;
  128. content: '进行中'
  129. }