/* ×ÀÃæ¶Ë°µ²ØÒÆ¶¯¶Ëµ×²¿ÐÅÏ¢ */
.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 {
	height: 40px;
}

.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;
}

/* ÁªÏµtop1ÌåÓý¹ÙÍøÏÂÀ­²Ëµ¥ÌØÊâÐÎ×´ */
#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: 6vh;
    }

    .logo-img{
        height: 24px;
    }
    
    .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;
    }
}
<!--ºÄÊ±1778746220.9308Ãë-->