123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- page {
- height: 100%;
- }
- .container {
- height: 100%;
- display: flex;
- flex-direction: column;
- padding: 0;
- box-sizing: border-box;
- background-color: #f2f2f2
- }
- /*登录图片*/
- .login-icon {
- margin-top: 2rem;
- flex: none;
- }
- .login-img {
- width: 10rem;
- height: 10rem;
- }
- /*表单内容*/
- .login-form {
- margin-top: 2rem;
- flex: auto;
- height: 100%;
- }
- /* .inputView {
- background-color: #fff;
- line-height: 44px;
- } */
- .inputView:nth-child(1) {
- border-bottom: 1px solid #ccc;
- }
- /*输入框*/
- .nameImage,
- .keyImage {
- margin-left: 22px;
- width: 14px;
- height: 14px
- }
- /* .loginLab {
- margin: 15px 15px 15px 10px;
- color: #545454;
- font-size: 14px
- } */
- /* .inputText {
- flex: block;
- float: right;
- text-align: left;
- margin-right: 22px;
- margin-top: 11px;
- font-size: 14px
- } */
- /*按钮*/
- .loginBtnView {
- width: 100%;
- height: auto;
- background-color: #f2f2f2;
- margin-top: 0px;
- margin-bottom: 0px;
- padding-bottom: 0px;
- }
- .loginBtn {
- width: 100%;
- margin-top: 1rem;
- }
- button {
- width: unset !important;
- }
- .registerBtn {
- width: 100%;
- margin-top: 5px;
- }
|