| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- /* pages/login/login.wxss */
- form {
- display: block;
- }
- .login {
- min-height: 100%;
- padding: 50rpx 24rpx 0 24rpx;
- box-sizing: border-box;
- position: relative;
- background: url(https://voms.cdn.bosind.com/mini/login_back.png) no-repeat;
- background-size: 100% auto;
- }
- .backImg {
- width: 100%;
- position: absolute;
- left: 0;
- top: 0;
- z-index: 0 !important;
- margin: 0 !important;
- padding: 0 !important;
- }
- .login>image {
- /* width: 182rpx; */
- height: 55rpx;
- margin-top: 50rpx;
- margin-left: 28rpx;
- margin-bottom: 70rpx;
- }
- .title {
- font-weight: 500;
- font-size: 44rpx;
- color: #000000;
- line-height: 1.5;
- margin-left: 28rpx;
- }
- .brief {
- font-weight: 400;
- font-size: 32rpx;
- color: #A2A2A2;
- line-height: 1.5;
- margin-left: 28rpx;
- }
- .form {
- padding: 52rpx;
- box-sizing: border-box;
- background-color: white;
- }
- .phone {
- display: inline-block;
- font-weight: 500;
- font-size: 32rpx;
- color: #0D0D0D;
- line-height: 1.5;
- border-bottom: 8rpx solid white;
- }
- .phone.active{
- border-bottom: 8rpx solid #F5971C;
- }
- .text {
- font-weight: 500;
- font-size: 24rpx;
- color: #424242;
- line-height: 40rpx;
- margin-top: 60rpx;
- }
- .input {
- width: 600rpx;
- height: 88rpx;
- display: flex;
- position: relative;
- }
- input {
- min-width: 376rpx;
- height: 100%;
- font-size: 28rpx;
- color: #0D0D0D;
- padding-left: 10rpx;
- border-radius: 6rpx;
- border: 1rpx solid rgba(28, 55, 90, 0.16);
- flex: 1;
- }
- .input button,
- .input image {
- width: 192rpx;
- height: 88rpx;
- background: #494949;
- border-radius: 6rpx;
- font-weight: 500;
- font-size: 24rpx !important;
- color: #FFFFFF;
- line-height: 88rpx;
- padding: 0;
- margin-left: 32rpx;
- }
- .submit {
- width: 600rpx;
- height: 112rpx;
- background: #00B1FE;
- border-radius: 8rpx 8rpx 8rpx 8rpx;
- font-weight: 600;
- font-size: 32rpx;
- color: #FFFFFF;
- padding: 0;
- line-height: 112rpx;
- margin-top: 100rpx;
- }
- .password {
- padding-right: 60rpx;
- }
- .eyes {
- /* width: 22rpx; */
- /* height: 16rpx; */
- width: 60rpx;
- height: 100%;
- text-align: center;
- font-size: 16rpx;
- padding-top: 36rpx;
- position: absolute;
- right: 0;
- z-index: 1000;
- color: #a8a8a8;
- box-sizing: border-box;
- }
- .xy-popup {
- display: flex;
- align-items: center;
- justify-self: center;
- justify-content: center;
- background: rgba(0, 0, 0, 0.2);
- }
|