/* styles.css */
.header {
    display: flex;
    align-items: center;
}
.cus-btn {
    background-color: #FFA500; /* Orange color for the button */
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.cus-btn span {
    pointer-events: none; /* Ensure the text does not block the button click */
}
.language-menu {
    display: inline-block;
    position: relative;
    margin-right: 10px; /* Adjust spacing as needed */
}
.language-dropdown {
    display: none;
    position: absolute;
    top: 100%; /* Position the dropdown below the button */
    left: 0;
    z-index: 1000;
    min-width: 160px; /* Ensure the dropdown is wide enough */
}
.language-dropdown a {
    display: block;
    padding: 8px;
    text-decoration: none;
    color: black;
}
.language-dropdown a:hover {
    background-color: #f1f1f1;
}



/* 默认情况下，显示 Language 菜单 */
li.dropdown .language-pc2-menu {
    display: block; /* 显示在电脑端 */
}

/* 在手机端隐藏 Language 菜单 */
@media (max-width: 768px) {
    li.dropdown .language-pc2-menu {
        display: none; /* 在手机端隐藏 */
    }
}

@media (max-width: 768px) {
    .language-dropdown2 {
        display: none; /* 在手机端隐藏 Language 按钮 */
    }
}


