main.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. .content {
  2. display: flex;
  3. flex-direction: column;
  4. justify-content: center;
  5. margin-top: 128rpx;
  6. }
  7. /* 头部 logo */
  8. .header {
  9. width: 161rpx;
  10. height: 171rpx;
  11. box-shadow: 0rpx 0rpx 60rpx 0rpx rgba(0, 0, 0, 0.1);
  12. border-radius: 50%;
  13. background-color: #f4f4f4;
  14. margin-top: 328rpx;
  15. margin-bottom: 72rpx;
  16. margin-left: auto;
  17. margin-right: auto;
  18. }
  19. .header image {
  20. width: 168rpx;
  21. height: 168rpx;
  22. border-radius: 10%;
  23. }
  24. /* 主体 */
  25. .main {
  26. display: flex;
  27. flex-direction: column;
  28. padding-left: 70rpx;
  29. padding-right: 70rpx;
  30. }
  31. .tips {
  32. color: #999999;
  33. font-size: 28rpx;
  34. margin-top: 64rpx;
  35. margin-left: 48rpx;
  36. }
  37. /* 登录按钮 */
  38. .wbutton {
  39. margin-top: 96rpx;
  40. }
  41. /* 其他登录方式 */
  42. .other_login {
  43. display: flex;
  44. flex-direction: row;
  45. justify-content: center;
  46. align-items: center;
  47. margin-top: 256rpx;
  48. text-align: center;
  49. }
  50. .login_icon {
  51. border: none;
  52. font-size: 64rpx;
  53. margin: 0 64rpx 0 64rpx;
  54. color: rgba(0, 0, 0, 0.7)
  55. }
  56. .wechat_color {
  57. color: #83DC42;
  58. }
  59. .weibo_color {
  60. color: #F9221D;
  61. }
  62. .github_color {
  63. color: #24292E;
  64. }
  65. /* 底部 */
  66. .footer {
  67. display: flex;
  68. flex-direction: row;
  69. justify-content: center;
  70. align-items: center;
  71. font-size: 28rpx;
  72. margin-top: 64rpx;
  73. color: rgba(0, 0, 0, 0.7);
  74. text-align: center;
  75. height: 40rpx;
  76. line-height: 40rpx;
  77. }
  78. .footer text {
  79. font-size: 24rpx;
  80. margin-left: 15rpx;
  81. margin-right: 15rpx;
  82. }
  83. .uni-fixed-bottom {
  84. width: 100%;
  85. bottom: 0upx;
  86. padding: 0upx;
  87. position: fixed;
  88. background: #FFFFFF;
  89. transform: translateZ(0);
  90. bottom: env(safe-area-inset-bottom);
  91. bottom: constant(safe-area-inset-bottom);
  92. }