animation.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. .publicityWrap{
  2. width:100%;
  3. position: fixed;
  4. display: block;
  5. overflow: hidden;
  6. top: 0;
  7. left:0;
  8. height: 100%;
  9. background:transparent;
  10. z-index: 221112;
  11. }
  12. .ui-mask{
  13. position: absolute;
  14. left: 0px;
  15. top: 0px;
  16. z-index: 9998;
  17. background-color: rgba(144, 144, 144, 0.44);
  18. width: 100%;
  19. height: 100%;
  20. }
  21. .ui-dialogWrap{
  22. width: 85%;
  23. position: relative;
  24. z-index: 10000;
  25. display: block;
  26. top:15%;
  27. margin: 0 auto;
  28. /*border:1px solid rgba(0,0,0,.1);*/
  29. border-radius: 12px;
  30. -moz-border-radius: 12px;
  31. -webkit-border-radius: 12px;
  32. /*box-shadow: 0 3px 10px #ccc;*/
  33. height:66%;
  34. color: #333;
  35. background: url(../img/svg/pushMaskActiveBg.png)no-repeat scroll 0 0;
  36. background-size: 100% 100%;
  37. }
  38. .quitButton{
  39. width: 25px;
  40. height:25px;
  41. background: url("../img/svg/quitButton.svg")no-repeat scroll 50%;
  42. background-size: 100%;
  43. position: absolute;
  44. top: 30px;
  45. right: 40px;
  46. z-index: 55;
  47. }
  48. .publicity-list{
  49. height: 85%;
  50. margin: 0 auto;
  51. width: 80%;
  52. border-radius: 12px;
  53. -webkit-border-radius: 12px;
  54. position: relative;
  55. z-index: 11;
  56. overflow-y: scroll;
  57. top: 10%;
  58. }
  59. .publicity-item{
  60. text-align: center;
  61. padding-top: 5%;
  62. width: 100%;
  63. margin: 0 auto;
  64. border-bottom: 1px dashed #ccc;
  65. }
  66. .publicity-item:last-child{
  67. border-bottom:none;
  68. }
  69. .publicity-item h3{
  70. color: #245eed;
  71. height: auto;
  72. line-height: 30px;
  73. background-size: 100% 100%;
  74. font-family: cursive ,"helvetica neue",arial,sans-serif;
  75. position: relative;
  76. display: block;
  77. width:95%;
  78. margin: 0 auto;
  79. font-size: 30px;
  80. }
  81. .publicity-item .publicityTime{
  82. }
  83. .publicity-item .publicityUnit{
  84. height: auto;
  85. line-height: 25px;
  86. margin: 0;
  87. min-height: 25px;
  88. font-weight: 500;
  89. color: #333;
  90. }
  91. .publicity-item .publicityUnit span{
  92. position:relative;
  93. padding-right: 11px;
  94. }
  95. .publicity-item .publicityUnit span::before{
  96. content: "";
  97. display: block;
  98. position: absolute;
  99. width: 0px;
  100. height: 16px;
  101. border: none;
  102. border-right: 2px solid #fff;
  103. right: 5px;
  104. top: 2px;
  105. }
  106. .publicity-item button{
  107. background-color: #ff323c;
  108. border: none;
  109. padding: 5px 8px;
  110. display: block;
  111. margin: 12px auto;
  112. border-radius: 5px;
  113. width: 120px;
  114. height: 35px;
  115. letter-spacing: 2px;
  116. font-size: 14px;
  117. color: #fff;
  118. line-height: 18px;
  119. }
  120. .publicity-item s{
  121. display: block;
  122. background: url("../img/pushActiveS.png")no-repeat scroll 50%;
  123. width: 90%;
  124. height: 200px;
  125. background-size: 90%;
  126. margin: 0 auto;
  127. }
  128. .sign-but{
  129. width: 86px;
  130. height: 180px;
  131. position: absolute;
  132. right: -38px;
  133. bottom: 25%;
  134. }
  135. .sign-but a{
  136. width: 100%;
  137. height: 100%;
  138. background: url("../img/svg/signButBg.png") no-repeat 0 0;
  139. display: block;
  140. position: absolute;
  141. top: 0;
  142. left: 0;
  143. z-index: 10;
  144. animation: myfirst 2s infinite;
  145. -moz-animation: myfirst 2s infinite;
  146. -webkit-animation: myfirst 2s infinite;
  147. -o-animation: myfirst 2s infinite;
  148. background-size: 60%;
  149. }
  150. @keyframes myfirst{
  151. 0%{top:0}
  152. 50%{top:10px}
  153. 100%{top:0}
  154. }
  155. @-moz-keyframes myfirst{
  156. 0%{top:0}
  157. 50%{top:10px}
  158. 100%{top:0}
  159. }
  160. @-webkit-keyframes myfirst{
  161. 0%{top:0}
  162. 50%{top:10px}
  163. 100%{top:0}
  164. }