/* 语言选择器容器 */
        .language-selector {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 999;
        }

        /* 自定义下拉框样式 */
        .custom-select {
            position: relative;
            width: 150px;
        }

        .selected-language {
            padding: 10px;
            /* background: #fff;
            border: 1px solid #ccc;
            border-radius: 4px; */
            cursor: pointer;
            display: flex;
            align-items: center;
        }
        
        .selected-language > span{
          text-decoration: underline;
        }

        .flags-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            width: 100%;
            /* background: #fff;
            border: 1px solid #ccc;
            border-radius: 4px; */
            margin-top: 5px;
            display: none;
        }

        .flag-option {
            padding: 10px;
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: background 0.3s;
        }

        .flag-option:hover {
            background: #f5f5f5;
            color: black;
        }

        .flag-icon {
            width: 30px;
            margin-right: 10px;
        }

        /* 隐藏默认的下拉框 */
        #languageSelect {
            display: none;
        }