body {
	background-color: #F5F8FA;
}

.search_box {
	width: 1200px;
	margin: 0 auto 0;
	background-color: #FF9228;
	border-radius: 20px;
	display: flex;
	padding: 19px;
	align-items: center;
	position: relative;
	bottom: 50px;
}

.search_box .left {
	width: 614px;
	background-color: #fff;
	border-radius: 12px;
	position: relative;
}

.search_box .left .search {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background-color: #FF9228;
	display: flex;
	align-items: center;
	border-radius: 16px;
	height: 32px;
	line-height: 32px;
	width: 86px;
	justify-content: center;
	font-size: 16px;
	color: #fff;
	cursor: pointer;
}

.search_box .left .search img {
	width: 14px;
	height: 14px;
	margin-right: 6px;
}

.search_box .left textarea {
	resize: none;
	border-radius: 12px;
}

.search_box .left textarea:focus {
	outline: none !important;
	border-color: #FF9228 !important;
}

.search_box .right {
	display: flex;
	justify-content: space-around;
	width: 0;
	flex: 1;
	text-align: center;
}

.search_box .right .item{
	cursor: pointer;
}

.search_box .right .item img {
	width: 38px;
	height: 38px;
}

.search_box .right .item .name {
	margin-top: 12px;
	color: #fff;
	font-size: 18px;
	
}

.pop_bg {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	background-color: rgba(0, 0, 0, .3);
	z-index: 999;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pop {
	background-color: #fff;
	width: 1200px;
	max-height: 500vh;
	overflow: auto;
}

.pop .title {
	padding: 30px;
	font-size: 20px;
	display: flex;justify-content: space-between;
}

.pop .title .right{
	color: red;
	cursor: pointer;
}

.pop .list .item {
	padding: 30px;
	border-top: 2px solid #B4B4B4;
}

.pop .list .item .box {
	display: flex;
	align-items: center;
}

.pop .list .item .box .left {
	font-size: 20px;
	color: #0E0E0E;
}

.pop .list .item .box .center {
	margin-left: 75px;
	width: 0;
	flex: 1;
	font-size: 20px;
}

.pop .list .item .box .right {
	width: 98px;
	line-height: 32px;
	background: #FF9228;
	border-radius: 8px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	display: none;
	cursor: pointer;
}

.pop .list .item.active .box .on {
	width: 98px;
	line-height: 32px;
	background: #FF9228;
	border-radius: 8px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	display: block;
}

.pop .list .item:not(.active) .box .off {
	display: block;
}

.pop .list .item.active .box2 {
	display: block !important;
}

.pop .list .item .box2 .line {
	padding: 20px 0;
	display: flex;
	align-items: center;
}

.pop .list .item .box2 .line .left {
	font-size: 16px;
	margin-right: 66px;
	width: 150px;
	color: #B4B4B4;
}

.pop .list .item .box2 .line .right{
	font-size: 16px;
	color: #B4B4B4;
}

.pop .line {
	position: relative;
}

.pop .line:first-of-type .left{
	color: #0E0E0E !important;
}

.pop .line:first-of-type .right{
	color: #0E0E0E !important;
}

.pop .line:first-of-type .dot{
	background-color: #FF9228;
	z-index: 999;
	transform: scale(1.3);
}

.pop .line .dot {
	width: 13px;
	height: 13px;
	background-color: #DEDEDE;
	border-radius: 50%;
	position: relative;
	margin-right: 66px;
}

.pop .line:not(:first-of-type)::after {
	height: 100%;
	width: 1px;
	content: '';
	display: block;
	position: absolute;
	background-color: #DEDEDE;
	left: 222px;
	bottom: 50%;
}

.warehouse{
	width: 1200px;
	margin: 0 auto;
}

.warehouse .layui-this{
	color: #FF9228 !important;
}

.warehouse .layui-this::after{
	border-color: #FF9228 !important;
}

.warehouse .list{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-gap: 32px;
}

.warehouse .list .item{
	padding: 26px;
	background-color: #fff;
	border-radius: 20px;
}

.warehouse .list .item .name {
	/* padding-left: 28px; */
	font-weight: bold;
	font-size: 20px;
	color: #0D0D0D;
}

.warehouse .list .item .line {
	font-size: 16px;
	color: #0D0D0D;
	margin-top: 16px;
}

.warehouse .list .item img{
	width: 15px;
	height: 15px;
	margin-right: 15px;
}