body {
    background: #F5F5F8;
}

.cat-root {
    background: #F5F5F8;
}
.cat-com-root {
    padding-left: 20px;
    padding-right: 20px;
    background: #F5F5F8;
}
.cat-com-root .container {
    position: relative;
    margin: 15px auto 20px auto;
    width: 1200px;
    background-color: rgba(255,255,255, 1);
    -webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.05);
    box-shadow: 0 0 4px 0 rgba(0,0,0,0.05);
}
.cat-com-root .categoryList {
    display: inline-block;
    width: 158px;
    background: rgba(255,255,255, 1);
    text-align: center;
    font-size: 16px;
    color: #606060;
    line-height: 40px;
    margin-top: 20px;
    margin-left: 20px;
    padding-bottom: 20px;
    vertical-align: top;
}
.cat-com-root .main {
    padding-left: 38px;
    padding-top: 20px;
    display: inline-block;
}
.cat-com-root .categoryItem {
    display: inline-block;
    width: 158px;
    height: 40px;
    background: rgba(41,204,204,.14);
    border-bottom: 1px solid #EEE;
}
.cat-com-root .categoryItem-selected {
    display: inline-block;
    width: 158px;
    height: 40px;
    background: #FFFFFF;
    font-size: 18px;
    color: #29cccc;
}
.cat-com-root .categoryItem-selected:before {
    content: '';
    display: block;
    position: absolute;
    left: 20px;
    height: 40px;
    width: 0px;
    border-left: 6px solid #29cccc;
}
.cat-com-root .categoryTitle {
    color: inherit;
}

.cat-com-root .menuContainer {
}
.cat-com-root .contentsContainer {
    width: 970px;
    padding-top: 23px;
}
.content-item-root {
    width: 160px;
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    margin: 0 30px 20px 0;
    position: relative;
}
.content-item-root .coverImg {
    display: block;
    position: relative;
    width: 160px;
    height: 160px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.1);
    box-sizing: border-box;
}
.content-item-root img {
    margin: 0;
    width: 160px;
    height: 160px;
    box-sizing: border-box;
}
.content-item-root .imgOverlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 32px;
    background-image: linear-gradient(-180deg, rgba(60,60,60,0.00) 0%, #3D3D3D 100%);
}
.content-item-root .itemTitle {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 8px;
}
.content-item-root .itemTitle span:first-of-type {
    font-size: 10px;
    margin-right: 6px;
    padding: 3px;
    border-radius: 4px;
}
.content-item-root .itemTitle span {
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.content-item-root .channel-type {
    color: #FF9800;
    border: 1px solid #FF9800;
}
.content-item-root .desc {
    display: -webkit-box;
    font-size: 14px;
    color: #222;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.content-item-root .info {
    font-size: 12px;
    color: #999999;
}
.content-item-root .star {
    position: absolute;
    top: 135px;
    left: 7px;
}
.cat-com-root .paging {
    overflow: hidden;
    margin-right: 29px;
}

/* 确保封面容器是定位基准 */
.coverImg {
    position: relative;
    display: block;
    overflow: hidden; /* 保证圆角能剪裁内部元素 */
    border-radius: 4px; /* 如果原本没设圆角可以加一个 */
}

/* 精装专辑标签样式 */
.tag-hardcover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10; /* 确保在图片和遮罩层之上 */
    background: linear-gradient(135deg, #ffb300 0%, #ff8f00 100%); /* 金色渐变感 */
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    font-weight: bold;
    line-height: 1;
    border-bottom-right-radius: 8px; /* 右下角圆角 */
    box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    pointer-events: none; /* 防止点击标签影响到跳转 */
}

/* 可选：给图片加一点点悬停缩放效果，提升质感 */
.coverImg img {
    transition: transform 0.3s ease;
}
.coverImg:hover img {
    transform: scale(1.05);
}

/* ========== 状态筛选栏样式 ========== */
.cat-com-root .filter-bar {
    width: 970px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 12px 20px;
    margin-top: 20px; /* 和左侧菜单顶部对齐 */
    border-radius: 4px;
    box-shadow: 0 0 4px 0 rgba(0,0,0,0.05); /* 统一卡片阴影 */
}

.cat-com-root .filter-bar .filter-label {
    font-size: 14px;
    color: #999;
    margin-right: 15px;
    font-weight: bold;
}

.cat-com-root .filter-bar .filter-item {
    font-size: 14px;
    color: #666;
    padding: 4px 16px;
    margin-right: 10px;
    border-radius: 15px; /* 胶囊圆角风格 */
    transition: all 0.2s;
    text-decoration: none;
}

/* 鼠标悬停的效果 (淡青色底) */
.cat-com-root .filter-bar .filter-item:hover {
    color: #29cccc;
    background-color: rgba(41, 204, 204, 0.1);
}

/* 选中高亮状态 (主青色底 + 白字) */
.cat-com-root .filter-bar .filter-item.active {
    color: #fff;
    background-color: #29cccc;
    font-weight: bold;
    pointer-events: none; /* 选中的按钮取消点击效果 */
}

/* 微调专辑列表的上边距，使其与新的筛选栏间距协调 */
.cat-com-root .contentsContainer {
    padding-top: 20px;
}