/* 调整搜索栏位置向下移动 */
.search-bar {
position: absolute;
top: 20px; /* 增加这个值使搜索栏向下移动 */
right: 20px;
}
/* 或者使用margin-top方式 */
.search-bar {
margin-top: 10px; /* 增加这个值来向下推动搜索栏 */
position: absolute;
right: 20px;
}本站
原
.search {float:right; position:relative;}修改为
.search {float:right; position:relative; top:30px;
}