完成了登录模块

This commit is contained in:
2025-05-18 09:30:05 +08:00
parent f7e90b2c0b
commit 7c934ded5f
7 changed files with 264 additions and 414 deletions

View File

@ -27,8 +27,7 @@
background-color: #ffffff;
width: 100%;
overflow-y: auto;
overflow-x: hidden;
height: 100%;
height: 100vh;
}
.group {
padding-left: 33.75rpx;
@ -108,7 +107,7 @@
line-height: 28.01rpx;
}
.group_5 {
padding: 0 21.64rpx;
padding: 0 37.64rpx;
}
.section_2 {
background-color: #000000;
@ -266,7 +265,7 @@
top: 29.06rpx;
}
.list_2 {
margin-top: 92.81rpx;
margin-top: 0;
}
.list-item_2 {
background-color: #ffffff;
@ -409,4 +408,28 @@
bottom: 0;
left: 0;
right: 0;
}
}
/* 默认非激活状态(可以跟现有 text_6/text_7 配合,也可覆盖) */
.tab-inactive {
font-weight: normal;
font-size: 30rpx; /* 原始大小 */
color: #000000; /* 原始颜色 */
}
/* 激活状态:字体变大、加粗、橙色 */
.tab-active {
font-weight: bold;
font-size: 36rpx; /* 放大后的尺寸 */
color: #ff8d1a;
}
/* 非激活时隐藏下划线 */
.line-hidden {
background-color: transparent !important;
}
/* 激活时下划线显示为橙色 */
.line-active {
background-color: #ff8d1a !important;
}