login-pannel.wxss 987 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .login-pannel-w {
  2. position: fixed;
  3. top: 0;
  4. left: 0;
  5. width: 100vw;
  6. height: 100vh;
  7. z-index: 9999;
  8. }
  9. .mask {
  10. width: 100vw;
  11. height: 100vh;
  12. background: rgba(0,0,0,0.3);
  13. position: fixed;
  14. top: 0;
  15. left: 0;
  16. z-index: 9999;
  17. }
  18. .login-pannel {
  19. font-size: 30rpx;
  20. color: #111;
  21. border-radius: 16rpx 16rpx 0rpx 0rpx;
  22. background: #fff;
  23. position: fixed;
  24. bottom: 0;
  25. left: 0;
  26. width: 100vw;
  27. padding: 52rpx 36rpx 100rpx;
  28. z-index: 10000;
  29. box-sizing: border-box;
  30. transform: translateY(315px);
  31. }
  32. .login-logo {
  33. width: 181.45rpx;
  34. height: 120rpx;
  35. margin: 0 auto;
  36. }
  37. .logo-bottom-tips {
  38. padding: 28rpx 0 36rpx;
  39. border-bottom: 1px solid rgba(0,0,0,0.1);
  40. margin-bottom: 30rpx;
  41. font-size: 26rpx;
  42. text-align: center;
  43. }
  44. .tips {
  45. font-size: 26rpx;
  46. color: #79868F;
  47. margin-bottom: 86rpx;
  48. text-align: center;
  49. }
  50. .login-btn {
  51. border-color: #1FE4DC;
  52. background: #1FE4DC;
  53. color: #fff;
  54. font-size: 30rpx;
  55. line-height: 80rpx;
  56. border-radius: 8rpx;
  57. }