You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
/* pages/set/password.wxss */
|
|
|
|
page{
|
|
|
|
background-color: #F4F5F6;
|
|
|
|
}
|
|
|
|
.password{
|
|
|
|
display: flex;
|
|
|
|
flex-direction:column;
|
|
|
|
}
|
|
|
|
/* 图片+输入框+下划线的父容器view */
|
|
|
|
.userCs{
|
|
|
|
margin-top: 50rpx;
|
|
|
|
margin-left: 30rpx;
|
|
|
|
display: flex;
|
|
|
|
width:690rpx ;
|
|
|
|
height: 110rpx ;
|
|
|
|
background-color: white;
|
|
|
|
border-radius: 20rpx;
|
|
|
|
}
|
|
|
|
/* 用户名图标 */
|
|
|
|
.userCs .user{
|
|
|
|
margin-top: 25rpx;
|
|
|
|
margin-left: 30rpx;
|
|
|
|
width: 55rpx;
|
|
|
|
height: 55rpx;
|
|
|
|
}
|
|
|
|
/* 用户名输入框 */
|
|
|
|
.userCs input{
|
|
|
|
width: 500rpx;
|
|
|
|
font-size: 30rpx ;
|
|
|
|
margin-top: 35rpx;
|
|
|
|
margin-left: 30rpx;
|
|
|
|
line-height: 55rpx;
|
|
|
|
}
|
|
|
|
/* 密码图标+输入框+小眼睛图标+下划线父容器view */
|
|
|
|
.passwordCs{
|
|
|
|
margin-top: 30rpx;
|
|
|
|
margin-left: 30rpx;
|
|
|
|
display: flex;
|
|
|
|
width:690rpx ;
|
|
|
|
height: 110rpx ;
|
|
|
|
background-color: white;
|
|
|
|
border-radius: 20rpx;
|
|
|
|
}
|
|
|
|
/* 密码图标 */
|
|
|
|
.passwordCs .pass{
|
|
|
|
margin-top: 25rpx;
|
|
|
|
margin-left: 30rpx;
|
|
|
|
width: 55rpx;
|
|
|
|
height: 55rpx;
|
|
|
|
}
|
|
|
|
/* 眼睛 图标*/
|
|
|
|
.passwordCs .eye{
|
|
|
|
margin-top: 5rpx;
|
|
|
|
margin-left: 65rpx;
|
|
|
|
width: 55rpx;
|
|
|
|
height: 55rpx;
|
|
|
|
}
|
|
|
|
/* 密码输入框 */
|
|
|
|
.passwordCs input{
|
|
|
|
width: 500rpx;
|
|
|
|
font-size: 30rpx ;
|
|
|
|
margin-top: 35rpx;
|
|
|
|
margin-left: 30rpx;
|
|
|
|
line-height: 55rpx;
|
|
|
|
}
|
|
|
|
.loginView{
|
|
|
|
/* margin: 300rpx 90rpx 25rpx; */
|
|
|
|
margin-top: 100rpx;
|
|
|
|
margin-left: 30rpx;
|
|
|
|
width: 690rpx;
|
|
|
|
height: 80rpx;
|
|
|
|
background-color:#F95B43;
|
|
|
|
border-radius: 20rpx;
|
|
|
|
font-size: 32rpx;
|
|
|
|
color: white;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|