@charset "utf-8";/* 搜索框样式   */ * {            box-sizing: border-box;        }        body {            margin: 0;            padding: 0;                        font-weight: 500;            font-family: "Microsoft YaHei","宋体","Segoe UI", "Lucida Grande", Helvetica, Arial,sans-serif, FreeSans, Arimo;        }        #container {            margin: 0 auto;        }        div.search {padding: 8px 0 20px 0;}        form {            position: relative;            width: 98%;            margin: 0 auto;        }        input, button {            border: none;            outline: none;        }        input {            width: 100%;            height: 38px;            padding-left: 13px;        }        button {            height: 38px;            width: 68px;            cursor: pointer;            position: absolute;        }        /*搜索框1*/                .bar1 input {            border: 2px solid #6384d3;            border-radius: 5px;            background: #fdfdfd;            color: #9E9C9C;        }        .bar1 button {            top: 0;            right: 0;            background: #6f92e7;            border-radius: 0 5px 5px 0;        }        .bar1 button:before {            content: "\f002";            font-family: FontAwesome;            font-size: 16px;            color: #F9F0DA;        }