123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- .itemContent {
- padding: 16px 16px 5px;
- display: flex;
- color: var(--live-color);
- & > img {
- width: 28px;
- height: 28px;
- margin-right: 8px;
- }
- }
- .itemInfo {
- width: 100%;
- }
- .itemName {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding-top: 3px;
- .userName {
- font-size: 15px;
- line-height: 22px;
- // display: flex;
- align-items: center;
- font-weight: 500;
- }
- .name-style {
- line-height: 24px;
- color: var(--live-text-color);
- }
- .rightTime {
- font-size: 12px;
- }
- :global {
- .el-tag--default {
- border-radius: 20px;
- margin-right: 8px;
- height: 20px;
- // padding: 0 12px;
- // line-height: 20px;
- // color: var(--live-color);
- // background: var(--message-color);
- // border-color: var(--message-color);
- }
- }
- }
- .itemText {
- font-size: 15px;
- line-height: 20px;
- &.active {
- color: var(--live-text-color);
- }
- }
- .joinText {
- display: flex;
- justify-content: space-between;
- align-items: center;
- .join {
- display: flex;
- align-items: center;
- }
- }
- .btn {
- font-size: 13px;
- line-height: 20px;
- background-color: var(--live-light-color);
- border-color: var(--live-light-color);
- text-align: center;
- padding: 3px 15px 1px;
- border-radius: 2px;
- cursor: pointer;
- color: var(--live-color);
- text-decoration: none;
- &.downBtn {
- background-color: transparent;
- border-color: var(--live-light-color);
- color: var(--live-light-color);
- }
- }
- .loadingStyle {
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- }
- .slide-top-enter-active {
- opacity: 0;
- animation-name: error-num;
- animation-duration: 0.5s;
- animation-fill-mode: forwards;
- animation-delay: 0.1s;
- }
- @keyframes error-num {
- 0% {
- transform: translateY(30px);
- opacity: 0;
- }
- 100% {
- transform: translateY(0);
- opacity: 1;
- }
- }
|