Files
xinlong-shop-taro/src/pages/store/login/index.scss
赵忠林 f3886664f7 fix(api): 替换所有接口请求的域名为 guilixu-api.websoft.top
- 将获取 STS Token 的接口地址由 paopao-api 改为 guilixu-api
- 更新图片上传接口地址为新的 guilixu-api 域名
- 修改用户推广页面中邀请码链接和二维码接口的域名
- 更改注册页微信登录接口请求的域名为 guilixu-api
2026-06-16 17:15:59 +08:00

138 lines
2.3 KiB
SCSS

// 门店登录页面
.page-store-login {
min-height: 100vh;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
display: flex;
flex-direction: column;
position: relative;
overflow: hidden;
opacity: 0;
transition: opacity 0.6s ease-in-out;
&--show {
opacity: 1;
}
}
.store-login-bg {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
pointer-events: none;
}
.store-login-bg__gradient {
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}
.store-login-content {
position: relative;
z-index: 1;
flex: 1;
display: flex;
flex-direction: column;
padding: 120px 40px 60px;
}
.store-login-header {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 80px;
}
.store-login-logo {
width: 120px;
height: 120px;
border-radius: 60px;
background: rgba(255, 255, 255, 0.2);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 30px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.store-login-logo__image {
width: 72px;
height: 72px;
}
.store-login-title {
font-size: 36px;
font-weight: 700;
color: #ffffff;
margin-bottom: 12px;
}
.store-login-subtitle {
font-size: 28px;
color: rgba(255, 255, 255, 0.8);
}
.store-login-form {
background: rgba(255, 255, 255, 0.95);
border-radius: 24px;
padding: 48px 36px;
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}
.store-login-field {
display: flex;
align-items: center;
border-bottom: 1px solid #eee;
padding: 24px 0;
margin-bottom: 8px;
&__icon {
font-size: 36px;
margin-right: 16px;
}
&__input {
flex: 1;
font-size: 30px;
color: #333;
}
}
.store-login-btn {
margin-top: 48px;
height: 96px;
border-radius: 48px;
background: linear-gradient(135deg, #667eea, #764ba2);
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
transition: opacity 0.3s;
&--loading {
opacity: 0.6;
}
&__text {
font-size: 32px;
font-weight: 600;
color: #ffffff;
}
}
.store-login-footer {
margin-top: 40px;
display: flex;
justify-content: center;
&__text {
font-size: 24px;
color: rgba(255, 255, 255, 0.6);
}
}