.navbar {
    max-width: 1502px;
    height: 48px;
    border-radius: 123px;
    margin: 0 auto;
    margin-top: 30px;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.65) 100%);
    backdrop-filter: blur(15px);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1), inset 0px 0px 2px 0px rgba(255, 255, 255, 0.1);
}

.navbar .logo {
    width: 72px;
    height: 26px;
    margin-left: 20px;
}

.navbar .logo img {
    width: 72px;
    height: 26px;
    min-width: 72px;
}

.navbar-content {
    width: 1156px;
    height: 34px;
    margin-left: 83px;
}

.navbar-content ul {
    display: flex;
    align-items: center;
    height: 34px;
    margin-left: 50px;
}

.navbar-content ul li {
    cursor: pointer;
    color: #585858;
    font-size: 16px;

}

.navbar-content ul li.active {
    border-bottom: 2px solid #0256FF;
    color: #1a1a1a;
}

.navbar-content ul li:not(:first-child) {
    margin-left: 20px;
}

.navbar-content ul li:nth-child(2) {
    position: relative;
}

.navbar-content ul li:nth-child(2):hover div {
    opacity: 1;
}

.navbar-content ul li:nth-child(2) div {
    position: absolute;
    top: 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.8) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.1), inset 0px 0px 2px 0px rgba(255, 255, 255, 0.1);
    width: 208px;
    height: 240px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 10px;
    opacity: 0;
    transition: .5s;
}

.navbar-content ul li:nth-child(2) div p {
    width: 168px;
    height: 38px;
    text-align: center;
    line-height: 38px;
    color: #585858;
}

.navbar-content ul li:nth-child(2) div p.active {
    background-color: #0256FF;
    color: #fff;
    border-radius: 35px;
}

.language {
    width: 80px;
    height: 36px;
    border-radius: 62px;

    /* 自动布局 */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 6px 10px;
    gap: 10px;

    /* 纯色/蓝色 */
    background: #0256FF;
    color: #fff;
    margin-left: auto;
    margin-right: 20px;
}