.list_card{
    width: 370px;
    height: 100px;
    background: rgba(190, 173, 154, 0.2000);
    border-radius: 6px 6px 6px 6px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.7000);
}
.list_card:hover {
    background-image: linear-gradient(to right, #FFD90F , rgba(255,181,100,0.3500));
    /* background: rgba(255,181,100,0.3500) linear-gradient(350deg, #5B4429 0%, #FFD90F 100%); */
}
.list_card:hover .list_card_avatar {
    transform: scale(1.1);
}

.list_card_index{
    width: 23px;
    height: 24.5px;
    text-align: center;
    line-height: 20px;
    opacity: 1;
    margin: 0 12.5px;
}
.list_card:nth-child(1) .list_card_index {
    background: url('./pic/1.png') no-repeat;
    background-size: cover;
}
.list_card:nth-child(2) .list_card_index {
    background: url('./pic/2.png') no-repeat;
    background-size: cover;
}
.list_card:nth-child(3) .list_card_index {
    background: url('./pic/3.png') no-repeat;
    background-size: cover;
}
.list_card:nth-child(4) .list_card_index {
    background: url('./pic/4.png') no-repeat;
    background-size: cover;
}
.list_card:nth-child(5) .list_card_index {
    background: url('./pic/5.png') no-repeat;
    background-size: cover;
}

.list_card_avatar{
    height: 80px;
    width: 80px;
}
.list_card_avatar img{
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    border-radius: 4px;
}


.list_card_content{
    margin-left: 10px;
    width: 221px;
    height: 100%;
}
.list_card_content_header{
    display: flex;
    justify-content: space-between;
    margin-bottom: 2px;
}

.list_card_content .nick{
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.list_card_content .voice-link{
    height: 20px;
    margin-bottom: 2px;

}

.list_card_content .text{
    width: 100%;
    line-height: 16px;
    height: 32px;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-inline-box;
    -webkit-box-orient: vertical;
}

.list_card_content .voice-box{
    display: flex;
    justify-content: space-around;
    width: 50px;
    border: 1px solid #FFC804;
    border-radius: 8px;
    color: #FFF5D0;

}
.list_card_content .voice-link .spinning{
    font-size: 0;
}
.list_card_content .voice-link .spinning span{
    display: inline-block;
    width: 2px;
    height: 3px;
    background-color: #FFF5D0;
    border-radius: 2px;
    vertical-align: middle;
    transition: all 1.2s ease-in-out;
    margin: 6px 1.5px 0;
    transform-origin: center ;
}

.list_card_content .voice-link.playing .spinning span{
animation: loop 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.list_card_content .voice-link  .spinning span:nth-child(1){
    animation-delay: -0.24s;
}
.list_card_content .voice-link .spinning span:nth-child(2){
    animation-delay: -0.12s;
    height: 6px;
}
.list_card_content .voice-link .spinning  span:nth-child(3){
    animation-delay: 0;
}

@keyframes loop{
    0%{
        height: 3px;
    }
    50%{
        height: 6px;
    }
    100%{
        height: 3px;
    }
}

.list_card_super{
    width: 370px;
    height: 206px;
    background: rgba(190,173,154,0.2400);
    border-radius: 6px 6px 6px 6px;
    display: block;
    position: relative;
}
.list_card_super .list_card_index{
    position:absolute;
    margin: 0;
    padding: 0;
    top: 4px;
    left: 4px;
    z-index: 1;
}
.list_card_super .list_card_avatar{
    height: 180px;
    width: 180px;
    position:absolute;
    margin: 0;
    padding: 0;
    top: 13px;
    left: 13px;
}

.list_card_super .list_card_content{
    width: 147px;
    position:absolute;
    margin: 0;
    padding: 0;
    top: 13px;
    left: 213px;
}

.list_card_super .list_card_content .list_card_content_header .nick{
    font-size: 18px;
    font-weight: 600;
    color: #333333;
}

.list_card_super .list_card_content .voice-link{
    position: absolute;
    top: 160px;
}

.list_card_super .list_card_content .text{
    padding-top: 30px;
    width: 120px;
    height: 120px;
}

.list_card_super .list_card_content .text li{
    line-height: 2em;
}

.list_card_super .list_card_content .text .textIntroduce{
    display: none;
}

.list_card_color{
    background: #959595;
}
