74 lines
1.2 KiB
SCSS
74 lines
1.2 KiB
SCSS
|
|
.app {
|
||
|
|
height: 100vh;
|
||
|
|
padding: 20rpx 0;
|
||
|
|
|
||
|
|
.item {
|
||
|
|
font-size: 34rpx;
|
||
|
|
margin: 0 auto 20rpx;
|
||
|
|
width: 94%;
|
||
|
|
height: 100rpx;
|
||
|
|
line-height: 100rpx;
|
||
|
|
background-color: #fff;
|
||
|
|
box-shadow: 0px 9rpx 31rpx 9rpx rgba(0, 0, 0, 0.03);
|
||
|
|
border-radius: 20rpx;
|
||
|
|
position: relative;
|
||
|
|
|
||
|
|
.lefttext {
|
||
|
|
position: absolute;
|
||
|
|
top: 50%;
|
||
|
|
transform: translateY(-50%);
|
||
|
|
left: 3%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.righttext {
|
||
|
|
position: absolute;
|
||
|
|
top: 50%;
|
||
|
|
transform: translateY(-50%);
|
||
|
|
left: 18%;
|
||
|
|
height: 100rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
.lefttext,
|
||
|
|
.righttext {
|
||
|
|
::v-deep .uni-input-input {
|
||
|
|
font-size: 34rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
::v-deep .uni-input-wrapper {
|
||
|
|
height: 100rpx;
|
||
|
|
line-height: 100rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
::v-deep .uni-input-placeholder {
|
||
|
|
line-height: 100rpx;
|
||
|
|
font-size: 34rpx;
|
||
|
|
font-weight: 400;
|
||
|
|
color: #C3C1C1;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.obtaincode {
|
||
|
|
text-align: center;
|
||
|
|
font-size: 36rpx;
|
||
|
|
color: #4C7BC9;
|
||
|
|
line-height: 100rpx;
|
||
|
|
position: absolute;
|
||
|
|
right: 5%;
|
||
|
|
top: 0%;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.loginbtn {
|
||
|
|
width: 80%;
|
||
|
|
height: 100rpx;
|
||
|
|
text-align: center;
|
||
|
|
line-height: 100rpx;
|
||
|
|
background: #4C7BC9;
|
||
|
|
border-radius: 51rpx;
|
||
|
|
font-size: 41rpx;
|
||
|
|
color: #FFFFFF;
|
||
|
|
position: absolute;
|
||
|
|
top: 40%;
|
||
|
|
left: 10%;
|
||
|
|
}
|
||
|
|
}
|