修改部分样式

This commit is contained in:
张成
2025-08-23 22:57:34 +08:00
parent 5a204862a7
commit 22ae0c7cc4
10 changed files with 937 additions and 108 deletions

View File

@@ -1,6 +1,6 @@
// 登录页面根据Figma设计稿重新设计
.login_page {
width: 390px;
width: 100vw;
height: 100vh;
position: relative;
overflow: hidden;
@@ -17,14 +17,14 @@
width: 100%;
height: 100%;
z-index: 0;
.bg_img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: top;
}
.bg_overlay {
@@ -33,12 +33,10 @@
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(
180deg,
rgba(0, 0, 0, 0) 48%,
rgba(0, 0, 0, 0.96) 86%,
rgba(0, 0, 0, 1) 100%
);
background: linear-gradient(180deg,
rgba(0, 0, 0, 0) 48%,
rgba(0, 0, 0, 0.96) 86%,
rgba(0, 0, 0, 1) 100%);
}
}
@@ -123,13 +121,13 @@
// 品牌区域
.brand_section {
margin-top: 280px;
margin-top: 237px;
.logo_container {
display: flex;
align-items: center;
gap: 12px;
margin-bottom:60px;
margin-bottom: 44px;
height: 58px;
width: 252px;
background: url('../../../static/login/yc.svg') no-repeat left top;
@@ -143,7 +141,7 @@
background-size: inherit;
width: 363px;
height: 114px;
}
}
@@ -152,9 +150,10 @@
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 40px;
margin-bottom: 64px;
.login_button {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
@@ -167,7 +166,7 @@
font-weight: 600;
font-family: 'PingFang SC';
transition: all 0.3s ease;
&::after {
border: none;
}
@@ -180,10 +179,12 @@
// 微信登录按钮
&.wechat_button {
background: #FFFFFF;
border: 1px solid rgba(0, 0, 0, 0.06);
box-shadow: 0px 8px 64px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(32px);
margin-bottom: 0px;
.button_text {
color: #000000;
@@ -212,6 +213,7 @@
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0px 8px 64px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(32px);
margin-top: 0px;
.button_text {
color: #FFFFFF;
@@ -487,12 +489,11 @@
font-family: 'PingFang SC';
font-weight: 400;
font-size: 12px;
color: #07C160;
color: #FFFFFF;
line-height: 20px;
text-decoration: underline;
margin-left: 4px;
cursor: pointer;
}
}
}
}