.podcast-category{
    width: 15rem;
    margin: 0.93rem  auto;
}
.podcast-category-title{
    font-size: 0.48rem;
    line-height: 0.77rem;
    text-align: center;
    color: #333333;
    font-weight: 600;
}
.podcast-subtitle{
    color: #666666;
    font-size: max(16px, 0.22rem);
    line-height: 0.46rem;
    text-align: center;
    margin-bottom: 0.13rem;
}
.podcast-category-tabs{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2rem 0.1rem;
}
.podcast-category-tab{
    height: 0.49rem;
    line-height: 0.47rem;
    padding: 0 0.29rem;
    font-size: max(14px, 0.18rem);
    color: #333;
    border: 1px solid #B7B7B7;
    border-radius: 0.24rem;
    cursor: pointer;
    min-width: 1.8rem;
    text-align: center;
    white-space: nowrap
}
.podcast-category-tab.active-tab{
    background-color: var(--Color);
    color: #fff;
    border-color: var(--Color);
}
.podcast-category-bg{
    background-color: #F7FBFF;
    padding: 0.28rem 0;
    min-height: 2rem;
    position: relative;
}
.podcast-category-list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.28rem 0.15rem;
}
.podcast-category-item{
    display: flex;
    flex-direction: column;
    border: 1px solid #DADADA;
    background-color: #FFFFFF;
    box-shadow: 0px 1px 4px 0px #00000040;
}
.podcast-category-item-img{
    width: 4.87rem;
    height: 3.24rem;
    border-bottom: 1px solid #DADADA;
}
.podcast-category-item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.podcast-category-item-info{
    padding: 0.2rem 0.17rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.podcast-category-item-title{
    color: #3F3F3F;
    font-size: max(18px, 0.24rem);
    font-weight: 800;
    line-height: max(26px, 0.34rem);
    height:  max(52px, 0.68rem);
}
.podcast-category-item-title:hover{
    color: var(--Color);
    text-decoration: underline;
}
.podcast-category-item-subtitle{
    margin-top: max(14px, 0.14rem);
    margin-bottom: 0.23rem;
    color: #666666;
    font-size: max(14px, 0.22rem);
    line-height: max(28px, 0.4125rem);
    font-weight: 400;
}
.podcast-category-item-listen{
    border-top: 1px solid #B7B7B7;
    padding: 0.28rem 0;
    margin-top: auto;
    height: 0.9rem;
}
.podcast-category-item-listen .podcast-btn{
    padding-left: 0;
    background-color: transparent;
    color: var(--Color);
    width: fit-content;
    height: 100%;
}
.podcast-category-item-listen .podcast-btn .podcast-btn-bg{
    background-color:var(--Color);
    color: #fff;
}


@media screen and (max-width: 1025px) {
    .podcast-category{
        width: 100%;
    }
    .podcast-category-list{
        grid-template-columns:1fr;
    }
    .podcast-category-bg{
        padding: 0.51rem 0.3rem;
    }
    .podcast-category-item-img{
        width: 100%;
        height: 4.53rem;
    }
    .podcast-category-item-subtitle{
        font-size: 0.24rem;
        line-height: 0.45rem;
    }
}