/* 强制移除导航栏中所有箭头 */

/* 移除所有导航相关的伪元素 */
.header *::after,
.header *::before,
.headernav *::after,
.headernav *::before {
    content: none !important;
}

/* 但保留必要的下划线效果 */
.headernav>ul>li>a::after {
    content: "" !important;
    position: absolute;
    transition: .5s;
    width: 0;
    left: 15%;
    bottom: -2px;
    height: 1px;
    background: #333;
}

.header.fh .headernav>ul>li:hover>a::after,
.header.fh .headernav>ul>li.on>a::after {
    width: 70%;
}

/* 确保下拉菜单完全隐藏 */
.proMenuDown,
.proMenuDown2,
.menuDownTwo {
    display: none !important;
    visibility: hidden !important;
}

/* 恢复正常定位 */
.headernav>ul>li {
    position: relative !important;
}