diff --git a/uni_modules/uni-login-page/common/loginPage.css b/uni_modules/uni-login-page/common/loginPage.css new file mode 100644 index 0000000000000000000000000000000000000000..a01b6b45269f00b6cdaffce89efa2cab3c18a457 --- /dev/null +++ b/uni_modules/uni-login-page/common/loginPage.css @@ -0,0 +1,123 @@ +/* #ifndef APP-NVUE */ +page { + display: flex; + flex-direction: column; + flex: 1; + height: 100%; +} + +/* #endif */ +.wrap { + /* #ifndef APP-NVUE */ + display: flex; + /* #endif */ + flex-direction: column; + flex: 1; + width: 750rpx; + background-color: #fff; +} + +.wrap-content { + /* #ifndef APP-NVUE */ + display: flex; + /* #endif */ + flex: 1; + flex-direction: column; + justify-content: flex-start; + align-items: center; +} + +.content { + /* #ifndef APP-NVUE */ + display: flex; + /* #endif */ + width: 630rpx; + flex-direction: column; +} + +.content-top-title { + font-size: 32rpx; + font-weight: 600; + padding-top: 50rpx; +} + +.hidden, +page { + background-color: transparent; +} + +.login-iknow { + padding-top: 24rpx; + padding-bottom: 48rpx; +} + +.phone-input-box { + height: 85rpx; + background-color: #f9f9f9; + border-radius: 6rpx; + flex-direction: row; + flex-wrap: nowrap; + align-items: center; + justify-content: center; +} + +.phone-area { + padding: 0 20rpx; + font-size: 30rpx; +} + +.phone-input { + flex: 1; + border-left-width: 1px; + border-left-color: #d7d9d8; + padding: 0 20rpx; + font-size: 30rpx; +} + +.tip-text { + padding-top: 20rpx; + padding-bottom: 36rpx; + color: #8a8f8b; + font-size: 26rpx; +} + +.send-btn-box { + height: 85rpx; + background-color: #d8d8da; + margin-bottom: 50rpx; + /* #ifndef APP-NVUE */ + display: flex; + /* #endif */ + flex-direction: column; + width: 630rpx; + justify-content: center; + align-items: center; + border-radius: 6rpx; +} + +.send-btn-text { + color: #fff; +} + +.send-btn-active { + background-color: #007aff; +} + +.auth-box { + width: 630rpx; + /* #ifndef APP-NVUE */ + display: flex; + /* #endif */ + flex-direction: row; + align-items: center; + justify-content: space-between; +} + +.login-text { + color: #1c436e; + font-size: 26rpx; +} + +.hover { + opacity: 0.8; +} diff --git a/uni_modules/uni-login-page/components/login-action-sheet/login-action-sheet.vue b/uni_modules/uni-login-page/components/login-action-sheet/login-action-sheet.vue index 6e70bdc146d8e301a1ae451cb466a9aef82dd1c8..f73419734a3343f20af1ad8c3344ddecf3fa6062 100644 --- a/uni_modules/uni-login-page/components/login-action-sheet/login-action-sheet.vue +++ b/uni_modules/uni-login-page/components/login-action-sheet/login-action-sheet.vue @@ -1,14 +1,14 @@