web.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. .avatar {
  2. width: 36px;
  3. height: 36px;
  4. border-radius: 5px;
  5. font-size: 12px;
  6. display: flex;
  7. justify-content: center;
  8. align-items: center;
  9. }
  10. .main {
  11. box-sizing: border-box;
  12. width: 620px;
  13. height: 394px;
  14. display: flex;
  15. border-radius: 8px;
  16. padding: 20px 0;
  17. .transfer-header {
  18. font-size: 14px;
  19. line-height: 14px;
  20. padding-bottom: 20px;
  21. input {
  22. box-sizing: border-box;
  23. width: 100%;
  24. border-radius: 30px;
  25. font-size: 10px;
  26. line-height: 14px;
  27. padding: 9px 12px;
  28. }
  29. }
  30. .transfer-list {
  31. flex: 1;
  32. display: flex;
  33. flex-direction: column;
  34. .transfer-text {
  35. font-size: 10px;
  36. line-height: 14px;
  37. }
  38. &-item {
  39. padding: 6px 0;
  40. display: flex;
  41. align-items: center;
  42. font-size: 14px;
  43. text-align: left;
  44. &-content {
  45. flex: 1;
  46. display: flex;
  47. align-items: center;
  48. }
  49. .avatar {
  50. margin: 0 5px 0 8px;
  51. border-radius: 50%;
  52. }
  53. .name {
  54. width: 0;
  55. overflow: hidden;
  56. text-overflow: ellipsis;
  57. white-space: nowrap;
  58. flex: 1;
  59. }
  60. }
  61. }
  62. .right {
  63. padding: 0 20px;
  64. flex: 1;
  65. display: flex;
  66. flex-direction: column;
  67. .transfer-right-footer {
  68. align-self: flex-end;
  69. .btn-cancel {
  70. margin-right: 12px;
  71. }
  72. }
  73. .transfer-list {
  74. padding-right: 20px;
  75. overflow-y: auto;
  76. }
  77. }
  78. .left {
  79. flex: 1;
  80. overflow-y: hidden;
  81. display: flex;
  82. flex-direction: column;
  83. .transfer-header {
  84. padding: 0 20px;
  85. }
  86. .transfer-left-main {
  87. flex: 1;
  88. overflow-y: auto;
  89. padding: 0 13px;
  90. }
  91. }
  92. }
  93. .btn {
  94. padding: 4px 28px;
  95. font-size: 12px;
  96. line-height: 24px;
  97. border-radius: 4px;
  98. }
  99. .btn-no {
  100. padding: 4px 28px;
  101. font-size: 12px;
  102. line-height: 24px;
  103. border-radius: 4px;
  104. }
  105. .space-between {
  106. justify-content: space-between;
  107. }
  108. .select-all {
  109. padding-left: 8px;
  110. font-size: 14px;
  111. }
  112. .more {
  113. display: flex;
  114. justify-content: center;
  115. align-items: center;
  116. cursor: pointer;
  117. font-size: 14px;
  118. }