/*
Theme Name: golaw child
Tags:  custom-menu, editor-style, featured-images
Template: golaw
Version: 1.0.0
*/

/* 悬停效果保持不变 */
.txbd_previous:hover::before,
.txbd_next:hover::after {
    color: #EDB8CF !important;  /* 或者保持你主题的悬停颜色 */
}
/* ===== 精确到只隐藏特定内容 ===== */

/* 只隐藏 Project Information 标题 */
.single-blog-details .prots-contentg > h2:first-child {
    display: none !important;
}

/* 只隐藏紧接着标题的前几个 b 和 span 组合 */
.single-blog-details .prots-contentg > b.eleft:nth-of-type(1),
.single-blog-details .prots-contentg > span.eright:nth-of-type(1),
.single-blog-details .prots-contentg > b.eleft:nth-of-type(2),
.single-blog-details .prots-contentg > span.eright:nth-of-type(2),
.single-blog-details .prots-contentg > b.eleft:nth-of-type(3),
.single-blog-details .prots-contentg > span.eright:nth-of-type(3),
.single-blog-details .prots-contentg > b.eleft:nth-of-type(4),
.single-blog-details .prots-contentg > span.eright:nth-of-type(4),
.single-blog-details .prots-contentg > b.eleft:nth-of-type(5),
.single-blog-details .prots-contentg > span.eright:nth-of-type(5) {
    display: none !important;
}
/* ===== 精确控制 ===== */

/* 隐藏 Project Information 标题 */
.single-blog-details .prots-contentg h2 {
    display: none !important;
}

/* 隐藏列表中的所有 b 标签（Name） */
.single-blog-details .prots-contentg ul li b {
    display: none !important;
}

/* 隐藏列表中的所有 span 标签（Value） */
.single-blog-details .prots-contentg ul li span {
    display: none !important;
}

/* 隐藏社交分享图标 */
.single-blog-details .golaw-blog-social {
    display: none !important;
}
/* ===== 文章标题居中 ===== */
.single-blog-details .blog-lr .pr-title h2 {
    text-align: center !important;
}