移动设备上未应用CSS修改

我可以看到您的修改,但由于目标不够具体,它已被核心 CSS 覆盖。
您可以在使用浏览器检查元素时看到它,例如:

您需要向您的规则添加 !important 或更具体,例如:

.user-profile-location {
    display: none !important;
}
.user-main .about .details .user-profile-location {
    display: none;
}

通常建议首先正确指定规则,以避免定位意外的元素。

5 个赞