_mpwxssoLogin.css 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. .login-box {
  2. height: 100%;
  3. display: flex;
  4. flex-direction: column;
  5. align-items: center;
  6. justify-content: center;
  7. padding: 32px;
  8. box-sizing: border-box;
  9. }
  10. .form {
  11. display: flex;
  12. flex-direction: column;
  13. width: 100%;
  14. }
  15. .login-mode {
  16. height: 42px;
  17. }
  18. .login-mode .mode-sp {
  19. margin: 0 10px;
  20. font-size: 1.2em;
  21. line-height: 46px;
  22. }
  23. .login-mode .mode-text {
  24. color: #999999;
  25. font-size: 1em;
  26. line-height: 42px;
  27. cursor: pointer;
  28. }
  29. .login-mode .mode-active {
  30. color: #333333;
  31. }
  32. .input {
  33. width: 100%;
  34. height: 50px;
  35. border-top: 0;
  36. border-left: 0;
  37. border-right: 0;
  38. border-bottom: 1px #EEEEEE solid;
  39. margin-top: 10px;
  40. font-size: 1em;
  41. }
  42. .input-code-box {
  43. width: 100%;
  44. height: 50px;
  45. margin-top: 10px;
  46. display: flex;
  47. flex-direction: row;
  48. }
  49. .input-code-box input {
  50. border: 0;
  51. border-bottom: 1px #EEEEEE solid;
  52. font-size: 1em;
  53. }
  54. .code-btn {
  55. width: 50%;
  56. height: 40px;
  57. line-height: 40px;
  58. line-height: 40px;
  59. background-color: #fb4747;
  60. color: white;
  61. font-size: 1em;
  62. border: 0;
  63. border-radius: 20px;
  64. }
  65. .code-btn-sending {
  66. width: 50%;
  67. height: 40px;
  68. line-height: 40px;
  69. line-height: 40px;
  70. background-color: #c8c8c8;
  71. color: white;
  72. font-size: 1em;
  73. border: 0;
  74. border-radius: 20px;
  75. }
  76. .login-btn {
  77. width: 100%;
  78. height: 40px;
  79. line-height: 40px;
  80. background-color: #fb4747;
  81. color: white;
  82. border: 0;
  83. border-radius: 20px;
  84. margin-top: 60px;
  85. text-align: center;
  86. font-size: 1.2em;
  87. }