/* 右上角icon */
.founderparent-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
}
.topleft-container {
    display: flex;
    justify-content: flex-end; /* 将图片推到右侧 */
    width: 100%; /* 确保容器占满宽度 */
    padding: 2px; /* 添加一些内边距 */
    height: 35px;
}

.topleft-container .icon-image {
    max-width: 100%;
    height: auto;
    width: 30px; /* 示例宽度，可根据实际需求修改 */
    padding: 2px;
}
/* 导航栏样式 */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.top-right{
    display: flow;
}
.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.nav-links li {
    margin-left: 25px;
    position: relative;
}

.nav-links a {
    color: #333;
    font-weight: 500;
}

.nav-links a:hover {
    color: #ff6600;
}
.nav2-links {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav2-links li {
    margin-left: 25px;
    position: relative;
}

.nav2-links a {
    color: #333;
    font-weight: 500;
    font-size: 18px;
}

.nav2-links a:hover {
    color: #ff6600;
}
.nav-top-logo-img {
    width:200px;
}
.nav-top-title {
    font-size: 20px;
}
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1;
    padding: 10px 0;
    border-radius: 4px;
    top: 100%;
    left: 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: #555;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
    color: #e74c3c;
}

.search-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #666;
    margin-left: 20px;
}

/* 汉堡菜单图标 */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.menu2-toggle {
    display: none;
}
.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* 移动端菜单样式 */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 20px 0;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        width: 100%;
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .navbar-content {
        justify-content: center;
        min-height: 50px;
    }
}
