|
|
@@ -24,6 +24,8 @@
|
|
|
? 'text_3 level3'
|
|
|
: userinfo.is_super == 4
|
|
|
? 'text_3 level4'
|
|
|
+ : userinfo.is_super >= 5
|
|
|
+ ? 'text_3 level5'
|
|
|
: 'text_3',
|
|
|
]"
|
|
|
>{{ $t('lang35') }}{{ userinfo.addressEncrypt }}</span
|
|
|
@@ -520,11 +522,42 @@ export default {
|
|
|
background-color: #000;
|
|
|
}
|
|
|
.level4 {
|
|
|
- color: #00A733 !important;
|
|
|
+ color: #00a733 !important;
|
|
|
border-radius: 10px;
|
|
|
padding: 2px 6px;
|
|
|
background-color: #000;
|
|
|
}
|
|
|
+ .level5 {
|
|
|
+ // font-weight: bold;
|
|
|
+ color: rgb(132, 43, 248) !important;
|
|
|
+ border-radius: 10px;
|
|
|
+ padding: 2px 6px;
|
|
|
+ background-color: #000;
|
|
|
+ // position: relative;
|
|
|
+ // overflow: hidden;
|
|
|
+ // display: inline-block;
|
|
|
+ }
|
|
|
+
|
|
|
+ // .level5::after {
|
|
|
+ // content: '';
|
|
|
+ // position: absolute;
|
|
|
+ // top: 0;
|
|
|
+ // left: -100%;
|
|
|
+ // width: 100%;
|
|
|
+ // height: 100%;
|
|
|
+ // background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
|
|
|
+ // transform: skewX(-30deg);
|
|
|
+ // animation: mirrorSlide 2s infinite linear;
|
|
|
+ // }
|
|
|
+
|
|
|
+ // @keyframes mirrorSlide {
|
|
|
+ // 0% {
|
|
|
+ // left: -100%;
|
|
|
+ // }
|
|
|
+ // 100% {
|
|
|
+ // left: 100%;
|
|
|
+ // }
|
|
|
+ // }
|
|
|
.text-wrapper_1 {
|
|
|
font-size: 11px;
|
|
|
line-height: 100%;
|