/* Start custom CSS *//* 方法1: 使用display: none */
.page-title {
    display: none;
}

/* 方法2: 使用visibility: hidden */
.page-title {
    visibility: hidden;
}

/* 方法3: 使用opacity: 0 */
.page-title {
    opacity: 0;
}

/* 方法4: 使用text-indent将文本推出可视区域 */
.page-title {
    text-indent: -9999px;
    overflow: hidden;
}

/* 方法5: 使用position: absolute将元素移出屏幕 */
.page-title {
    position: absolute;
    left: -10000px;
}

/* 方法6: 使用clip-path隐藏元素 */
.page-title {
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
}

/* 方法7: 使用transform将元素移出可视区域 */
.page-title {
    transform: translateX(-100vw);
}

/* 方法8: 设置字体尺寸为0 */
.page-title {
    font-size: 0;
}

/* 方法9: 设置颜色和背景色相同 */
.page-title {
    color: transparent;
    background-color: transparent;
}

/* 方法10: 使用width和height为0 */
.page-title {
    width: 0;
    height: 0;
    overflow: hidden;
}/* End custom CSS */