main.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. margin-top: 128rpx;
  14. margin-bottom: 72rpx;
  15. margin-left: auto;
  16. margin-right: auto;
  17. }
  18. .header image{
  19. width:161rpx;
  20. height:161rpx;
  21. border-radius:50%;
  22. }
  23. /* 主体 */
  24. .main {
  25. display: flex;
  26. flex-direction: column;
  27. padding-left: 70rpx;
  28. padding-right: 70rpx;
  29. }
  30. .tips {
  31. color: #999999;
  32. font-size: 28rpx;
  33. margin-top: 64rpx;
  34. margin-left: 48rpx;
  35. }
  36. /* 登录按钮 */
  37. .wbutton{
  38. margin-top: 96rpx;
  39. }
  40. /* 其他登录方式 */
  41. .other_login{
  42. display: flex;
  43. flex-direction: row;
  44. justify-content: center;
  45. align-items: center;
  46. margin-top: 256rpx;
  47. text-align: center;
  48. }
  49. .login_icon{
  50. border: none;
  51. font-size: 64rpx;
  52. margin: 0 64rpx 0 64rpx;
  53. color: rgba(0,0,0,0.7)
  54. }
  55. .wechat_color{
  56. color: #83DC42;
  57. }
  58. .weibo_color{
  59. color: #F9221D;
  60. }
  61. .github_color{
  62. color: #24292E;
  63. }
  64. /* 底部 */
  65. .footer{
  66. display: flex;
  67. flex-direction: row;
  68. justify-content: center;
  69. align-items: center;
  70. font-size: 28rpx;
  71. margin-top: 64rpx;
  72. color: rgba(0,0,0,0.7);
  73. text-align: center;
  74. height: 40rpx;
  75. line-height: 40rpx;
  76. }
  77. .footer text{
  78. font-size: 24rpx;
  79. margin-left: 15rpx;
  80. margin-right: 15rpx;
  81. }