Novecane
2025-02-15 d13e470cf0256e3ffbc3b0ad34df27ce0b0b5e5f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/**
 * 这里是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;
}