* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #eee;
    font-family: "PingFang SC", "Microsoft YaHei", "Consolas", "Andale Mono", "DejaVu Sans Mono", "Courier New", monospace;
}

:root {
    --gap: 10px;
    --subcolor: #999;
    --selected_color: #FF49B4;
    --blue_color: #44AEEF;
}

a {
    text-decoration: none;
    color: #3d3d3d;
}

a:hover {
    text-decoration: underline;
    color: #000;
}

div {
    box-sizing: border-box;
}

input[type="checkbox"]:checked {
    background-color: var(--selected_color);
    /* 你想要设置的背景色 */
}

.jBox-wrapper {
    z-index: 10002;
}

.jBox-content {
    font-size: 0.82em;
}

.padding_l8 {
    padding-left: 8px;
}

.padding_r8 {
    padding-right: 8px;
}

.padding_l5 {
    padding-left: 5px;
}

.padding_r5 {
    padding-right: 5px;
}

.padding_l3 {
    padding-left: 3px;
}

.padding_r3 {
    padding-right: 3px;
}

img {
    vertical-align: middle;
    border: none;
}

.active {
    color: var(--selected_color);
}

.btnele {
    margin: 0 3px;
    padding: 4px 7px;
    text-decoration: none !important;
    border-radius: 3px;
    opacity: 0.9;
    color: #2d2d2d;
}

.btnele:hover {
    opacity: 1;
    color: #000;
}

.btn_red {
    background-color: var(--selected_color);
}

.btn_blue {
    background-color: var(--blue_color);
}

.btn_orange {
    background-color: orange;
}

.layout {
    display: grid;
    grid-template-rows: auto 1fr auto;
    height: 100vh;
}

/* 头部和菜单样式 */
header {
    width: 100%;
    background-color: #380000;
    z-index: 1001;
}

header .cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1280px;
    margin: 0 auto;
    padding: 15px 0;
    color: #fff;
}

header .cont .l {}

header .cont .c {}

header .cont .r {
    text-align: right;

}

.search_cont {
    display: flex;
    justify-content: flex-end;
    align-items: center;

    width: 296px;
    height: 34px;
    overflow: hidden;
    background-image: url(/static/images/search_bg.png);
    background-repeat: no-repeat;
}

.search_cont .inp {
    border: 0px;
    line-height: 34px;
    height: 34px;
    width: 208px;
    color: #eee;
    background-color: #3b3937;
    outline: none;
    vertical-align: middle;
    padding: 0 3px;
    text-align: center;
}

.search_cont .btn {
    border: 0px;
    line-height: 34px;
    height: 34px;
    overflow: hidden;
    color: #ccc;
    outline: none;
    vertical-align: middle;
    box-sizing: border-box;
    padding: 0 9px;
    font-size: 0.9em;
    text-decoration: none;
}

.tips {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 296px;
    height: 20px;
    overflow: hidden;
    padding-top: 5px;
}

.norecord {
    width: 99%;
    text-align: center;
    color: #999;
    font-size: 0.9em;
    padding: 30px;
}

.tips a {
    padding: 1px 3px;
    text-decoration: none;
    box-sizing: border-box;
    font-size: 0.88em;
    color: #999;
}

header .cont .r a {
    padding-left: 10px;
    text-decoration: none;
    color: #eee;
}

header .menu {
    width: 1280px;
    margin: 0 auto;
    padding: 0;

}

/* 一级菜单样式 */
.ul_main_menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #380000;
}

.ul_main_menu>li {
    float: left;
}

.ul_main_menu>li:hover>.ul_child_menu {
    display: block;
    animation: show_menu 0.4s ease-in;
    z-index: 1001;
}

.ul_main_menu>li>a {
    display: block;
    color: #eee;
    text-align: center;
    padding: 10px 9px 5px 9px;
    text-decoration: none;
    font-weight: 550;
}

.ul_main_menu>li>a:hover {
    background-color: var(--selected_color);
    color: #fff;
    transition: background 0.4s ease;
}

.ul_main_menu>li>.active {
    background-color: var(--selected_color);
}

.ul_main_menu>li>.active .subtitle {
    color: #fff;
}

.ul_main_menu>li>a .subtitle {
    display: block;
    font-size: 0.5em;
    font-weight: 200;
    color: var(--subcolor);
    text-align: center;
}

.ul_main_menu>li>a:hover .subtitle {
    color: #eee;
    transition: background 0.4s ease;
}

/* 二级菜单样式 */
.ul_child_menu {
    display: none;
    position: absolute;
    list-style-type: none;
    margin: 0;
    padding: 0;
    /* background-color: #fff; */
    background: repeating-linear-gradient(135deg, #f7f7f7, #f7f7f7 40px, #fff 40px, #fff 80px);
    width: 118px;
    max-width: 240px;
    box-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.3);
    z-index: 1001;
}

.ul_child_menu>li {
    float: none;
}

.ul_child_menu>li>a {
    display: block;
    color: #3d3d3d !important;
    text-align: center;
    padding: 12px 15px;
    text-decoration: none;
    font-size: 0.91em;
    font-weight: normal;
}

.ul_child_menu>li>a:hover {
    background-color: var(--selected_color);
    ;
    color: #fff !important;
    transition: background 0.4s ease;
}

.profile {
    display: inline-block;
}

.profile:hover .ul_child_menu {
    display: block;
    animation: show_menu 0.4s ease-in;
}

@keyframes show_menu {
    from {
        opacity: 0;
        /* 背景色动画开始值 */
        background-color: rgba(0, 0, 0, 0);
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        /* 背景色动画结束值 */
        background-color: rgba(255, 255, 255, 1);
        transform: translateY(0);
    }
}

/* 小的下拉列表 */
.dropdown_list {
    display: inline-block;
    position: relative;
}

.dropdown_list:hover .ul_child_menu {
    display: block;
    animation: show_menu 0.4s ease-in;
}

/* 网站脚步样式 */
footer {
    align-self: end;
    width: 100%;
    background-color: #fff;
    font-size: 0.9em;
}

footer .cont {
    background-color: #fff;
    width: 1280px;
    margin: auto;
    line-height: 140%;
    padding: 25px 0;
}

footer .link {
    padding: 6px 0;
}

footer .link a::after {
    content: "/";
    color: #777;
    display: inline-block;
    font-size: 0.9em;
    font-weight: bold;
    padding: 0 0 0 5px;
}

footer .link a:last-child::after {
    content: "";
}


footer .subtxt {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    color: #666;
    padding: 5px 0;
}

footer .subtxt span {
    padding-right: 8px;
}

footer .subtxt span::after {
    content: "·";
    color: #999;
    display: inline-block;
    font-size: 0.9em;
    padding: 0 0 0 5px;
}

footer .subtxt span:last-child::after {
    content: "";
}

footer .subtxt .l {
    vertical-align: middle;
}

footer .subtxt .r {
    vertical-align: middle;
    margin-left: auto;
}

/* 首页内容布局样式 */
.container {
    width: 1280px;

    margin: var(--gap) auto;
}

/* 大局grid容器 */
.index_cont {
    display: grid;
    gap: var(--gap);
    grid-template-areas: "box1 sidebar_r" "box2 sidebar_r" "box3 sidebar_r" ". sidebar_r";
    grid-template-columns: 1fr 300px;
    /* 设置最小高度为 50px，自动适应最大高度 */
    grid-template-rows: repeat(4, minmax(0, auto));
    /* 垂直居中对齐 */
    align-items: start;

}

.index_cont_2box_l {
    grid-area: box1;

}

.index_cont_1box_l {
    grid-area: box2;

}

.index_cont_1box_r {
    grid-area: box3;

}

.index_cont_item_sidebar_r {
    grid-area: sidebar_r;
    margin: 0;
}

/* 小局容器 */
.index_cont_T {
    display: grid;
    column-gap: 1px;
    grid-template-areas: "toolbar toolbar" "content content";
    grid-template-columns: 1fr 1fr;

}

.index_cont_T_toolbar {
    background-color: #fff;
    grid-area: toolbar;
    order: 1;
}

.index_cont_T_cont {
    /* background-color: #fff; */
    grid-area: content;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    column-gap: 1px;
}

.index_cont_T_box_l {
    background-color: #fff;
    /* grid-area: boxl; */
    width: 50%;
}

.index_cont_T_box_r {
    background-color: #fff;
    /* grid-area: boxr; */
    width: 50%;
}



.area_nav {
    align-content: center;
    padding: 10px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.area_cont {

    padding: 15px;
}

/* 区域工具栏 */
.area_toolbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 6px 10px;
    /* background-color: #fff; */
    border-bottom: 1px solid #eee;
    background: repeating-linear-gradient(135deg, #f9f9f5, #f9f9f5 30px, #fff 30px, #fff 60px);
    border: 1px solid #fff;
    border-bottom: 1px solid #eee;
    ;

}

.area_toolbar a {
    padding-right: 7px;
}

.area_toolbar .l {
    padding-right: 30px;
}

.area_toolbar .c {
    text-align: right;
}

.area_toolbar .r {
    text-align: right;
    margin-left: auto;
}

.area_toolbar .r a {
    transition: all 0.3s ease;
}


.area_toolbar h3 {
    font-weight: 500;
    color: #000;
    margin: 0;
    padding: 0;
}

.area_toolbar .icotitle {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;

}

.area_toolbar .subtitle {
    display: block;
    font-size: 0.5em;
    font-weight: 200;
    color: var(--subcolor);
}

.ullink_img {
    padding: 3px 10px 15px 30px;
}

.ullink_img li {
    display: flex;
    box-sizing: border-box;
    padding: 5px 0;
    line-height: 120%;
}

.ullink_img li::before {
    content: "•";
    color: #999;
    display: inline-block;
    width: 0.8em;
    margin-left: -1em;
}

.ullink_img li a {
    font-size: 0.88em;
    flex: 1;
}


.ullink_img li .simple_cont {
    display: flex;
}

.ullink_img li .simple_cont>.short_title {
    width: 390px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ullink_img li .simple_cont>.date {
    margin-left: auto;
    text-align: right;
    width: 50px;
    color: #999;
    font-size: 0.8em;
}

/* .ullink_img li:hover .full, */
.ullink_img li:first-child .full {
    display: block;
}

/* .ullink_img li:hover .simple, */
.ullink_img li:first-child .simple {
    display: none;
}


.ullink_img li>a:hover {
    text-decoration: none;
    color: var(--selected_color);
}

.ullink_img li .full {
    display: none;
}

.ullink_img li .full_cont {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #ecfcfc;
}

.ullink_img li .full_cont .pic {
    display: inline-block;
    width: 75px;
    position: relative;

    margin-right: 8px;

}

.ullink_img li .full_cont .pic img {
    width: 75px;
    height: 75px;
}

.ullink_img li .full_cont .pic p {
    width: 75px;
    position: absolute;
    bottom: 0;
    margin: 0;
    padding: 0;
    background-color: var(--selected_color);
    color: #fff;
    opacity: 0.9;
    font-size: 0.6em;
    text-align: center;
    overflow: hidden;
}

.ullink_img li .full_cont .cont p {
    color: var(--selected_color);
    font-size: 1.08em;
    font-weight: bold;
    margin-bottom: 5px;
}

.ullink_img li .full_cont .cont span {
    margin-right: 7px;
    font-size: 0.83em;
    color: #999;
}

.ullink_img li a:hover .full_cont .cont span {
    color: #555;
}


/* box 工具栏 */
.box_toolbar {
    display: flex;
    justify-content: space-around;
    align-items: center;

    padding: var(--gap);
    font-size: 0.5em;
}

.box_toolbar .l {
    padding-right: 20px;
}

.box_toolbar .r {
    text-align: right;
    margin-left: auto;
}

.box_toolbar .r a {
    padding-left: 8px;
}

.tab {
    display: flex;
}

.tab a:hover {
    text-decoration: none !important;
}

.tab_item {
    padding: 5px 12px !important;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: #2d2d2d;
    background-color: #eee;
    border-left: 1px solid #fff;
}

.tab_item:first-child {
    padding: 5px 5px 5px 13px !important;
    border-radius: 16px 0 0 16px;
}

.tab_item:last-child {
    padding: 5px 13px 5px 8px !important;
    border-radius: 0 16px 16px 0;
    background-color: #eee;
}

.tab_item.active {
    background-color: var(--selected_color);
    color: #fff;
}

.tab_item:hover {
    background-color: var(--blue_color) !important;
    color: #eee;
}

.box_pic_grid {
    background-color: #fff;
    display: grid;
    row-gap: 17px;
    column-gap: 5px;
    grid-template-columns: repeat(4, 154px);
    justify-content: center;
    justify-items: center;

}

.box_pic_grid img {
    width: 125px;
    vertical-align: middle;
    border: none;
}

.box_pic_grid a:hover img {
    animation: flash 0.5s ease-in-out;
}

/* 鼠标悬浮时图片闪光动画 */
@keyframes flash {
    0% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }

    50% {
        opacity: 0.5;
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }
}

.box_pic_grid_special_l {
    background-color: #fff;
    display: grid;
    row-gap: 20px;
    column-gap: 2px;
    grid-template-columns: 300px 1fr;
    grid-template-areas: "lgbox smboxlist";
    justify-content: center;
    justify-items: center;

    padding: 15px;
}

.box_pic_grid_special_r {
    background-color: #fff;
    display: grid;
    row-gap: 20px;
    column-gap: 2px;
    grid-template-columns: 1fr 300px;
    grid-template-areas: "smboxlist lgbox";
    justify-content: center;
    justify-items: center;

    padding: 15px;
}

.box_pic_grid_special_lg {
    grid-area: lgbox;
    /* background-color: #44aeef30; */
    width: 295px;
    height: 295px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bbg {
    position: absolute;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    z-index: 1;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
}

.bbg>img {
    position: absolute;
    top: 0;
    -moz-filter: blur(8px);
    -ms-filter: blur(8px);
    filter: blur(8px);
    width: 150% !important;
    height: 150% !important;
}

.box_pic_grid_special_sm {
    grid-area: smboxlist;
}

.box_pic_grid_special_lg img {
    width: 220px;
    border: 1px solid #2d2d2d;
}

.box_pic_grid_special_lg>a {
    z-index: 2;
    text-decoration: none;
    color: #f9f9f5;
}

.box_pic_grid_special_lg>a:hover {
    z-index: 2;
    text-decoration: none;
    color: #fff;
}

.box_pic_grid_special_lg .bg {
    position: absolute;
    border: none;
    width: 120px;
    height: 120px;
    right: 0px;
    top: 0px;
    z-index: 3;
}

.box_pic_grid_special_sm img {
    width: 125px;
}


.box_pic_grid span,
.box_pic_grid_special_sm span,
.box_pic_grid_special_lg span {
    display: block;
    text-align: center;
    color: #3d3d3d;
    font-size: 0.85em;
    padding: 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.box_pic_grid_special_lg span {
    display: block;
    text-align: center;
    color: #f9f9f5;
    font-size: 0.85em;
    padding: 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.box_pic_grid_special_sm .inner_txt,
.box_pic_grid_special_lg .inner_txt {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    padding: 4px 2px;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
    width: 121px;
    text-align: center;
    font-size: 0.65em;
    overflow: hidden;
}

.box_pic_grid_special_sm .item {
    position: relative;
}

.box_pic_grid_special_sm .item:hover .user_detail_cont {
    display: block;
}

/* 创作者的详情信息样式 */
.user_detail_cont {
    display: none;
    position: absolute;
    width: 317px;
    height: 298px;
    /* background-color: var(--selected_color); */
    background: linear-gradient(to top left, #FF49B4, #fda9da);
    opacity: 0.94;
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
    z-index: 1001;
}

.user_detail_cont_color2 {
    background: linear-gradient(to top left, #ffe131, #fdf0a4);
}

.user_detail {
    display: grid;
    gap: 10px;
    grid-template-columns: 125px 1fr;
    grid-template-areas: "headhat profile" "song_list song_list";
    justify-content: start;
    justify-items: start;
    font-size: 0.85em;
}

.user_detail .headhat {
    grid-area: headhat;
}

.user_detail .headhat img {
    width: 125px;
}

.user_detail .profile {
    grid-area: profile;
    padding: 3px 0;
    align-self: center;
}

.user_detail .profile p {
    line-height: 120%;
    padding: 4px;
    color: #000;
}

.user_detail .song_list {
    grid-area: song_list;
    padding: 0 10px 0 10px;
}

.user_detail .song_list a {
    display: inline-block;
    line-height: 130%;
    max-width: 293px;
    padding: 5px 5px 5px 1px;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user_detail .song_list a::before {
    content: "•";
    color: #555;
    display: inline-block;
    width: 0.9em;
}



/* 边侧样式 */

.sidebar_box {
    background-color: #fff;
    /* background: repeating-linear-gradient(135deg, #eee, #eee 22px, #fff 22px, #fff 44px); */

    margin: 0 0 var(--gap) 0;
    padding: 0 0 var(--gap) 0;
}

/* 活动广告位 */
.activity_box {
    position: relative;
    width: 300px;
    height: 169px;
    overflow: hidden;
    margin: 0 0 var(--gap) 0;
    padding: 0;
}

.activity_box img {
    width: 300px;
    height: 169px;
    position: absolute;
    transition: opacity 0.6s ease;
}

.activity_box_single {
    width: 300px;
    margin: 0 0 var(--gap) 0;
    padding: 0;
}

.activity_box_single img {
    width: 300px;
}


.activity_box img:not(:first-child) {
    opacity: 0;
}

.activity_box .btn_cont {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
}

.activity_box .btn_cont a {
    padding: 0 6px;
    margin: 0 1px;
    cursor: pointer;
    background-color: #444;
    color: #fff;
    border: none;
    border-radius: 2px;
    opacity: 0.7;
    text-decoration: none;
}

.activity_box .btn_cont a:hover {
    background-color: #b9fcb3;
    color: #444;
}

.activity_box .btn_cont .selected {
    background-color: var(--selected_color);
}


/* 右侧边排行榜 */
.ul_ranking {
    list-style-type: none;
    padding: 7px 0 0 0;
    counter-reset: item;
    background-color: #fff;
}

.ul_ranking li {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    counter-increment: item;
}

.ul_ranking li::before {
    content: counter(item);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 7px;
    background-color: #eee;
    color: var(--selected_color);
    border-radius: 50%;
    font-weight: bold;
}

.ul_ranking li a {
    font-size: 0.8em;
    color: #3d3d3d;
}

.ul_normal {
    list-style-type: none;
    padding: 7px 0 0 7px;
    background-color: #fff;
    margin-left: 20px;
}

.ul_normal li {
    display: flex;
    align-items: center;
    padding: 5px 10px 5px 0
}

.ul_normal li::before {
    content: "•";
    color: #999;
    display: inline-block;
    width: 0.8em;
    margin-left: -1em;
    margin-right: 6px;
}

.ul_normal li a {
    font-size: 0.8em;
    color: #3d3d3d;
}

.box_tab_sm_m {
    display: block;
    margin: 10px 0 0 0;
    padding: 0;
}

.box_tab_sm_m .tab {
    display: flex;
    font-size: 0.81em;
    justify-content: center;
    align-items: center;
}

.box_tag {
    padding: 7px 10px 0 10px;
    background-color: #fff;
    line-height: 120%;
}

.box_tag a {
    display: inline-block;
    font-size: 0.8em;
    color: #3d3d3d;
    padding: 5px 2px;
}

/* 分类页面样式 */
.cate_cont {
    display: grid;
    gap: var(--gap);
    grid-template-areas:
        "main_cont sidebar";
    grid-template-columns: 1fr 300px;
    grid-template-rows: repeat(2, minmax(0, auto));
    align-items: start;
}

.frame_l_main_cont {
    grid-area: main_cont;
}

.frame_r_sidebar {
    grid-area: sidebar;
}

.style_comm_nav {
    display: flex;
    padding: 10px;
    margin-bottom: var(--gap);
    font-size: 0.9em;
    background-color: #fff;
}

.style_comm_nav .l {}

.style_comm_nav .l .item {
    padding: 3px 0;
    color: #3d3d3d;
    text-decoration: underline;
}

.style_comm_nav .l .item:hover {
    color: var(--selected_color);
}



.style_comm_nav .l .item::after {
    content: "/";
    color: #777;
    display: inline-block;
    font-size: 0.8em;
    font-weight: bold;
    padding: 0 0 0 5px;
}

.style_comm_nav .l .item:last-child::after {
    content: "";
}

.style_comm_nav .r {
    text-align: right;

    margin-left: auto;
}

.style_filter_area {
    background-color: #fff;
    /* background: repeating-linear-gradient(135deg, #f9f9f5, #f9f9f5 80px, #fff 80px, #fff 160px); */
    border: 0;
    font-size: 0.9em;
}

.style_filter_area .item {
    display: flex;
    align-items: start;
    justify-content: flex-start;
    padding: 12px 3px 12px var(--gap);
    border-bottom: 1px dotted #efefef;
}

.style_filter_area .item .l {
    width: 70px;
}

.style_filter_area .item .c {
    flex: 1;
    line-height: 160%;
}

.style_filter_area .item .r {
    margin-left: auto;
    text-align: right;
}


.style_filter_area .item h3 {
    font-size: 1.05em;
    padding: 2px 0;
    color: #999;
    vertical-align: top;
}


.style_filter_area .item a,
.style_filter_area .item .droplist {
    padding: 3px 5px;
    font-size: 0.9em;
    text-decoration: none;
}

.style_filter_area .item a.all {
    margin-right: 12px;
    font-weight: bold;
    background-color: #e5e5e5;
    border-radius: 5px;
}

.style_filter_area .item a.all2 {
    margin: 0 12px 0 30px;
    font-weight: bold;
    background-color: #e5e5e5;
    border-radius: 5px;
}


.style_filter_area .item a.selected,
.style_filter_area .item a:hover {
    background-color: var(--selected_color);
    color: #fff !important;
    border-radius: 5px;
}

.style_filter_area .item .droplist {
    color: #888;
    font-weight: bold;
}

.style_filter_area .item .droplist:hover .ul_child_menu {
    display: block;
}

.style_filter_area .item .subtitle{
    color: #999;
    font-weight: 200;
}

.style_ranking_filter_tool {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: var(--gap) 0;
    border: 0;
    font-size: 0.9em;
}

.style_ranking_filter_tool a {
    display: inline-block;
    text-decoration: none;
    background-color: #fff;
    color: #3d3d3d;
    padding: 8px 16px;
    margin: 0;
    border-right: 1px solid #eee;
    width: 100%;
    text-align: center;
    vertical-align: middle;
}

.style_ranking_filter_tool a:last-child {
    border-right: none;
}

.style_ranking_filter_tool a.selected {
    background-color: var(--selected_color);
    color: #fff;
    font-weight: bold;
}

.style_ranking_filter_tool a:hover {
    background: repeating-linear-gradient(135deg, rgba(255, 73, 180, 0.1), rgba(255, 73, 180, 0.1) 28px, rgba(68, 174, 239, 0.1) 28px, rgba(68, 174, 239, 0.1) 56px);
    color: var(--selected_color);
}

.frame_member_cover_area {
    position: relative;
    margin: 0;
    padding: 0;
    height: 180px;
}

.frame_member_cover_area .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    z-index: 1;
    overflow: hidden;
}

.frame_member_cover_area .bg img {
    position: absolute;
    top: 0;
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    filter: blur(15px);
    width: 100%;
    height: 100%;
}

.frame_member_cover_area .cont {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.frame_member_cover_area .cont .l {
    margin: 0;
    padding: 0 var(--gap);
}

.frame_member_cover_area .cont .l img {
    width: 160px;
    height: 160px;
    /* border: 1px solid #ccc; */
    /* border-radius: 50%;
    -moz-border-radius: 50%; */
}

.frame_member_cover_area .cont .c {
    font-size: 0.9em;
    color: #fff;
    flex: 1;
    margin: 0;
    padding: 0 var(--gap);
}

.frame_member_cover_area .cont .c h3 {
    font-size: 1.1em;
    color: #fff;
    margin: 0;
    padding: 5px 0;
}

.frame_member_cover_area .cont .c .btn {
    font-size: 0.7em;
    color: #fff;
    background-color: var(--blue_color);
    margin: 0 10px;
    padding: 4px 8px;
    text-decoration: none;
    font-weight: 400;
    border: 0;
}

.frame_member_cover_area .cont .c .btn:hover {
    background-color: var(--selected_color);
}

.frame_member_cover_area .cont .c p {
    font-size: 0.9em;
    color: #eee;
    margin: 0;
    padding: 1px 0;
    line-height: 140%;
}

.frame_member_cover_area .cont .r {
    margin-left: auto;
    text-align: right;
}


/* 舞曲表格样式1 */
.style_table_area {
    margin-top: var(--gap);
    font-size: 0.9em;
    background-color: #fff;
    /* background: repeating-linear-gradient(135deg, #fcfcf9, #fcfcf9 80px, #fff 80px, #fff 160px); */
}

.style_table_area table {
    border-collapse: collapse;
    width: 100%;
}

.style_table_area th,
.style_table_area td {
    padding: 10px;
    text-align: center;
    font-size: 0.95em;
    color: #4d4d4d;
}

.style_table_area td {
    border-bottom: 1px solid #eee;

}

.style_table_area th {
    border-bottom: 2px solid #eee;
    background-color: #f9f9f5;
    font-weight: bold;
}

.style_table_area tr:hover td {
    background-color: #f9f9f5;
}

.style_table_area td span {
    color: #5d5d5d;
    display: inline-block;
    font-weight: 200;
}

.style_table_area td .title {
    color: #3d3d3d;
    display: inline-block;
    font-size: 1.01em;
    font-weight: normal;
}

.style_table_area td .subtitle {
    color: #999;
    display: inline-block;
    font-size: 0.92em;
    font-weight: 100;
}

.num_lg {
    font-family: Georgia, Times New Roman, Times, serif;
    color: var(--blue_color) !important;
    font-size: large;
}

.num_xlg {
    font-family: Georgia, Times New Roman, Times, serif;
    color: var(--blue_color) !important;
    font-size: x-large;
}

.num_xxlg {
    font-family: Georgia, Times New Roman, Times, serif;
    color: var(--blue_color) !important;
    font-size: xx-large;
}

.style_table_area td a {
    color: #2d2d2d;
}

.primary {
    color: var(--selected_color) !important;
    font-weight: 500 !important;
}

.primary2 {
    color: var(--blue_color) !important;
    font-weight: 500 !important;
}

.style_table_area td .song_info {
    display: flex;
    justify-content: start;
}

.style_table_area td .song_info .pic {
    width: 40px;
    padding-right: 5px;
}

.style_table_area td .song_info .pic img {
    width: 35px;
}

.style_table_area td .song_info .info {
    flex: 1;
}


/* 舞曲表格样式2 */
.style_table_area2 {
    margin-top: var(--gap);
    font-size: 0.9em;
    background-color: #fff;
    /* background: repeating-linear-gradient(135deg, #fcfcf9, #fcfcf9 80px, #fff 80px, #fff 160px); */
}

.style_table_area2 table {
    border-collapse: collapse;
    width: 100%;
    font-size: 1em;
    display: inline-block;
    margin: 3px 0 var(--gap) 0;
}

.style_table_area2 table:last-child {
    margin: 0 !important;
}


.style_table_area2 td {
    padding: 4px 10px;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #f7f7f7;
    color: #555;
}

.style_table_area2 tr:first-child td {
    padding-top: 10px;
}


.style_table_area2 tr:lat-child td {
    border-bottom: 1px solid #f7f7f7;
}

.style_table_area2 td:last-child {
    text-align: right;
}

.style_table_area td .action a,
.style_table_area2 td .action a {
    color: #888;
    text-align: right;
}

.style_table_area2 td .pic img {
    width: 110px;
}

.style_table_area2 td span {
    color: #999;
    display: inline-block;
    font-size: 0.9em;
    font-weight: 100;
}

.style_table_area2 td h3 {
    color: #3d3d3d;
    font-size: 1.2em;
    margin: 0;
    padding: 0;
}

.style_table_area2 td a {
    color: #4d4d4d;
}

.inner-search-box {
    width: 296px;
    height: 40px;
    border: 3px solid #eee;
    background-color: #f9f9f5;
    color: #4d4d4d;
    border-radius: 18px;
    vertical-align: middle;
    padding: 0;
    font-size: 0.9em;
    text-align: center;
}

.inner-search-box input[type='search'] {
    outline: none;
    width: 210px;
    border: none;
    height: 34px;
    text-align: center;
    margin: 0 5px;
    color: #3d3d3d;
}

.inner-search-box .btn {
    text-decoration: none;
    font-weight: bold;
}


/* 分页样式 */
.style_pager {
    display: flex;
    padding: 15px var(--gap);
    margin: 0;
    background-color: #fff;
    font-size: 0.92em;
}

.style_pager .l {
    width: 33%;
    display: inline-block;
    vertical-align: middle;
}

.style_pager .l label,
.style_pager .l input,
.style_pager .l a,
.style_pager .l i {
    vertical-align: middle;
}

.style_pager .l label,
.style_pager .l a {
    padding: 0 2px;
}

.style_pager .r {
    width: 67%;
    display: inline-block;
    margin-left: auto;
    text-align: right;
    vertical-align: middle;
}

.style_pager .r a {
    padding: 2px 7px;
    background-color: #f9f9f5;
    color: #2d2d2d;
    text-decoration: none;
    vertical-align: middle;
    border-radius: 4px;
}

.style_pager .r a:hover,
.style_pager .r a.selected {
    background-color: var(--selected_color);
    color: #f9f9f5;
}

.style_pager .r a.disabled {
    background-color: #eee;
    color: #999;
}

.style_pager .r input[type='text'] {
    background-color: #fff;
    border: 1px solid #eee;
    width: 40px;
    color: #555;
    outline: none;
    vertical-align: middle;
    padding: 7px 2px;
    text-align: center;
    height: 0.83em;
}

/* 分享组件样式 */
.share_cont {
    display: inline-block;
    margin: 0;
    padding: 0 var(--gap) 0 0;
    font-size: 1em;
}

.social-share {
    display: inline-block;
}

.social-share .social-share-icon {
    width: 14px !important;
    height: 14px !important;
    line-height: 14px !important;
    font-size: 13px !important;
    z-index: 5 !important;
}

.social-share a {
    margin: 2px;
}


/* 播放器详情 */
.frame_member_play_area {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: var(--gap);
    margin: 0;
}

.frame_member_play_area>.l {
    width: 300px;
}

.frame_member_play_area>.r {
    flex: 1;
}

.player_area {
    position: relative;
    width: 660px;
    height: 220px;
}

.player_area .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    overflow: hidden;
    z-index: 1;
}

.player_area .bg img {
    position: absolute;
    top: 0;
    -moz-filter: blur(10px);
    -ms-filter: blur(10px);
    filter: blur(10px);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.player_area .player {
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    z-index: 2;
}

.player_area .player .title {
    display: flex;
    /* background-color: #f9f9f5; */
    /* background: repeating-linear-gradient(135deg, #f9f9f5, #f9f9f5 20px, #fff 20px, #fff 40px); */
    padding: var(--gap);
    vertical-align: middle;
    font-size: 0.92em;
    font-weight: bold;
    /* background-color: rgba(0, 0, 0, 0.1); */
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.player_area .player .title .l {
    flex: 1;
}

.player_area .player .title .r {
    margin-left: auto;
    text-align: right;
    max-width: 7%;
}

.sound_wave_hidden {
    display: none;
}

.sound_wave_show {
    display: block;
}

.player_area .player .title img {
    height: 18px;
    vertical-align: bottom;
}

.player_area .player .title img.stop {
    display: none;
}

.player_area .player .play_control {
    /* padding: 15px 15px 3px 15px; */
    /* padding: 20px 0 0 0; */
}

.player_area .player .play_info {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.player_area .player .play_info .disc {
    width: 120px;
    height: 120px;
    padding: 10px;
    margin: 0;
}

.player_area .player .play_info .cover {
    background-image: url(/static/images/vinyl_disk.png);
    background-size: cover;
    position: relative;
    width: 100%;
    height: 100%;
}

.player_area .player .play_info .interface {
    flex: 1;
    vertical-align: middle;
    margin: 0;
    padding: 5px 10px 5px 10px;
}

.play_control audio {
    max-width: 100%;
    width: 100%;
    height: 26px;
    opacity: 0.7;
}

.play_control .mejs__controls{
    top: 5px;
    bottom: 0;
}

.play_control .mejs__playlist-current {
    top: -41px;
    background: rgba(255, 255, 255, 0.05);
    bottom: 0;
    height: 40px !important;
}

.play_control .mejs__playlist-current p {
    font-size: .9em;
    margin: 12px;
    padding-left: 20px;
}

.mejs__container.mejs__audio.mejs__no-playlist {
    min-height: 50px !important;
}

.play_control .mejs__playlist-current p span{
    font-style: normal !important;
    font-weight: bold;
}

/* 去掉默认的播放器样式 */
#mep_0 {
    /* 重置元素样式 */
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* 针对不同的浏览器清除默认的播放按钮样式 */
#mep_0 .mejs-container .mejs-controls input {
    color: inherit;
    background-color: transparent;
    border: none;
    outline: none;
}

/* 隐藏默认的播放器控制条 */
#mep_0 .mejs-container .mejs-controls {
    display: none;
}

.mejs__container:focus {
    outline-offset: 0 !important;
    outline-style: none !important;
    outline-width: 0 !important;
}

.frame_member_play_area .player .play_info .disc img {
    width: 60px;
    height: 60px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -30px;
    margin-top: -30px;
    border-radius: 50%;
}

.frame_member_play_area .player .song_info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    color: #fff;
    font-size: 0.8em;
    /* padding: 3px var(--gap); */
}

.frame_member_play_area .player .song_info .item {
    width: 33%;
    padding: 3px 0;
    vertical-align: middle;
    align-self: center;
}

.frame_member_play_area .player .song_info .item:nth-child(7) {
    flex-basis: 100%;
    padding: 10px 0 5px 0;
}

.frame_member_play_area .player .song_info .item a {
    text-decoration: underline;
}


/* 播放列表 */
.play_list {
    display: block;
    font-size: 0.9em;
    background: repeating-linear-gradient(135deg, #eee, #eee 2px, #fff 2px, #fff 4px);
}

.play_list .toolbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 6px 10px;
    border: 1px solid #fff;
    border-bottom: 1px solid #eee;
}

.play_list .toolbar a {
    padding-right: 7px;
}

.play_list .toolbar>.l {
    padding-right: 30px;
    width: 33%;
}

.play_list .toolbar>.c {
    text-align: center;
    width: 33%;
}

.play_list .toolbar>.r {
    text-align: right;
    margin-left: auto;
    width: 33%;
}

.play_list .toolbar h3 {
    font-size: 1.3em;
    font-weight: 500;
    color: #000;
    margin: 0;
    padding: 0;
}

.play_list .toolbar .icotitle {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;

}

.play_list .toolbar .subtitle {
    display: block;
    font-size: 0.5em;
    font-weight: 200;
    color: var(--subcolor);
}

.play_list .cont {
    display: grid;
    grid-template-areas: "sidebar list" "sidebar footer";
    grid-template-columns: 100px 1fr;
    grid-template-rows: 370px 45px;
}

.play_list .cont .sidebar_l {
    grid-area: sidebar;
}

.play_list .cont .sidebar_l a {
    text-decoration: none;
    display: block;
    color: #3d3d3d;
    padding: 8px var(--gap);
    text-align: center;
}

.play_list .cont .sidebar_l a.selected,
.play_list .cont .sidebar_l a:hover {
    background-color: var(--selected_color);
    color: #fff;
}

.play_list .cont .list {
    grid-area: list;
    background-color: #ebebeb;
    color: #4d4d4d;
    border-left: 1px solid #f9f9f5;
    border-right: 2px solid #f9f9f5;
    overflow-y: scroll;
}

.play_list .cont .footer {
    grid-area: footer;
    border-top: 1px solid #f9f9f5;
}

.play_list .cont .footer .action {
    padding: var(--gap) 11px;
    font-size: 1em;
}

.play_list .cont .footer .action a {
    padding: 0 5px;
}

.play_list .cont .list .item {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 8px var(--gap);
}

.play_list .cont .list .item:hover,
.play_list .cont .list .item.selected {
    background-color: #fff;
}

.play_list .cont .list .item .l {
    flex: 1;
}

.play_list input[type='checkbox'] {
    vertical-align: middle;
}

.play_list .cont .list .item .l a {
    display: inline-block;
    color: #666;
    width: 485px;
    text-decoration: none;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.play_list .cont .list .item:hover .l a,
.play_list .cont .list .item.selected .l a {
    color: var(--selected_color);
    font-weight: bold;
}

.play_list .cont .list .item .r {
    flex: none;
    margin-left: auto;
    text-align: right;
    color: #bbb;
}

.txt_box {
    display: block;
    margin: var(--gap) 0;
}

.txt_box .cont {
    line-height: 150%;
    padding: var(--gap);
    margin: 0;
    background-color: #fff;
    color: #555;
    font-size: 0.9em;
}

.txt_box .cont p {
    padding: 0 0 5px 0;
    margin: var(--gap);
}

.txt_box .cont a {
    color: #2d2d2d;
    text-decoration: underline;
}

.txt_box .cont a:hover {
    color: var(--selected_color);
}

.sidebar_photogrally {
    display: grid;
    gap: 7px;
    grid-template-columns: repeat(3, 95px);
    grid-template-rows: repeat(4, 95px);
    margin: 0;
    padding: 0;
}

.sidebar_photogrally .item {
    position: relative;
}

.sidebar_photogrally .item>a {
    text-decoration: none;
}

.sidebar_photogrally .item img {
    position: absolute;
    width: 100%;
    z-index: 1;
}

.sidebar_photogrally .item1 {
    grid-column-start: 1;
    grid-column-end: 3;
}

.sidebar_photogrally .item2 {
    grid-column-start: 3;
    grid-column-end: 4;
}


.sidebar_photogrally .big {
    width: 197px;
    height: 197px;
}

.sidebar_photogrally .subtitle {
    position: absolute;
    display: none;
    bottom: 0;
    padding: 5px;
    color: #fff;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
    font-size: 0.7em;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
}

.sidebar_photogrally .item:hover .subtitle {
    display: inline-block;
    color: #fff;
    ;
    background-color: rgba(0, 0, 0, 0.4);
}

.sidebar_photogrally .item:hover img {
    animation: flash 0.5s ease-in-out;
}

.author_box {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: var(--gap);
    margin: 0;
    padding: var(--gap) var(--gap) 0 var(--gap);
    background-color: #fff;
}

.author_box>.l {
    width: 100px;
}

.author_box>.l img {
    width: 100%;
}

.author_box>.l a:hover img {
    animation: flash 0.5s ease-in-out;
}


.author_box>.r {}

.author_box>.r h3 {
    font-size: 1em;
    color: #4d4d4d;
    padding: 2px 0;
}

.author_box>.r p {
    font-size: 0.88em;
    color: #555;
    padding: 2px 0;
}

.login_modal {
    margin: 0;
    padding: 0;
    width: 430px;
    font-size: 0.9em;
    background-color: #fff;
}

.login_modal .title {
    background-color: var(--selected_color);
    color: #fff;
    margin: 0;
    padding: 12px 15px;
}

.login_modal h3 {
    width: 100%;
    font-weight: 500;
}

.login_modal table {
    width: 100%;
    padding: 20px;
}

.login_modal table tr td {
    padding: 5px;
    line-height: 140%;
}


.login_modal table tr td input[type='text'],
.login_modal table tr td input[type='password'] {
    padding: 12px;
    margin-top: 4px;
    width: 100%;
    max-width: 100%;
}

.login_modal table tr td input[type='button'] {
    padding: 5px 30px;
}

.login_modal .msg {
    color: red;
    padding: 5px var(--gap);
}

.login_modal p {
    color: #999;
}

.login_modal .reg {
    display: flex;
    width: 100%;
    padding: 0 5px;
}

.login_modal .third_login {
    vertical-align: middle;
    padding: 15px 5px;
}

.login_modal .third_login a {
    display: inline-block;
    padding: 0 5px;
}

.login_modal .third_login img {
    display: inline-block;
    width: 30px;
    padding-right: 5px;
}


.login_modal .reg .l {
    width: 50%;
}

.login_modal .reg .r {
    width: 50%;
    text-align: right;
    margin-left: auto;
}

.login_modal .reg a {
    color: var(--blue_color);
}

.privacy_cont {
    display: grid;
    gap: var(--gap);
    grid-template-areas:
        "main_cont sidebar";
    grid-template-columns: 1fr 200px;
    grid-template-rows: repeat(2, minmax(0, auto));
    align-items: start;
}


.long_cont {
    margin: 0;
    padding: 15px 30px;
}

.long_cont h2 {
    font-size: 1.3em;
    font-weight: bold;
    padding: 14px 0;
}

.long_cont h3 {
    font-size: 1.1em;
    font-weight: bold;
    padding: 10px 0;
}

.long_cont p {
    line-height: 140%;
    padding: 5px 0;
    padding: 0;
}

.long_cont ul {
    padding: 5px 15px;
    padding: 0;
}

.long_cont a {
    text-decoration: underline;
}