ywbl.css 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. .Item{
  2. float:left;
  3. padding:0 10px;
  4. position:relative;
  5. }
  6. .news{
  7. width:50px;
  8. height:50px;
  9. position:absolute;
  10. right:0;
  11. animation: news 0.5s infinite;
  12. }
  13. .news span{
  14. color:#fff;
  15. position:absolute;
  16. right:5px;
  17. }
  18. .ywItem{
  19. height:150px;
  20. color:rgba(0,0,0,1);
  21. background-size:cover;
  22. background-repeat:no-repeat;
  23. text-indent:15px;
  24. font-size:16px;
  25. cursor:pointer;
  26. position:relative
  27. }
  28. .ywItem img{
  29. width:30px;
  30. height:30px;
  31. position:absolute;
  32. z-index:99;
  33. left: 35px;
  34. top:85px;
  35. }
  36. .number{
  37. width:calc(100% - 100px);
  38. height:90px;
  39. line-height:90px;
  40. font-size:30px;
  41. float: right;
  42. text-align: center;
  43. }
  44. .circle{
  45. min-width:80px;
  46. min-height:80px;
  47. max-width:80px;
  48. max-height:80px;
  49. float:left;
  50. position:absolute;
  51. left:10px;
  52. bottom:10px;
  53. display:block;
  54. /*border-radius:40px;*/
  55. border-radius:15px;
  56. /*background-color:rgba(74,156,247,0.6);*/
  57. opacity:0.5;
  58. /*background:url('../img/icon1.png') no-repeat center center rgba(74,156,247,0.6);*/
  59. background-size:80%;
  60. }
  61. @keyframes news {
  62. 0% {
  63. opacity: 0.5;
  64. }
  65. 50% {
  66. opacity: 1;
  67. }
  68. 100% {
  69. opacity: 0.5;
  70. }
  71. }
  72. .circle-rgb{
  73. /*border-radius:50%;*/
  74. width:80px;
  75. height:80px;
  76. color:#000;
  77. overflow:hidden;
  78. position:absolute;
  79. left:10px;
  80. bottom:10px;
  81. }
  82. .circle-rgb .deng1{
  83. width:40px;
  84. height:40px;
  85. position:absolute;
  86. left:0;
  87. top:0;
  88. background-image:url("../img/1white.png");
  89. background-size:35px;
  90. background-position: 7px 8px;
  91. background-repeat:no-repeat
  92. }
  93. .circle-rgb .deng2{
  94. width:40px;
  95. height:40px;
  96. position:absolute;
  97. left:50%;
  98. top:0;
  99. background-image:url("../img/1white.png");
  100. background-size:35px;
  101. background-position: 1px 8px;
  102. background-repeat:no-repeat
  103. }
  104. .circle-rgb .deng3{
  105. width:40px;
  106. height:40px;
  107. position:absolute;
  108. left:0;
  109. top:50%;
  110. background-image:url("../img/1white.png");
  111. background-size:35px;
  112. background-position: 7px 0;
  113. background-repeat:no-repeat
  114. }
  115. .circle-rgb .deng4{
  116. width:40px;
  117. height:40px;
  118. position:absolute;
  119. left:50%;
  120. top:50%;
  121. background-image:url("../img/1white.png");
  122. background-size:35px;
  123. background-position: 1px 0;
  124. background-repeat:no-repeat
  125. }
  126. .circle-rgb .shan{
  127. animation: shan 0.5s infinite;
  128. }
  129. .circle-rgb .purple{
  130. width:40px;
  131. height:40px;
  132. color:#fff;
  133. line-height:45px;
  134. text-indent:5px;
  135. font-size:14px;
  136. text-align:center;
  137. background-image:url("../img/1purple.png");
  138. background-size:23px;
  139. background-position: 11px 10px;
  140. background-repeat:no-repeat;
  141. }
  142. .circle-rgb .red{
  143. width:40px;
  144. height:40px;
  145. color:#fff;
  146. line-height:45px;
  147. text-indent:-5px;
  148. font-size:14px;
  149. text-align:center;
  150. background-image:url("../img/1red.png");
  151. background-size:23px;
  152. background-position: 5px 10px;
  153. background-repeat:no-repeat;
  154. }
  155. .circle-rgb .orange{
  156. width:40px;
  157. height:40px;
  158. color:#fff;
  159. line-height:30px;
  160. text-indent:5px;
  161. font-size:14px;
  162. text-align:center;
  163. background-image:url("../img/1yellow.png");
  164. background-size:23px;
  165. background-position: 11px 1px;
  166. background-repeat:no-repeat;
  167. }
  168. .circle-rgb .green{
  169. width:40px;
  170. height:40px;
  171. color:#fff;
  172. line-height:30px;
  173. text-indent:-5px;
  174. font-size:14px;
  175. text-align:center;
  176. background-image:url("../img/1green.png");
  177. background-size:23px;
  178. background-position: 5px 1px;
  179. background-repeat:no-repeat;
  180. }
  181. @keyframes shan {
  182. 0% {
  183. opacity: 0.5;
  184. }
  185. 50% {
  186. opacity: 1;
  187. }
  188. 100% {
  189. opacity: 0.5;
  190. }
  191. }
  192. .total {
  193. width: 40%;
  194. height: 98px;
  195. line-height: 90px;
  196. font-weight: 600;
  197. font-size: 22px;
  198. text-indent: 0;
  199. text-align: center;
  200. }
  201. .btnLR {
  202. width: 50px;
  203. height: 150px;
  204. }
  205. .btnLR img{
  206. width:30px;
  207. height:150px;
  208. cursor:pointer
  209. }