/**
|
* 这里是uni-app内置的常用样式变量
|
*
|
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
*
|
*/
|
/**
|
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
*
|
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
*/
|
/* 颜色变量 */
|
/* 行为相关颜色 */
|
/* 文字基本颜色 */
|
/* 背景颜色 */
|
/* 边框颜色 */
|
/* 尺寸变量 */
|
/* 文字尺寸 */
|
/* 图片尺寸 */
|
/* Border Radius */
|
/* 水平间距 */
|
/* 垂直间距 */
|
/* 透明度 */
|
/* 文章场景相关 */
|
.container.data-v-d08ef7d4 {
|
height: 100vh;
|
background: linear-gradient(135deg, #4a90e2 0%, #5bc0de 100%);
|
position: relative;
|
overflow: hidden;
|
/* 品牌标识 */
|
/* 登录区域 */
|
}
|
.container .content.data-v-d08ef7d4 {
|
padding: 0 40rpx;
|
position: relative;
|
z-index: 2;
|
}
|
.container .brand-section.data-v-d08ef7d4 {
|
padding-top: 120rpx;
|
text-align: center;
|
}
|
.container .brand-section .logo.data-v-d08ef7d4 {
|
width: 160rpx;
|
height: 160rpx;
|
border-radius: 24rpx;
|
box-shadow: 0 10rpx 30rpx rgba(0, 0, 0, 0.1);
|
}
|
.container .brand-section .brand-name.data-v-d08ef7d4 {
|
display: block;
|
font-size: 48rpx;
|
color: #fff;
|
margin: 40rpx 0 16rpx;
|
letter-spacing: 2rpx;
|
font-weight: 500;
|
}
|
.container .brand-section .brand-subtitle.data-v-d08ef7d4 {
|
font-size: 28rpx;
|
color: rgba(255, 255, 255, 0.9);
|
}
|
.container .auth-section.data-v-d08ef7d4 {
|
margin-top: 120rpx;
|
background: rgba(255, 255, 255, 0.95);
|
border-radius: 40rpx;
|
padding: 60rpx 40rpx;
|
box-shadow: 0 20rpx 60rpx rgba(0, 0, 0, 0.1);
|
/* 微信登录按钮 */
|
/* 分隔线 */
|
}
|
.container .auth-section .welcome-text.data-v-d08ef7d4 {
|
text-align: center;
|
margin-bottom: 80rpx;
|
}
|
.container .auth-section .welcome-text .welcome-ch.data-v-d08ef7d4 {
|
display: block;
|
font-size: 44rpx;
|
color: #333;
|
font-weight: 500;
|
margin-bottom: 16rpx;
|
}
|
.container .auth-section .welcome-text .welcome-en.data-v-d08ef7d4 {
|
font-size: 28rpx;
|
color: #888;
|
letter-spacing: 2rpx;
|
}
|
.container .auth-section .wx-login-btn.data-v-d08ef7d4 {
|
background: #07c160;
|
height: 96rpx;
|
border-radius: 48rpx;
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
transition: all 0.2s;
|
}
|
.container .auth-section .wx-login-btn.data-v-d08ef7d4:active {
|
transform: scale(0.98);
|
opacity: 0.9;
|
}
|
.container .auth-section .wx-login-btn .wx-icon.data-v-d08ef7d4 {
|
width: 48rpx;
|
height: 48rpx;
|
margin-right: 20rpx;
|
}
|
.container .auth-section .wx-login-btn .btn-text.data-v-d08ef7d4 {
|
color: #fff;
|
font-size: 34rpx;
|
font-weight: 500;
|
}
|
.container .auth-section .divider.data-v-d08ef7d4 {
|
margin: 60rpx 0;
|
display: flex;
|
align-items: center;
|
}
|
.container .auth-section .divider .divider-line.data-v-d08ef7d4 {
|
flex: 1;
|
height: 1px;
|
background: #eee;
|
}
|
.container .auth-section .divider .divider-text.data-v-d08ef7d4 {
|
padding: 0 30rpx;
|
color: #999;
|
font-size: 26rpx;
|
}
|