index.scss 989 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. @import "..\\..\\app-let.scss";
  2. .Us {
  3. width: 100%;
  4. box-sizing: border-box;
  5. position: relative;
  6. .login {
  7. margin: 1em 0;
  8. background-color: $main-color-light;
  9. color: $color-FFF;
  10. }
  11. .user {
  12. position: absolute;
  13. top: 235px;
  14. left: 50%;
  15. transform: translateX(-50%);
  16. border-radius: 50%;
  17. padding: 0;
  18. width: 200px;
  19. height: 200px;
  20. .userImg {
  21. width: 200px;
  22. height: 200px;
  23. }
  24. }
  25. .main {
  26. padding: 0 35px;
  27. .us_cell {
  28. display: flex;
  29. font-size: $default-font-size;
  30. height: 2em;
  31. line-height: 2em;
  32. margin: 0 0 16px 0;
  33. &:last-child {
  34. margin-bottom: 0;
  35. }
  36. .right {
  37. flex-basis: 80px;
  38. text-align: right;
  39. }
  40. .left {
  41. flex: 1;
  42. .text {
  43. vertical-align: middle;
  44. margin-left: 5px;
  45. }
  46. }
  47. .img {
  48. width: 36px;
  49. height: 36px;
  50. vertical-align: middle;
  51. }
  52. }
  53. }
  54. }