/*————————————————————————————艺人 开始————————————————————————————*/

/*艺人 pc*/
.artist_pc {
    position: fixed;
    top: 12%;
    left: 50%;
    transform: translate(-50%);
    height: 87%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
}

.artist_pc::-webkit-scrollbar {
    display: none; /*隐藏滚动条*/
}


.artist-pc-0 {
    width: 42%;
    height: 100%;
    /*border: 1px solid red;*/
    margin: 0 auto;
}

.artist-pc-1 {
    width: 28%;
    height: 100%;
    /*border: 1px solid yellow;*/
    flex-direction: row;
    display: flex;
    justify-content: center;
    /*align-items: center;*/
    float: left;
    /*margin-top: 12%;*/
    /*margin-bottom: 12%;*/

    margin-left: 4%;
    /*margin-right: 2%;*/
}

.artist-pc-1 img {
    height: 50%;
    width: 90%;
    margin-top: 85%;
}

.artist-pc-1 a {
    height: 100%;
    width: 100%;
}

/*艺人 xc*/
.artist_xs {
    /*position: fixed;*/
    /*top: 14%;*/
    /*left: 50%;*/
    /*transform: translate(-50%);*/
    height: 80%;
    width: 100%;
    display: none;
    overflow-x: hidden;
    overflow-y: scroll;
}

/*————————————————————————————艺人 结束————————————————————————————*/


/*————————————————————————————媒体查询 开始————————————————————————————*/
/*媒体查询 电脑模式*/
@media (max-width: 1200px) {

    /*顶部导航*/
    /*.header_div {*/
    /*display: none !important;*/
    /*}*/

}

/*媒体查询 手机模式*/
@media (max-width: 768px) {

    /*艺人*/
    .artist_pc {
        display: none !important;
    }

    .artist_xs {
        display: block !important;
    }


}

/*————————————————————————————媒体查询 结束————————————————————————————*/