.no-scrollbar::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox 64 */
}
.page-breadcrumb li:after {
    position: absolute;
    content: "/";
    top: 20%;
    transform: translateY(-50%);
    transition: all .4s ease 0s;
    right: -20px;
    width: 36px;
    height: 10px;
    background: none;
}

/* 引入Genos可变字体 - 常规样式 */
@font-face {
    font-family: 'Genos';
    src: url('../assets/fonts/Genos-VariableFont_wght.ttf') format('truetype');
    /* font-weight: 100 900; */
    /* 支持从100到900的字重范围 */
    font-style: normal;
    font-display: swap;
}
.logo-font-family {
    font-family: 'Genos', sans-serif !important;
}
.logo-font {
    font-family: 'Genos', sans-serif;
    /* color: var(--theme-color); */
    font-size: 34px;
    font-weight: 500;
    /* 默认字重 */
    padding: 0;
}
.logo-font-fist {
    padding: 0;
    margin: 0;
    color: #e3572b;
}
.logo-font-last-white {
    padding: 0;
    margin: 0;
    color: white;
}
.logo-font-last-dark{
    padding: 0;
    margin: 0;
    color: #063232;
}
.menu-area .header-logo a div:last-child {
    display: none;
}
@media (max-width: 991px) {
    .menu-area .header-logo a div:first-child {
        display: none;
    }
}
@media (max-width: 991px) {
    .menu-area .header-logo a div:last-child {
        display: inherit;
    }
}


.language-switch{
    /* display: inline-block; */
    /* width: 44px; */
    /* height: 44px; */
    /* line-height: 44px; */
    /* text-align: center; */
    /* border-radius: 50%; */
    /* cursor: pointer; */
    /* background-color: var(--theme-color); */
}
.language-switch span {
    font-size: 16px;
    color: var(--bs-text-color2);
}

.language-switch-container {
    position: relative;
    display: flex;
    align-content: center;
    flex-direction: row;
    align-items: center;

    background-color: var(--theme-color);
    border-radius: 35px;
    padding: 13px 40px;
}

/* .language-switch {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
} */

.language-list {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    list-style: none;
    padding: 10px;
    margin: 5px 0 0 0;
    min-width: 120px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
}

.language-switch-container:hover .language-list {
    opacity: 1;
    visibility: visible;
}

.language-list li {
    padding: 8px 0;
}

.language-list li a {
    color: #333;
    text-decoration: none;
    display: block;
}

.language-list li a:hover {
    color: var(--theme-color);
}