123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- /* pages/login/login.wxss */
- .login_background{
- width: 100%;
- min-height: 100vh;
- position: absolute;
- top: 0px;
- left: 0px;
- z-index: 1px;
- }
- .login{
- width: 100%;
- min-height: 100vh;
-
- z-index: 9;
- position: absolute;
- }
- .login_logo{
- width: 100%;
- height: 500rpx;
- text-align: center;
- }
- .login_logo image{
- width:460rpx;
- height:85rpx;
- margin:120rpx 0rpx 0rpx 0rpx;
- }
- .login_logo text{
- font-size:26rpx;
- letter-spacing:3rpx;
- color:#63576c;
- }
- .input{
- width: 70%;
- margin: 0 auto;
-
- }
- .input_1{
- margin:30rpx 0rpx;
- position:relative;
- }
- .input_1 image{
- width:45rpx;
- height:45rpx;
- padding: 10rpx 20rpx 10rpx 10rpx;
- position: relative;
- top: 12rpx;
- left: 20rpx;
- z-index:9;
- }
- .input_1 input{
- width:85%;
- display:block;
- float:right;
- background:#fff;
- border-radius:50rpx;
- height:80rpx;
- line-height:80rpx;
- padding:0rpx 0rpx 0rpx 80rpx;
- position: absolute;
- top: 0rpx;
- border: 0.5rpx solid #867d91;
- background: #F4F4F7;
- font-size: 34rpx;
- }
- .input button{
- background: linear-gradient(to right, #5a4e63 , #867d91);
- border: none;
- color: #fff;
- border-radius: 50rpx;
- position: relative;
- top: 30rpx;
- height:80rpx;
- line-height: 80rpx;
- }
|