/* 桌面端隐藏移动端底部信息 */
.mobile-bottom-info {
    display: none;
}

/* 桌面端隐藏移动端搜索区域 */
.mobile-search-area {
    display: none;
}

/* 桌面端隐藏移动端链接 */
.mobile-top-links {
    display: none;
}


/* ==================== 顶部区域模块 ==================== */
/* 顶部工具栏 */
.top-bar {
    background-color: #2c2c2c;
    color: white;
    font-size: 14px;
    position: relative;
}

.top-bar-right {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    position: relative;
}

.top-link {
    padding: 8px 0;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-link .icon {
    width: 16px;
    height: 16px;
}

/* 下拉箭头 */
.dropdown-arrow {
    width: 10px;
    height: 6px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown-trigger:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* ==================== Logo和菜单栏模块 ==================== */
/* 主导航栏 */
.main-header {
    background-color: white;
    position: relative;
}

.main-header .container {
    display: flex;
    align-items: center;
	height: 80px;
    justify-content: space-between;
}

/* Logo样式 */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
	width: 170px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

/* 主导航菜单 */
.main-nav {
}

.nav-list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    gap: 60px;
    margin-top: 34px;
    margin-right: 100px;
}

.nav-item {
    position: relative;
    height: 100%;
}

.nav-link {
    color: #333;
    height: 44px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    display: block;
}

.nav-link:hover {
    color: var(--primary);
}

/* 下拉菜单触发器的红色下划线 - 只在悬停时显示 */
.dropdown-trigger .nav-link {
    color: #333;
    transition: color 0.3s ease;
}

.dropdown-trigger .nav-link:hover {
       color: #000000;
	    font-weight: 600;
}

.dropdown-trigger .nav-link::after,.nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dropdown-trigger:hover .nav-link::after,.nav-item:hover .nav-link::after {
    opacity: 1;
}

/* 保持PC端导航项在下拉菜单显示时的悬停样式 */
.main-header .dropdown-trigger.active .nav-link {
    color: #000000;
    font-weight: 600;
}

.dropdown-trigger:hover .nav-link::after {
    opacity: 1;
}

/* 激活状态下也显示下划线 */
.main-header .dropdown-trigger.active .nav-link::after {
    opacity: 1;
}

/* 商城链接 */
.store-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-icon {
    width: 20px;
    height: 20px;
}

.store-text {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.store-text:hover {
    color: var(--primary);
}

/* ==================== 下拉菜单栏模块 ==================== */
/* 主导航下拉菜单组件 */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border-top: 1px solid #dfdfdf;
    padding: 30px;
    width: 100%;
    display: none;
    z-index: 11;
}

.dropdown-content {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.dropdown-panel {
    display: none;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: space-between;
    align-items: flex-start;
}

.dropdown-panel.active {
    display: flex;
}

.dropdown-panel.grid-panel.active{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.dropdown-panel.grid-panel-3.active{
    display:flex;
    justify-content: center;
}
.dropdown-panel.grid-panel-3 .dropdown-column{
    flex:0 1 25%;
}
.dropdown-panel.grid-panel .category-header{
    margin:0!important;
    padding:0!important;
    height: 48px;
    line-height: 48px;
}
.dropdown-column {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 8px;
}

/* 分类标题和图标 */
.category-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
}
.noBorder {
    border :0;
}

.category-icon {
    height: 38px;
    margin-bottom: 10px;
}
/* .category-header:hover .category-icon {
    transform: scale(1.1);
}
.category-header:hover .category-title {
    color: var(--primary);
} */

.category-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-align: center;
    white-space: nowrap;
}

/* 子分类列表 */
.subcategory-list {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subcategory-list li {
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
}

.subcategory-list a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    position: relative;
    white-space: nowrap;
}

.subcategory-list a:hover {
    color: var(--primary);
    /* background-color: #fff5f5; */
    transform: translateX(5px);
}

.view-more {
    color: #666;
}

.view-more:hover {
    color: var(--primary);
    /* background-color: #fff5f5; */
    transform: translateX(5px);
}
/* 成员网站下拉菜单 */
.member-dropdown-menu {
    position: absolute;
    top: 100%;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 4px 4px;
    padding: 0;
    width: 150px;
    display: none;
    z-index: 21;
}

.member-dropdown-content {
    width: 100%;
}

.member-dropdown-list {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.member-dropdown-list a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 6px 20px;
    transition: all 0.3s ease;
}

.member-dropdown-list a:hover {
    color: var(--primary);
    /* background-color: #fff5f5; */
}

/* 语言选择下拉菜单 */
.language-dropdown-menu {
    position: absolute;
    top: 100%;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 4px 4px;
    padding: 0 0;
    width: 150px;
    display: none;
    z-index: 21;
}

.language-dropdown-content {
    width: 100%;
}

.language-dropdown-list {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}


.language-dropdown-list a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 6px 20px;
    transition: all 0.3s ease;
}

.language-dropdown-list a:hover {
    color: var(--primary);
    /* background-color: #fff5f5; */
}
/* 特殊下拉菜单样式 */
/* 新闻与活动下拉菜单特殊样式 */
#news-events .category-header {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

#news-events .category-title {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    cursor: pointer;
}

#news-events .category-title:hover {
    color: var(--primary);
    /* background-color: #fff5f5; */
    transform: translateX(5px);
}

#news-events .dropdown-column {
    padding: 0;
}

/* 联系我们下拉菜单特殊样式 */
#contact-us .category-header {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

#contact-us .category-title {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    cursor: pointer;
}

#contact-us .category-title:hover {
    color: var(--primary);
    /* background-color: #fff5f5; */
    transform: translateX(5px);
}

#contact-us .dropdown-column {
    padding: 0;
}
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

/* ==================== 移动端折叠菜单 ==================== */
.mobile-collapse-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* 移动端菜单遮罩层 */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* 移动端语言选择遮罩层 */
.mobile-language-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-language-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* 移动端语言选择界面 */
.mobile-language-selector {
    position: fixed;
    top: 7vh;
    left: 0;
    width: 100%;
    z-index: 10000;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.3s ease;
    pointer-events: none;
}

.mobile-language-selector.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-language-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 20px;
    box-sizing: border-box;
    border-top: 1px solid #e5e7eb;
}

.mobile-language-title {
    font-size: 18px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 20px;
    text-align: center;
}

.mobile-language-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin: 0 auto;

}

.mobile-language-item {
    padding: 12px 8px;
    text-align: center;
    /* font-size: 4.4vw; */
    color: #666666;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.mobile-language-item a{
    color: #6b7280;
}
.mobile-language-item:hover {
    background: #e8e8e8;
    color: #333333;
}

.mobile-language-item:active {
    background: #d8d8d8;
    transform: scale(0.98);
}

.mobile-bottom-menu-trigger:hover {
    /* background-color: #f8f9fa; */
}

.mobile-bottom-menu-trigger-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 300px;
}

.mobile-bottom-menu-trigger-text {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.mobile-bottom-menu-trigger-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    transform: rotate(90deg);
}

.mobile-bottom-menu-trigger.active .mobile-bottom-menu-trigger-arrow {
    transform: rotate(270deg);
}

/* 第二个移动端折叠菜单基础样式 */
.mobile-collapse-menu-second {
    display: none;
    position: relative;
    width: 100%;
    /* background-color: #f8f9fa; */
    border-top: 1px solid #e9ecef;
    margin-top: 0;
    z-index: 9;
    opacity: 1;
    visibility: visible;
    transition: none;
}

.mobile-collapse-menu.active {
    display: block;
    opacity: 1;
}


.mobile-menu-content {
    position: absolute;
    top: 7vh; /* 从固定header底部开始 */
    left: 0;
    width: 100%; /* 横向填充整个屏幕 */
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* 只保留下方阴影 */
    transform: translateY(-100%); /* 从上方滑入 */
    transition: transform 0.3s ease;
    padding: 0; /* 移除内边距，让内容自然撑开高度 */
    max-height: 84vh; /* 限制最大高度，避免超出屏幕 */
    overflow-y: auto; /* 如果内容过多，允许滚动 */
}

.mobile-collapse-menu.active .mobile-menu-content {
    transform: translateY(0); /* 从上方滑入到正常位置 */
}

/* 第二个移动端折叠菜单的mobile-menu-content active状态 */
.mobile-collapse-menu-second.active .mobile-menu-content {
    display: block;
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    box-shadow: none;
    /* background-color: #f8f9fa; */
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5vh 6vw;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 100%; /* 确保占满全宽 */
    box-sizing: border-box;
}


.mobile-menu-text {
    font-size: 4vw;
    color: #333333;
    font-weight: 500;
    flex: 1; /* 让文字占据剩余空间 */
}

.mobile-menu-arrow {
    width: 4vw;
    height: 4vw;
    /* transform: rotate(90deg); */
    flex-shrink: 0; /* 防止箭头被压缩 */
}

.mobile-menu-divider {
    height: 1px;
    background-color: #e9ecef;
    margin: 0; /* 移除左右边距，让分隔线占满全宽 */
}

/* 移动端菜单分类容器 */
.mobile-menu-category {
    width: 100%;
}

/* 移动端子菜单 */
.mobile-submenu {
    display: block;
    /* background-color: #f8f9fa; */
    padding: 0;
    /* border-top: 1px solid #e9ecef; */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.mobile-submenu.active {
    max-height: 70vh !important;
    overflow-y: auto !important;
}

/* 移动端子菜单分组 */
.mobile-submenu-section {
    padding: 1.5vh 4vw;
    border-bottom: 1px solid #e9ecef;
}

.mobile-submenu-section .mobile-submenu-link {
    display: inline-block;
    margin-bottom: 0.8vh;
}

.mobile-submenu-section:last-child {
    border-bottom: none;
}

/* 移动端子菜单标题 */
.mobile-submenu-title {
    font-size: 3.2vw;
    font-weight: 600;
    color: #333;
    margin: 0 0 1vh 0;
    padding-bottom: 0.8vh;
    border-bottom: 1px solid #dee2e6;
}

/* 移动端子菜单链接 */
.mobile-submenu-link {
    display: inline-block;
    color: #666;
    text-decoration: none;
    font-size: 2.8vw;
    padding: 0.8vh 1.5vw;
    margin: 0.3vh 0.8vw 0.3vh 0;
    transition: color 0.2s ease;
    border: 1px solid #ddd;
    border-radius: 12px;
    /* background-color: #f8f9fa; */
    white-space: nowrap;
    outline: none; /* 移除默认焦点轮廓 */
    z-index: 999;
    position: relative;
}

.mobile-submenu-link:hover {
    color: var(--primary);
    /* background-color: #fff5f5; */
    border-color: var(--primary);
}

/* 确保焦点状态不会意外触发选中样式 */
.mobile-submenu-link:focus {
    color: #666;
    /* background-color: #f8f9fa; */
    border-color: #ddd;
    outline: none;
}

/* 防止活动状态意外触发 */
.mobile-submenu-link:active {
    color: #666;
    /* background-color: #f8f9fa; */
    border-color: #ddd;
}

/* 强制防止任何选中状态 */
.mobile-submenu-link {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* 防止任何可能的选中样式 */
.mobile-submenu-link::selection {
    background: transparent !important;
    color: inherit !important;
}

.mobile-submenu-link::-moz-selection {
    background: transparent !important;
    color: inherit !important;
}

/* 特别针对面点用品下的链接，防止任何选中状态 */
.mobile-menu-category .mobile-submenu .mobile-submenu-link {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    outline: none !important;
    box-shadow: none !important;
    pointer-events: none !important;
}

/* 恢复点击功能但防止选中 */
.mobile-menu-category .mobile-submenu .mobile-submenu-link {
    pointer-events: auto !important;
}

.mobile-submenu-link:last-child {
    margin-right: 0;
}

/* 移动端宽松子菜单样式 - 与普通子菜单完全一致 */
.mobile-submenu-spacious {
    display: block;
    /* background-color: #f8f9fa; */
    padding: 0;
    /* border-top: 1px solid #e9ecef; */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.mobile-submenu-spacious.active {
    max-height: 70vh !important;
    overflow-y: auto !important;
}

.mobile-submenu-link.mobile-submenu-link-spacious {
    display: block !important;
    color: #333333 !important;
    text-decoration: none;
    font-size: 3.6vw !important;
    font-weight: 500 !important;
    padding: 1.5vh 6vw !important;
    margin: 0 !important;
    transition: color 0.2s ease;
    border: none !important;
    border-radius: 0 !important;
    background-color: transparent !important;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
}

.mobile-submenu-link.mobile-submenu-link-spacious:hover {
    color: var(--primary);
    /* background-color: #fff5f5; */
}

.mobile-submenu-link-spacious:last-child {
    margin-right: 0;
}

/* 移动端二级菜单项样式 */
.mobile-menu-item.sub-item {
    padding-left: 6vw;
    /* background-color: #f8f9fa; */
}

.mobile-menu-item.sub-item .mobile-menu-text {
    font-size: 3.6vw;
    color: #333;
}

.mobile-menu-item.sub-item .mobile-menu-arrow {
    width: 3.5vw;
    height: 3.5vw;
}

/* 移动端三级子菜单样式 */
.mobile-menu-category .mobile-submenu .mobile-menu-category .mobile-submenu {
    padding-left: 6vw;
    /* background-color: #f0f0f0; */
}

.mobile-menu-category .mobile-submenu .mobile-menu-category .mobile-submenu .mobile-submenu-link {
    display: block !important;
    font-size: 3.6vw !important;
    padding: 0.6vh 7.2vw !important;
    margin: 0.2vh 0 0.2vh 0 !important;
    width: 100%;
    box-sizing: border-box;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
}

/* .mobile-menu-category .mobile-submenu .mobile-menu-category .mobile-submenu .mobile-submenu-link:hover {
    color: var(--primary) !important;
    background-color: #fff5f5 !important;
    border: none !important;
    border-radius: 0 !important;
} */

/* 个人及家庭产品下的子菜单项样式 - 与商用产品与方案保持一致 */
.mobile-menu-category .mobile-submenu .mobile-submenu .mobile-submenu-link {
    display: block;
    font-size: 3.0vw;
    padding: 0.6vh 1.2vw;
    margin: 0.2vh 0 0.2vh 0;
    width: 100%;
    box-sizing: border-box;
    background-color: transparent;
    border: none;
}

/* 移动端菜单触发器样式 */
.mobile-menu-trigger {
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%; /* 确保占满容器高度 */
    width: 8vw;
}

.mobile-menu-trigger:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.mobile-menu-trigger .icon {
    height: 3.4vw;
}

/* 移动端菜单响应式 */
@media (max-width: 1280px) {
    .mobile-collapse-menu {
        display: none;
    }
    
    /* 第二个菜单在桌面端默认隐藏 */
    .mobile-collapse-menu-second {
        display: none;
        position: relative;
        /* background-color: #f8f9fa; */
        border-top: 1px solid #e9ecef;
        margin-top: 0;
        /* z-index: 1000; */
        opacity: 0;
        visibility: hidden;
    }
    
    .mobile-collapse-menu-second.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-collapse-menu-second .mobile-menu-content {
        display: block;
        position: relative;
        transform: none;
        top: auto;
        left: auto;
        box-shadow: none;
        /* background-color: #f8f9fa; */
    }
}


@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .logo-img{
        padding-left: 2vw;
    }
    .main-header{
        position: sticky;
        z-index: 9999;
    }
    .main-header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: 7vh;
    }

    .logo-img{
        width: 26vw;
        width: min(170px, 26vw);
    }
    
    .dropdown-menu {
        display: none !important;
    }
    
    .store-link {
        display: none;
    }
    .mobile-top-links {
         display: flex;
        align-items: center;
        order: 2;
        height: 100%; /* 确保容器占满header高度 */
        padding-right: 2vw;

    }
    
    .mobile-top-link {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #333;
        text-decoration: none;
        font-size: 2.8vw;
        transition: color 0.3s ease;
        height: 100%; /* 确保占满容器高度 */
        border: 0;
        width: 8vw;
    }
    
    .mobile-top-link .icon {
        height: 4vw;
    }
    
    .mobile-top-link .dropdown-arrow {
        width: 2vw;
        height: 2vw;
        margin-left: 0.8vw;
        min-width: 6px;
        min-height: 6px;
        max-width: 10px;
        max-height: 10px;
    }
    
    .mobile-menu-trigger {
        width: 8vw;
    }
    /* 移动端搜索区域 */
    .mobile-search-area {
        display: none;
        position: absolute;
        /* top: 9vh; */
        left: 0;
        right: 0;
        background-color: #fff;
        border-bottom: 1px solid #e0e0e0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        z-index: 9999;
        padding: 2vh 4vw;
    }
    
    .mobile-search-area.active {
        display: block;
    }
    
    .mobile-search-container {
        width: 100%;
    }
    
    .mobile-search-box {
        display: flex;
        align-items: center;
        background-color: #f5f5f5;
        border-radius: 25px;
        padding: 1vh 2vw;
        gap: 2vw;
    }
    
    .mobile-search-input {
        flex: 1;
        border: none;
        background: transparent;
        font-size: 4vw;
        color: #333;
        outline: none;
    }
    
    .mobile-search-input::placeholder {
        color: #999;
        font-size: 15px;
    }
    
    .mobile-search-btn {
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-search-btn .search-icon2 {
        width: 5vw;
        height: 5vw;
        min-width: 20px;
        min-height: 20px;
    }

    .mobile-menu-content .mobile-menu-divider{
        width: 90%;
        background-color: var(--bg-gray);
        position: relative;
        left: 5%;
        display: block!important;
    }
}
