/* 详情页顶部：全宽背景 + 信息卡片 */
.info_hero {
	position: relative;
	width: 100%;
	padding-bottom: 40px;
	box-sizing: border-box;
	background: #fff;
}
.info_hero_bg {
	width: 100%;
	height: 500px;
	overflow: hidden;
	line-height: 0;
}
.info_hero_bg img {
	width: 100%;
	height: 100%;
	display: block;
}
.info_hero_inner {
	position: relative;
	z-index: 2;
	max-width: 1160px;
	margin: -440px auto 0;
	padding: 0 20px;
	box-sizing: border-box;
}
.info_hero_card {
	background: #fff;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	padding: 36px 40px 42px;
	box-sizing: border-box;
}
.info_hero_hd {
	margin-bottom: 28px;
	text-align: left;
}
.info_hero_hd_title {
	display: inline-block;
	position: relative;
	font-size: 22px;
	font-weight: 700;
	color: #222;
	line-height: 1.4;
	padding-bottom: 10px;
}
.info_hero_hd_title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 44px;
	height: 4px;
	background: #FAD859;
}
.info_hero_bd {
	display: flex;
	align-items: stretch;
	gap: 36px;
}
.info_hero_pic {
	flex: 0 0 48%;
    min-width: 0;
    height: 376px;
}
.info_hero_pic img {
	width: 100%;
	height: 100%;
	display: block;
}
.info_hero_meta {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	text-align: left;
}
.info_hero_title {
	margin: 0 0 18px;
	font-size: 26px;
	font-weight: 700;
	color: #111;
	line-height: 1.45;
}
.info_hero_sub {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom:40px;
	font-size: 14px;
	color: #888;
}
.info_hero_views {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
}
.info_hero_views img {
	width: 18px;
	height: 18px;
	display: block;
}
.info_hero_views font {
	font-style: normal;
	color: #888;
}
.info_hero_panel {
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
	padding: 22px 24px;
	margin-bottom: 40px;
	box-sizing: border-box;
}
.info_hero_panel_row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 14px;
	font-size: 14px;
	color: #555;
	line-height: 1.6;
}
.info_hero_panel_row:last-child {
	margin-bottom: 0;
}
.info_hero_panel_row > span {
	flex: 1;
	min-width: 0;
}
.info_hero_panel_row strong {
	color: #222;
	font-weight: 700;
}
.info_hero_panel_contact a {
	color: #1544b7 !important;
	text-decoration: none !important;
}
.info_hero_panel_contact a:hover {
	text-decoration: underline !important;
}
.info_hero_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 48px;
	background: #231816;
	color: #fff !important;
	font-size: 16px;
	text-decoration: none !important;
	box-sizing: border-box;
	transition: opacity 0.25s ease;
}
.info_hero_btn:hover {
	opacity: 0.9;
	color: #fff !important;
}
.info_hero_tip {
	margin: 14px 0 0;
	font-size: 13px;
	color: #b0b0b0;
	text-align: center;
	line-height: 1.4;
}

@media screen and (max-width: 992px) {
	.info_hero_bg {
		height: 220px;
	}
	.info_hero_inner {
		margin-top: -100px;
	}
	.info_hero_card {
		padding: 24px 18px 28px;
	}
	.info_hero_bd {
		flex-direction: column;
		gap: 22px;
	}
	.info_hero_pic {
		flex: none;
		width: 100%;
		min-height: 240px;
		aspect-ratio: 4 / 3;
	}
	.info_hero_title {
		font-size: 20px;
	}
	.info_hero_panel_row {
		flex-direction: column;
		gap: 8px;
	}
}

.info_detail_header{
	width:100%;
	background:linear-gradient(to right, #e2feff 0%, #e2feff 25%, #c6f2f5 50%, #93d9e0 100%);
	padding:100px 0;
}
.info_detail_header_container{
	max-width:1200px;
	margin:0 auto;
	padding:0 20px;
	text-align:left;
}
.info_detail_header .info_detail_title{
	font-size:40px;
	font-weight:700;
	color:#00a49d;
	margin:0 0 10px 0;
	line-height:1.2;
}
.info_detail_header .info_detail_subtitle{
	font-size:16px;
	color:#666;
	margin:0;
	line-height:1.5;
}
@media screen and (max-width:768px){
	.info_detail_header{
		padding:40px 0;
	}
	.info_detail_header .info_detail_title{
		font-size:28px;
	}
	.info_detail_header .info_detail_subtitle{
		font-size:14px;
	}
}
/* 面包屑导航 */
.info_breadcrumb{
	padding:20px 0;
	font-size:14px;
	color:#666;
	max-width:1200px;
	margin:0 auto;
	text-align: left;
}
.info_breadcrumb a{
	color:#666;
	text-decoration:none;
}
.info_breadcrumb a:hover{
	color:#00a49d;
	text-decoration:underline;
}
.info_breadcrumb span{
	color:#333;
	font-weight:500;
}



@media screen and (max-width:768px){
	.info_card_content{
		flex-direction:column;
		gap:15px;
	}
}
/* 服务保障 */
.info_guarantee_list{
	display:flex;
	flex-direction:column;
	gap:20px;
}
.guarantee_item{
	display:flex;
	gap:15px;
	align-items:flex-start;
}
.guarantee_icon{
	width:51px;
	height:50px;
	border-radius:50%;
	background:#e6f8f6;
	flex-shrink:0;
}
 
.guarantee_item .icon_major{
	background: url(../images/icon_major.gif) no-repeat;
	background-size: 100% 100%;
}

.guarantee_item .icon_quality{
	background: url(../images/icon_quality.gif) no-repeat;
	background-size: 100% 100%;
}

.guarantee_item .icon_price{
	background: url(../images/icon_price.gif) no-repeat;
	background-size: 100% 100%;
}

.guarantee_item .icon_service{
	background: url(../images/icon_service.gif) no-repeat;
	background-size: 100% 100%;
}

.guarantee_content{
	flex:1;
    text-align: left;
}
.guarantee_title{
	font-size:16px;
	font-weight:700;
	color:#333;
	margin:0 0 5px 0;
	letter-spacing: 1px;
}
.guarantee_desc{
	font-size:14px;
	color:#666;
	line-height:1.6;
	margin:0;
	letter-spacing: 1px;
}
/* 登录查看按钮 */
.info_login_btn{
	display:block;
	width:100%;
	padding:21px 0;
	background:#00a49d;
	color:#fff;
	text-align:center;
	border-radius:8px;
	font-size:16px;
	font-weight:600;
	text-decoration:none;
	transition:all 0.3s ease;
	margin-top:20px;
}
.info_login_btn:hover{
	background:#fa7317;
	color:#fff;
	text-decoration:none;
}
/* 信息内容区域 */
.info_content_section{
	max-width:1160px;
	margin:0 auto;
	padding:0 20px 60px;
	box-sizing: border-box;
}
.info_content_section .tablist{
	border-radius: 0;
	padding: 30px 28px 40px;
	background: #F5F5F5;
}
.info_content_section_title{
	width: 100%;
	background: transparent;
	text-align: left;
	padding: 10px 0 18px;
	margin-top: 10px;
	border-bottom: none;
}
.info_content_section_title h3,
.info_content_section h3{
	display: block;
	width: auto;
	margin: 0;
	font-size: 22px;
	font-weight:700;
	color: #222;
	background: transparent;
	padding: 0;
	height: auto;
	line-height: 1.5;
	text-indent: 0;
	letter-spacing: 1px;
	border-radius: 0;
}
.info_content_section .maincon{
	padding:0;
	font-size:16px;
	line-height:1.8;
	color:#333;
	text-align:left;
}
.info_content_section .maincon p{
	margin:10px 0;
	padding:0;
}
.info_content_section .maincon ul,
.info_content_section .maincon ol{
	margin:10px 0;
	padding-left:20px;
}
.info_content_section .maincon li{
	margin:5px 0;
}
@media screen and (max-width:1024px){
	.info_detail_main{
		/* flex-direction:column; */
	}
	.info_detail_left,
	.info_detail_right{
	}
}

/* 标题 */
.info-title{
	width: 1200px;margin: 0 auto;padding: 60px 0;text-align: center;border-bottom: 1px solid #DCDCDC;margin-bottom: 50px;
}
.info-title h3{
	font-size: 28px;
	color: black;
	font-weight: 600;
	letter-spacing: 1px;
	position: relative;
}
.info-title h3::after{
	content: '';
	width: 20px;
	height: 8px;
	background: #E4000F;
	position: absolute;
	left: 50%;
	bottom: -25px;
	transform: translateX(-50%);
}
/* 信息详情主要内容区域 */
.info_detail_main{
	width:1200px;
	margin:0px auto;
	height:370px;
	display:flex;
	gap:90px;
	align-items:flex-start;
}
/* 左侧图片区域 */
.info_detail_left{
	height: 100%;
	display: flex;
	gap: 30px;
}
.info_image_box{
	height: 100%;
	border: 1px solid #E2000E;
	position: relative;
}
.info_main_image{
	position: absolute;
	top: -12px;
	left: -12px;
	width:340px;
	height:100%;
	background:#e0e0e0;
	/* border-radius:8px; */
	overflow:hidden;
	display:flex;
	align-items:center;
	justify-content:center;
	position:relative;
}
.info_main_image img{
	width:100%;
	height:100%;
}
.info_category_tag{
	position:absolute;
	bottom:20px;
	left:50%;
	transform:translateX(-50%);
	display:inline-flex;
	align-items:center;
	gap:8px;
	padding:10px 20px;
	background:#0f52bb;
	color:#fff;
	border-radius:6px;
	font-size:14px;
	font-weight:600;
	box-shadow:0 2px 8px rgba(0,0,0,0.2);
}
.tag_icon{
	font-size:16px;
	font-weight:bold;
}
.tag_text{
	white-space:nowrap;
}
.info_thumbnails{
	display:flex;
	gap:10px;
	justify-content:flex-start;
	flex-wrap:wrap;
	/* margin:10px 1px; */
}
.info_thumb{
	width:80px;
	height:80px;
	background:#e0e0e0;
	overflow:hidden;
	cursor:pointer;
	transition:all 0.3s ease;
	flex-shrink:0;
}
.info_thumb:hover{
	border-color:#00a49d;
	transform:scale(1.05);
}
.info_thumb.active{
	border-color:#00a49d;
}
.info_thumb img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
}
/* 右侧信息卡片 */
.info_detail_right{
	height: 100%;
	flex:1;
	width: 100%;
	display:flex;
	flex-direction:column;
	justify-content: space-between;
	/* gap:26px; */
}
.info_detail_card{
	display: flex;
	align-items: center;
	gap: 18px;
	/* padding:20px 0 30px 0; */
}
.info_card_title_line{
	width: 6px;
	height: 20px;
	background: #E1000A;
}
.info_card_title{
	font-size:22px;
	color:#000;
	font-weight: 600;
	line-height:1.4;
	text-align: left;
	position: relative;
}
.info_card_content{
	display:flex;
	justify-content: space-between;
	align-items:center;
	margin-top: 20px;
	font-size: 15px;
	color: #000;
}
.info_content_time{
	text-align: left;
}
.info_content_num{text-align: right;}

.info_detail_card_wapper{
    width: 1200px;
	margin: 0 auto;
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 30px;
}
.info_card_btn{margin-left: 110px;border: 1px solid #A08347;padding: 10px 50px;color: #A08347;border-radius: 30px;letter-spacing: 1px;}
.info_card_btn:hover{background: #A08347;color: white;}
.info_card_content2{display: flex;align-items: center;gap: 10px;margin-left: 110px;}
.info_card_content2 .userlogo{width: 80px;height: 80px;border-radius: 50%;}
.info_content_right2{text-align: left;}
.info_content_right2 .info_contact{font-size: 17px;color: black;margin-bottom: 13px;font-weight: 600;}
.info_content_right2 .info_tips{display: flex;gap: 18px;color: #6d6c6c;font-size: 14px;}

.info_content_left,
.info_content_right{
	flex:1;
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap:10px;
}
.info_item{
	width: 420px;
	padding: 6px 0;
	display:flex;
	align-items:center;
	gap:20px;
	font-size:16px;
	line-height:1.6;
}
.info_item a{
	color:#000;
	font-weight: 600;
}
.info_label{
	color:#000;
	font-weight: 600;
	display:inline-block; width:80px;
	flex-shrink:0;
    text-align: left;
	font-size: 16px;
	letter-spacing: 1px;
}
.info_value{
	color:#000;
	font-weight: 600;
	flex:1;
    text-align: left;
}
.info_link{

	/* s */
}
.info_link:hover{
	color:#025c66;
	text-decoration:underline;
}
.info_btns{
	display: flex;
	gap: 20px;
	margin-top: 25px;
}
.info_btns .login_btn{
	background: #A08347;color: white;width: 40%;padding: 15px 0;border-radius: 4px;font-size: 15px;font-style: italic;letter-spacing: 1pxs;
}

.info_btns .collect_btn{
	width: 50%;border: 1px solid #FF473B;color: #FF473B;padding: 15px 0;border-radius: 10px;font-size: 15px;
}
.info_btns .login_btn:hover{
    background-color: #9b7e45;
}
/* 推荐 */
.interested{
	width: 300px;
	/* padding: 20px 15px; */
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.interested_list{
	display: flex;flex-direction: column;gap: 20px;flex: 1;margin: 20px 20px 50px 20px;justify-content: space-between;
}
.interested_list .interested_list_line{}
.interested_list .interested_list_line a{display: flex;align-items: center;gap: 8px;font-size: 15px;color: #007F8E;font-weight: 600;}