49 lines
980 B
Plaintext
49 lines
980 B
Plaintext
/** index.wxss **/
|
|
@import "../../../../config/styles/mp/index.less";
|
|
@import "../../../../config/styles/mp/mixins.less";
|
|
|
|
.page-body {
|
|
height: 100vh;
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
background-color: @oak-bg-color-container;
|
|
.safe-area-inset-bottom();
|
|
}
|
|
|
|
.inputItem {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
padding: 10rpx;
|
|
border: 1rpx solid @oak-text-color-placeholder;
|
|
border-radius: 16rpx;
|
|
margin-bottom: 28rpx;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.my-input {
|
|
padding-right: 0rpx !important;
|
|
padding-left: 0rpx !important;
|
|
height: 56rpx !important;
|
|
line-height: 56rpx !important;
|
|
}
|
|
|
|
.captcha {
|
|
border: none !important;
|
|
}
|
|
|
|
.methods {
|
|
width: 100%;
|
|
padding: 0rpx 8rpx;
|
|
font-size: 28rpx;
|
|
margin-top: 28rpx;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
} |