Files
xinlong-shop-taro/src_bak/pages/store/login/index.scss
赵忠林 1fa58040f3 feat(user): 新增收货地址管理及售后申请页面
- 新增地址类型定义,增强前端地址数据结构
- 新增地址编辑页面,支持地址智能识别和定位选点功能
- 地址编辑支持省市区选择及默认地址设置
- 新增地址列表页面,支持地址展示、删除、编辑和选择功能
- 实现售后申请页面,支持选择售后类型和退款原因
- 售后申请支持商品选择、退款金额计算和凭证上传
- 新增售后详情页面,支持售后状态展示及申请取消
- 优化页面加载和用户交互体验,增加错误提示和权限处理
2026-07-01 12:11:56 +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);
}
}