125 lines
2.9 KiB
Plaintext
125 lines
2.9 KiB
Plaintext
/**
|
||
* 这里是uni-app内置的常用样式变量
|
||
*
|
||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||
*
|
||
*/
|
||
/**
|
||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||
*
|
||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||
*/
|
||
/* 颜色变量 */
|
||
/* 行为相关颜色 */
|
||
/* 文字基本颜色 */
|
||
/* 背景颜色 */
|
||
/* 边框颜色 */
|
||
/* 尺寸变量 */
|
||
/* 文字尺寸 */
|
||
/* 图片尺寸 */
|
||
/* Border Radius */
|
||
/* 水平间距 */
|
||
/* 垂直间距 */
|
||
/* 透明度 */
|
||
/* 文章场景相关 */
|
||
page {
|
||
background: url("../../static/login.jpg") repeat fixed center;
|
||
}
|
||
.normal-login-container {
|
||
width: 100%;
|
||
}
|
||
.normal-login-container .logo-content {
|
||
width: 100%;
|
||
font-size: 21px;
|
||
text-align: center;
|
||
padding-top: 15%;
|
||
}
|
||
.normal-login-container .logo-content image {
|
||
border-radius: 4px;
|
||
}
|
||
.normal-login-container .logo-content .title {
|
||
margin-left: 10px;
|
||
}
|
||
.normal-login-container .login-form-content {
|
||
text-align: center;
|
||
margin: 20px auto;
|
||
width: 80%;
|
||
}
|
||
.normal-login-container .login-form-content .input-item {
|
||
margin: 20px auto;
|
||
background-color: #f5f6f7;
|
||
height: 45px;
|
||
border-radius: 20px;
|
||
}
|
||
.normal-login-container .login-form-content .input-item .icon {
|
||
font-size: 38rpx;
|
||
margin-left: 10px;
|
||
color: #999;
|
||
}
|
||
.normal-login-container .login-form-content .input-item .input {
|
||
width: 80%;
|
||
font-size: 14px;
|
||
line-height: 20px;
|
||
text-align: left;
|
||
padding-left: 15px;
|
||
padding-top: 8px;
|
||
padding-bottom: 8px;
|
||
background-color: #f5f6f7;
|
||
}
|
||
.normal-login-container .login-form-content .login-btn {
|
||
margin-top: 40px;
|
||
height: 45px;
|
||
border-radius: 30px;
|
||
}
|
||
.normal-login-container .login-form-content .reg {
|
||
margin-top: 15px;
|
||
}
|
||
.normal-login-container .login-form-content .xieyi {
|
||
color: #333;
|
||
margin-top: 20px;
|
||
}
|
||
.normal-login-container .login-form-content .login-code {
|
||
height: 38px;
|
||
float: right;
|
||
}
|
||
.normal-login-container .login-form-content .login-code .login-code-img {
|
||
height: 38px;
|
||
position: absolute;
|
||
margin-left: 10px;
|
||
width: 200rpx;
|
||
}
|
||
.img-a {
|
||
position: absolute;
|
||
width: 100%;
|
||
top: -74px;
|
||
right: 0;
|
||
z-index: 100;
|
||
}
|
||
.img-b {
|
||
position: absolute;
|
||
width: 50%;
|
||
bottom: 0;
|
||
left: -50rpx;
|
||
z-index: 100;
|
||
}
|
||
.text {
|
||
margin-left: -111px;
|
||
margin-top: 28px;
|
||
}
|
||
.t-b {
|
||
font-size: 29px;
|
||
color: #000;
|
||
padding: 60px 0 10px 0;
|
||
font-weight: bold;
|
||
}
|
||
.t-b2 {
|
||
text-align: center;
|
||
font-size: 32rpx;
|
||
color: #2a2a2a;
|
||
}
|
||
.goLogin {
|
||
float: right;
|
||
color: #444444;
|
||
padding: 10px;
|
||
} |