userSettingShow.scss 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. .UserSettingShow {
  2. width: 1000px !important;
  3. min-height: 790px;
  4. background: rgba(255, 255, 255, 1);
  5. .titleArea {
  6. width: calc(100% - 40px);
  7. height: 90px;
  8. margin: 0 20px;
  9. display: flex;
  10. justify-content: center;
  11. align-items: center;
  12. border-bottom: 2px solid rgba(0, 0, 0, 0.06);
  13. p {
  14. font-size: 26px;
  15. font-weight: 500;
  16. color: rgba(29, 42, 58, 1);
  17. line-height: 37px;
  18. height: 37px;
  19. }
  20. }
  21. .bodyArea {
  22. width: 1000px;
  23. margin: 0 auto;
  24. .selectList {
  25. padding-top: 60px;
  26. .cell {
  27. display: flex;
  28. justify-content: center;
  29. align-items: center;
  30. height: 62px;
  31. .left {
  32. width: 420px;
  33. text-align: right;
  34. }
  35. .right {
  36. padding-left: 8px;
  37. width: 580px;
  38. .el-radio {
  39. line-height: 1.41;
  40. }
  41. .tips {
  42. margin-left: 30px;
  43. height:17px;
  44. font-size:12px;
  45. font-weight:400;
  46. color:rgba(153,153,153,1);
  47. line-height:17px;
  48. }
  49. }
  50. }
  51. }
  52. .submitButton {
  53. margin-top: 50px;
  54. display: flex;
  55. align-items: center;
  56. height: 55px;
  57. justify-content: center;
  58. .right {
  59. margin-left: 17px;
  60. width: 153px;
  61. height: 46px;
  62. background: rgba(48, 142, 255, 1);
  63. box-shadow: 0px 2px 6px 0px rgba(48, 142, 255, 0.3);
  64. border-radius: 2px;
  65. display: flex;
  66. justify-content: center;
  67. align-items: center;
  68. cursor: pointer;
  69. p {
  70. height: 20px;
  71. font-size: 14px;
  72. font-weight: 500;
  73. color: rgba(255, 255, 255, 1);
  74. line-height: 20px;
  75. }
  76. }
  77. }
  78. }
  79. }