index.scss 1.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. .components.NeedLogin {
  2. width: 100%;
  3. min-height: 100vh;
  4. position: relative;
  5. overflow: hidden;
  6. >.Logo {
  7. width: 128px;
  8. height: 128px;
  9. position: relative;
  10. overflow: hidden;
  11. margin: 109px auto 0;
  12. >image {
  13. width: 100%;
  14. height: 100%;
  15. }
  16. }
  17. >.LoginBtn {
  18. padding: 0 42px;
  19. position: relative;
  20. overflow: hidden;
  21. margin-top: 195px;
  22. >text {
  23. display: block;
  24. text-align: center;
  25. font-size: 32px;
  26. font-weight: bold;
  27. color: #fff;
  28. line-height: 92px;
  29. border-radius: 92px;
  30. background: #193C83;
  31. letter-spacing: 6px;
  32. }
  33. }
  34. >.Bottom {
  35. padding: 0 30px 40px;
  36. position: relative;
  37. overflow: hidden;
  38. >view {
  39. padding: 30px;
  40. position: relative;
  41. overflow: hidden;
  42. background: #F8F8F8;
  43. >view {
  44. >text {
  45. font-size: 20px;
  46. color: #999;
  47. line-height: 30px;
  48. &.active {
  49. color: #193C83;
  50. }
  51. }
  52. }
  53. }
  54. }
  55. }