index.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. .sign-page{
  2. height: 100vh;
  3. overflow: hidden;
  4. background-color: #fff;
  5. position: relative;
  6. font-size: 0;
  7. .inner-img{
  8. width: auto;
  9. height: auto;
  10. }
  11. .page-bg{
  12. height: 100vh;
  13. width: 100vw;
  14. .inner-img{
  15. width: 100%;
  16. }
  17. }
  18. .page-head{
  19. position: absolute;
  20. top: 0;
  21. left: 0;
  22. right: 0;
  23. width: 100vw;
  24. .inner-img{
  25. width: 100%;
  26. }
  27. }
  28. .page-btn{
  29. position: absolute;
  30. background: transparent;
  31. top: 50%;
  32. left: 50%;
  33. width: 426rpx;
  34. height: 426rpx;
  35. margin-top: -213rpx;
  36. margin-left: -213rpx;
  37. z-index: 10;
  38. .inner{
  39. position: relative;
  40. width: 100%;
  41. height: 100%;
  42. }
  43. .inner-img{
  44. position: relative;
  45. width: 100%;
  46. height: 100%;
  47. }
  48. .circle-round{
  49. position: absolute;
  50. border-radius: 50%;
  51. pointer-events: none;
  52. &.border-1{
  53. top: 40rpx;
  54. left: 40rpx;
  55. right: 40rpx;
  56. bottom: 40rpx;
  57. border-top: 2px solid rgba(255,255,255,.7);
  58. filter: drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 7px #fff) drop-shadow(0 0 10px #fff);
  59. animation: turn2 5s linear infinite;
  60. transform-origin: 50% 50%;
  61. animation-delay: 0.2s;
  62. }
  63. &.border-2{
  64. top: 60rpx;
  65. left: 60rpx;
  66. right: 60rpx;
  67. bottom: 60rpx;
  68. border-left: 2px solid rgba(255,255,255,.6);
  69. filter: drop-shadow(0 0 2px #fff) drop-shadow(0 0 5px #fff) drop-shadow(0 0 10px #fff) drop-shadow(0 0 20px #fff);
  70. animation: turn 3s linear infinite;
  71. transform-origin: 50% 50%;
  72. // animation-delay: 0.3s;
  73. }
  74. }
  75. &.button-hover{
  76. .inner{
  77. top: 4px;
  78. }
  79. }
  80. }
  81. @keyframes turn {
  82. 100% {
  83. transform: rotateZ(-1turn);
  84. }
  85. }
  86. @keyframes turn2 {
  87. 100% {
  88. transform: rotateZ(1turn);
  89. }
  90. }
  91. @keyframes rotate {
  92. 100% {
  93. border: none;
  94. border-top: 2px solid #fff;
  95. border-bottom: 2px solid #fff;
  96. transform: translate(-50%, -50%) rotate3d(.5, 0.5, 0.5, -720deg);
  97. }
  98. }
  99. }