login.wxss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /* pages/login/login.wxss */
  2. .page-login{
  3. padding-top:1rpx;
  4. }
  5. .page-login .logo{
  6. width:369rpx;
  7. height:273rpx;
  8. margin: 100rpx auto;
  9. }
  10. .page-login .btn-box{
  11. display: block;
  12. width: 400rpx;
  13. margin: 0 auto;
  14. }
  15. .page-login .btn-box .login-btn{
  16. margin-bottom: 30rpx;
  17. }
  18. .page-login .login-btn{
  19. display: block;
  20. height:100rpx;
  21. line-height: 100rpx;
  22. background:rgba(0,183,148,1);
  23. border: 1rpx solid rgba(0,183,148,1);
  24. text-align: center;
  25. color: #fff;
  26. font-size: 36rpx;
  27. }
  28. .page-login .login-btn{
  29. display: block;
  30. height:100rpx;
  31. line-height: 100rpx;
  32. background:rgba(0,183,148,1);
  33. border: 1rpx solid rgba(0,183,148,1);
  34. text-align: center;
  35. color: #fff;
  36. font-size: 36rpx;
  37. padding: 0;
  38. border-radius: 0;
  39. }
  40. .page-login .cancel-btn{
  41. height:100rpx;
  42. line-height: 100rpx;
  43. text-align: center;
  44. color: #2B3039;
  45. font-size: 36rpx;
  46. padding: 0;
  47. border:1rpx solid rgba(43,48,57,1);
  48. border-radius: 0;
  49. }
  50. .pop-phone{
  51. position: fixed;
  52. left: 0;
  53. top:0;
  54. right: 0;
  55. bottom:0;
  56. z-index: 2;
  57. background:rgba(65,65,65,0.89);
  58. display: flex;
  59. align-items: center;
  60. justify-content: center;
  61. }
  62. .pop-phone .pop-inner{
  63. width:550rpx;
  64. height:605rpx;
  65. background:rgba(255,255,255,1);
  66. border-radius:20rpx;
  67. }
  68. .pop-phone .pop-inner .pop-header{
  69. color: #2B3039;
  70. font-size: 36rpx;
  71. text-align: center;
  72. height: 120rpx;
  73. line-height: 120rpx;
  74. border-bottom: 1px solid rgba(214,215,220,1);
  75. }
  76. .pop-phone .pop-content{
  77. height: 356rpx;
  78. padding: 0 50rpx;
  79. }
  80. .pop-phone .pop-content .text-box{
  81. padding-top: 40rpx;
  82. padding-bottom: 56rpx;
  83. }
  84. .pop-phone .pop-content .text-box .icon{
  85. width:95rpx;
  86. height:95rpx;
  87. display: block;
  88. margin: 0 auto 20rpx auto;
  89. }
  90. .pop-phone .pop-content .text-box .text{
  91. text-align: center;
  92. font-size: 36rpx;
  93. color: #2B3039;
  94. }
  95. .pop-phone .pop-content .info{
  96. font-size:30rpx;
  97. font-family:Source Han Sans CN;
  98. color:rgba(153,153,153,1);
  99. border-top:1rpx solid #D6D7DC;
  100. text-align: center;
  101. height: 100rpx;
  102. line-height:100rpx;
  103. }
  104. .pop-phone .pop-footer{
  105. display: flex;
  106. height: 120rpx;
  107. line-height: 120rpx;
  108. border-top: 1px solid rgba(214,215,220,1);
  109. }
  110. .pop-phone .pop-footer .btn{
  111. flex: 1;
  112. height: 120rpx;
  113. line-height: 120rpx;
  114. text-align: center;
  115. border: 0;
  116. padding: 0;
  117. color: #010101;
  118. font-size: 36rpx;
  119. }
  120. .pop-phone .pop-footer .btn.sure{
  121. color: #13A400;
  122. }