修改部分细节

This commit is contained in:
张成
2025-08-23 20:52:01 +08:00
parent 5179d1aa09
commit 5a204862a7
4 changed files with 20 additions and 129 deletions

View File

@@ -4,6 +4,7 @@
background: #FAFAFA;
position: relative;
overflow: hidden;
box-sizing: border-box;
}
// 背景
@@ -200,7 +201,7 @@
.main_content {
position: relative;
z-index: 10;
padding: 12px 24px 36px;
padding: 0px 24px 36px;
display: flex;
flex-direction: column;
gap: 36px;
@@ -212,6 +213,7 @@
flex-direction: column;
gap: 8px;
text-align: left;
padding: 12px 24px 36px 24px ;
.main_title {
font-family: 'PingFang SC';
@@ -235,7 +237,6 @@
display: flex;
flex-direction: column;
gap: 12px;
padding: 0 24px;
}
// 输入组
@@ -291,7 +292,10 @@
border: 1px solid rgba(0, 0, 0, 0.06);
border-radius: 12px;
padding: 10px 12px;
width: 210px;
height: 52px;
box-sizing: border-box;
box-shadow: 0px 4px 36px 0px rgba(0, 0, 0, 0.06);
.code_input {
@@ -304,6 +308,7 @@
border: none;
outline: none;
background: transparent;
&::placeholder {
color: rgba(60, 60, 67, 0.3);
@@ -322,6 +327,9 @@
.send_code_button {
width: 120px;
height: 52px;
box-sizing: border-box;
padding: 12px 2px;
background: #000000;
border: 1px solid rgba(0, 0, 0, 0.06);
border-radius: 16px;
@@ -347,10 +355,7 @@
}
}
// 按钮区域
.button_section {
padding: 0 24px;
}
// 登录按钮
.login_button {
@@ -362,7 +367,7 @@
font-family: 'PingFang SC';
font-weight: 600;
font-size: 16px;
line-height: 1.4;
padding: 6px 2px;
color: #FFFFFF;
box-shadow: 0px 8px 64px 0px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(32px);
@@ -421,31 +426,3 @@
z-index: 10;
}
// 响应式适配
@media (max-width: 375px) {
.main_content {
padding: 8px 20px 32px;
}
.form_section {
padding: 0 20px;
}
.button_section {
padding: 0 20px;
}
.terms_section {
padding: 0 20px;
}
.title_section {
.main_title {
font-size: 24px;
}
.sub_title {
font-size: 16px;
}
}
}