
.search_box {
	display: none;
	opacity: 0;
	position: absolute;
	width: 440px;
	height: auto;
	background: #fff;
	box-shadow: 0px 10px 36px 0px rgba(5, 17, 71, 0.2);
	right: -182px;
	top: 120px;
	margin: auto;
	padding-top: 24px;
}

.search_box .drop_sj {
	position: absolute;
	width: 13px;
	height: 6px;
	background-image: url(../imgs/drop_sj.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	top: -5px;
    left: 50%;
    transform: translate(-50%, 0);
}

.search_box .seek_cont {
	height: 36px;
	margin: 0 auto;
	border-radius: 2px;
	padding: 0 20px;
}

.search_box .seek_cont .seek_cont_l {
	position: relative;
	height: 36px;
	border: 1px solid #E1E6F0;
	border-right: none !important;
	border-radius: 2px 0 0 2px;
}

.search_box .seek_cont .seek_cont_l .seek_input_wrap {
	width: 321px;
	height: 100%;
	color: #333;
	font-size: 14px;
	padding: 0 30px 0 16px;
	border-radius: 2px 0 0 2px;
}
.search_box .seek_cont .seek_cont_l i.close_search {
	position: absolute;
	cursor: pointer;
	right: 10px;
	top: 50%;
	transform: translate(0, -50%);
	color: #8187A1;
	height: 34px;
	line-height: 34px;
}
.search_box .seek_cont .seek_cont_l i.close_search:hover {
	color: #3464FF;
}

.search_box .seek_cont .seek_cont_l .select {
	position: relative;
	width: 76px;
	height: 34px;
	font-size: 14px;
	color: #040F43;
	line-height: 34px;
	cursor: pointer;
}

.search_box .seek_cont .seek_cont_l .select i {
	font-size: 12px;
	color: #040F43;
	line-height: 34px;
}

.search_box .seek_cont .seek_cont_l .select .seach_select {
	display: none;
	position: absolute;
	width: 86px;
	background: #fff;
	z-index: 30;
	top: 42px;
	right: 0;
	padding: 5px 0;
	border-radius: 4px;
	box-shadow: 0px 0px 12px 0px rgba(7, 17, 27, 0.1);
}

.search_box .seek_cont .seek_cont_l .select .seach_select li {
	padding-left: 10px;
	height: 32px;
	line-height: 32px;
	font-size: 12px;
	color: #333333;
	font-weight: normal;
	cursor: pointer;
}

.search_box .seek_cont .seek_cont_l .select .seach_select li:hover {
	background-color: #F2F5FF;
	color: #3464FF;
}

.search_box .seek_cont .seek_cont_l:hover {
	border: 1px solid #3464FF;
}

.search_box .seek_cont .seek_btn {
	width: 78px;
	height: 36px;
	background: linear-gradient(180deg, #3d7fff 0%, #0053fc 64%, #003bfc 100%);
	border-radius: 0px 2px 2px 0px;
	font-size: 14px;
	color: #fff;
	line-height: 36px;
}

.search_box .seek_cont .seek_btn i {
	font-size: 13px;
	color: #fff;
	margin-right: 6px;
	line-height: 34px;
}

.search_box .seek_his_box p {
	font-size: 12px;
	color: #8187A1;
	padding: 17px 20px 0;
	line-height: 18px;
	margin-bottom: 7px;
}

/* 历史记录 */
.search_box .seek_his_ul {
	max-height: 65vh;
	overflow-x: hidden;
	overflow-y: scroll;
}
.search_box .seek_his_ul::-webkit-scrollbar {
	width: 0px;
}
.search_box .seek_his_ul li {
	width: 440px;
	height: 46px;
	padding: 0 20px;
}
.search_box .seek_his_ul li .seek_his_ul_div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 46px;
	position: relative;
}
.search_box .seek_his_ul li .seek_his_ul_div::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	border-bottom: 1px dashed #E1E6F0;
	bottom: 0px;
	left: 0;
}
.search_box .seek_his_ul li a {
	color: #121212;
	font-weight: bold;
	font-size: 14px;
	line-height: 46px;
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.search_box .seek_his_ul li i {
	font-size: 12px;
	color: #8187A1;
	flex-shrink: 0;
	display: none;
	height: 46px;
    line-height: 46px;
}
.search_box .seek_his_ul li:hover {
	background-color: #F2F5FF;
}
.search_box .seek_his_ul li:hover a {
	color: #3464FF;
}
.search_box .seek_his_ul li:hover i {
	display: block;
}
.search_box .seek_his_ul li i:hover {
	color: #3464FF;
	cursor: pointer;
}

/* 清空历史 */
.search_box .seek_his_box .his_del {
	width: 100%;
	height: 58px;
	display: flex;
    justify-content: center;
	padding: 15px 19px;
}
.search_box .seek_his_box .his_del span {
	cursor: pointer;
	color: #8187A1;
	font-size: 14px;
	line-height: 24px;
	display: flex;
    justify-content: center;
}
.search_box .seek_his_box .his_del span i {
	font-size: 18px;
	vertical-align: -2px;
	margin-right: 4px;
}
.search_box .seek_his_box .his_del span:hover {
	color: #3464FF;
}

/* 猜你想搜 */
.search_box .seek_guess_box {
	max-height: 75vh;
	overflow-x: hidden;
	overflow-y: scroll;
}
.search_box .seek_guess_box::-webkit-scrollbar {
	width: 4px;
}
.search_box .seek_guess_box p {
	font-size: 12px;
	color: #8187A1;
	padding: 17px 20px 7px;
	line-height: 18px;
}
.search_box .seek_guess_box .seek_guess_ul {
	width: 440px;
}
.search_box .seek_guess_box .seek_guess_ul.guess_1 a span,
.search_box .seek_guess_box .seek_guess_ul.guess_2 a span {
	font-family: PingFangSC, PingFang SC;
	font-weight: bold;
	font-size: 14px;
}
.search_box .seek_guess_box .seek_guess_ul.guess_3 a {
	font-family: PingFangSC, PingFang SC;
	font-weight: 400;
	font-size: 12px;
	color: #040F43;
	margin-right: 4px;
}
.search_box .seek_guess_box .seek_guess_ul li .seek_guess_ul_div {
	display: flex;
	align-items: center;
	height: 46px;
	position: relative;
}
.search_box .seek_guess_box .seek_guess_ul li:not(:last-child) .seek_guess_ul_div::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	border-bottom: 1px dashed #E1E6F0;
	bottom: 0px;
	left: 0;
}
.search_box .seek_guess_box .seek_guess_ul li {
	padding: 0 20px;
}
.search_box .seek_guess_box .seek_guess_ul li a {
	color: #121212;
	font-size: 12px;
	font-weight: bold;
	line-height: 46px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
}
.search_box .seek_guess_box .seek_guess_ul li a span {
	color: #3464FF;
}
.search_box .seek_guess_box .seek_guess_ul li i {
	font-size: 12px;
	color: #8187A1;
	flex-shrink: 0;
	height: 46px;
	line-height: 46px;
}
.search_box .seek_guess_box .seek_guess_ul li:hover {
	background-color: #F2F5FF;
}
.search_box .seek_guess_box .seek_guess_ul li i:hover {
	color: #3464FF;
	cursor: pointer;
}
.search_box .seek_guess_box .seek_guess_ul li:hover a {
	color: #3464FF;
}

/* 暂无相关搜索记录 */
.search_box .seek_empty_box {
	text-align: center;
	padding: 70px 0 107px;
}
.search_box .seek_empty_box .seek_empty_img {
	width: 125px;
	height: 112px;
	display: inline-block;
	vertical-align: bottom;
}
.search_box .seek_empty_box .seek_empty_desc {
	font-family: PingFangSC, PingFang SC;
	font-weight: 400;
	font-size: 14px;
	color: #8187A1;
	line-height: 18px;
	margin-top: -2px;
}

.color-3464FF {
	color: #3464FF !important;
}
.font-size-14 {
	font-size: 14px !important;
}