| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- /* pages/login/login.wxss */
- .page-login{
- padding-top:1rpx;
- }
- .page-login .logo{
- width:369rpx;
- height:273rpx;
- margin: 100rpx auto;
- }
- .page-login .btn-box{
- display: block;
- width: 400rpx;
- margin: 0 auto;
- }
- .page-login .btn-box .login-btn{
- margin-bottom: 30rpx;
- }
- .page-login .login-btn{
- display: block;
- height:100rpx;
- line-height: 100rpx;
- background:rgba(0,183,148,1);
- border: 1rpx solid rgba(0,183,148,1);
- text-align: center;
- color: #fff;
- font-size: 36rpx;
- }
- .page-login .login-btn{
- display: block;
- height:100rpx;
- line-height: 100rpx;
- background:rgba(0,183,148,1);
- border: 1rpx solid rgba(0,183,148,1);
- text-align: center;
- color: #fff;
- font-size: 36rpx;
- padding: 0;
- border-radius: 0;
- }
- .page-login .cancel-btn{
- height:100rpx;
- line-height: 100rpx;
- text-align: center;
- color: #2B3039;
- font-size: 36rpx;
- padding: 0;
- border:1rpx solid rgba(43,48,57,1);
- border-radius: 0;
- }
- .pop-phone{
- position: fixed;
- left: 0;
- top:0;
- right: 0;
- bottom:0;
- z-index: 2;
- background:rgba(65,65,65,0.89);
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .pop-phone .pop-inner{
- width:550rpx;
- height:605rpx;
- background:rgba(255,255,255,1);
- border-radius:20rpx;
- }
- .pop-phone .pop-inner .pop-header{
- color: #2B3039;
- font-size: 36rpx;
- text-align: center;
- height: 120rpx;
- line-height: 120rpx;
- border-bottom: 1px solid rgba(214,215,220,1);
- }
- .pop-phone .pop-content{
- height: 356rpx;
- padding: 0 50rpx;
- }
- .pop-phone .pop-content .text-box{
- padding-top: 40rpx;
- padding-bottom: 56rpx;
- }
- .pop-phone .pop-content .text-box .icon{
- width:95rpx;
- height:95rpx;
- display: block;
- margin: 0 auto 20rpx auto;
- }
- .pop-phone .pop-content .text-box .text{
- text-align: center;
- font-size: 36rpx;
- color: #2B3039;
- }
- .pop-phone .pop-content .info{
- font-size:30rpx;
- font-family:Source Han Sans CN;
- color:rgba(153,153,153,1);
- border-top:1rpx solid #D6D7DC;
- text-align: center;
- height: 100rpx;
- line-height:100rpx;
- }
- .pop-phone .pop-footer{
- display: flex;
- height: 120rpx;
- line-height: 120rpx;
- border-top: 1px solid rgba(214,215,220,1);
- }
- .pop-phone .pop-footer .btn{
- flex: 1;
- height: 120rpx;
- line-height: 120rpx;
- text-align: center;
- border: 0;
- padding: 0;
- color: #010101;
- font-size: 36rpx;
- }
- .pop-phone .pop-footer .btn.sure{
- color: #13A400;
- }
|