.header_box {
	background: #D1060F;
	/* position: fixed;
	left: 0;
	top: 0; */
	width: 100%;
	box-sizing: border-box;
	z-index: 999;
	/*min-width: 1500px;*/
}

.header {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 0;
}

.header_box a {
	color: #100415;
}

.logo {
	margin-top: 3px;
	height: 68px;
	display: block;
}

.sub_title {
	/* height: 60px; */
	/* padding-top: 33px; */
	margin-left: 10px;
	font-size: 18px;
}

.search_box {
	background: #E98A8E;
	width: 228px;
	height: 44px;
	border-radius: 30px;
	/* 添加圆角边框 */
	overflow: hidden;
	position: relative;
	margin-right: 30px;
}

.search_icon {
	position: absolute;
	/*left: 15px;*/
	right: 15px;
	top: 15px;
	width: 16px;
	height: 16px;
}

.search_input {
	background: #E98A8E;
	width: 100%;
	height: 100%;
	border: none;
	padding-left: 40px;
	color: #ffffff
}

.search_input::placeholder {
	color: #ffffff;
	/* 自定义占位符文本颜色 */
	/* font-style: italic; 自定义占位符文本样式 */
}

.search_input:focus {
	outline: none;
	/* 移除默认的轮廓线 */
	border: 1px solid #df4d54;
	/* 设置新的边框样式 */
	box-shadow: 0 0 5px rgba(223, 77, 84, 0.5);
	/* 添加阴影效果 */
}

.app_box {
	text-align: center;
	margin-left: 30px;
	position: relative;
}

.app_box:hover .app-container {
	display: block;
}

.app-container {
	display: none;
	position: absolute;
	position: absolute;
	top: 65px;
	left: -40px;
	background: white;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	padding: 5px;
	border-radius: 5px;
	z-index: 99;
}

.app-img-box {
	position: relative;
}

.app-img {
	width: 118px;
	height: 118px;
	display: block;
}

.app-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 30%;
	/* 调整Logo大小 */
	max-height: 30%;
}

.jz_box {
	text-align: center;
	margin-left: 30px;
	position: relative;
}

.jz_box:hover .jz-container {
	display: block;
}


.jz-container {
	display: none;
	position: absolute;
	position: absolute;
	top: 65px;
	left: -70px;
	background: white;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	z-index: 99;
	padding: 15px 0;
}

.jz-img-box {
	position: relative;
	width: 118px;
	height: 118px;
	margin: 0 auto;
	border-radius: 4px 4px 4px 4px;
	border: 1px solid #DDDDDD;
	padding: 10px;
}

.jz-img {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	display: block;
}

.jz-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 30%;
	/* 调整Logo大小 */
	max-height: 30%;
}

.jz-li {
	padding: 10px 20px;
	border-radius: 5px;
}

.jz-li:hover {
	background-color: #F4F4F4;
}

.jz-li-img {
	width: 22px;
	height: 22px;
	display: block;
}

.jz-li-text {
	width: 112px;
}

.header_slider_box {
	background: #fff;
	box-shadow: 0 0 10px rgba(153, 150, 150, 0.5);
	/* 阴影的大小和颜色 */
}

.header_slider {
	width: 1200px;
	margin: 0 auto;
	padding: 10px 5px;
}

.slider_item {
	height: 42px;
	line-height: 42px;
	font-size: 20px;
	font-weight: 500;
	position: relative;
	cursor: pointer;
}

.slider_item .active {
	color: #D1060F;
}

.slider_line {
	width: 24px;
	height: 4px;
	background: linear-gradient(302deg, #FFA069 0%, #D7000F 100%);
	border-radius: 6px 6px 6px 6px;
	position: absolute;
	left: 50%;
	bottom: 0px;
	margin-left: -12px;
}

.slider_item_expand {
	width: 10px;
	height: 10px;
	margin-left: 6px;
}

.slider_item_retract {
	transform: rotate(180deg);
}

.sub_slider_box {
	position: absolute;
	left: -50px;
	top: 40px;
	width: 150px;
	background: #F6F6F6;
	box-sizing: border-box;
	transition: all 0.3s;
	display: none;
	box-shadow: 0 0 10px rgba(153, 150, 150, 0.5);
	border-radius: 3px;
	z-index: 99999;
}

.sub_slider {
	background: #fff;
	height: 34px;
	line-height: 34px;
	font-size: 15px;
	border-radius: 3px 3px 3px 3px;
	text-align: center;
}

.sub_slider:hover {
	background: #F6F6F6;
}

.disBlock {
	display: block;
}