main.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. .content {
  2. display: flex;
  3. flex-direction: column;
  4. justify-content: center;
  5. /* margin-top: 128rpx; */
  6. }
  7. /* 头部 logo */
  8. .header {
  9. margin-top: 128rpx;
  10. margin-bottom: 72rpx;
  11. margin-left: auto;
  12. margin-right: auto;
  13. }
  14. .header image {
  15. width: 404rpx;
  16. height: 156rpx;
  17. }
  18. /* 主体 */
  19. .main {
  20. display: flex;
  21. flex-direction: column;
  22. padding-left: 70rpx;
  23. padding-right: 70rpx;
  24. }
  25. .tips {
  26. color: #999999;
  27. font-size: 28rpx;
  28. margin-top: 64rpx;
  29. margin-left: 48rpx;
  30. }
  31. /* 登录按钮 */
  32. .wbutton {
  33. margin-top: 20rpx;
  34. }
  35. /* 其他登录方式 */
  36. .other_login {
  37. display: flex;
  38. flex-direction: row;
  39. justify-content: center;
  40. align-items: center;
  41. margin-top: 256rpx;
  42. text-align: center;
  43. }
  44. .login_icon {
  45. border: none;
  46. font-size: 64rpx;
  47. margin: 0 64rpx 0 64rpx;
  48. color: rgba(0, 0, 0, 0.7)
  49. }
  50. .wechat_color {
  51. color: #83DC42;
  52. }
  53. .weibo_color {
  54. color: #F9221D;
  55. }
  56. .github_color {
  57. color: #24292E;
  58. }
  59. /* 底部 */
  60. .footer {
  61. display: flex;
  62. flex-direction: row;
  63. justify-content: center;
  64. align-items: center;
  65. font-size: 28rpx;
  66. margin-top: 64rpx;
  67. color: rgba(0, 0, 0, 0.7);
  68. text-align: center;
  69. height: 40rpx;
  70. line-height: 40rpx;
  71. }
  72. .footer text {
  73. font-size: 24rpx;
  74. }