/*————————————————————————————账号 开始————————————————————————————*/

/*账号 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: 48%;
    height: 100%;
    /*border: 1px solid yellow;*/
    margin: 0 auto;
}

.artist-pc-1 {
    width: 40%;
    height: 22%;
    /*border: 1px solid red;*/
    flex-direction: row;
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;

    margin-top: 4.5%;
    margin-left: 6%;
}

.artist-pc-1 img {
    height: 100%;
    width: 100%;
}

.artist-pc-1 a img {
    height: 100%;
    width: 100%;
}

.artist-pc-1 a {
    height: 100%;
    width: 100%;
    flex-direction: row;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*账号 xc*/
.artist_xs {
    height: 85%;
    width: 100%;
    display: none;
    overflow-x: hidden;
    overflow-y: scroll;
}

.artist-xs-1 {
    width: 89%;
    height: 167px;
    /*border: 1px solid red;*/
    flex-direction: row;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 4%;
}

.artist-xs-1 a {
    width: 100%;
}

.artist-xs-1 img {
    height: 100%;
    width: 100%;
}

/*————————————————————————————账号 结束————————————————————————————*/


/*————————————————————————————媒体查询 开始————————————————————————————*/
/*媒体查询 电脑模式*/
@media (max-width: 1200px) {

    /*顶部导航*/
    /*.header_div {*/
    /*display: none !important;*/
    /*}*/

}

/*媒体查询 手机模式*/
@media (max-width: 768px) {

    /*账号*/
    .artist_pc {
        display: none !important;
    }

    .artist_xs {
        display: block !important;
    }


}

/*————————————————————————————媒体查询 结束————————————————————————————*/