ts_aimz/pages/login/login.wxss

143 lines
2.5 KiB
Plaintext
Raw Normal View History

2025-03-21 09:02:29 +08:00
/* pages/login/login.wxss */
2025-03-24 18:05:54 +08:00
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;
}
2025-03-21 09:02:29 +08:00
.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);
}
2025-03-28 18:36:17 +08:00
}
.weui-half-screen-dialog__container {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: rgba(0, 0, 0, 0.5);
z-index: 999;
}
.weui-half-screen-dialog {
background: #fff;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
overflow: hidden;
}
.weui-half-screen-dialog__hd {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px;
border-bottom: 1px solid #eee;
}
.weui-half-screen-dialog__title {
font-size: 18px;
font-weight: bold;
}
.weui-half-screen-dialog__close {
cursor: pointer;
}
.weui-half-screen-dialog__bd {
padding: 15px;
}
.custom-content text {
display: block;
margin-bottom: 10px;
}
.weui-half-screen-dialog__ft {
padding: 15px;
text-align: center;
2025-03-21 09:02:29 +08:00
}