/*
 * 组件 - 多行文本
 */
@keyframes wordText {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-25%);
    }
}

.-screen-widget-name-wordText .content {
    display: inline-block;
    position: relative;
    padding-bottom: 0;
    animation-name: wordText;
    animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
}