_sharePage.scss 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. .sharePage {
  2. position: relative;
  3. width: 100%;
  4. height: 100%;
  5. // display: flex;
  6. // flex-direction: column;
  7. &__header {
  8. position: relative;
  9. padding-top: em(60);
  10. padding-left: em(30);
  11. }
  12. &__body {
  13. flex: 1;
  14. display: flex;
  15. flex-direction: column;
  16. justify-content: center;
  17. align-items: center;
  18. position: relative;
  19. margin-top: em(32);
  20. }
  21. &__footer {
  22. position: absolute;
  23. width: 100%;
  24. height: em(346);
  25. padding-top: em(250);
  26. left: 0;
  27. bottom: 0;
  28. visibility: hidden;
  29. pointer-events: none;
  30. &.is__show {
  31. visibility: visible;
  32. pointer-events: auto;
  33. }
  34. &.is__hidden {
  35. visibility: hidden;
  36. }
  37. }
  38. &__title {
  39. position: relative;
  40. padding-bottom: em(20);
  41. width: em(500);
  42. }
  43. &__demo {
  44. position: relative;
  45. width: em(500);
  46. height: em(500);
  47. border-radius: em(20);
  48. border: 1px solid #4B5283;
  49. background-color: #FFEFBE;
  50. overflow: hidden;
  51. }
  52. &__picture {
  53. position: relative;
  54. width: em(500);
  55. height: em(500);
  56. img {
  57. width: 100%;
  58. height: 100%;
  59. object-fit: cover;
  60. }
  61. }
  62. &__loader {
  63. position: absolute;
  64. width: em(500);
  65. height: em(500);
  66. top: 0;
  67. left: 0;
  68. background-color: rgba(0, 0, 0, 0.8);
  69. display: flex;
  70. flex-direction: column;
  71. justify-content: center;
  72. align-items: center;
  73. .loader__text {
  74. position: relative;
  75. color: #FFEFBE;
  76. font-size: rem(32);
  77. font-weight: 700;
  78. line-height: em(40, 32);
  79. text-align: center;
  80. margin-top: em(30);
  81. }
  82. .loader-46 {
  83. position: relative;
  84. width: em(40);
  85. height: em(40);
  86. border-radius: 50%;
  87. margin-left: auto;
  88. margin-right: auto;
  89. transform: scale3d(1.8, 1.8, 1.8);
  90. &::after {
  91. content: '';
  92. width: em(16);
  93. height: em(16);
  94. border-radius: 50%;
  95. position: absolute;
  96. left: 0;
  97. transform: translate(-50%, 100%);
  98. animation: animloader46 1s linear infinite ;
  99. top: 0;
  100. }
  101. }
  102. }
  103. .btn__back {
  104. cursor: pointer;
  105. position: relative;
  106. width: em(233);
  107. }
  108. .btn__group {
  109. position: relative;
  110. width: 100%;
  111. height: em(96);
  112. display: flex;
  113. justify-content: center;
  114. align-items: center;
  115. }
  116. .btn__line, .btn__facebook {
  117. cursor: pointer;
  118. font-size: rem(36);
  119. font-weight: 700;
  120. line-height: em(96, 36);
  121. height: em(96, 36);
  122. width: 50%;
  123. text-align: center;
  124. }
  125. .btn__line {
  126. background-color: white;
  127. color: #4B5283;
  128. }
  129. .btn__facebook {
  130. color: #FFEFBE;
  131. background-color: #4B5283;
  132. }
  133. }