login.scss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. .p-login,
  2. .p-register {
  3. background: $primary-color;
  4. overflow: hidden;
  5. .logo {
  6. display: block;
  7. margin: 120px auto 60px;
  8. width: 300px;
  9. height: 100px;
  10. background: #efefef;
  11. }
  12. .container {
  13. margin: auto;
  14. padding: 48px 36px 54px;
  15. width: 670px;
  16. border-radius: 8px;
  17. background: #fff;
  18. }
  19. .ptc-form {
  20. .title {
  21. line-height: 44px;
  22. font-size: 32px;
  23. font-weight: 600;
  24. color: #333;
  25. }
  26. .tip {
  27. font-size: 32px;
  28. color: #bebebe;
  29. text-align: center;
  30. }
  31. }
  32. .alternative {
  33. margin-top: 60px;
  34. text-align: center;
  35. font-size: 0;
  36. }
  37. .delimiter {
  38. position: relative;
  39. display: inline-block;
  40. padding: 0 20px;
  41. font-size: 32px;
  42. color: #bebebe;
  43. &::before,
  44. &::after {
  45. content: '';
  46. position: absolute;
  47. top: 50%;
  48. width: 170px;
  49. height: 2px;
  50. background: #e5e5e5;
  51. }
  52. &::before {
  53. left: 0;
  54. transform: translate(-100%, -50%);
  55. }
  56. &::after {
  57. right: 0;
  58. transform: translate(100%, -50%);
  59. }
  60. }
  61. .list {
  62. margin: 40px 0;
  63. display: inline-flex;
  64. }
  65. .item {
  66. width: 80px;
  67. height: 80px;
  68. background: #efefef;
  69. + .item {
  70. margin-left: 60px;
  71. }
  72. }
  73. .policy {
  74. font-size: 28px;
  75. line-height: 40px;
  76. color: #bebebe;
  77. }
  78. }
  79. .p-register {
  80. .policy {
  81. margin-top: 128px;
  82. padding-top: 60px;
  83. border-top: 2px solid #E5E5E5;
  84. }
  85. }