| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- .actions_bg {
- z-index: 10000;
- position: fixed;
- left: 0;
- top: 0;
- width: 100vw;
- height: 100vh;
- background-color: rgba($color: #000, $alpha: 1);
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: flex-end;
- }
- .action_btn {
- width: 698px;
- height: 128px;
- border-radius: 64px;
- color: #000;
- margin-top: 26px;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- position: relative;
- background-color: #f0f0f0;
- }
- .cardShowAni {
- animation: showAni 0.2s linear forwards;
- }
- .cardShowAni1 {
- animation: showAni1 0.2s linear forwards;
- }
- .btnAni{
- opacity: 0;
- animation: showAni2 0.2s 0.5s linear forwards;
- }
- @keyframes showAni {
- 0% {
- opacity: 0;
- transform: translateY(300px);
- }
- 100% {
- opacity: 1;
- transform: translateY(0px);
- }
- }
- @keyframes showAni1 {
- 0% {
- opacity: 0;
- transform: translateY(300px);
- }
- 100% {
- opacity: 0.75;
- transform: translateY(0px);
- }
- }
- @keyframes showAni2 {
- 0% {
- opacity: 0;
- // transform: translateY(300px);
- }
- 100% {
- opacity: 1;
- // transform: translateY(0px);
- }
- }
- .action_btn_img{
- position: absolute;
- left: 40px;
- top:40px;
- width: 48px;
- height: 48px;
- }
- .or_line{
- width: 255px;
- height: 1px;
- background-color: #fff;
-
- }
|