pages.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /***** 这里放页面样式 *****/
  2. // 登录页
  3. .mobile-login-page {
  4. width: 100%;
  5. height: 100%;
  6. background: #FFF;
  7. text-align: center;
  8. position: absolute;
  9. overflow: auto;
  10. .login-top {
  11. height: 540rpx;
  12. background-size: cover;
  13. background-image: url("@/static/images/login/login-bj-sj.png");
  14. // logo
  15. }
  16. .login-logo {
  17. width: 266rpx;
  18. max-height: 100rpx;
  19. margin-top: 156rpx;
  20. }
  21. .login-text {
  22. display: block;
  23. font-size: 64rpx;
  24. color: #FFF;
  25. margin: 24rpx 0 0;
  26. font-weight: 700
  27. }
  28. // 登录区域
  29. .login-body {
  30. width: 100%;
  31. padding: 0 60px;
  32. box-sizing: border-box;
  33. margin: 140rpx auto 0;
  34. .input-container {
  35. display: flex;
  36. align-items: center;
  37. /* 垂直对齐 */
  38. position: relative;
  39. height: 100rpx;
  40. border-radius: 50rpx;
  41. background-color: #F7F7F7;
  42. padding: 0;
  43. margin-bottom: 40rpx;
  44. }
  45. .input-icon {
  46. margin-left: 20rpx;
  47. /* 图标和输入框之间的间距 */
  48. color: #999;
  49. }
  50. }
  51. // 输入框
  52. .login-btn {
  53. width: 100%;
  54. height: 100rpx;
  55. margin-top: 60rpx;
  56. font-size: 36rpx;
  57. letter-spacing: 7.2rpx;
  58. background: linear-gradient(0deg, #436aff 0%, #234ff7 100%);
  59. border-radius: 50rpx;
  60. border: 0;
  61. color: #F7F7F7;
  62. line-height: 100rpx;
  63. }
  64. .login-change {
  65. display: flex;
  66. justify-content: space-between;
  67. align-items: center;
  68. .checkbox-zhanghao {
  69. font-size: 24rpx;
  70. color: #565656;
  71. }
  72. }
  73. }
  74. .lli-develop-expect-page{
  75. display: flex;flex-direction: column;justify-content: space-between;align-items: center;
  76. background-color: blue;position: relative;height:$titleBar-tabBar-page;
  77. .page-content{
  78. background-color: #9ed5cf;width: 100%;text-align: center;display: block;
  79. margin-top: 44px;flex: 1;
  80. span{
  81. font-size: 24px;padding: 20px 0;display: block;font-weight: 900;color: #09539a;
  82. -webkit-text-stroke: 1rpx #fff; /* 文字描边(仅webkit内核浏览器支持) */
  83. text-stroke: 1rpx #fff; /* 未来可能的标准属性,目前支持有限 */
  84. text-shadow: 4px 4px 4px rgba(110, 229, 249, 0.5); /* 文字阴影 */
  85. }
  86. }
  87. .bottom-word{position: absolute;bottom: 0;margin-top: 0;}
  88. }