index.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. body {
  2. background-color: rgb(115, 125, 149);
  3. -ms-overflow-style: none;
  4. }
  5. body::-webkit-scrollbar {
  6. display: none;
  7. }
  8. .splash {
  9. display: block;
  10. position: absolute;
  11. left: 0;
  12. top: 0;
  13. width: 100vw;
  14. height: 100vh;
  15. background-size: cover;
  16. background-repeat: no-repeat;
  17. background-position: center;
  18. overflow: hidden;
  19. z-index: 2;
  20. }
  21. .splash_cn {
  22. background-image: url(../img/splash_zh.jpg);
  23. }
  24. .splash_ru {
  25. background-image: url(../img/splash_ru.jpg);
  26. }
  27. .splash_en {
  28. background-image: url(../img/splash_en.jpg);
  29. }
  30. .splash_lab {
  31. background-image: url(../img/splash_lab_zh.png);
  32. }
  33. .splash_empty {
  34. background-color: rgb(127, 176, 255);
  35. }
  36. .fis_anim {
  37. -webkit-animation-duration: 0.3s;
  38. -webkit-animation-fill-mode: both;
  39. animation-duration: 0.3s;
  40. animation-fill-mode: both;
  41. }
  42. @-webkit-keyframes fis-fadeout {
  43. 0% {
  44. opacity: 1;
  45. }
  46. 100% {
  47. opacity: 0;
  48. }
  49. }
  50. @keyframes fis-fadeout {
  51. 0% {
  52. opacity: 1;
  53. }
  54. 100% {
  55. opacity: 0;
  56. }
  57. }
  58. .fis_anim-fadeout {
  59. -webkit-animation-name: fis-fadeout;
  60. animation-name: fis-fadeout;
  61. }
  62. #loader {
  63. border: 5px solid #f3f3f3;
  64. border-top: 5px solid #3d92fb;
  65. border-radius: 50%;
  66. width: 50px;
  67. height: 50px;
  68. display: inline-block;
  69. animation: spin 2s linear infinite;
  70. }
  71. @keyframes spin {
  72. 0% {
  73. transform: rotate(0deg);
  74. }
  75. 100% {
  76. transform: rotate(360deg);
  77. }
  78. }
  79. .full-screen-center {
  80. width: 100vw;
  81. height: 100vh;
  82. /* background: white; */
  83. display: flex;
  84. align-items: center;
  85. justify-content: center;
  86. z-index: 1002;
  87. }
  88. /*当屏幕尺寸小于600px时,应用下面的CSS样式*/
  89. /*
  90. @media screen and (max-width: 600px) {
  91. .splash {
  92. background: url(../img/splash_m.jpg) no-repeat 50%;
  93. }
  94. } */