#marquee{
    height:60px;
    border:0.2rem;
    border-style: solid;
    border-radius: 1.4rem;
    border-color: #1ea1e3;
    background-color: #1ea1e3;
    overflow: hidden;
}
#marquee_icon{
    width: 2.5rem;
    height: 2.5rem;
    position: relative;
}
#marquee_content{
    height: 60px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    align-items: center;
}
.marquee_content_text{
    display: flex;
    flex-wrap: wrap;
    position: relative;
    align-items: center;
    opacity: 0;
    width: 100%;
    height: 100%;
    transition: opacity 1s ease-in;
}
.marquee_content_text_select{
    opacity: 1;
    z-index: 100;
    transition: opacity 1s ease-out;
}
.marquee_content_text > span{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

#marquee{
    max-width: 1100px!important;
    width: 100vw;
    word-break: break-all;
    word-wrap: break-word;
}