.dropdownLangauge {
    position: relative;
    background: inherit;
    display: inline-block;
    margin-top: -2px;

}

.dropdown-content1 {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    min-width: 100%;
}

.dropdownLangauge:hover #dropdownStyle {
    display: block;
}

#dropdownStyle ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#dropdownStyle li {
    padding: 10px;
}

#dropdownStyle li:hover {
    background-color: #ccc;
}
#dropdownStyle a{
    cursor: pointer;
    text-decoration: none;
}

#myBtn1{
    background: none;
    padding: 0;
    border: none;
}
#myBtn2{
    background: inherit;
    display: inline-block;
    margin-bottom: 0;
    /*font-weight: 400;*/
    font-weight:bold;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    padding: 6px 12px;
    font-size: 14px;
    user-select: none;
    border-radius: 0.5em;
    height: 34px;
    border: none;
    /*border-width: 0.5px;*/
    /*border-color: rgb(203, 200, 200);*/
    color: #d9edf7;
}
#myBtn2:focus,#myBtn2:hover{
    color: #262626
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: lightgray; /* 默认关闭时的颜色，可以根据需要调整 */
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #3296C8; /* 打开时的颜色，可以根据需要调整 */
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.filterClass{
    position: relative;
    top: 0;
    left: 0;
}