app.wxss 828 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. view,navigator{
  2. box-sizing: border-box;
  3. font-size: 28rpx;
  4. color: #333;
  5. }
  6. .login{
  7. position: fixed;
  8. width: 100%;
  9. height: 100vh;
  10. z-index: 10;
  11. background: rgba(0, 0, 0, .5);
  12. left: 0;
  13. top: 0;
  14. }
  15. .login>view{
  16. width: 80%;
  17. background: #fff;
  18. border-radius: 4px;
  19. text-align: center;
  20. position: absolute;
  21. top: 0;
  22. bottom: 0;
  23. left: 0;
  24. right: 0;
  25. margin: auto;
  26. height: 150px;
  27. padding-top: 20px;
  28. }
  29. .login .xx{
  30. display: block;
  31. padding: 0px 20px 20px;
  32. }
  33. .login button{
  34. width: 100% !important;
  35. height: 48px;
  36. color: #fff;
  37. background-color: #358BFF;
  38. border-top-left-radius: 0;
  39. border-top-right-radius: 0;
  40. padding: 0;
  41. line-height: 48px;
  42. }
  43. image{
  44. max-height: 100%;
  45. }
  46. .login image{
  47. width: 100rpx;
  48. height: 100rpx;
  49. }
  50. .slogen{
  51. position: relative;
  52. top: -20px;
  53. padding-left: 5px;
  54. }