@charset "utf-8";
body {font-family:sans-serif; max-width:100%; min-width:320px; margin:0 auto;}

*html  { width: 80%;margin:0 auto;} /* ie6 fixed */
*+html { width: 60%;margin:0 auto;} /* ie7 fixed, 注意顺序 */
html{ font-size:100%; -webkit-text-size-adjust:100%; -ms-text-size-adjust:100%;}
ul, li {list-style-type:none; margin:0; padding:0;list-style:none} 
img {vertical-align:top;border:0;} 
p {margin:0px;padding:0px;}
a {text-decoration:none;color:#FFFFFF}
a:hover {text-decoration:none;color: #000;}
.clear {clear:both;}


.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 60px;
    background: #2372D3;
}
.header_logo {
    width: 81%;
    height: 60px;
}
.header_logo img{
    width: 153px;
    height: 40px;
    margin-top: 10px;
    margin-left: 20px;
}
/* 当使用 flex-grow: 1 时，
该元素会根据其父容器的剩余空间进行扩展。
如果有多个子元素设置了 flex-grow，
它们将按比例分配剩余空间。这里只有一个 .header_content 设置了 flex-grow: 1，所以它会尽可能多地占用剩余空间。*/
.header_content {
    flex-grow: 1;
    display: flex;
}
.header_content_left {
    height: 60px;
    border-left: #FFFFFF 1px solid;
    padding-top: 36px;
    text-align: center;
    position: relative;
    
}

.nav-menu {
    position: fixed;
    top: 60px;
    right: -250px;
    width: 250px;
    height: 100%;
    background: #FFFFFF;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 2000;
}
.nav-menu.open {
    right: 0;
}
.nav-menu ul {
    padding: 20px;
}
.nav-menu li {
    width: 100%;
    height: 35px;
    line-height: 35px;
    display: flex;
    margin-bottom: 10px;
    border-bottom: #ccc 1px solid; 
}
.nav_menu_left {
    width: 88%;
}
.nav_menu_right {
    width: 30px;
    text-align: center;
}
.nav-menu ul li a {
    text-decoration: none;
    color: #333;
}
.overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: calc(100% - 60px);
        background-color: rgba(68, 67, 67, 0.6);
        display: none;
        z-index: 999;
        margin-top: 60px;
    }
.popup_content_item {
    position: fixed;
    top: 100px;
    width: 100%;
    height: 130px;
    background: #f7f7f7;
    display: flex; /* 设置为 Flex 容器 */
    justify-content: space-between; /* 或者使用 space-around、space-evenly 等 */
    align-items: center; /* 垂直居中对齐 */
    z-index: 1000; /* 确保 popup_content_item 在其他内容之上 */
}

.popup_content_item ul {
    display: flex; /* 设置为 Flex 容器 */
    justify-content: space-between; /* 或者使用 space-around、space-evenly 等 */
    list-style: none; /* 去掉默认的列表样式 */
    width: calc(100% - 600px);
    margin-left: 300px;
    margin-right: 300px;

}

.popup_content_item li {
    font-size: 18px;
    cursor: pointer;
    color: #666666;
    height: 130px;
    line-height: 130px;
    flex: 1; /* 平均分配剩余空间 */
    text-align: center; /* 可选：居中文本 */
    display: flex;
    justify-content: center; /* 水平居中文本 */
    align-items: center; /* 垂直居中文本 */
    box-sizing: border-box; /* 确保 padding 和 border 不影响宽度 */
    border-left: 1px solid #eeeeee; /* 左侧竖杠 */
    border-right: 1px solid #eeeeee; /* 右侧竖杠 */
}

.popup_content_item li a{
    color: #666666;
}

.popup_content_item li:not(:last-child) {
    border-right: 1px solid #eeeeee; /* 竖杠的颜色 */
}

.search_input {
    width: 70%;
    margin: 0 auto;
    display: flex; /* 设置为 Flex 容器 */
    justify-content: space-between; /* 或者使用 space-around、space-evenly 等 */
    align-items: center; /* 垂直居中对齐 */
    margin-top: 50px;
}


.underline-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc; /* 下边框颜色 */
    padding: 8px 0;
    font-size: 16px;
    background: transparent;
    outline: none; /* 移除聚焦时的默认边框 */
}

.underline-input:focus {
    border-bottom-color: #ccc; /* 聚焦时下边框颜色 */
}