ts_aimz/pages/login/login.wxss
itgaojian163 cbf7c00399 页面
2025-03-24 18:05:54 +08:00

93 lines
1.8 KiB
Plaintext

/* pages/login/login.wxss */
wx-checkbox .wx-checkbox-input.wx-checkbox-input-checked {
color: #fff !important;
background-color: #3F72FF;
border: 2rpx solid #3F72FF
}
wx-checkbox .wx-checkbox-input {
/*margin-right: 10rpx;*/
-webkit-appearance: none;
appearance: none;
outline: 0;
text-indent: 0;
border-radius: 50%;
width: 40rpx;
height: 40rpx;
background-color: transparent;
position: relative;
border: 1rpx solid rgb(85, 85, 85);
box-sizing: border-box;
}
/*钩大小*/
wx-checkbox .wx-checkbox-input.wx-checkbox-input-checked:before {
font-size: 36rpx;
}
.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);
}
}