video.css 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. .contImg {
  2. width: 1200px;
  3. margin: 0 auto;
  4. }
  5. .title {
  6. font-size: 24px;
  7. color: #333333;
  8. }
  9. body {
  10. background: #fff
  11. }
  12. .contImg ul li {
  13. width: 220px;
  14. margin-left: 22px;
  15. float: left;
  16. box-shadow: 0 0 10px #ccc;
  17. margin-bottom: 15px;
  18. }
  19. .contImg ul li div:nth-child(1) {
  20. width: 100%;
  21. position: relative;
  22. height: 220px;
  23. z-index: 11;
  24. cursor: pointer;
  25. background: url(../../img/fac/videoBj_03.jpg)no-repeat;
  26. background-size: 100% 100%;
  27. }
  28. .contImg ul li:nth-child(5n+1) {
  29. margin-left: 0;
  30. }
  31. .contImg ul li img {
  32. display: inline-block;
  33. width: 100%;
  34. height: 100%;
  35. position: absolute;
  36. z-index: 22;
  37. left: 0;
  38. top: 0;
  39. }
  40. .contImg ul li h3 {
  41. padding: 0 10px;
  42. font-size: 16px;
  43. color: #333333;
  44. overflow: hidden;
  45. white-space: nowrap;
  46. text-overflow: ellipsis;
  47. -o-text-overflow: ellipsis;
  48. }
  49. .contImg ul li p {
  50. width: 100%;
  51. height: 20px;
  52. line-height: 20px;
  53. padding: 0 10px;
  54. font-size: 14px;
  55. color: #333333;
  56. overflow: hidden;
  57. white-space: nowrap;
  58. text-overflow: ellipsis;
  59. -o-text-overflow: ellipsis;
  60. margin-bottom: 15px;
  61. }
  62. .contImg ul li .videoImg {
  63. position: absolute;
  64. top: 0;
  65. left: 0;
  66. width: 100%;
  67. height: 100%;
  68. background: rgba(0, 0, 0, .5);
  69. }
  70. .contImg ul li .videoImg span {
  71. width: 80px;
  72. height: 80px;
  73. background: #000;
  74. display: inline-block;
  75. position: absolute;
  76. left: 50%;
  77. top: 50%;
  78. margin-left: -40px;
  79. margin-top: -40px;
  80. border: 2px solid #000;
  81. border-radius: 50%;
  82. transition: all .2s ease-in
  83. }
  84. .contImg ul li .videoImg span::before {
  85. content: '| |';
  86. position: absolute;
  87. font-weight: 800;
  88. font-size: 20px;
  89. color: #fff;
  90. left: 50%;
  91. top: 50%;
  92. margin-top: -15px;
  93. margin-left: -10px;
  94. }
  95. .contImg ul li:hover .videoImg span {
  96. animation: move 1s ease-in-out 0s 1 alternate forwards;
  97. }
  98. @keyframes move {
  99. 0% {
  100. transform: scale(1.0) rotate(0deg) ;
  101. }
  102. 100% {
  103. transform: scale(1.2) rotate(360deg);
  104. }
  105. }
  106. .videoPlay {
  107. position: fixed;
  108. z-index: 999999999;
  109. width: 100%;
  110. height: 100%;
  111. top: 0;
  112. left: 0;
  113. background: rgba(0, 0, 0, .3);
  114. display: none
  115. }
  116. .videoPlay.active {
  117. display: block
  118. }
  119. .videoPlay .videoTopM {
  120. width: 1200px;
  121. height: 500px;
  122. background: #000;
  123. position: absolute;
  124. left: 50%;
  125. top: 50%;
  126. z-index: 9999999991;
  127. margin-left: -600px;
  128. margin-top: -250px;
  129. }
  130. .videoPlay .videoTopM #videoAt {
  131. width: 100%;
  132. height: 500px;
  133. background: #000
  134. }
  135. .videoPlay .videoTopM #videoAt source {
  136. height: 100%;
  137. width: 100%;
  138. }
  139. .videoPlay .videoTopM .glyphicon-remove {
  140. font-size: 30px;
  141. color: #fff;
  142. position: absolute;
  143. right: 15px;
  144. top: 15px;
  145. z-index: 9999999992;
  146. cursor: pointer;
  147. }
  148. .videoPlay .videoTopM .glyphicon-remove:hover {
  149. color: #f00;
  150. }
  151. .videoPlay .videoTopM .videoPre {
  152. cursor: pointer;
  153. font-size: 20px;
  154. color: #fff;
  155. position: absolute;
  156. left: 15px;
  157. top: 50%;
  158. z-index: 9999999992;
  159. margin-top: -18px;
  160. border: 1px solid #fff;
  161. border-radius:2px;
  162. width: 120px;
  163. height: 36px;
  164. line-height: 34px;
  165. display: inline-block;
  166. text-align: center;
  167. }
  168. .videoPlay .videoTopM .videoNext {
  169. cursor: pointer;
  170. font-size: 20px;
  171. color: #fff;
  172. position: absolute;
  173. right: 15px;
  174. top: 50%;
  175. height: 36px;
  176. line-height: 34px;
  177. width: 120px;
  178. margin-top: -18px;
  179. text-align: center;
  180. display: inline-block;
  181. z-index: 9999999992;
  182. border: 1px solid #fff;
  183. border-radius: 2px;
  184. }
  185. .videoPlay .videoTopM .videoNext:hover,
  186. .videoPlay .videoTopM .videoPre:hover {
  187. background: #fff;
  188. box-shadow: 0 0 4px #ccc;
  189. color: #333333;
  190. }
  191. .noLength {
  192. background: url(../../img/all_nullVideo.png)no-repeat;
  193. }
  194. .pub_fix {
  195. z-index: 9999;
  196. }
  197. video::-internal-media-controls-download-button {
  198. display: none;
  199. }
  200. a:hover,a,a:focus{
  201. text-decoration: none;
  202. outline: none;
  203. }
  204. video::-webkit-media-controls-enclosure {
  205. overflow: hidden;
  206. }
  207. video::-webkit-media-controls-panel {
  208. width: calc(100% +30px);
  209. }
  210. .inp{
  211. height: 34px;
  212. display: inline-block;
  213. overflow: hidden;
  214. margin: 20px 0;
  215. }
  216. .inp input {
  217. float: left;
  218. height: 34px;
  219. }
  220. .pagination_box .inp button{
  221. float: right;
  222. margin-top: 0;
  223. }
  224. footer #bottom {
  225. display: none;
  226. }