66 lines
1.2 KiB
Plaintext
66 lines
1.2 KiB
Plaintext
|
/* pages/login/login.wxss */
|
||
|
.login {
|
||
|
width: 100vw;
|
||
|
height: 100vh;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.login-container {
|
||
|
background-image: url('https://file.moyublog.com/d/file/2023-11-23/b8721515c6161e26a742b241aa05e0f9.jpg');
|
||
|
width: 100vw;
|
||
|
height: 100vh;
|
||
|
}
|
||
|
|
||
|
.btn-content {
|
||
|
position: absolute;
|
||
|
bottom: 0;
|
||
|
left: 50%;
|
||
|
transform: translate(-50%, -50%);
|
||
|
background-color: white;
|
||
|
width: 80vw;
|
||
|
height: 250rpx;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
border-radius: 20rpx;
|
||
|
}
|
||
|
|
||
|
.deal {
|
||
|
color: blue;
|
||
|
}
|
||
|
|
||
|
.deal-box {
|
||
|
font-size: 24rpx;
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
justify-content: flex-start;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.btn {
|
||
|
background-color: green;
|
||
|
color: white;
|
||
|
animation: clickScale 1.2s;
|
||
|
animation-iteration-count: infinite;
|
||
|
animation-timing-function: ease-in-out;
|
||
|
border-radius: 50rpx;
|
||
|
margin-top: 30rpx;
|
||
|
font-size: 24rpx;
|
||
|
}
|
||
|
|
||
|
@keyframes clickScale {
|
||
|
0% {
|
||
|
transform: scale(1);
|
||
|
}
|
||
|
|
||
|
50% {
|
||
|
transform: scale(1.05);
|
||
|
}
|
||
|
|
||
|
100% {
|
||
|
transform: scale(1);
|
||
|
}
|
||
|
}
|