.search-bar {
	/* width: 40%; */
	min-width: 900px;
	margin: 20px auto;
}

.search-box {
	display: flex;
	display: -webkit-flex;
	flex:1;
	-webkit-flex: 1;
	z-index: 2;
	position: relative;
	height: 36px;
	background-color: #f9f9f9;
	border-radius: 2px;
	box-shadow: 0 1px 3px rgba(0,0,0,.25);
	width: 40%;
	margin: 0 auto;
}

.search-engine {
  cursor: pointer;
  position: relative;
  padding: 4px 6px 4px 30px;
  height: 28px;
	line-height: 28px;
	white-space: nowrap;
  background: url('../../img/grey.gif') no-repeat 10px 10px;
	background-size: 16px;
}

.change-engine::after {
	content: "";
	position: relative;
	top: 12px;
	left: 6px;
	width: 0;
	height: 0;
	border-color: #959595 transparent transparent;
	border-style: solid;
	border-width: 5px;
}

.change-engine.change-engine-close::after {
	top: -10px;
	border-color: transparent transparent #959595;
}

.search-engine .engine-list {
	border: 1px solid rgba(0,0,0,.25);
	border-radius: 2px;
	box-shadow: 0 1px 3px rgba(0,0,0,.2);
	width: 130px;
	background-color: #f9f9f9;
	position: absolute;
	z-index: 2;
	top: 36px;
	left: 0;
	display: none;
}

.search-engine .engine-list p {
	padding-right: 10px;
	text-align: left;
	color: #333;
	height: 36px;
}

.search-engine .engine-list p.hover {
	background-color: #0864f7;
	color: #fff;
}

.search-engine .engine-list p:hover {
	background-color: #0864f7;
	color: #fff;
}

.search-engine .engine-list img {
	display: inline-block;
	width: 16px;
	height: 16px;
	padding: 10px 6px 9px 8px;
}

.search-engine .engine-list span {
	display: inline-block;
	line-height: 36px;
	font-weight: 400;
	width: 100px;
	overflow: hidden;
	text-overflow: ellipsis;
	vertical-align: top;
}

.search-input {
	display: flex;
	display: -webkit-flex;
	flex:1;
	-webkit-flex: 1;
	border-radius: 0 2px 2px 0;
	position: relative;
	height: 36px;
}

.search-input .button {
	flex: 1;
	-webkit-flex: 1;
	height: 20px;
	padding: 8px 0 8px 7px;
	border:0;
	margin-right: 25px;
	background-color: #f9f9f9;
	color: #000;
	outline: none;
	width: 96%;
	font-size: 13px;
}

#zoom-box {
    display: none;
    position: fixed;
    z-index: 200;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background: #fff;
    opacity: 0.1;
    transition: top .3s, left .3s, right .3s, bottom .3s, opacity .3s ease-in-out;
}
#zoom-box.in{
    display: block;
}
