main.css 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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: 161rpx;
  11. box-shadow: 0rpx 0rpx 60rpx 0rpx rgba(0, 0, 0, 0.1);
  12. border-radius: 50%;
  13. background-color: #000000;
  14. margin-top: 72rpx;
  15. margin-bottom: 72rpx;
  16. margin-left: auto;
  17. margin-right: auto;
  18. }
  19. .header image {
  20. width: 161rpx;
  21. height: 161rpx;
  22. border-radius: 50%;
  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: 100rpx;
  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. }