智慧画屏客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
1.2 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. <script>
  2. export default {
  3. onLaunch: function() {
  4. console.log('App Launch')
  5. },
  6. onShow: function() {
  7. console.log('App Show')
  8. },
  9. onHide: function() {
  10. console.log('App Hide')
  11. }
  12. }
  13. </script>
  14. <style>
  15. /*每个页面公共css */
  16. @import '@/static/iconfont/iconfont.css';
  17. @import '@/common/animate.css';
  18. .main_container {
  19. width: 100%;
  20. height: 100vh;
  21. background: url(~@/static/images/bg.png) no-repeat left top;
  22. background-size: cover;
  23. }
  24. .login_bg {
  25. position: absolute;
  26. top: 50%;
  27. left: 50%;
  28. display: block;
  29. width: 530rpx;
  30. height: 648rpx;
  31. margin: -423rpx 0 0 -265rpx;
  32. background-color: #fcf4e8;
  33. border-radius: 30rpx 30rpx 0 0;
  34. box-shadow: 0 0 24rpx 2rpx rgba(0, 0, 0, 0.15);
  35. z-index: 9;
  36. }
  37. .login-bind {
  38. position: absolute;
  39. top: 50%;
  40. left: 50%;
  41. width: 625rpx;
  42. height: 764rpx;
  43. margin: -382rpx 0 0 -312rpx;
  44. background-color: #fff;
  45. border-radius: 30rpx;
  46. box-shadow: 0 0 24rpx 2rpx rgba(0, 0, 0, 0.15);
  47. z-index: 99;
  48. display: flex;
  49. flex-direction: column;
  50. align-items: center;
  51. justify-content: center;
  52. }
  53. .uni-login-btn {
  54. width: 520rpx;
  55. height: 86rpx;
  56. margin-top: 69.44rpx;
  57. font-size: 30.55rpx;
  58. line-height: 86rpx;
  59. background-color: #0096ff;
  60. border-radius: 86rpx;
  61. color: #fff;
  62. }
  63. </style>