/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 颜色变量 */
    --primary-color: #e74c3c;
    --secondary-color: #3498db;
    --text-primary: #333;
    --text-secondary: #666;
    --background-primary: #fff;
    --background-secondary: #f8f9fa;
    --header-bg-transparent: rgba(255, 255, 255, 0.7);
    --header-bg-solid: rgba(255, 255, 255, 0.85);
    --red-color: #FF0000;
    
    /* 字体变量 */
    --font-family-base: 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
    
    /* 过渡变量 */
    --transition-normal: 0.3s ease-in-out;
}

html, body {
    font-family: var(--font-family-base) !important;
    font-size: 16px !important;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background: #F5F5F5;
}

a {
    text-decoration: none !important;
    color: inherit !important;
    transition: var(--transition-normal);
}

.layui-layer-btn0{
    color: #FFF !important;
}

ul, li {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/*********************************************************************/
/*********************************************************************/
/*********************************************************************/
/*******************************基础样式*******************************/
/*********************************************************************/
/*********************************************************************/
/*********************************************************************/

/* 页头样式 */
.site-header {
    width: 100%;
    background-color: var(--background-primary);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

.header-top {
    background-image: url('../images/bg-header.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}

.header-container {
    max-width: 1226px;
    margin: 0 auto;
    /* padding: 0 15px; */
    display: flex;
}

.header-left {
    margin-right: 20px;
}
.header-right {
    width: 100%;
}

/* 顶部导航栏 */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 12px;
    color: #fff;
}

.top-left, .top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-link:hover {
    color: var(--red-color);
}

/*消息闪烁*/
.new-message {
    color: #fff;position: relative;animation: blinkAnimation 1.5s linear infinite;
}
@keyframes blinkAnimation {
    0% {
        color: #fff;
    }
    50% {
        color: transparent;
    }
    100% {
        color: #fff;
    }
}

/* 主导航区域 */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    transition: var(--transition-normal);
}

/* Logo样式 */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

/* .logo img {
    height: 40px;
    margin-right: 10px;
} */

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: var(--red-color);
}

/* 搜索区域 */
.search-container {
    display: flex;
    align-items: center;
    width: 50%;
    border: 2px solid #FF9C00;
    border-bottom: 3px solid #FF9C00;
    border-radius: 4px;
    overflow: visible; /* 修改为visible，确保下拉菜单可见 */
}

/* 搜索建议 */
.autocomplete-suggestions {
    text-align: left;
    cursor: default;
    background: #fff;
    border-radius: 2px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
    position: absolute;
    display: none;
    z-index: 1036;
    max-height: 254px;
    overflow: hidden;
    overflow-y: auto;
    box-sizing: border-box;
}

/*搜索下拉滚动条*/
.autocomplete-suggestions::-webkit-scrollbar { width: 2px; height: 2px; }
.autocomplete-suggestions::-webkit-scrollbar-track { background: #f8f9fa; border-radius: 1px; }
.autocomplete-suggestions::-webkit-scrollbar-thumb { background: #dce0e5; border-radius: 1px; }
.autocomplete-suggestions::-webkit-scrollbar-thumb:hover { background: #bcc0c6; }
.autocomplete-suggestions { scrollbar-width: thin; scrollbar-color: #dce0e5 #f8f9fa; }

.autocomplete-suggestions .autocomplete-suggestion {
    padding: 6px 12px;
}
.autocomplete-suggestions .autocomplete-suggestion b {
    color: red;
}
.autocomplete-suggestions .autocomplete-suggestion:hover {
    background: #f0f0f0;
}
.autocomplete-search {
    max-height: 420px;
}
.autocomplete-search .autocomplete-questions,
.autocomplete-search .autocomplete-searchtags {
    position: relative;
    line-height: 23px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.02em;
    color: #333;
    padding: 12px;
    cursor: pointer;
    white-space: inherit;
}
.autocomplete-search .autocomplete-questions b,
.autocomplete-search .autocomplete-searchtags b,
.autocomplete-search .autocomplete-questions em,
.autocomplete-search .autocomplete-searchtags em {
    font-weight: normal;
    font-style: normal;
    color: #f71752;
}
.autocomplete-search .autocomplete-questions.selected,
.autocomplete-search .autocomplete-searchtags.selected,
.autocomplete-search .autocomplete-questions:hover,
.autocomplete-search .autocomplete-searchtags:hover {
    background: #f0f0f0;
}
.autocomplete-search .autocomplete-questions .question-price-tag,
.autocomplete-search .autocomplete-searchtags .question-price-tag {
    height: 18px;
    line-height: 18px;
    margin-top: 2px;
}
.autocomplete-search .autocomplete-questions .tag,
.autocomplete-search .autocomplete-searchtags .tag {
    margin-bottom: 5px;
}

/* 确保下拉按钮和搜索框之间的分隔线始终可见 */
.search-container .dropdown::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 1px;
    background-color: #ddd;
    pointer-events: none; /* 确保不会干扰点击事件 */
    z-index: 1; /* 确保在按钮之上 */
}

/* 分类下拉菜单样式 */
.dropdown {
    position: relative;
}

.category-btn {
    height: 40px;
    padding: 0 15px;
    background-color: #f5f5f5 !important; /* 使用!important确保背景色不被覆盖 */
    border: none !important; /* 确保没有边框 */
    border-right: none !important; /* 移除右侧边框，使用伪元素代替 */
    border-radius: 0;
    color: #333;
    font-size: 14px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    outline: none !important; /* 移除默认轮廓 */
    box-shadow: none !important; /* 移除默认阴影 */
}

.btn-text{
    margin-right: 5px;
}

.category-btn:hover, 
.category-btn:focus, 
.category-btn:active,
.category-btn.active,
.category-btn:focus-visible,
.category-btn:visited,
.category-btn.visited,
.category-btn:link,
.category-btn.link,
.category-btn:focus-within,
.category-btn:target {
    background-color: #f5f5f5 !important; /* 与正常状态保持一致 */
    border: none !important; /* 确保没有边框 */
    border-right: none !important; /* 移除右侧边框，使用伪元素代替 */
    color: #333;
    box-shadow: none !important; /* 移除Bootstrap的默认聚焦阴影 */
    outline: none !important; /* 移除默认轮廓 */
}

/* 覆盖Bootstrap所有可能的按钮状态 */
.btn.category-btn:not(:disabled):not(.disabled):active,
.btn.category-btn:not(:disabled):not(.disabled).active,
.show > .btn.category-btn.dropdown-toggle,
.btn-check:checked + .btn.category-btn,
.btn-check:active + .btn.category-btn,
.category-btn:active:focus {
    background-color: #f5f5f5 !important;
    border: none !important;
    border-right: none !important; /* 移除右侧边框，使用伪元素代替 */
    color: #333 !important;
    box-shadow: none !important;
    outline: none !important;
}

/* 确保按钮在所有状态下都没有黑边 */
.btn {
    border-color: transparent;
}

.btn:active, .btn.active {
    border-color: transparent !important;
}

/* 移除Bootstrap按钮的所有默认边框和阴影 */
.btn:focus, .btn.focus,
.btn:active:focus, .btn.active:focus,
.btn:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active:focus,
.show > .btn.dropdown-toggle:focus {
    box-shadow: none !important;
    outline: none !important;
    border-color: transparent !important;
}

/* 点击后的下拉菜单不显示 */
.dropdown.menu-clicked .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu {
    margin-top: 1px; /* 稍微下移，避免与按钮重叠 */
    border-radius: 0;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 0;
    z-index: 1050;
    width: 100%; /* 使下拉菜单宽度与按钮相同 */
    min-width: auto; /* 覆盖Bootstrap默认的最小宽度 */
    display: none; /* 默认隐藏 */
    position: absolute;
    top: 100%;
    left: 0;
}

/* 显示下拉菜单时的动画，但不影响按钮 */
.dropdown-menu.show {
    display: block;
    animation: fadeIn 0.2s ease-in-out;
}

/* 确保下拉菜单的显示不会影响按钮样式 */
.dropdown-toggle::after {
    display: none !important; /* 移除Bootstrap默认的下拉箭头 */
}

/* 确保下拉菜单不会影响按钮的边框 */
.dropdown-menu::before {
    display: none !important;
}

.dropdown-menu::after {
    display: none !important;
}

.btn-check:checked + .category-btn, 
.btn-check:active + .category-btn {
    background-color: #f5f5f5 !important; /* 与正常状态保持一致 */
    border-color: transparent !important;
    color: #333 !important;
}

/* 禁用按钮的焦点样式 */
.category-btn:focus, 
.category-btn.focus {
    box-shadow: none !important;
}

.dropdown-item {
    padding: 8px 15px;
    font-size: 12px;
    transition: background-color 0.2s;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
}

/* 搜索输入框样式 */
.search-input {
    display: flex;
    flex: 1;
    position: relative; /* 为输入框聚焦效果添加相对定位 */
}

.search-input input {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    border: none;
    outline: none;
    font-size: 14px;
    transition: all 0.3s ease; /* 添加过渡效果 */
}

.search-input input:focus {
    background-color: #f9f9f9; /* 聚焦时轻微改变背景色 */
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1); /* 添加内阴影效果 */
}

.search-input input:focus + .search-input::after,
.search-input:focus-within::after {
    width: 100%;
}

.search-btn {
    width: 50px;
    height: 40px;
    background-color: #FF9C00;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease; /* 添加过渡效果 */
}

.search-btn:hover {
    background-color: #FF7D00; /* 悬停时颜色变深 */
    transform: scale(1.05); /* 轻微放大效果 */
    box-shadow: 0 0 8px rgba(255, 156, 0, 0.5); /* 添加发光效果 */
}

.search-btn:hover i {
    animation: pulse 0.5s infinite alternate; /* 添加图标脉冲动画 */
}

@keyframes pulse {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.2);
    }
}

/* 购物车和询价 */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-btn {
    display: flex;
    align-items: baseline;
    padding: 8px 15px;
    background-color: #FFCC00;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease; /* 添加过渡效果 */
    position: relative; /* 为波纹效果添加相对定位 */
    overflow: hidden; /* 隐藏波纹溢出部分 */
}

.cart-btn:hover {
    background-color: #FFB800; /* 悬停时颜色变深 */
    transform: translateY(-2px); /* 轻微上浮效果 */
    box-shadow: 0 4px 8px rgba(255, 204, 0, 0.4); /* 添加阴影效果 */
}

.cart-btn:hover i {
    color: #333; /* 图标颜色加深 */
    animation: swing 0.5s ease; /* 添加摇摆动画 */
}

.cart-shake {
    color: #333; /* 图标颜色加深 */
    animation: swing 0.5s ease; /* 添加摇摆动画 */
}

.cart-btn:hover .cart-count {
    background-color: #FF9C00; /* 改变数量标签的背景色 */
    transform: scale(1.1); /* 轻微放大效果 */
}

/* 添加波纹点击效果 */
.cart-btn:active:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: ripple 0.6s linear;
    opacity: 1;
}

@keyframes ripple {
    to {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

@keyframes swing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.cart-btn i {
    margin-right: 5px;
    color: #4A4A4A;
    transition: all 0.3s ease; /* 添加过渡效果 */
}

.cart-count {
    display: inline-block;
    margin-left: 5px;
    background-color: #CDCDCD;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    text-align: center;
    line-height: 18px;
    transition: all 0.3s ease; /* 添加过渡效果 */
}

.inquiry-btn {
    padding: 8px 15px;
    background-color: #4C4C4C;
    color: white;
    border-radius: 4px;
    font-size: 14px;
}

/* 滚动悬浮样式 */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease-in-out;
}

.sticky-header .header-top {
    display: none;
}

.sticky-header .main-nav {
    padding: 10px 0;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* 主导航菜单样式 */
.main-menu-container {
    /* background-color: #DBDBDB; */
    background-color: #FFF;
    padding: 5px 0;
}

.main-menu {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-item {
    margin-right: 20px;
    position: relative;
}

.nav-item .active {
    color: #E10000 !important;
    font-weight: 600;
}

.nav-link {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    display: block;
}

.nav-link:hover {
    color: #E10000 !important;
    font-weight: 600;
}

/* 下拉菜单样式 */
.has-dropdown .nav-link:after {
    content: '\f107';  /* 下箭头图标 */
    font-family: 'FontAwesome';
    margin-left: 5px;
    font-size: 14px;
}

.nav-item.has-dropdown {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 160px;
    margin: 2px 0 0;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
    list-style: none;
    transform: translateY(-5px);
}

.nav-item.has-dropdown:hover .submenu {
    display: block;
}

/* 移动端菜单按钮 */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
    font-size: 20px;
    z-index: 1001;
}

.mobile-menu-toggle .menu-icon {
    color: #333;
}

/* 移动端购物车按钮 */
.mobile-cart-item {
    display: none;
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-radius: 4px;
    /*margin-top: 10px;*/
}

.mobile-cart-item a {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
}

.mobile-cart-item .fa {
    margin-right: 5px;
}

.mobile-cart-item .cart-count {
    background-color: #E10000;
    color: #fff;
    border-radius: 50%;
    /* padding: 2px 6px; */
    font-size: 12px;
    margin-left: 5px;
}

.submenu-link {
    display: block;
    padding: 8px 20px;
    clear: both;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}

.submenu-link:hover {
    color: #E10000 !important;
    font-weight: 600;
    background-color: #f5f5f5;
}

.contact-info {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
    width:400px;
}

.contact-phone {
    display: flex;
    flex-direction: column;
    margin-right: 20px;
    align-items: center;
}

.phone-label {
    font-size: 12px;
    margin-bottom: 2px;
}

.phone-number {
    font-size: 18px;
    font-weight: bold;
    color: #E10000;
}

.express-link {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    align-items: center;
}

.express-link a {
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.container::before {
    content: none !important;
}
.container::after {
    content: none !important;
}

.container {
    width: 100%;
    max-width: 1226px;
    margin: 0 auto;
    /* padding: 0 30px; */
    display: flex;
    align-items: center;
} 



/* 页脚样式 */
.site-footer {
    background-color: #E6E6E6;
    padding: 50px 0 10px 0;
    border-top: 1px solid #eee;
}

.footer-container {
    max-width: 1226px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 顶部导航区域 */
.footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 35px;
    margin-right: 10px;
}

.company-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.company-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    line-height: 1.5;
}

.company-name-en {
    font-size: 8px;
    color: #666;
    text-transform: uppercase;
}

.footer-menu {
    flex: 1;
    margin-left: 30px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 15px 20px;
}

.footer-links li a {
    color: #333;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #E10000;
}

/* 底部联系信息区域 */
.footer-info {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
}

.info-left, .info-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-item {
    display: flex;
    align-items: center;
}

.info-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #ddd;
}

.info-icon i {
    font-size: 14px;
    color: #333;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 13px;
    color: #333;
    font-weight: bold;
    white-space: nowrap;
}

.info-text {
    font-size: 13px;
    color: #333;
}

/* 二维码区域 */
.qr-codes {
    display: flex;
    gap: 15px;
}

.qr-code-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-code-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 5px;
    border: 1px solid #ddd;
}

.qr-code-label {
    font-size: 11px;
    color: #666;
    text-align: center;
}

/* 底部版权信息 */
.footer-copyright {
    margin-top: 20px;
    text-align: right;
}

.footer-copyright p {
    font-size: 11px;
    color: #999;
}


/*********************************************************************/
/*********************************************************************/
/*********************************************************************/
/*******************************响应式样式*****************************/
/*********************************************************************/
/*********************************************************************/
/*********************************************************************/

/* 适配平板电脑 */
@media (max-width: 1024px) {
    /* 页头响应式 */
    .header-container {
        padding: 0 10px;
    }

    .search-container {
        width: 45%;
    }
    
    .top-bar {
        font-size: 11px;
    }
    
    .top-left, .top-right {
        gap: 10px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    

    .footer-nav {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-logo {
        margin-bottom: 15px;
    }
    
    .footer-menu {
        margin-left: 0;
        width: 100%;
    }
    
    .footer-links {
        justify-content: flex-start;
        gap: 10px 15px;
    }
    
    .footer-info {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .qr-codes {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
}

/* 适配手机 */
@media (max-width: 768px) {
    /* 页头响应式 */
    .top-bar {
        display: none;
    }
    
    .main-nav {
        flex-wrap: wrap;
        padding: 10px 0;
    }
    
    .logo {
        margin-bottom: 10px;
        width: 100%;
        justify-content: center;
    }
    
    .search-container {
        width: 100%;
        order: 2;
    }
    
    .nav-actions {
        width: 30%;
        order: 3;
        justify-content: flex-end;
    }
    
    .search-input input {
        padding: 0 8px;
        font-size: 12px;
    }
    
    .cart-btn {
        padding: 6px 8px;
        font-size: 12px;
    }
    
    .inquiry-btn {
        padding: 6px 8px;
        font-size: 12px;
    }

    .site-footer {
        padding: 15px 0 10px;
    }
    
    .footer-links li {
        width: calc(50% - 15px);
    }
    
    .info-content {
        flex-direction: column;
    }
    
    .info-text {
        margin-top: 2px;
    }
    
    .qr-codes {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .qr-code-item img {
        width: 70px;
        height: 70px;
    }
    
    .category-btn {
        padding: 0 8px;
        font-size: 12px;
    }
    
    .dropdown-item {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    /* 确保移动设备上下拉菜单也能正确显示 */
    .dropdown-menu {
        width: 100%;
        left: 0;
    }

    .container {
        padding: 0 15px;
        justify-content: space-between;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 1;
    }
    
    .nav-menu {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #FFF;
        z-index: 1000;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu.active {
        max-height: 1000px;
        box-shadow: 0 6px 12px rgba(0,0,0,.1);
        padding: 10px 10px;
    }
    
    .nav-item {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,.1);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    /*.nav-link {*/
    /*    padding: 12px 15px;*/
    /*}*/

    .nav-item.has-dropdown:hover .submenu {
        display: none; /* 移动设备上悬停不显示 */
    }
    
    .nav-item.has-dropdown.show-submenu .submenu {
        display: block; /* 通过JS添加类来显示 */
    }
    
    .submenu {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        margin: 0;
        padding-left: 15px;
        background-color: #f0f0f0;
    }
    
    .submenu-link {
        padding: 10px 15px;
    }
    
    .contact-info {
        /* display: none !important; */
        /* flex-direction: column; */
        padding: 10px 15px;
        align-items: flex-start;
        justify-content: space-around !important;
        width: 100% !important;
    }
    
    /* .phone-label {
        font-size: 10px;
    }

    .phone-number {
        font-size: 14px;
    } */

    .contact-phone, .express-link {
        margin: 5px 0;
        align-items: flex-start;
    }
    
    /* 移动端显示购物车按钮 */
    .mobile-cart-item {
        display: block;
    }
    
    /* 隐藏顶部的购物车按钮 */
    .header-right .nav-actions {
        display: none;
    }

    .submenu-item {
        padding: 10px;
    }
    
    .submenu-img {
        width: 30px;
        height: 30px;
    }
    
    .submenu-title {
        font-size: 13px;
    }

    .section-header {
        text-align: center;
        margin: 10px;
    }

    .section-subtitle {
        font-size: 12px;
    }

    .hot-products-section .section-title, .mozu-products-section .section-title, .industry-section .section-title {
        font-size: 20px;
        font-weight: bold;
        color: #333;
        margin-bottom: 5px;
        letter-spacing: 1px;
        position: relative;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
    }

    .title-en {
        font-size: 24px;
    }

    .title-cn {
        margin-top: -28px;
        font-size: 20px;
    }
}