/* 修复activity页面导航栏文字旋转问题 */

/* 强制导航栏所有文字水平显示 */
.nav-item,
.nav-item *,
.Submenu-container,
.Submenu-container *,
.Submenu-product-name,
.Submenu-product-name *,
.list-product-name,
.list-product-desc,
.Submenu-middle *,
.menu-recommend-content *,
.menu-product-content * {
    writing-mode: horizontal-tb !important;
    -webkit-writing-mode: horizontal-tb !important;
    -ms-writing-mode: lr-tb !important;
    text-orientation: mixed !important;
}

/* 禁用所有旋转 */
.Submenu-background,
.Submenu-background * {
    transform: none !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
}
