/* 搜索框 */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: rgb(117, 119, 158);
    font-weight: 500;
    font-family: "Microsoft YaHei","宋体","Segoe UI", "Lucida Grande", Helvetica, Arial,sans-serif, FreeSans, Arimo;
}

div.search {padding: 30px 0;}

form {
    position: relative;
    width: 450px;
    margin: 0 auto;
}

input, button {
    border: none;
    outline: none;
}

input {
    width: 80%;
    height: 42px;
    padding-left: 13px;
}

button {
    height: 42px;
    width: 42px;
    cursor: pointer;
    position: absolute;
}

#bar1 input {
    border: 2px solid #7BA7AB;
    border-radius: 5px;
    background: #F9F0DA;
    color: #9E9C9C;
}
#bar1 button {
    right: 7px;
    background: #7BA7AB;
    border-radius: 0 5px 5px 0;
}
#bar1 button:before {
    content: "\f002";
    font-family: FontAwesome;
    font-size: 16px;
    color: #F9F0DA;
}