|
@@ -49,12 +49,12 @@ export default {
|
|
justify-content: center;
|
|
justify-content: center;
|
|
align-items: center;
|
|
align-items: center;
|
|
color: #ffffff;
|
|
color: #ffffff;
|
|
- font-size: 30px;
|
|
|
|
- width: 601px;
|
|
|
|
- height: 100px;
|
|
|
|
|
|
+ font-size: 18px;
|
|
|
|
+ width: 100%;
|
|
|
|
+ height: 50px;
|
|
background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6));
|
|
background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6));
|
|
box-shadow: 0px 0px 13px 0px rgba(164, 217, 228, 0.4);
|
|
box-shadow: 0px 0px 13px 0px rgba(164, 217, 228, 0.4);
|
|
- border-radius: 2.5rem;
|
|
|
|
|
|
+ border-radius: 25px;
|
|
margin: 0 auto;
|
|
margin: 0 auto;
|
|
outline: none;
|
|
outline: none;
|
|
}
|
|
}
|
|
@@ -63,63 +63,30 @@ export default {
|
|
justify-content: center;
|
|
justify-content: center;
|
|
align-items: center;
|
|
align-items: center;
|
|
color: #ffffff;
|
|
color: #ffffff;
|
|
- font-size: 30px;
|
|
|
|
- width: 100px;
|
|
|
|
- height: 100px;
|
|
|
|
|
|
+ font-size: 18px;
|
|
|
|
+ width: 50px;
|
|
|
|
+ height: 50px;
|
|
background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6));
|
|
background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6));
|
|
box-shadow: 0px 0px 13px 0px rgba(164, 217, 228, 0.4);
|
|
box-shadow: 0px 0px 13px 0px rgba(164, 217, 228, 0.4);
|
|
- border-radius: 2.5rem;
|
|
|
|
|
|
+ border-radius: 25px;
|
|
margin: 0 auto;
|
|
margin: 0 auto;
|
|
outline: none;
|
|
outline: none;
|
|
}
|
|
}
|
|
.buttonBorder {
|
|
.buttonBorder {
|
|
border: none;
|
|
border: none;
|
|
- border-radius: 2.5rem;
|
|
|
|
- -webkit-box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.2);
|
|
|
|
- box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.2);
|
|
|
|
- -webkit-transition: all 0.4s cubic-bezier(0.57, 0.19, 0.51, 0.95);
|
|
|
|
- -moz-transition: all 0.4s cubic-bezier(0.57, 0.19, 0.51, 0.95);
|
|
|
|
- -ms-transition: all 0.4s cubic-bezier(0.57, 0.19, 0.51, 0.95);
|
|
|
|
- -o-transition: all 0.4s cubic-bezier(0.57, 0.19, 0.51, 0.95);
|
|
|
|
|
|
+ border-radius: 25px;
|
|
|
|
+ box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
|
|
transition: all 0.4s cubic-bezier(0.57, 0.19, 0.51, 0.95);
|
|
transition: all 0.4s cubic-bezier(0.57, 0.19, 0.51, 0.95);
|
|
- background:#e56463;
|
|
|
|
|
|
+ background: #e56463;
|
|
}
|
|
}
|
|
|
|
|
|
/* 旋转动画 */
|
|
/* 旋转动画 */
|
|
.rotate_loop {
|
|
.rotate_loop {
|
|
- -webkit-transition-property: -webkit-transform;
|
|
|
|
- -webkit-transition-duration: 1s;
|
|
|
|
- -moz-transition-property: -moz-transform;
|
|
|
|
- -moz-transition-duration: 1s;
|
|
|
|
- -webkit-animation: rotate 1s linear infinite;
|
|
|
|
- -moz-animation: rotate 1s linear infinite;
|
|
|
|
- -o-animation: rotate 1s linear infinite;
|
|
|
|
|
|
+ transition-property: transform;
|
|
|
|
+ transition-duration: 1s;
|
|
animation: rotate 1s linear infinite;
|
|
animation: rotate 1s linear infinite;
|
|
}
|
|
}
|
|
-@-webkit-keyframes rotate {
|
|
|
|
- from {
|
|
|
|
- -webkit-transform: rotate(0deg);
|
|
|
|
- }
|
|
|
|
- to {
|
|
|
|
- -webkit-transform: rotate(360deg);
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-@-moz-keyframes rotate {
|
|
|
|
- from {
|
|
|
|
- -moz-transform: rotate(0deg);
|
|
|
|
- }
|
|
|
|
- to {
|
|
|
|
- -moz-transform: rotate(359deg);
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-@-o-keyframes rotate {
|
|
|
|
- from {
|
|
|
|
- -o-transform: rotate(0deg);
|
|
|
|
- }
|
|
|
|
- to {
|
|
|
|
- -o-transform: rotate(359deg);
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
|
|
+
|
|
@keyframes rotate {
|
|
@keyframes rotate {
|
|
from {
|
|
from {
|
|
transform: rotate(0deg);
|
|
transform: rotate(0deg);
|