| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- .loginSection {
- .iconClose {
- background: url('./images/icon_close.png') no-repeat center;
- background-size: 100%;
- }
- }
- .loginTabs {
- // @apply px-9 bg-white;
- :global {
- --el-border-color-light: transparent !important;
- .el-tabs {
- --el-tabs-header-height: 35px !important;
- }
- .el-tabs__content {
- overflow: inherit;
- }
- .el-tabs__item {
- @apply text-lg !important;
- --el-text-color-primary: #666 !important;
- }
- }
- .scanTxt {
- span {
- color: var(--el-color-primary);
- }
- }
- }
- .toolTips {
- position: absolute;
- left: -118px;
- top: 6px;
- border-radius: 2px;
- padding: 3px 10px;
- z-index: 2000;
- font-size: 12px;
- line-height: 20px;
- width: 110px;
- word-wrap: break-word;
- visibility: visible;
- background: #ffff;
- border: 1px solid var(--el-color-primary);
- color: var(--el-color-primary);
- .toolTips_arrow {
- position: absolute;
- top: -5px;
- transform: translate3d(0px, 15px, 0px);
- right: -5px;
- width: 10px;
- height: 10px;
- z-index: -1;
- &::before {
- position: absolute;
- width: 10px;
- height: 10px;
- z-index: -1;
- content: ' ';
- transform: rotate(45deg);
- background: var(--el-text-color-primary);
- box-sizing: border-box;
- border-top-right-radius: 2px;
- border: 1px solid var(--el-color-primary);
- background: #fff;
- right: 0;
- border-left-color: transparent !important;
- border-bottom-color: transparent !important;
- }
- }
- }
|