| 123456789101112131415161718192021222324252627 |
- /* 登陆页面总样式 */
- .login {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- /* 头像样式 */
- .header {
- margin: 130rpx;
- }
- /* 输入框样式 */
- .van-field__control {
- border: 1px solid #ccc !important;
- width: 600rpx !important;
- height: 100rpx !important;
- border-radius: 5px;
- padding-left: 20rpx !important;
- }
- /* 登录按钮样式 */
- .van-button {
- margin-top: 280rpx;
- width: 600rpx;
- border-radius: 5px !important;
- }
|