.audio_li {
    display: inline-block;
    position: relative;
    margin-top: 0.8rem;
    width: 156px;
    place-self: center;
}

@media (max-width: 768px) {
    .audio_li {
        display: inline-block;
        position: relative;
        margin-top: 0.8rem;
        width: calc(100vw / 3 - 16px);
        place-self: center;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .audio_li {
        display: inline-block;
        position: relative;
        margin-top: 0.8rem;
        width: calc(100vw / 4 - 12px);
        place-self: center;
    }
}

.audio_li .state{
    position: absolute;
    color: #fff;
    left: 0.4rem;
    top: 0.4rem;
    padding: 0 8px;
    border-radius: 6px;
    line-height: 23px;
    opacity: .8;
    font-size: 11px;
    background: -webkit-linear-gradient(right, #008EFE, #8533ED（紫）);
}


.audio_li .cover_box {
    overflow: hidden;
    cursor: pointer;
    border-radius: 6px;
}

.audio_li .cover_box .select{
    position: absolute;
    right: 0.2rem;
    top: 0.2rem;
}

.audio_li .cover_box .select img {
    width: 20px;
    height: 20px;
}

.audio_li .cover_box .cover {
    object-fit: cover;
    width: 156px;
    height: 230px;
    border: #2A2E42 solid 1px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.audio_li .cover_box .cover:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.audio_li .cover_box .top {
    background: -webkit-linear-gradient(top, #f55, #e68e8c);
    width: 20px;
    height: 18px;
    text-align: center;
    border-radius: 6px;
    line-height: 18px;
    color: #fff;
    font-size: 14px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
    position: absolute;
    right: 0.4rem;
    top: 0.4rem;
}

@media (max-width: 768px) {
    .audio_li .cover_box .cover {
        border-radius: 6px;
        width: calc(100vw / 3 - 16px);
        height: calc((100vw / 3 - 16px) * 22 / 15);
        border: none;
    }

    .audio_li .cover_box .cover:hover {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .audio_li .cover_box .cover {
        border-radius: 6px;
        width: calc(100vw / 4 - 16px);
        height: calc((100vw / 4 - 16px) * 22 / 15);
        border: none;
    }

    .audio_li .cover_box .cover:hover {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
}

.audio_li .brief_box {
    line-height: 1.2rem;
    margin-top: 0.1rem;
    text-align: left;
}

.audio_li .brief_box .title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
}

.audio_li .brief_box .title a {
    color: #CFCDE4;
}


.audio_li .brief_box .info_box {
    display: flex;
    justify-content: space-between;
    color: #9191A8;
    font-size: 12px;
}

.audio_li .brief_box .info_box .author {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.audio_li .brief_box .info_box .view {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: end;
}

.audio_li .brief_box .info_box .view img {
    width: 1rem;
    height: auto;
    margin: 0 0.2rem;
}

.main_box .audio_box{
    margin: 0.8rem;
    display: flex;
}

.main_box .audio_box .cover{
    width: 36%;
    height: auto;
    /*border: #e8e8e8 solid 1px;*/
    border-radius: 6px;
}

.main_box .audio_box .info_box{
    width: 60%;
    height: auto;
    line-height: 1.6rem;
    margin-left: 0.8rem;
    text-align: left;
    font-size: 13px;
    color: #333;
}

.main_box .audio_box .info_box .update_state_box{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

}

.main_box .audio_box .info_box .update_state_box span:nth-child(1){
    color: #078AFE;
    font-weight: bold;
    margin-right: 0.4rem;
}

.main_box .audio_box .info_box h1{
    font-size: 16px;
    font-weight: bold;
    padding: 0.4rem 0;
    color: #CFCDE4;
}


.main_box .audio_box .info_box .item{
    color: #9191A8;
}

.main_box .audio_box .info_box .score_box{
    display: flex;
    align-items: center;
}

.main_box .audio_box .info_box .score_box span{
    font-weight: 700;
    font-size: 14px;
}

.main_box .audio_box .info_box .score_box .star_box{
    display: flex;
    align-items: center;
    margin-left: 0.4rem;
}

.main_box .audio_box .info_box .score_box .star_box img{
    width: 0.8rem;
    height: 0.8rem;
}

.main_box .detail_box{
    margin: 0.8rem;
}

.main_box .detail_box .play_box{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main_box .detail_box .play_box img{
    width: 1rem;
    height: 1rem;
}

.main_box .detail_box .play_box audio{
    height: 2.6rem;
}

.main_box .detail_box .play_option_box{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: 14px;
    padding: 0.8rem 0;
    color: #9191A8;
}

.main_box .detail_box .play_option_box label{
    display: flex;
    align-items: center;
}

.main_box .detail_box .play_option_box img{
    width: 1.6rem;
    height: 1.6rem;
}

.main_box .detail_box .brief_box{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: justify;
    line-height: 1rem;
    font-size: 12px;
    color: #9191A8;
}

.main_box .detail_box .brief_box img{
    width: 1rem;
    height: auto;
}


.main_box .detail_box .read_btn{
    cursor: pointer;
    line-height: 2.4rem;
    font-weight: 400;
    color: #fff;
    background: #ff5656;
    border-radius: 6px;
    display: block;
    width: 100%;
    font-size: 14px;
    text-align: center;
    margin-top: 0.8rem;
}

.main_box .detail_box .tag_box{
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.6rem;
    font-size: 14px;
    line-height: 1.4rem;
    color: #CFCDE4;
}

.main_box .detail_box .tag_box li{
    margin-right: 0.4rem;
}

.main_box .detail_box .tag_box li a{
    color: #9191A8;
}

.main_box .detail_box .tag_box li a b{
    color: #078AFE;
    font-weight: 700;
}


.main_box .detail_box .actress_box{
    margin-top: 0.8rem;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.main_box .detail_box .actress_box .item{
    margin-right: 0.4rem;
    display: flex;
    align-items: center;
}

.main_box .detail_box .actress_box .item .avatar{
    border-radius: 100%;
    color: #fff;
    text-align: center;
    border: #fff solid 1px;
    font-size: 9px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    background: #ff5b7e;
    padding: 2px;
    font-size: 13px;
}

.main_box .detail_box .actress_box .item img{
    border-radius: 100%;
    color: #fff;
    text-align: center;
    border: #fff solid 1px;
    font-size: 9px;
    width: 24px;
    height: 24px;
    line-height: 20px;
}

.main_box .detail_box .actress_box .item a{
    margin-left: 0.1rem;
    color: #9191A8;
}


.main_box .detail_box .actress_box .item .avatar a{
    color: #fff;
    cursor: pointer;
    margin-left: 0;
}


.main_box .props_box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #9191A8;
    margin-top: 0.8rem;
    font-size: 13px;
}

.main_box .props_box ul{
    display: flex;
}

.main_box .props_box ul li{
    display: flex;
    align-items: center;
}

.main_box .props_box ul:nth-child(1) li{
    margin-right: 0.3rem;
}

.main_box .props_box ul:nth-child(2) li{
    margin-left: 0.3rem;
}


.main_box .props_box ul:nth-child(1) li img{
    width: 0.8rem;
    height: auto;
    margin-right: 0.1rem;
}

.main_box .props_box ul:nth-child(1) li:nth-child(2) img{
    width: 1.1rem;
    height: auto;
}

.main_box .props_box ul:nth-child(1) li:nth-child(3) img{
    width: 0.9rem;
    height: auto;
}

.main_box .props_box ul:nth-child(2) li img{
    width: 1rem;
    height: auto;
    margin-right: 0.1rem;
}


.main_box .option_box{
    margin: 1rem 1rem 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #9191A8;
}

.main_box .option_box div{
    text-align: center;
    font-size: 13px;
    line-height: 1.2rem;
    cursor: pointer;
}

.main_box .option_box div img{
    max-width: 1.3rem;
}

.main_box .catalog_box{
    margin: 1.4rem 0.8rem;
}

.main_box .catalog_box .title_box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #CFCDE4;
}

.main_box .catalog_box .title_box div:nth-child(1){
    font-size: 14px;
    font-weight: 700;
}

.main_box .catalog_box .title_box div:nth-child(1) span{
    margin-left: .6rem;
    font-size: 12px;
    font-weight: 400;
    color: #9c9c9c;
    border: #9c9c9c solid 1px;
    padding: .2rem .4rem;
    border-radius: 6px;
    cursor: pointer;
}

.main_box .catalog_box .title_box div:nth-child(2){
    font-size: 12px;
    display: flex;
    align-items: center;
    color: #CFCDE4;
}

.main_box .catalog_box .title_box div:nth-child(2) img{
    width: 1rem;
    margin-right: 0.2rem;
}

.main_box .catalog_box ul {
    margin-top: 1rem;
    font-size: 14px;
    color: #9191A8;
}

.main_box .catalog_box ul li{
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: #2A2E42 solid 1px;
    cursor: pointer;
}

.main_box .catalog_box ul li span:nth-child(2){
    color: #9191A8;
}

.main_box .more_box .line{
    background: linear-gradient(to right, #e8e8e8 0%, #e8e8e8 100%);
    height: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_box .more_box .line span{
    background: #fff;
    padding: 0 0.6rem;
}

.main_box .award_box{
    margin: 0.8rem 0.8rem 0 0.8rem;
    font-size: 13px;
    color: #333;
}

.main_box .award_box .title{
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.main_box .award_box .award_item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.main_box .award_box .award_item div{
    display: flex;
    align-items: flex-start;
}

.main_box .award_box .award_item div span{
    margin: 0 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main_box .award_box .award_item div .model{
    width: 30px;
    height: auto;
}

.main_box .award_box .award_item div .avatar{
    width: 35px;
    height: 35px;
    border-radius: 100%;
    margin: 0 .2rem;
}

.main_box .award_box .award_item div .holder{
    margin-left: 2.1rem;
}

.main_box .award_box .award_item div .level{
    width: 22px;
    height: auto;
}

.main_box .award_box .award_item b{
    color: #078AFE;
    font-weight: 700;
    margin-right: 0.2rem;
    font-size: 16px;
}

.main_box .line{
    border-bottom: #e8e8e8 solid 1px;
}


.main_box .comment_list_box {
    margin: 1rem 0.8rem 0 0.8rem;
    line-height: 1.2rem;
    text-align: justify;
    font-size: 13px;
}

.main_box .comment_list_box .title_box {
    font-size: 13px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    color: #9191A8;
}

.main_box .comment_list_box .title_box .title_info{
    display: flex;
    align-items: center;
}

.main_box .comment_list_box .title_box .vip{
    width: 16px;
    height: auto;
    vertical-align: sub;
}

.main_box .comment_list_box .score_box{
    display: flex;
    color: #989898;
}

.main_box .comment_list_box .score_box .star_box{
    display: flex;
    align-items: center;
    margin-left: 0.2rem;
}

.main_box .comment_list_box .score_box .star_box img{
    width: 1rem;
    height: auto;
}

.main_box .comment_list_box .title_box .tabs {
    font-size: 12px;
}

.main_box .comment_list_box .title_box .tabs span {
    color: #999;
    padding-bottom: 0.2rem;
    cursor: pointer;
}

.main_box .comment_list_box .title_box .tabs .active {
    color: #078AFE;
    border-bottom: #078AFE solid 2px;
    padding-bottom: 0.2rem;
    font-weight: 700;

}

.main_box .comment_list_box .comment_box {
    padding: 1rem 0 0.5rem 0;
    display: flex;
    justify-content: flex-start;
    color: #9191A8;

}

.main_box .comment_list_box .comment_box .avatar_box{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main_box .comment_list_box .comment_box .avatar {
    width: 38px;
    height: 38px;
    border-radius: 100%;
    vertical-align: super;
}

.main_box .comment_list_box .comment_box a{
    color: #989898;
    font-size: 12px;
    line-height: 1.5rem
}

.main_box .comment_list_box .comment_box .level{
    width: 25px;
    height: auto;
}

.main_box .comment_list_box .comment_box .content_info {
    width: 100%;
    line-height: 1.6rem;
    margin-left: 0.8rem;
}

.main_box .comment_list_box .comment_box .content_info .title_box {
    display: flex;
    justify-content: space-between;
}

.main_box .comment_list_box .comment_box .content_info .awesome span {
    font-weight: normal;
    padding: 0 0.1rem;
}

.main_box .comment_list_box .comment_box .content_info .awesome img {
    vertical-align: middle;
    width: 18px;
    padding: 0.1rem;
    margin-top: -0.1rem;
    cursor: pointer;
}

.main_box .comment_list_box .comment_box .content_info .content {
    width: 90%;
    line-height: 1.4rem;
    color: #9191A8;
}

.main_box .comment_list_box .comment_box .content_info .submore{
    display: flex;
    align-items: center;
}

.main_box .comment_list_box .comment_box .content_info .submore img{
    width: .8rem;
    margin-left: .2rem;
}

.main_box .comment_list_box .comment_box .content_info .reply_btn {
    cursor: pointer;
    color: #989898;
}

.main_box .comment_list_box .comment_box .content_info .reply_box {
    border-top: #2A2E42 solid 1px;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    display: flex;
    justify-content: flex-start;
}

.main_box .comment_list_box .comment_box .content_info .reply_box .reply_info {
    width: 100%;
    line-height: 1.6rem;
    margin-left: 0.6rem;
}

.main_box .comment_list_box .comment_btn{
    cursor: pointer;
    line-height: 2.4rem;
    font-weight: 400;
    color: #fff;
    background: -webkit-linear-gradient(left, #8533ED, #008EFE);
    border-radius: 6px;
    display: block;
    width: 100%;
    font-size: 13px;
    text-align: center;
    margin-top: 1rem;
    margin-right: .4rem;
    margin-bottom: 1rem;
}

.main_box .dmca_box{
    width: 100%;
    padding-top: 0.8rem;
    text-align: center;
    line-height: 18px;
    font-size: 12px;
    color: #9191A8;
}

.main_box .dmca_box span{
    color: #078AFE;
}

.main_box .button_link_box {
    display: flex;
    margin: 1rem 0.8rem 0 0.8rem;
}

.main_box .button_link_box a {
    display: block;
    background: -webkit-linear-gradient(left, #8533ED, #008EFE);
    color: #fff;
    width: 176px;
    height: 33px;
    border-radius: 6px;
    text-align: center;
    line-height: 33px;
    font-size: 12px;
}

.main_box .button_link_box a:nth-child(2){
    margin: 0 0.8rem;
}
