mobile.css 819 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. body {
  2. background-color: #3d92fb;
  3. }
  4. .splash {
  5. position: absolute;
  6. left: 0;
  7. top: 0;
  8. width: 100%;
  9. height: 100%;
  10. background-size: cover;
  11. overflow: hidden;
  12. z-index: 1001;
  13. }
  14. .splash_cn {
  15. /* background: url(../img/splash_m.jpg) no-repeat 50%; */
  16. }
  17. .splash_en {
  18. /* background: url(../img/splash_m.jpg) no-repeat 50%; */
  19. }
  20. .fis_anim {
  21. -webkit-animation-duration: 0.3s;
  22. -webkit-animation-fill-mode: both;
  23. animation-duration: 0.3s;
  24. animation-fill-mode: both;
  25. }
  26. @-webkit-keyframes fis-fadeout {
  27. 0% {
  28. opacity: 1;
  29. }
  30. 100% {
  31. opacity: 0;
  32. }
  33. }
  34. @keyframes fis-fadeout {
  35. 0% {
  36. opacity: 1;
  37. }
  38. 100% {
  39. opacity: 0;
  40. }
  41. }
  42. .fis_anim-fadeout {
  43. -webkit-animation-name: fis-fadeout;
  44. animation-name: fis-fadeout;
  45. }