12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- .selectAccount {
- position: relative;
- }
- .selectAccount_row {
- position: relative;
- z-index: 1;
- background-color: #FFF;
- border-radius: 6px;
- }
- .selectAccount_select {
- height: 32px;
- padding: 1px 24px 1px 4px;
- position: relative;
- .clear {
- position: absolute;
- font-size: 12px;
- right: 10px;
- top: 50%;
- transform: translateY(-50%);
- color: #c3c3c3;
- display: none;
- }
- &:hover .clear {
- display: block;
- }
- }
- .selectAccount_list {
- position: absolute;
- width: 800px;
- height: 400px;
- background-color: #FFF;
- margin-top: 10px;
- border-radius: 6px;
- display: flex;
- flex-direction: column;
- padding: 10px 0;
- .selectAccount_list_header {
- padding: 2px 10px;
- display: flex;
- align-items: center;
- gap: 10px;
- margin-bottom: 10px;
- }
- .selectAccount_list_table {
- height: 308px;
- padding: 0 10px;
- }
- .selectAccount_list_footer {
- padding: 4px 10px;
- text-align: right;
- background: transparent;
- border-top: 1px solid #f0f0f0;
- box-sizing: border-box;
- .resetCss {
- height: 28px;
- line-height: normal;
- border-radius: 6px !important;
- padding: 3px 11px;
- }
- }
- }
- .selectAccount_select_content {
- height: 100%;
- min-width: 180px;
- cursor: pointer;
- display: flex;
- align-items: center;
- }
- .selectAccount_mask {
- width: 100vw;
- height: 100vh;
- position: fixed;
- background-color: rgba(0, 0, 0, .4);
- z-index: 999;
- top: 0;
- left: 0;
- }
- .content_tag {
- color: rgba(0, 0, 0, 0.85);
- >span {
- color: rgba(151, 151, 151, 0.85) !important;
- }
- }
|