index.less 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. .selectAccount {
  2. position: relative;
  3. }
  4. .selectAccount_row {
  5. position: relative;
  6. z-index: 1;
  7. background-color: #FFF;
  8. border-radius: 6px;
  9. }
  10. .selectAccount_select {
  11. height: 32px;
  12. padding: 1px 24px 1px 4px;
  13. position: relative;
  14. .clear {
  15. position: absolute;
  16. font-size: 12px;
  17. right: 10px;
  18. top: 50%;
  19. transform: translateY(-50%);
  20. color: #c3c3c3;
  21. display: none;
  22. }
  23. &:hover .clear {
  24. display: block;
  25. }
  26. }
  27. .selectAccount_list {
  28. position: absolute;
  29. width: 800px;
  30. height: 400px;
  31. background-color: #FFF;
  32. margin-top: 10px;
  33. border-radius: 6px;
  34. display: flex;
  35. flex-direction: column;
  36. padding: 10px 0;
  37. .selectAccount_list_header {
  38. padding: 2px 10px;
  39. display: flex;
  40. align-items: center;
  41. gap: 10px;
  42. margin-bottom: 10px;
  43. }
  44. .selectAccount_list_table {
  45. height: 308px;
  46. padding: 0 10px;
  47. }
  48. .selectAccount_list_footer {
  49. padding: 4px 10px;
  50. text-align: right;
  51. background: transparent;
  52. border-top: 1px solid #f0f0f0;
  53. box-sizing: border-box;
  54. .resetCss {
  55. height: 28px;
  56. line-height: normal;
  57. border-radius: 6px !important;
  58. padding: 3px 11px;
  59. }
  60. }
  61. }
  62. .selectAccount_select_content {
  63. height: 100%;
  64. min-width: 180px;
  65. cursor: pointer;
  66. display: flex;
  67. align-items: center;
  68. }
  69. .selectAccount_mask {
  70. width: 100vw;
  71. height: 100vh;
  72. position: fixed;
  73. background-color: rgba(0, 0, 0, .4);
  74. z-index: 999;
  75. top: 0;
  76. left: 0;
  77. }
  78. .content_tag {
  79. color: rgba(0, 0, 0, 0.85);
  80. >span {
  81. color: rgba(151, 151, 151, 0.85) !important;
  82. }
  83. }