step1.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. .wrap{
  2. display: flex;
  3. justify-content: center;
  4. align-items: center;
  5. position: relative;
  6. }
  7. .section{
  8. height: 100%;
  9. z-index: 11;
  10. position: absolute;
  11. background: rgba(34, 34, 34,0.6);
  12. border-radius: 36px 36px 36px 36px;
  13. backdrop-filter: blur(20px);
  14. -webkit-backdrop-filter: blur(20px);
  15. }
  16. .logo{
  17. width: 186px;
  18. height: 70px;
  19. margin-bottom: 20px;
  20. }
  21. .bottom{
  22. color: #5A487D;
  23. width: 110px;
  24. height: 32px;
  25. background: #FFFFFF;
  26. border-radius: 137px 137px 137px 137px;
  27. font-size: 14px;
  28. line-height: 32px;
  29. margin: 0 auto;
  30. margin-top: 20px;
  31. cursor: pointer;
  32. text-align: center;
  33. /*font-size: 400px;*/
  34. transition: all 0.3s;
  35. }
  36. .bottom:hover{
  37. box-shadow: 0 2px 25px rgba(0, 234, 250, 0.5);
  38. }
  39. .bottom .btn{
  40. display:block;
  41. width: 100%;
  42. height: 100%;
  43. font-weight: 600;
  44. }
  45. .more-text{
  46. background: linear-gradient(to right, #134392 0%, #363A8A 100%);
  47. -webkit-background-clip: text;
  48. color: transparent;
  49. }
  50. .agreement{
  51. height: 21px;
  52. margin: 6px 0 10px 0;
  53. }
  54. .agreements{
  55. color: #A8CDE7;
  56. }
  57. .solgen{
  58. position: absolute;
  59. width: 364px;
  60. height: 16px;
  61. bottom: 45px;
  62. left: 218px;
  63. }
  64. .radio-box{
  65. border: 1px solid #fff;
  66. border-radius: 50%;
  67. width: 14px;
  68. height: 14px;
  69. position: relative;
  70. margin-right: 10px;
  71. font-size: 14px;
  72. }
  73. .is-shock{
  74. animation: shock 0.5s infinite;
  75. }
  76. .agreement span{
  77. line-height: 14px;
  78. }
  79. .radio-box img{
  80. position: absolute;
  81. left: -1px;
  82. top: -1px;
  83. width: 16px;
  84. height: 16px;
  85. animation: show 0.3s;
  86. }
  87. @keyframes show {
  88. 0% {
  89. transform:scale(0);
  90. -moz-transform:scale(0);
  91. -webkit-transform:scale(0);
  92. }
  93. 100% {
  94. transform:scale(1);
  95. -moz-transform:scale(1);
  96. -webkit-transform:scale(1);
  97. }
  98. }
  99. @keyframes shock {
  100. 0% {
  101. margin-top: 0px;
  102. }
  103. 20% {
  104. margin-bottom: 10px;
  105. }
  106. 40% {
  107. margin-bottom: 0px;
  108. }
  109. 60% {
  110. margin-bottom: 8px;
  111. }
  112. 70% {
  113. margin-bottom: 0px;
  114. }
  115. 90% {
  116. margin-bottom: 4px;
  117. }
  118. 100% {
  119. margin-bottom: 0px;
  120. }
  121. }