@charset "UTF-8";

.header-top-left-fastlink.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 75px;
    cursor: pointer;
}

.header-top-left-fastlink .dropdown-toggle {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    height: 100%;
    font-weight: normal;
}

.header-top-left-fastlink .dropdown-toggle:hover,
.header-top-left-fastlink .dropdown-toggle:focus {
    text-decoration: none;
    color: white;
    background-color: #2b6cee;
}

.header-top-left-fastlink .caret {
    margin-left: 5px;
    border-top-color: white;
}

.header-top-left-fastlink .dropdown-menu {
    background-color: #2b6cee;
    border: none;
    border-radius: 0;
    margin-top: 0;
    padding: 0;
    min-width: 220px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.header-top-left-fastlink .dropdown-menu>li>a {
    color: white;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    white-space: nowrap;
}

.header-top-left-fastlink .dropdown-menu>li:last-child>a {
    border-bottom: none;
}

.header-top-left-fastlink .dropdown-menu>li>a:hover,
.header-top-left-fastlink .dropdown-menu>li>a:focus {
    background-color: #1e62ec;
    color: white;
}

/* 确保下拉菜单在悬停时显示 */
.header-top-left-fastlink.dropdown:hover .dropdown-menu {
    display: block;
}

/* 调整下拉菜单的位置 */
.header-top-left-fastlink .dropdown-menu {
    left: -150px;
    top: 92%;
    border-radius: 10px;
    padding: 0 20px;
    font-weight: bold;
    z-index: 9999;
}

/* 添加箭头指示器 */
/* .header-top-left-fastlink .dropdown-menu:before {
    content: '';
    display: inline-block;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #2b6cee;
    position: absolute;
    top: -7px;
    left: 20px;
} */