﻿
.hsearch{
    margin:0 15px;
    padding:0;
    list-style:none;
    display: flex; /* 使用Flexbox布局 */
    align-items: center; /* 垂直居中对齐 */
    gap: 15px; /* 元素之间的间距 */
	margin-top: 25px; /* 向上的距离（值越大越靠下） */
    margin-left: 250px; /* 向左的距离（值越大越靠右） */
}
.hsearch li{
    padding:0;
    margin:0;
    display: flex; /* 让每个列表项也使用Flex布局 */
    align-items: center;
}
.hsearch li div{
    line-height:22px;
    color:#999;
    margin-right: 8px; /* 标签与输入框之间的间距 */
    white-space: nowrap; /* 防止标签换行 */
}
.hsearch .ip{
    border:1px solid #ccc;
    padding:6px 5px;
    height:18px;
    vertical-align:middle;
}
.hsearch .w{
    width:220px;
    overflow:hidden;
}
.hsearch .bnt{
    background:url(../images/bnt_blue.gif) no-repeat center;
    border:0;
    width:80px;
    height:30px;
    line-height:30px;
    font-size:12px;
    color:#333;
    cursor:pointer;
}

