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.

61 lines
1.1 KiB

/* pages/test5/test5.wxss */
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
padding: 20px;
}
.login-image {
width: 60%; /* 或者其他你想要的宽度 */
height: auto; /* 保持图片比例 */
margin-bottom: 20px; /* 在图片和登录表单之间添加一些间距 */
}
.title {
font-size: 24px;
font-weight: bold;
color: #333;
margin-bottom: 40px;
text-align: center;
width: 100%;
}
.input-group {
width: 100%;
margin-bottom: 20px;
}
.input-label {
font-size: 16px;
color: #666;
margin-bottom: 5px;
}
.input-field {
width: 100%;
border: 1px solid #ccc;
padding: 10px;
border-radius: 5px;
box-sizing: border-box; /* 确保内边距不会导致宽度变化 */
}
.login-button {
width: 100%;
background-color: #1aad19;
color: white;
padding: 10px;
border-radius: 5px;
font-size: 16px;
margin-top: 20px;
}
.teacher-button {
width: 100%;
background-color: #576b95;
color: white;
padding: 10px;
border-radius: 5px;
font-size: 16px;
margin-top: 20px;
}