    .scroll-container {
        overflow: hidden;
        white-space: nowrap;
        /* 璋冩暣瀹藉害 */
        width: 231px;
        height:16.25px;
     
        position: relative;}




    .scrolling-text {
        /* 璋冩暣瀹藉害 */
         /* width: 231px;*/
          height:16.25px;
          line-height: 16.25px;
        display: block;
        animation: text-loop 12s linear infinite;
         /* 纭繚鍒濆浣嶇疆姝ｇ‘璁剧疆浠ュ～婊″鍣 */
         transform: translateX(calc(100% - 100vw));}
    @keyframes text-loop {
        0% {
            transform: translateX(10%);}
        100% {
            transform: translateX(-100%);}
    }
