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.

70 lines
1.2 KiB

.container {
padding: 20rpx;
display: flex;
flex-direction: column;
align-items: center; /*test*/
}
.form-top{
display: flex;
align-items: center;
width: 100%;
}
.identify-logo {
/* width: 60px;
height: 146px; */
margin-left: -10rpx;
}
.slogan {
/* margin-top: 50px; */
width: 600rpx;
display: flex;
flex-direction: column; /* 子元素纵向排列 */
align-items: center; /* 子元素在交叉轴上的居中对齐 */
justify-content: center; /* 子元素在主轴上的居中对齐 */
}
.s1{
font-size: 20px;
font-weight: bolder;
}
.s2{
font-size: 15px;
}
.form-item {
display: flex;
align-items: center;
margin-bottom: 20px;
width: 80%; /* 确保所有表单项宽度一致 */
}
.form-item text {
margin-right: 10px;
width: 80px; /* 固定宽度,使标签对齐 */
text-align: right; /* 右对齐文本 */
font-weight: bold;
}
.input {
flex: 1;
padding: 5px;
border: 1px solid #ccc;
border-radius: 25px;
}
.radio-group {
margin-top: 5px;
}
.auth-button {
width: 100%;
padding: 10px;
margin-top: 20px;
background-color: #69a3e6; /* 微信绿 */
color: white;
border: none;
border-radius: 27px;
}