userSettingShow.scss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. .UserSettingShow {
  2. width: 700px !important;
  3. min-width: 700px !important;
  4. min-height: 790px;
  5. background: rgba(255, 255, 255, 1);
  6. .titleArea {
  7. width: 100%;
  8. height: 28px;
  9. opacity: 1;
  10. font-size: 20px;
  11. font-family: PingFangSC, PingFangSC-Medium;
  12. font-weight: 500;
  13. text-align: center;
  14. color: #191c2c;
  15. line-height: 28px;
  16. margin: 45px 0;
  17. }
  18. .bodyArea {
  19. width: 700px;
  20. margin: 0 auto;
  21. .selectList {
  22. padding: 0 30px;
  23. .cell {
  24. position: relative;
  25. height: 70px;
  26. display: flex;
  27. flex-direction: column;
  28. justify-content: center;
  29. border-bottom: 1px solid #e9ecee;
  30. // box-shadow: 0px 0px 0px 0px #e9ecee inset;
  31. .cell-item {
  32. display: flex;
  33. justify-content: space-between;
  34. align-items: center;
  35. .left {
  36. display: flex;
  37. flex-direction: column;
  38. justify-content: center;
  39. .name {
  40. height: 20px;
  41. font-size: 14px;
  42. font-family: PingFangSC, PingFangSC-Medium;
  43. font-weight: 500;
  44. color: #191c2c;
  45. line-height: 20px;
  46. }
  47. .tips {
  48. height: 17px;
  49. font-size: 12px;
  50. font-family: PingFangSC, PingFangSC-Regular;
  51. font-weight: 400;
  52. color: #929aa4;
  53. line-height: 17px;
  54. }
  55. }
  56. .right {
  57. .el-radio {
  58. line-height: 1.41;
  59. }
  60. }
  61. }
  62. .cell-extend {
  63. position: relative;
  64. .password-extend {
  65. margin-top: 13px;
  66. display: flex;
  67. align-items: center;
  68. .password-content {
  69. width: 125px;
  70. height: 37px;
  71. line-height: 37px;
  72. background: #f2f2f2;
  73. border-radius: 4px;
  74. opacity: 1;
  75. font-size: 18px;
  76. font-family: SFProDisplay, SFProDisplay-Medium;
  77. font-weight: 500;
  78. text-align: center;
  79. color: #929aa4;
  80. letter-spacing: 4px;
  81. }
  82. .change-btn {
  83. margin-left: 12px;
  84. height: 21px;
  85. opacity: 1;
  86. font-size: 15px;
  87. font-family: PingFangSC, PingFangSC-Medium;
  88. font-weight: 500;
  89. color: #308eff;
  90. line-height: 21px;
  91. cursor: pointer;
  92. }
  93. }
  94. }
  95. }
  96. .cell-password {
  97. height: 120px;
  98. }
  99. }
  100. .submitButton {
  101. margin: 24px 0;
  102. display: flex;
  103. align-items: center;
  104. height: 55px;
  105. justify-content: center;
  106. .right {
  107. margin-left: 17px;
  108. width: 153px;
  109. height: 46px;
  110. background: rgba(48, 142, 255, 1);
  111. box-shadow: 0px 2px 6px 0px rgba(48, 142, 255, 0.3);
  112. border-radius: 2px;
  113. display: flex;
  114. justify-content: center;
  115. align-items: center;
  116. cursor: pointer;
  117. p {
  118. height: 20px;
  119. font-size: 14px;
  120. font-weight: 500;
  121. color: rgba(255, 255, 255, 1);
  122. line-height: 20px;
  123. }
  124. }
  125. }
  126. }
  127. }