/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* 头部样式 */
.custom-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.header-container>div:first-child {
    display: flex;
    align-items: center;
    flex: 1;
}

.header-container>div:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* 搜索框和语言切换器容器 */
.header-top-row {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
    padding-top: 10px;
}

/* 导航容器 */
.header-bottom-row {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding-bottom: 10px;
}

.logo {
    flex-shrink: 0;
    margin-right: 20px;
}

.logo img {
    height: 90px;
    width: auto;
}

.search-container {
    margin: 0 15px 0 0;
}

.language-switcher {
    margin: 0;
}

/* 主菜单容器 - 桌面端 */
.mega-menu {
    align-self: flex-end;
}

.menu-level-0 {
    height: auto;
}

.menu-item {
    height: auto;
}

.menu-toggle {
    padding: 10px 15px;
    height: auto;
}

/* 搜索框样式 */
.search-container {
    flex: 1;
    max-width: 300px;
    margin: 0 20px;
    position: relative;
}

.search-box {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 4px;
    padding: 8px 12px;
    transition: all 0.3s ease;
    position: relative;
    justify-content: center;
}

.search-box:focus-within {
    background: #fff;
    box-shadow: 0 0 0 2px rgba(226, 35, 26, 0.2);
}

.search-box input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    padding: 0 8px;
    font-size: 14px;
}

.search-box button {
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 5px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 12px;
}

.search-box button:hover {
    color: #012844;
}

/* 移动端的搜索 */
.mobile-search-box:focus-within {
    background: #fff;
    box-shadow: 0 0 0 2px rgba(226, 35, 26, 0.2);
}

.mobile-search-box input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    padding: 0 8px;
    font-size: 14px;
    color: #000;
}

/* .mobile-search-box button {
    background: none;
    border: none;
    cursor: pointer;
    color: #080808;
    padding: 50px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 25px;
} */

/* 添加针对移动端搜索表单内按钮的样式 */
.mobile-search-box form button {
    background: none;
    border: none;
    cursor: pointer;
    color: #080808;
    padding: 6px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
    /* top: 50%;
    transform: translateY(-50%); */
}

/* 语言切换器样式 */
.language-switcher {
    position: relative;
    margin-left: 15px;
}

.language-toggle {
    display: flex;
    align-items: center;
    background: none;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    color: #333;
    background-color: #f8f9fa;
    white-space: nowrap;
    width: 120px;
    /* 固定宽度，确保切换时不会影响布局 */
    text-align: center;
    justify-content: center;
}

.language-toggle:hover {
    border-color: #012844;
    color: #012844;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.language-toggle::after {
    content: '▼';
    font-size: 12px;
    margin-left: 8px;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 1002;
    min-width: 100%;
    /* 匹配触发元素宽度 */
    width: max-content;
    /* 根据内容调整宽度 */
    margin-top: 5px;
    overflow: hidden;
    transform-origin: top center;
    transform: scaleY(0);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
}

.language-dropdown.active {
    display: block;
    transform: scaleY(1);
    opacity: 1;
}

.language-option {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    font-size: 16px;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: #f8f9fa;
    color: #012844;
    transform: translateX(5px);
    /* 增加明显的移动效果 */
}

/* 主菜单容器 - 桌面端 */
.mega-menu {
    position: relative;
    height: 100%;
}

.menu-level-0 {
    display: flex;
    list-style: none;
    height: 100%;
    margin: 0;
    padding: 0;
}

.menu-item {
    position: relative;
    height: 100%;
}

.menu-toggle {
    cursor: pointer;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    color: #012844;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    background: none;
    font-size: 20px;
    /* 菜单文字大小 */
    position: relative;
}

.menu-toggle:hover {
    color: #012844;
}

/* 添加悬停时的下划线效果 */
.menu-toggle:hover::after {
    content: '';
    position: absolute;
    bottom: 0px;
    /* 调整下划线位置，使其更靠近文字 */
    left: 20px;
    right: 20px;
    height: 3px;
    background: #012844;
}

/* 激活状态的菜单项 */
.menu-item.active .menu-toggle {
    color: #012844;
    background: rgba(226, 35, 26, 0.05);
}

/* 这个是导航栏的激活样式 */
.menu-item.active .menu-toggle::after {
    content: '';
    position: absolute;
    bottom: 0px;
    /* 调整下划线位置，使其更靠近文字 */
    left: 20px;
    right: 20px;
    height: 3px;
    background: #012844;
}

/* 弹框层样式 - 桌面端 */
.mega-submenu {
    position: absolute;
    top: 160%;
    /* left: 0; */
    /* width: auto; */
    width: 80vw;
    max-width: 1200px;
    /* max-width: 1200px;  限制最大宽度 */
    /* width: calc(100% - 40px); 两侧留白 */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    border-top: 2px solid #012844;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1001;
}

.mega-submenu.hucp {
    left: 0;
}

.mega-submenu.hujjfa {
    left: -100px;
}

.mega-submenu.hufw {
    left: -200px;
}

.mega-submenu.huzy {
    left: -280px;
}

.mega-submenu.hugy {
    left: -360px;
}




.mega-submenu.active {
    display: flex;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* 弹框内容布局 */
.submenu-section {
    padding: 15px;
    flex: 1;

}

.submenu-section h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.2em;
    border-bottom: 1px solid #3f3838;
    padding-bottom: 10px;
}

.submenu-section.left h3 {
    color: #000000;
    margin-bottom: 20px;
    font-size: 1.2em;
    border-bottom: 1px solid #3f3838;
    padding-bottom: 10px;
}

.submenu-section.brands-list {
    background-color: #05273f;
    /* 修复背景图片路径 */
    background-image: url(../images/menu_bg.svg) !important;
    background-position: 100% 100%;
    background-repeat: no-repeat;
}

/* 添加品牌网格文字样式 */
.brands-grid a {
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-decoration: none;
    color: #ffffff;
    /* 改为白色 */
    transition: all 0.2s ease;
    text-align: center;
    font-size: 0.9em;
    display: block;
}

.brands-grid a:hover {
    /* border-color: #012844; */
    color: #ffffff;
    background: rgba(226, 35, 26, 0.05);
    text-decoration: underline;
    /* 添加下划线 */
    transform: scale(1.05);
    /* 轻微放大 */
}

/* 产品网格 */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.menu-item-with-icon {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.menu-item-with-icon:hover {
    border-color: #012844;
    box-shadow: 0 5px 15px rgba(226, 35, 26, 0.1);
    transform: translateY(-2px);
}

.menu-item-with-icon img {
    width: 90px;
    height: 90px;
    margin-right: 15px;
    flex-shrink: 0;
    object-fit: contain;
}

.item-text .item-title {
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 5px;
    font-size: 1em;
}

.item-text p {
    margin: 0;
    font-size: 0.7em;
    color: #666;
    line-height: 1.4;
}

/* 资源项特殊样式 */
.resource-item {
    align-items: center;
}

.resource-item .item-text .item-title {
    font-size: 0.9em;
    margin-bottom: 8px;
}

.resource-item .item-text p {
    font-size: 0.8em;
    line-height: 1.5;
}

/* 去除资源项中的文字下划线 */
.resource-item,
.resource-item:hover,
.resource-item .item-text .item-title,
.resource-item .item-text p {
    text-decoration: none !important;
}

.resource-item img {
    width: 90px;
    height: 90px;
    margin-right: 15px;
    flex-shrink: 0;
    object-fit: contain;

}

/* 圆角容器样式 */
.rounded-container {
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-capability {
    width: 720px;
    height: 170px;
}

.service-capability img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-capability a {
    color: #000000;
    text-decoration: none;
}

.service-capability a:hover {
    text-decoration: underline;
}

.service-agreement a {
    color: #ffffff;
    text-decoration: none;
}

.service-agreement a:hover {
    text-decoration: underline;
}

/* 品牌网格 */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

/* 按钮样式 */
.btn-view-all {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9em;
    background-color: #05273f;
    position: relative;
    overflow: hidden;
}

.btn-view-all:hover {
    background: #ffffff;
    color: rgb(252, 0, 0);
    border-color: #ffffff;
}

/* 添加从左到右的动画效果 */
.btn-view-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, white, transparent);
    transition: left 0.5s;
}

.btn-view-all:hover::before {
    left: 100%;
}

/* 左边的菜单 */
.btn-view-all-l {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #012844;
    color: #012844;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9em;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.btn-view-all-l:hover {
    background: #012844;
    color: rgb(255, 255, 255);
    border-color: #012844;
}

/* 添加从左到右的动画效果 */
.btn-view-all-l::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, white, transparent);
    transition: left 0.5s;
}

.btn-view-all-l:hover::before {
    left: 100%;
}

/* 关闭按钮 */
.submenu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #f8f8f8;
    z-index: 10;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submenu-close:hover {
    color: #012844;
    background: #f5f5f5;
    border-radius: 50%;
}

/* ==================== */
/* 移动端样式 */
/* ==================== */
@media (max-width: 1024px) {
    .mega-submenu {
        width: 95vw;
        left: 50%;
        flex-direction: column;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
        height: 60px;
    }

    .logo img {
        height: 35px;
    }

    /* 隐藏桌面菜单，显示移动菜单按钮 */
    .mega-menu .menu-level-0 {
        display: none;
    }

    .search-container {
        display: none;
    }

    .language-switcher {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #333;
        padding: 8px;
        border-radius: 4px;
        transition: background-color 0.3s ease;
    }

    .mobile-menu-toggle:hover {
        background: rgba(0, 0, 0, 0.05);
    }

    /* 移动端菜单容器 */
    .mobile-menu-container {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: white;
        z-index: 1002;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }

    .mobile-menu-container.active {
        transform: translateX(0);
    }

    /* 移动端搜索框 */
    .mobile-search-container {
        padding: 15px;
        border-bottom: 1px solid #eee;
    }

    .mobile-search-box {
        display: flex;
        align-items: center;
        background: #f5f5f5;
        border-radius: 4px;
        padding: 10px 12px;
    }

    .mobile-search-box input {
        flex: 1;
        border: none;
        background: transparent;
        outline: none;
        padding: 0 8px;
        font-size: 14px;
    }

    .mobile-search-box button {
        background: none;
        border: none;
        cursor: pointer;
        color: #666;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-search-box button:hover {
        color: #012844;
    }

    /* 移动端语言切换器 */
    .mobile-language-switcher {
        padding: 15px;
        border-top: 1px solid #eee;
        margin-top: auto;
    }

    .mobile-language-title {
        font-weight: 500;
        margin-bottom: 10px;
        color: #333;
    }

    .mobile-language-options {
        display: flex;
        gap: 10px;
    }

    .mobile-language-option {
        padding: 8px 15px;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        text-decoration: none;
        color: #333;
        font-size: 14px;
        transition: all 0.2s ease;
    }

    .mobile-language-option.active {
        background: #012844;
        color: white;
        border-color: #012844;
    }

    .mobile-language-option:hover:not(.active) {
        border-color: #012844;
        color: #012844;
    }

    /* 移动端菜单列表 */
    .mobile-menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu-item {
        border-bottom: 1px solid #eee;
    }

    .mobile-menu-toggle-btn {
        width: 100%;
        padding: 16px 20px;
        background: none;
        border: none;
        text-align: left;
        font-size: 16px;
        font-weight: 500;
        color: #333;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background-color 0.3s ease;
    }

    .mobile-menu-toggle-btn:hover {
        background: #f8f9fa;
    }

    .mobile-menu-toggle-btn::after {
        content: '›';
        font-size: 18px;
        transition: transform 0.3s ease;
    }

    .mobile-menu-item.active .mobile-menu-toggle-btn::after {
        transform: rotate(90deg);
        color: #012844;
    }

    .mobile-menu-item.active .mobile-menu-toggle-btn {
        color: #012844;
        background: rgba(226, 35, 26, 0.05);
    }

    /* 移动端子菜单 */
    .mobile-submenu {
        background: #f8f9fa;
        display: none;
        padding: 0;
    }

    .mobile-menu-item.active .mobile-submenu {
        display: block;
    }

    .mobile-submenu-section {
        padding: 20px;
        border-bottom: 1px solid #e9ecef;
    }

    .mobile-submenu-section:last-child {
        border-bottom: none;
    }

    .mobile-submenu-section h4 {
        color: #333;
        margin-bottom: 15px;
        font-size: 1.1em;
        padding-bottom: 8px;
        border-bottom: 1px solid #dee2e6;
    }

    .mobile-menu-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }

    .mobile-menu-item-with-icon {
        display: flex;
        align-items: center;
        padding: 12px;
        background: white;
        border: 1px solid #e9ecef;
        border-radius: 6px;
        text-decoration: none;
        color: inherit;
        transition: all 0.3s ease;
    }

    .mobile-menu-item-with-icon:hover {
        border-color: #012844;
        transform: translateX(5px);
    }

    .mobile-menu-item-with-icon img {
        width: 32px;
        height: 32px;
        margin-right: 12px;
        flex-shrink: 0;
    }

    .mobile-item-text .mobile-item-title {
        font-weight: 600;
        color: #333;
        display: block;
        font-size: 0.95em;
    }

    .mobile-item-text p {
        margin: 0;
        font-size: 0.8em;
        color: #666;
        line-height: 1.3;
    }

    .mobile-brands-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 20px;
    }

    .mobile-brands-grid a {
        padding: 10px 8px;
        border: 1px solid #dee2e6;
        border-radius: 4px;
        text-decoration: none;
        color: #333;
        text-align: center;
        font-size: 0.85em;
        background: white;
        transition: all 0.2s ease;
    }

    .mobile-brands-grid a:hover {
        border-color: #012844;
        color: #012844;
    }

    .mobile-btn-view-all {
        display: block;
        padding: 12px;
        border: 2px solid #012844;
        color: #012844;
        text-decoration: none;
        border-radius: 4px;
        font-weight: 500;
        text-align: center;
        margin-top: 10px;
        transition: all 0.3s ease;
    }

    .mobile-btn-view-all:hover {
        background: #012844;
        color: white;
    }

    /* 移动端简单菜单项（无子菜单） */
    .mobile-simple-menu-item {
        display: block;
        padding: 16px 20px;
        text-decoration: none;
        color: #333;
        font-weight: 500;
        border-bottom: 1px solid #eee;
        transition: background-color 0.3s ease;
    }

    .mobile-simple-menu-item:hover {
        background: #f8f9fa;
        color: #012844;
    }
}

/* 桌面端隐藏移动菜单按钮 */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }

    .mobile-menu-container {
        display: none;
    }
}

/* 主内容区域 */
.main-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.main-content h1 {
    color: #333;
    margin-bottom: 20px;
}

.main-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* 遮罩层 */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.menu-overlay.active {
    display: block;
}

/* 小屏手机优化 */
@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
    }

    .mobile-submenu-section {
        padding: 15px;
    }

    .mobile-menu-grid {
        gap: 8px;
    }

    .mobile-menu-item-with-icon {
        padding: 10px;
    }

    .mobile-brands-grid {
        grid-template-columns: 1fr;
    }

    .main-content {
        padding: 20px 15px;
        margin: 20px auto;
    }
}

/* 移动端的文字是黑色的 */
.mb_gy_gsgkk {
    color: #000000;
}

/* 添加品牌网格文字样式 */
.gy_gsgk a {
    padding: 10px 15px;
    /* border: 1px solid #e0e0e0; */
    border-radius: 4px;
    text-decoration: none;
    color: #ffffff;
    /* 改为白色 */
    transition: all 0.2s ease;
    text-align: center;
    font-size: 0.9em;
    display: block;
    text-align: left;

}

.gy_gsgk a:hover {
    /* border-color: #012844; */
    color: #ffffff;
    background: rgba(255, 252, 252, 0.05);
    text-decoration: underline;
    /* 添加下划线 */
    transform: scale(1.05);
    /* 轻微放大 */
}

/* 按钮样式 */
.btn-gy {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #e90000;
    color: #ed0505;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9em;
    background-color: #feffff;
    position: relative;
    overflow: hidden;
}

.btn-gy:hover {
    background: #ea0404;
    color: rgb(255, 255, 255);
    border-color: #ffffff;
}


/* 添加从左到右的动画效果 */
.btn-gy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(234, 0, 0), transparent);
    transition: left 0.5s;
}

.btn-gy:hover::before {
    left: 100%;
}

/* 关于的 新闻和活动 */
.paragraph-menu-for-items-with-icon.with-bg * {
    color: #fff;
}

.h-100 {
    height: 100% !important;
}

.paragraph-menu-for-items-with-icon .item-menu-content a {
    text-decoration: none;
    padding: 0;
}

.tb-megamenu .dropdown-menu a,
.tb-megamenu .dropdown-menu span.tb-megamenu-no-link {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 18px;
    color: #333;
    white-space: nowrap;
}

.align-items-center {
    align-items: center !important;
}

.d-flex {
    display: flex !important;
}

.mo-grid-style .item-menu-content .menu-item-date {
    display: flex;
    min-width: 90px;
    height: 90px;
    width: 90px;
    padding: 0 5px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 3.92px;
    border: .392px solid #cbcbcb;
    background: #01395f;
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 115%;
    text-transform: none;
    margin-right: 10px;
    text-wrap: auto;
}

.item-menu-content-text {
    display: inline-block;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
    text-wrap: auto;
    /* padding: 10px 0 0; */
}

.tb-block .block-inner .block-block-content .content .field--name-field-block-menu-content .field__item {
    display: flex;
    flex: 1;
    height: 100%;
    text-wrap: auto;
}

.mo-grid-style a {}

/* 按钮样式 */
.mo-grid-style a {
    display: inline-block;
    /* padding: 10px 20px; */
    border: 2px solid #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9em;
    background-color: #feffff;
    position: relative;
    overflow: hidden;
}

.mo-grid-style a:hover {
    /* background: #ea0404; */
    /* color: rgb(255, 255, 255); */
    border-color: #ffffff;
}


/* 添加从左到右的动画效果 */
.field__item a:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(0, 0, 0), transparent);
    transition: left 0.5s;
}

.service-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.service-links-grid a {
    color: #000000;
    text-decoration: none;
    padding: 20px;
    display: block;
    transition: all 0.3s ease;
}

.service-links-grid a:hover {
    color: #000000;
    text-decoration: underline;
}



.fwxy-css a {
    color: #ffffff;
    text-decoration: none;
    padding: 20px;
    display: block;
    transition: all 0.3s ease;
}

.fwxy-css a:hover {
    color: #fbfbfb;
    text-decoration: underline;
}

.brands-grid.hu a {
    padding: 10px 15px;
    border: 0px solid #e0e0e0;
    border-radius: 4px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.2s ease;
    text-align: center;
    font-size: 0.9em;
    display: block;
}

.brands-grid.hu img {
    border-radius: 8px;
}

.mobile-submenu h6 {
    padding: 0 0 0 20px;
}




/* 首页样式 */

.mo-color-red {
    color: var(--flowserve-red) !important;
}

.mo-color-white {
    color: var(--flowserve-white) !important;
}

.mo-color-black {
    color: var(--flowserve-black) !important;
}

.mo-heading-large {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
}

.mo-heading-medium {
    font-size: 2rem;
    font-weight: 700;
}

.mo-heading-small {
    font-size: 1.5rem;
    font-weight: 700;
}

.mo-heading-xsmall {
    font-size: 1.25rem;
    font-weight: 700;
}

.btn.mo-cta-red-background {
    background-color: var(--flowserve-red);
    height: 2.5rem;
    color: white;
    padding: 12px 30px;
    border-radius: 0;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
}

.btn.mo-cta-red-background:hover {
    background-color: #c00;
    color: #fff;
}

.btn.mo-cta-with-arrow-white {
    background-color: transparent;
    color: white;
    padding: 12px 30px;
    border-radius: 0;
    border: 2px solid white;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    z-index: 99;
    height: 30px;
}

.btn.mo-cta-with-arrow-white:hover {
    background-color: white;
    color: var(--flowserve-red);
}

.mo-banner {
    position: relative;
    min-height: 700px;
    overflow: hidden;
}

.mo-banner-img {
    height: 100%;
    object-fit: cover;
}

.mo-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.mo-banner-container-text {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.box-text-container {
    padding: 40px;
}

/* 首页的搜索框的背景样式 */
.banner-search-container {
    margin-top: 30px;
    /* 减小外边距 */
    /* background: rgba(255, 255, 255, 0.9); */
    padding: 15px;
    /* 减小内边距 */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* 添加轻微阴影 */
}

.banner-search-container-title {
    color: var(--flowserve-black);
    font-weight: 600;
    margin-bottom: 12px;
    /* 减小外边距 */
    font-size: 1rem;
    /* 调整字体大小 */
    text-align: center;
    /* 居中对齐 */
}

.banner-search-container-form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* 完善样式 */
.mo-banner-size-tall {
    min-height: 800px;
}

.mo-box-content-left .box-text-container {
    margin-left: 0;
}

.toolbar-blue-content-item {
    transition: transform 0.3s ease;
}

.toolbar-blue-content-item:hover {
    transform: translateY(-5px);
}

.toolbar-blue-content-item-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 8px 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .mo-heading-large {
        font-size: 1.5rem;
    }

    .mo-banner {
        min-height: 600px;
    }

    .box-text-container {
        padding: 20px;
    }

    .toolbar-blue-content {
        flex-wrap: wrap;
        justify-content: center;
    }

    .toolbar-blue-content-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .mo-heading-large {
        font-size: 1.5rem;
    }

    .mo-banner {
        min-height: 500px;
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .d-flex.gap-3 {
        flex-direction: column;
    }
}

/* 搜索框样式 */
.form-floating-hu {
    position: relative;
    /* max-width: 500px; 限制最大宽度 */
    margin: 0 auto;
    /* 居中显示 */
    width: 500px;
    /* 修改为100%以适应容器 */
}

.form-floating-hu>.form-control {
    padding-left: 50px;
    height: 42px;
    /* 减小高度 */
    font-size: 0.9rem;
    /* 调整字体大小 */
}

.form-floating-hu>label {
    padding-left: 50px;
}

.form-floating-hu::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    /* width: 20px; */
    /* height: 20px; */
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e11b22'%3E%3Cpath d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E"); */
    background-repeat: no-repeat;
    z-index: 5;
}

/* 现代化搜索按钮样式 */
.form-floating-hu .btn.btn-primary {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #e11b22;
    padding: 5px 10px;
    font-size: 1rem;
    min-width: auto;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-floating-hu .btn.btn-primary:hover {
    background: rgba(225, 27, 34, 0.1);
    color: #c00;
}

.form-floating-hu .btn.btn-primary svg {
    width: 20px;
    height: 20px;
}

/* 现代化联系表单样式 */
.modern-contact-form {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.modern-contact-form:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1rem;
}

.form-label .required {
    color: #e74c3c;
}

.form-control {
    width: 100%;
    /* padding: 0.8rem 1rem; */
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fafafa;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #4a8375;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(74, 131, 117, 0.1);
}

.form-control::placeholder {
    color: #aaa;
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

/* 单选按钮样式 */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.radio-item {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    margin-right: 1.5rem;
}

.radio-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-check {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 50%;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.radio-item:hover .radio-check {
    border-color: #4a8375;
}

.radio-item input:checked~.radio-check {
    border-color: #4a8375;
    background-color: #fff;
}

.radio-item input:checked~.radio-check::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    background-color: #4a8375;
    border-radius: 50%;
}

/* 复选框样式 */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-item {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    margin-right: 1.5rem;
}

.checkbox-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-check {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.checkbox-item:hover .checkbox-check {
    border-color: #4a8375;
}

.checkbox-item input:checked~.checkbox-check {
    border-color: #4a8375;
    background-color: #4a8375;
}

.checkbox-item input:checked~.checkbox-check::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* 验证码样式 */
.captcha-group .form-label {
    margin-bottom: 0.5rem;
}

.captcha-field {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.captcha-input {
    flex: 1;
}

.captcha-image {
    height: 46px;
    width: 120px;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.captcha-image:hover {
    border-color: #4a8375;
    transform: scale(1.02);
}

/* 提交按钮样式 */
.submit-wrapper {
    text-align: center;
    margin-top: 1rem;
}

.submit-btn {
    background: #4a8375;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 131, 117, 0.2);
}

.submit-btn:hover {
    background: #3a685c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 131, 117, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .modern-contact-form {
        padding: 1.5rem;
    }

    .captcha-field {
        flex-direction: column;
        align-items: flex-start;
    }

    .captcha-image {
        width: 100%;
        max-width: 200px;
    }

    .radio-group,
    .checkbox-group {
        flex-direction: column;
        gap: 0.5rem;
    }

    .radio-item,
    .checkbox-item {
        margin-right: 0;
    }
}

/* 产品卡片样式 */
.product-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.product-card .card-img-container {
    position: relative;
    overflow: hidden;
}

.product-card .card-img-top {
    transition: transform 0.3s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.05);
}

.product-card .card-body {
    padding: 1.5rem;
    background: white;
}

.product-card .card-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.product-card .card-text {
    color: #666;
    line-height: 1.5;
}

.cta-link {
    position: relative;
    padding-right: 20px;
    display: inline-block;
    transition: color 0.3s ease;
}

.cta-link::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.product-card:hover .cta-link::after {
    transform: translateY(-50%) translateX(3px);
}

/* 网格间距调整 */
#products-grid {
    margin-top: 2rem;
}



/* 新闻轮播样式 */
.news-carousel {
    position: relative;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.news-content {
    background: white;
    display: flex;
    flex-direction: column;
}

.news-image {
    position: relative;
    height: 400px;
}

.news-image img {
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.carousel-navigation {
    margin-top: 2rem;
}

/* 轮播隐藏非活动项目 */
.news-carousel .news-card:not(:first-child) {
    display: none;
}



/* 行业卡片样式 */
.industry-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.industry-card .card-body {
    padding: 2rem 1rem;
    background: white;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-card .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0;
}

/* 行业网格特殊样式 */
#industries-grid .cta-link {
    font-size: 0.9rem;
}



/* 售后服务横幅样式 */
.mo-banner-medium-tall {
    min-height: 500px;
}

.mo-box-content-right .box-text-container {
    text-align: right;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .mo-banner-medium-tall {
        min-height: 400px;
    }

    .mo-box-content-right .box-text-container {
        text-align: left;
    }
}



/* 解决方案卡片样式 */
.solution-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.solution-card .card-body {
    padding: 1.5rem;
}


/* 底部横幅样式 */
.mo-banner-reduced-tall {
    min-height: 400px;
}

.mo-box-content-center .box-text-container {
    text-align: center;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .mo-banner-reduced-tall {
        min-height: 350px;
    }
}



/* 磨玻璃效果样式 */
.box-text-container {
    background: rgba(25, 44, 57, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    /* Safari 支持 */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    margin: 20px;
    position: relative;
    z-index: 10;
}

/* 为其他横幅的文字容器也添加磨玻璃效果 */
.mo-banner-container-text .box-text-container {
    background: rgba(25, 44, 57, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
}

/* 针对深色背景的磨玻璃效果优化 */
.mo-banner .box-text-container {
    background: rgba(0, 0, 0, 0.3);
    /* 深色背景使用更深的遮罩 */
    color: white;
}

/* 搜索容器的磨玻璃效果 */
.banner-search-container {
    /* background: rgba(255, 255, 255, 0.9); */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* border: 1px solid rgba(255, 255, 255, 0.3); */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* 磨玻璃效果响应式优化 */
@media (max-width: 768px) {
    .box-text-container {
        margin: 15px;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .mo-banner-container-text .box-text-container {
        margin: 10px;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
}

@media (max-width: 576px) {
    .box-text-container {
        margin: 10px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 20px !important;
    }

    /* 移动端减少模糊强度以获得更好性能 */
    .mo-banner-container-text .box-text-container {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}


/* 顶部横幅的磨玻璃效果 */
.mo-banner:first-of-type .box-text-container {
    background: rgba(25, 44, 57, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

/* 售后服务横幅的磨玻璃效果 */
.mo-banner-medium-tall .box-text-container {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* 底部横幅的磨玻璃效果 */
.mo-banner-reduced-tall .box-text-container {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}


/* 磨玻璃效果的过渡动画 */
.box-text-container {
    transition: all 0.3s ease;
}

.box-text-container:hover {
    /*backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);*/
}

/* 搜索容器的过渡 */
.banner-search-container {
    transition: all 0.3s ease;
}

.banner-search-container:hover {
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}


/* 浏览器兼容性回退 */
@supports not (backdrop-filter: blur(10px)) {
    .box-text-container {
        background: rgba(25, 44, 57, 0.8);
    }

    .mo-banner .box-text-container {
        background: rgba(0, 0, 0, 0.7);
    }

    .banner-search-container {
        background: rgba(255, 255, 255, 0.95);
    }
}

/* 针对 Firefox 的优化 */
@-moz-document url-prefix() {
    .box-text-container {
        background: rgba(25, 44, 57, 0.8);
    }
}

/* 性能优化 */
.mo-banner-container-text {
    transform: translateZ(0);
    /* 触发硬件加速 */
}

.box-text-container {
    will-change: backdrop-filter, transform;
    /* 性能提示 */
}

/* 在低性能设备上减少效果 */
@media (prefers-reduced-motion: reduce) {
    .box-text-container {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: none;
    }
}

/* 修复容器高度塌陷问题 */
.text-container {
    min-height: 35px;
    display: flex;
    flex-direction: column;
}

.banner-search-container {
    width: 100%;
    box-sizing: border-box;
}

/* 确保表单容器能撑起父级高度 */
.banner-search-container-form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.hu-title {
    font-size: 1rem;
    text-align: center;
    padding: .5rem;
    display: block;
    color: var(--color-text);
    height: 2rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* 现代化侧边栏菜单样式 */
.modern-sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 0;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

.modern-menu-item {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}

.modern-menu-item:hover {
    background: #e9ecef;
    color: #012844;
    border-left-color: #012844;
    transform: translateX(5px);
}

.modern-menu-item.active {
    background: #fff;
    color: #012844;
    border-left-color: #012844;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.modern-menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #012844;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.modern-menu-item:hover::before,
.modern-menu-item.active::before {
    transform: scaleY(1);
}



/* 品牌的样式 */
.container,
.container-fluid {
    margin: 0 auto;
    max-width: 1280px !important;
    padding: 0 16px !important
}

@media screen and (min-width: 992px) and (max-width:1440px) {

    .container,
    .container-fluid {
        max-width: 90% !important
    }
}

.container-fluid.blurb-landing-container,
.container.blurb-landing-container {
    padding: 0 !important
}

.card-container {
    padding: 2.5em 0;
}



@media screen and (max-width: 992px) {
    .card-container {
        padding: 0
    }
}

.card-container .catalog-brands,
.card-container .catalog-library,
.card-container .catalog-products {
    justify-content: space-between;
    flex-wrap: wrap
}

@media screen and (max-width: 992px) {

    .card-container .catalog-brands,
    .card-container .catalog-library,
    .card-container .catalog-products {
        justify-content: space-evenly
    }
}

.card-container .catalog-brands .catalog-outer-container,
.card-container .catalog-library .catalog-outer-container,
.card-container .catalog-products .catalog-outer-container {
    width: 31.5%;
    margin-bottom: 2.5em
}

@media screen and (max-width: 992px) {

    .card-container .catalog-brands .catalog-outer-container,
    .card-container .catalog-library .catalog-outer-container,
    .card-container .catalog-products .catalog-outer-container {
        width: 42%;
        margin-bottom: 3em
    }
}

@media screen and (max-width: 767px) {

    .card-container .catalog-brands .catalog-outer-container,
    .card-container .catalog-library .catalog-outer-container,
    .card-container .catalog-products .catalog-outer-container {
        width: 100%;
        margin-bottom: 2em
    }
}

@media screen and (min-width: 992px) {

    .card-container .catalog-brands.justify-content-sp-even,
    .card-container .catalog-library.justify-content-sp-even,
    .card-container .catalog-products.justify-content-sp-even {
        justify-content: space-evenly
    }
}

.card-container .catalog-brands .catalog-outer-container,
.card-container .catalog-library .catalog-outer-container {
    width: 23%;
    margin-bottom: 0
}

@media screen and (max-width: 992px) {

    .card-container .catalog-brands .catalog-outer-container,
    .card-container .catalog-library .catalog-outer-container {
        width: 42%
    }
}

@media screen and (max-width: 767px) {

    .card-container .catalog-brands .catalog-outer-container,
    .card-container .catalog-library .catalog-outer-container {
        width: 100%
    }
}

.card-container .catalog-brands .catalog-outer-container .brand-card,
.card-container .catalog-brands .catalog-outer-container .library-card,
.card-container .catalog-library .catalog-outer-container .brand-card,
.card-container .catalog-library .catalog-outer-container .library-card {
    margin-bottom: 25px
}

.card-container .card {
    height: 100%;
    box-sizing: border-box;
    padding: 40px;
    border-radius: 0;
    border: 1px solid #e4e4e4;
    background-color: #fff;
    cursor: pointer
}

.card-container .card picture {
    margin: 0 auto
}

@media screen and (max-width: 767px) {
    .card-container .card {
        padding: 30px
    }
}

.card-container .card:hover {
    transform: scale(1.03);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12)
}

.card-container .library-card {
    height: 339px;
    box-sizing: border-box;
    padding: 40px;
    border-radius: 0;
    border: 1px solid #e4e4e4;
    background-color: #fff;
    cursor: pointer;
    margin-bottom: 2.5em
}

@media screen and (max-width: 767px) {
    .card-container .library-card {
        padding: 30px
    }
}

@media screen and (max-width: 1200px) {
    .card-container .library-card {
        height: 320px
    }
}

@media screen and (max-width: 992px) {
    .card-container .library-card {
        height: auto
    }
}

@media screen and (max-width: 767px) {
    .card-container .library-card {
        margin-bottom: 2em
    }
}

.card-container .library-card:hover {
    transform: scale(1.03);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12)
}

.card-container .library-card-type {
    color: #686868;
    font-family: Heebo;
    font-size: .875em;
    letter-spacing: 2.8px;
    line-height: 21px;
    text-transform: uppercase
}

.card-container .library-card-content {
    color: #2e2e2e;
    font-family: Heebo;
    font-size: 1.25em;
    letter-spacing: 0;
    line-height: 34px
}

.card-container .library-dropdown {
    padding-bottom: 47.5px
}

.card-container .brand-card {
    height: 266px;
    box-sizing: border-box;
    padding: 40px;
    border-radius: 0;
    border: 1px solid #e4e4e4;
    background-color: #fff;
    cursor: pointer;
    color: #232323;
    height: auto;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column
}

@media screen and (max-width: 767px) {
    .card-container .brand-card {
        height: auto;
        padding: 30px
    }
}

@media screen and (max-width: 992px) {
    .card-container .brand-card {
        margin-bottom: 2em
    }
}

.card-container .brand-card .brand-desc {
    padding-bottom: 2.2em;
    margin-bottom: 0;
    line-height: 24px
}

.card-container .brand-card .brand-description {
    display: none
}

.card-container .brand-card:hover {
    transform: scale(1.03);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
    box-sizing: initial
}

.card-container .brand-card a {
    text-decoration: none
}

.card-container .brand-card .know-more-card {
    box-shadow: none !important;
    background: none !important;
    border: 0 !important;
    text-align: left !important;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: #012844 !important;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    padding: 3px 10px;
    letter-spacing: unset;
    position: relative;
    transition: .5s ease-in-out;
    margin-right: 20px
}

/* 首页的中间菜单 */
.text-tool-hu {
    color: rgb(0, 0, 0) !important;
}

.py-4 {
    background: #fff;
}

.py4-title {
    color: #fff;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    background-color: #001d32;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 40px 0;
}

.py4-center {
    color: #fff;
    background-color: #012844;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 130px;
    justify-content: space-around;
}

.toolbar-grid-item {
    color: #fff;
}

.fw-normal {
    color: #fff;
    font-size: 0.6rem;
}

 .menu-toggle-home {
    cursor: pointer;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    color: #012844;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    background: none;
    font-size: 20px;
    /* 菜单文字大小 */
    position: relative;
    /* // 添加以下样式来重置按钮默认样式 */
    outline: none;
    text-decoration: none; 
}

.menu-item.hu-home > a {
    color: #012844;
    text-decoration: none;
}


/* 每一页的左边菜单 */
.hu-page-left-box {
    margin-bottom: 20px;
}

.hu-page-left-title {
    background: #012844;
    padding: 10px 20px;
    position: relative;
}

.hu-page-left-title h3 {
    font-size: 20px;
    color: #ffffff;
    line-height: 30px;
    font-weight: bold;
    position: relative;
    z-index: 9;
}

.hu-page-left-title i {
    position: absolute;
    left: -5px;
    top: -9px;
    font-style: normal;
    font-size: 67px;
    font-weight: bold;
    opacity: .1;
    color: #fff;
    line-height: 1;
    z-index: 1;
    text-transform: uppercase;
}

.hu-page-left-title span {
    font-weight: normal;
    font-size: 16px;
    color: #fff;
    opacity: .6;
    margin-left: 10px;
    text-transform: capitalize;
}

.hu-page-left-title span:before {
    content: "/";
    padding-right: 5px;
}

.hu-page-left-con {
    border: 1px solid #d2d2d2;
    border-top: none;
}
.hu-page-left-con .page-wrap-contact h6 {
    font-size: 16px;
    margin-top: 15px;
}

.hu-page-left-con .page-wrap-contact p {
    font-size: 14px;
}
.hu-page-left-con .page-wrap-contact {
    padding-left: 15px;
}

.hu-page-left-con .latest-news li a {
    margin: 10px 0;
    font-size: 14px;
    text-decoration: none; /* 去掉下划线 */
    color: #333; /* 设置文字颜色 */
    display: block; /* 使链接区域更好点击 */
    padding: 8px 8px; /* 添加内边距增加点击区域 */
    border-radius: 4px; /* 添加圆角 */
    transition: all 0.3s ease; /* 添加过渡效果 */
}

.hu-page-left-con .latest-news li a:hover {
    background-color: #f5f5f5; /* 悬停时的背景色 */
    color: #012844; /* 悬停时的文字颜色 */
    text-decoration: none; /* 确保悬停时也没有下划线 */
    transform: translateX(5px); /* 悬停时向右移动 */
}

 .hu-text-primary{
    color: #012844;
 }