index.module.scss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. .A1home {
  2. width: 100%;
  3. height: 100%;
  4. position: relative;
  5. z-index: 1;
  6. :global {
  7. .loadingP {
  8. position: absolute;
  9. top: 50%;
  10. left: 50%;
  11. transform: translate(-50%, -50%);
  12. width: 100%;
  13. height: 100%;
  14. // background: url(../../assets/img/bg_home.png) no-repeat center center;
  15. // background-size: 100% 100%;
  16. display: flex;
  17. align-items: center;
  18. justify-content: center;
  19. flex-direction: column;
  20. color: rgba(166, 118, 67, 1);
  21. z-index: 10;
  22. //----------新加的初始视频
  23. .A1baseVideo{
  24. position: absolute;
  25. top: 0;
  26. left: 0;
  27. width: 100%;
  28. height: 100%;
  29. z-index: 2;
  30. }
  31. .progress {
  32. width: 200px;
  33. height: 30px;
  34. line-height: 30px;
  35. text-align: center;
  36. transform: translate(70px, 155px);
  37. position: relative;
  38. z-index: 10;
  39. }
  40. .btn {
  41. width: 60px;
  42. height: 60px;
  43. background: url(../../assets/img/btn_home.png) no-repeat center center;
  44. background-size: 100% 100%;
  45. transform: translate(66px, 155px);
  46. cursor: pointer;
  47. display: flex;
  48. align-items: center;
  49. justify-content: center;
  50. position: relative;
  51. z-index: 10;
  52. &>img {
  53. width: 60%;
  54. height: 60%;
  55. object-fit: contain;
  56. animation: yunShan 3s infinite linear;
  57. }
  58. .txt {
  59. width: 35px;
  60. height: 30px;
  61. color: rgba(255, 233, 182, 1);
  62. font-size: 15px;
  63. line-height: 15px;
  64. text-align: center;
  65. animation: zhiti 2s infinite linear;
  66. }
  67. }
  68. }
  69. .A1videoBox {
  70. width: 100%;
  71. height: 100%;
  72. position: relative;
  73. .A1video {
  74. width: 100%;
  75. height: 100%;
  76. }
  77. .A1videoBtn{
  78. position: absolute;
  79. bottom: 10px;
  80. right: 10px;
  81. }
  82. }
  83. }
  84. }
  85. // --------------移动端
  86. .A1homeMo {
  87. :global {
  88. .loadingP {
  89. .btn {
  90. transform: translate(90px, 155px);
  91. }
  92. .progress {
  93. transform: translate(100px, 155px);
  94. font-weight: 700;
  95. }
  96. }
  97. }
  98. }