index.module.scss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. .A1home {
  2. width: 100%;
  3. height: 100%;
  4. position: relative;
  5. z-index: 1;
  6. :global {
  7. // 背景图
  8. .homeImg {
  9. position: absolute;
  10. top: 0;
  11. left: 0;
  12. width: 100%;
  13. height: 100%;
  14. z-index: 3;
  15. pointer-events: none;
  16. object-fit: cover !important;
  17. }
  18. .loadingP {
  19. position: absolute;
  20. top: 50%;
  21. left: 50%;
  22. transform: translate(-50%, -50%);
  23. width: 100%;
  24. height: 100%;
  25. // background-image: url('../../assets/sgImg/homeBg.jpg');
  26. // background-size: 100% 100%;
  27. display: flex;
  28. align-items: center;
  29. justify-content: center;
  30. flex-direction: column;
  31. color: rgba(166, 118, 67, 1);
  32. z-index: 10;
  33. //----------新加的初始视频
  34. .A1baseVideo,
  35. .A1baseVideo2 {
  36. background-color: #c7bdab;
  37. position: absolute;
  38. top: 0;
  39. left: 0;
  40. width: 100%;
  41. height: 100%;
  42. z-index: 4;
  43. }
  44. .progress {
  45. width: 200px;
  46. height: 30px;
  47. line-height: 30px;
  48. text-align: center;
  49. transform: translate(100px, 155px);
  50. position: relative;
  51. z-index: 10;
  52. font-weight: 700;
  53. }
  54. .btn {
  55. width: 60px;
  56. height: 60px;
  57. background: url(../../assets/img/btn_home.png) no-repeat center center;
  58. background-size: 100% 100%;
  59. transform: translate(90px, 155px);
  60. cursor: pointer;
  61. display: flex;
  62. align-items: center;
  63. justify-content: center;
  64. position: relative;
  65. z-index: 10;
  66. &>img {
  67. width: 60%;
  68. height: 60%;
  69. object-fit: contain;
  70. animation: yunShan 3s infinite linear;
  71. }
  72. .txt {
  73. width: 35px;
  74. height: 30px;
  75. color: rgba(255, 233, 182, 1);
  76. font-size: 15px;
  77. line-height: 15px;
  78. text-align: center;
  79. animation: zhiti 2s infinite linear;
  80. }
  81. }
  82. .A1Launge {
  83. position: absolute;
  84. top: 15px;
  85. right: 15px;
  86. z-index: 15;
  87. img {
  88. width: 60px;
  89. height: 60px;
  90. }
  91. }
  92. }
  93. .A1videoBox {
  94. width: 100%;
  95. height: 100%;
  96. position: relative;
  97. .A1video {
  98. width: 100%;
  99. height: 100%;
  100. }
  101. }
  102. }
  103. }
  104. // --------------英文版
  105. .A1homeEm {
  106. :global {
  107. .loadingP {
  108. .btn {
  109. width: 70px;
  110. height: 70px;
  111. .txt {
  112. width: 42px;
  113. height: 21px;
  114. font-size: 16px;
  115. }
  116. }
  117. }
  118. }
  119. }