web.scss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. .group {
  2. padding: 30px;
  3. box-sizing: border-box;
  4. width: 750px;
  5. max-height: calc(100vh - 100px);
  6. overflow-y: auto;
  7. border-radius: 10px;
  8. .group-box {
  9. .group-box-header {
  10. display: flex;
  11. flex-direction: row-reverse;
  12. justify-content: space-between;
  13. .group-box-header-title {
  14. font-size: 18px;
  15. line-height: 30px;
  16. }
  17. }
  18. }
  19. &-list {
  20. &-item {
  21. display: flex;
  22. padding: 10px 0;
  23. &-label {
  24. width: 84px;
  25. }
  26. }
  27. input {
  28. flex: 1;
  29. box-sizing: border-box;
  30. padding: 6px 10px;
  31. border-radius: 2px;
  32. font-size: 14px;
  33. line-height: 20px;
  34. }
  35. }
  36. }
  37. .select {
  38. flex: 1;
  39. &-item {
  40. padding: 12px 20px !important;
  41. border-radius: 2px;
  42. margin-bottom: 20px !important;
  43. &-header {
  44. display: flex;
  45. justify-content: space-between;
  46. .left {
  47. display: flex;
  48. align-items: center;
  49. font-size: 14px;
  50. .icon {
  51. margin-right: 12px;
  52. }
  53. }
  54. .icon-selected {
  55. position: relative;
  56. left: 12px;
  57. top: -4px;
  58. }
  59. }
  60. &-type {
  61. text-align: left;
  62. }
  63. &-detail {
  64. padding-top: 6px;
  65. font-size: 14px;
  66. }
  67. .link {
  68. display: inline-block;
  69. }
  70. }
  71. }
  72. .group-profile-footer {
  73. padding-top: 10px;
  74. display: flex;
  75. justify-content: flex-end;
  76. }
  77. .btn-default {
  78. width: 82px;
  79. height: 32px;
  80. border-radius: 4px;
  81. font-size: 14px;
  82. }
  83. .btn-submit {
  84. width: 82px;
  85. height: 32px;
  86. border-radius: 4px;
  87. margin-left: 10px;
  88. font-size: 14px;
  89. }