.podcast-btn{
    background-color: var(--Color);
    color: #fff;
    border-radius: 0.06rem;
    padding: 0 0.46rem;
    font-size: max(14px,0.22rem);
    display: flex;
    align-items: center;
    cursor: pointer;
    height: 0.66rem;
    text-transform: uppercase;
}
.podcast-all-btn{
    position: relative;
    display: flex;
    align-items: center;
    font-size: 0.22rem;
    font-weight: 700;
    line-height: 0.36rem;
    cursor: pointer;
}
.podcast-all-content{
    display: none;
    z-index: 500;
    position: absolute;
    top: 140%;
    right: 0;
    width: 15rem;
    color: var(--Color);
    border-radius: 0.1rem;
    background-color: #fff;
    box-shadow: 0px 1px 4px 0px #00000040;
    max-height: 7rem;
    overflow-y: auto;
    overscroll-behavior:contain;
}
/* 弹框显示在上方 */
.podcast-all-content.top-coordinate{
    top: initial;
    bottom: 120%;
}
.podcast-all-content .loading-wrapper{
    position: static;
    padding: 0.5rem 0;
}
.podcast-all-content .podcast-item-content{
    width: 100%;
    display: flex;
    /* align-items: center; */
    padding: 0.19rem 0.38rem;
    color: #666666;
    font-size: 0.2rem;
    line-height: 0.3rem;
    font-weight: 400;
    position: relative;
    cursor: pointer;
}
.podcast-all-content .podcast-item-content:hover{
    background-color: #f1f1f1;
}
.podcast-all-content .podcast-item-content::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0.38rem;
    right: 0.38rem;
    background: #B7B7B7;
    height: 1px;
    transform: scale(1,0.6);
}
.podcast-item-content .icon{
    color: var(--Color);
    margin-top: 0.03rem;
}
.podcast-item-content .podcast-item-title{
    flex: 1;
    padding: 0 0.13rem;
}
.podcast-item-content .podcast-item-duration{
    
}
.podcast-all-content .podcast-item-content.active-podcast{
    color: var(--Color);
    background-color: #F1F1F1;
}

.podcast-btn-bg{
    margin:0 0.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max(18px,0.24rem);
    height: max(18px,0.24rem);
    border-radius: 50%;
    background-color: #fff;
    color: var(--Color);
    font-size: max(10px,0.12rem);
}
.podcast-btn-bg .icon{
    /* margin-left: 0.02rem; */
}
.podcast-btn-bg.white-bg{
    color: #fff;
    background-color:#72A4E5;
    transition: all 0.3s;
}
.podcast-btn-bg.podcast-btn-bg-active{
    background-color: var(--Color);
    transform: rotate(90deg);
}
.podcast-btn-bg.blue-bg{
    color: #fff;
    background-color: var(--Color);
}
.podcast-btn-bg .icon-suspended{
    display: none;
}
.play-featured-status .podcast-btn-bg .icon-play{
    display: none;
}
.play-featured-status .podcast-btn-bg .icon-suspended{
    display: block;
}

@media screen and (max-width: 1025px) {
    .podcast-detail .podcast-all-content,.podcast-all-content{
        width: 6.5rem;
    }
}