123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270 |
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .login-page.data-v-d08ef7d4 {
- min-height: 100vh;
- background: #fff;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: flex-start;
- padding: 0 40rpx;
- }
- .brand-area.data-v-d08ef7d4 {
- margin-top: 100rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .brand-area .logo.data-v-d08ef7d4 {
- width: 120rpx;
- height: 120rpx;
- margin-bottom: 20rpx;
- }
- .brand-area .brand-title.data-v-d08ef7d4 {
- font-size: 44rpx;
- font-weight: bold;
- color: #222;
- margin-bottom: 20rpx;
- }
- .brand-area .slogan-area.data-v-d08ef7d4 {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .brand-area .slogan-area .slogan.data-v-d08ef7d4 {
- font-size: 28rpx;
- color: #2979ff;
- margin-bottom: 8rpx;
- }
- .brand-area .slogan-area .slogan-underline.data-v-d08ef7d4 {
- width: 220rpx;
- height: 8rpx;
- background: #e3f0ff;
- border-radius: 4rpx;
- }
- .phone-area.data-v-d08ef7d4 {
- margin: 500rpx 0 40rpx 0;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .phone-area .phone.data-v-d08ef7d4 {
- font-size: 36rpx;
- color: #222;
- font-weight: 500;
- margin-bottom: 10rpx;
- }
- .phone-area .carrier.data-v-d08ef7d4 {
- font-size: 24rpx;
- color: #aaa;
- }
- .main-btn.data-v-d08ef7d4 {
- width: 100%;
- height: 88rpx;
- border-radius: 44rpx;
- font-size: 32rpx;
- font-weight: 500;
- margin-bottom: 32rpx;
- }
- .login-btn.data-v-d08ef7d4 {
- background: #1976ff;
- color: #fff;
- border: none;
- }
- .wechat-btn.data-v-d08ef7d4 {
- background: #1aad19;
- color: #fff;
- border: none;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .wechat-btn .wechat-icon.data-v-d08ef7d4 {
- width: 40rpx;
- height: 40rpx;
- margin-right: 16rpx;
- vertical-align: middle;
- }
- .protocol-area.data-v-d08ef7d4 {
- display: flex;
- align-items: center;
- margin: 30rpx 0 0 0;
- }
- .protocol-area .protocol-text.data-v-d08ef7d4 {
- font-size: 22rpx;
- color: #999;
- margin-left: 10rpx;
- }
- .protocol-area .protocol-text .link.data-v-d08ef7d4 {
- color: #1976ff;
- }
- .other-login.data-v-d08ef7d4 {
- margin-top: 80rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .other-login .other-title.data-v-d08ef7d4 {
- font-size: 24rpx;
- color: #bbb;
- margin-bottom: 20rpx;
- }
- .other-login .other-icons.data-v-d08ef7d4 {
- display: flex;
- gap: 60rpx;
- }
- .other-login .other-icons .icon.data-v-d08ef7d4 {
- width: 60rpx;
- height: 60rpx;
- }
- .icon-circle.data-v-d08ef7d4 {
- width: 80rpx;
- height: 80rpx;
- border: 1px solid #ccc;
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- margin: 0 20rpx;
- background: #fff;
- }
- .popup-mask.data-v-d08ef7d4 {
- position: fixed;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- background: rgba(0, 0, 0, 0.25);
- z-index: 999;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .popup-box.data-v-d08ef7d4 {
- width: 90vw;
- max-width: 600rpx;
- background: #fff;
- border-radius: 24rpx;
- box-shadow: 0 8rpx 32rpx rgba(0, 0, 0, 0.1);
- padding: 60rpx 40rpx 40rpx 40rpx;
- position: relative;
- display: flex;
- flex-direction: column;
- align-items: stretch;
- }
- .close-btn.data-v-d08ef7d4 {
- position: absolute;
- right: 32rpx;
- top: 24rpx;
- font-size: 48rpx;
- color: #bbb;
- z-index: 2;
- font-weight: bold;
- }
- .popup-title.data-v-d08ef7d4 {
- text-align: center;
- font-size: 36rpx;
- font-weight: bold;
- color: #222;
- margin-bottom: 32rpx;
- letter-spacing: 2rpx;
- }
- .popup-tabs.data-v-d08ef7d4 {
- display: flex;
- justify-content: center;
- margin-bottom: 32rpx;
- }
- .popup-tabs text.data-v-d08ef7d4 {
- font-size: 28rpx;
- margin: 0 36rpx;
- color: #888;
- padding-bottom: 8rpx;
- position: relative;
- }
- .popup-tabs text.active.data-v-d08ef7d4 {
- color: #1976ff;
- font-weight: bold;
- }
- .popup-tabs text.active.data-v-d08ef7d4::after {
- content: "";
- display: block;
- position: absolute;
- left: 0;
- right: 0;
- bottom: 0;
- height: 4rpx;
- background: #1976ff;
- border-radius: 2rpx;
- }
- .input-row.data-v-d08ef7d4 {
- margin-bottom: 28rpx;
- display: flex;
- align-items: center;
- }
- .input-row input.data-v-d08ef7d4 {
- flex: 1;
- height: 80rpx;
- border-radius: 40rpx;
- background: #f7f8fa;
- border: 1px solid #eee;
- padding: 0 32rpx;
- font-size: 28rpx;
- color: #333;
- }
- .code-row input.data-v-d08ef7d4 {
- flex: 1;
- margin-right: 16rpx;
- }
- .code-row .code-btn.data-v-d08ef7d4 {
- width: 160rpx;
- height: 64rpx;
- border-radius: 32rpx;
- background: #1976ff;
- color: #fff;
- font-size: 24rpx;
- border: none;
- padding: 0;
- }
- .popup-login-btn.data-v-d08ef7d4 {
- margin-top: 12rpx;
- margin-bottom: 16rpx;
- width: 100%;
- height: 88rpx;
- border-radius: 44rpx;
- font-size: 32rpx;
- font-weight: 500;
- background: #1976ff;
- color: #fff;
- border: none;
- }
- .popup-footer.data-v-d08ef7d4 {
- text-align: center;
- margin-top: 10rpx;
- color: #1976ff;
- font-size: 26rpx;
- font-weight: 500;
- letter-spacing: 1rpx;
- }
|