@media (min-width:768px) {
.Search-input input {
width: 225px; //点击前搜索框的宽度
max-width: 300px; //最大宽度,也可以不设定
}
.Search.focused .Search-results,.Search.focused input {
width: 200px //点击后搜索框的宽度,同上可以自己设定
}
.Search.focused {
margin-left: auto //点击搜索框后的效果,auto为自动,负数为左移
}
}