176 lines
2.9 KiB
Plaintext
176 lines
2.9 KiB
Plaintext
|
|
/**
|
|
* Web唐明明
|
|
* 匆匆数载恍如梦,岁月迢迢华发增。
|
|
* 碌碌无为枉半生,一朝惊醒万事空。
|
|
*/
|
|
|
|
page{
|
|
background-color: white;
|
|
}
|
|
|
|
.login{
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-pack: center;
|
|
position: relative;
|
|
text-align: center;
|
|
height: 100vh;
|
|
width: 100vw;
|
|
padding: 100rpx 100rpx 200rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.login-way{
|
|
color: #0b0041;
|
|
line-height: 90rpx;
|
|
}
|
|
|
|
/* input */
|
|
.phone-inputs{
|
|
border-bottom: solid 1rpx #eee;
|
|
margin-bottom: 30rpx;
|
|
display: flex;
|
|
}
|
|
|
|
.phone-inputs input{
|
|
height: 90rpx;
|
|
font-size: 32rpx;
|
|
justify-content: space-between;
|
|
flex: 1;
|
|
text-align: left;
|
|
}
|
|
|
|
.phone-code-btn[size="mini"]{
|
|
margin-left: 30rpx;
|
|
height: 90rpx;
|
|
line-height: 90rpx;
|
|
padding: 0 30rpx;
|
|
font-size: 32rpx;
|
|
font-weight: normal;
|
|
border-radius: 0;
|
|
background: transparent;
|
|
color: #ff8d37;
|
|
}
|
|
|
|
.phone-code-btn[size="mini"][disabled]{
|
|
background: transparent;
|
|
color: #afafaf;
|
|
}
|
|
|
|
/* btn */
|
|
.login-btn[size="default"]{
|
|
width: 100%;
|
|
height: 90rpx;
|
|
line-height: 90rpx;
|
|
padding: 0;
|
|
font-size: 34rpx;
|
|
border-radius: 0;
|
|
background: #0b0041;
|
|
color: white;
|
|
margin-bottom: 40rpx;
|
|
}
|
|
|
|
/* header */
|
|
.login-header{
|
|
text-align: center;
|
|
padding-bottom: 70rpx;
|
|
}
|
|
|
|
.login-logo{
|
|
width: 128rpx;
|
|
height: 128rpx;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.login-title{
|
|
font-weight: bold;
|
|
padding: 50rpx 0 20rpx;
|
|
font-size: 40rpx;
|
|
}
|
|
|
|
.login-subhead{
|
|
font-size: 26rpx;
|
|
color: #afafaf;
|
|
}
|
|
|
|
/* 用户协议 */
|
|
.login-agree{
|
|
margin-top: 10vh;
|
|
color: #afafaf;
|
|
font-size: 26rpx;
|
|
text-align: center;
|
|
line-height: 50rpx;
|
|
}
|
|
|
|
.login-agree navigator{
|
|
color: #ff8d37;
|
|
padding: 0 5rpx;
|
|
display: inline-block;
|
|
}
|
|
|
|
/* 验证码弹出层 */
|
|
.get-code-lay{
|
|
background: rgba(0, 0, 0, .4);
|
|
position: fixed;
|
|
z-index: 99;
|
|
text-align: center;
|
|
}
|
|
|
|
.get-code-lay-form{
|
|
position: relative;
|
|
background: white;
|
|
padding: 20rpx 30rpx;
|
|
display: inline-block;
|
|
width: 70vw;
|
|
border-radius: 10rpx;
|
|
}
|
|
|
|
.get-code-lay-remove{
|
|
position: absolute;
|
|
width: 28rpx;
|
|
right: 30rpx;
|
|
top: 30rpx;
|
|
}
|
|
|
|
.get-code-lay-title{
|
|
font-weight: bold;
|
|
font-size: 34rpx;
|
|
line-height: 90rpx;
|
|
}
|
|
|
|
.get-code-lay-input{
|
|
background: #eee;
|
|
border-radius: 10rpx;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.get-code-lay-input input{
|
|
height: 90rpx;
|
|
flex: 1;
|
|
text-align: left;
|
|
padding: 0 30rpx;
|
|
}
|
|
|
|
.get-code-lay-img{
|
|
height: 56rpx;
|
|
background: white;
|
|
margin-right: 30rpx;
|
|
}
|
|
|
|
.get-code-lay-btn[size="default"]{
|
|
margin-top: 30rpx;
|
|
margin-bottom: 10rpx;
|
|
width: 100%;
|
|
height: 80rpx;
|
|
line-height: 80rpx;
|
|
border-radius: 10rpx;
|
|
padding: 0;
|
|
font-size: 32rpx;
|
|
background: #0b0041;
|
|
color: white;
|
|
}
|
|
|