/* list mobile  */
.menu-obj-content-list-mobile {
    position: fixed;
    z-index: 10000;
    right: 0px;
    top: 0px;
    box-shadow: 3px 0px 15px 0px #888888;
    backdrop-filter: blur(15px);
    width: 100vw;
    padding-bottom: 5px;
    display: none;
    background-color: rgba(255, 255, 255, 0.7);
}
#introWordMobile {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 44%;
}
.menu-obj-content-list-mobile .box {
    position: relative;
    width: 50%;
    color: #333;
    margin-top: 5px;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 16px;
}

.menu-obj-content-list-mobile .box .btnAll {
    position: relative;
    background-color: white;
    border-radius: 50%;
    cursor: pointer;
    margin: 5px 5px 5px 15px;
    display: inline-table;

}

.menu-obj-content-list-mobile .box .icon {
    width: 52px;
    height: 52px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.menu-obj-content-list-mobile .box .icon.close {
    background-image: url('../image/icon/icon_o_close.svg');
}

.menu-obj-content-list-mobile .box .icon.surround {
    background-image: url('../image/icon/icon_o_360.svg');
}

.menu-obj-content-list-mobile .box .icon.voice {
    background-image: url('../image/icon/icon_o_voice.svg');
}

.menu-obj-content-list-mobile .box .icon.voiceAct {
    background-image: url('../image/icon/icon_o_voice_click.svg');
}

.menu-obj-content-list-mobile .box .icon.introduce {
    background-image: url('../image/icon/icon_o_info.svg');
}
/* blink loading */
.aniword{
    color: #555;
    animation: aniword 1.5s ease-in-out infinite alternate;
}
@keyframes aniword {
    0%{opacity: 1;}
      
    100%{opacity: 0;} 
  }