:root {
	--primary-color: #a32024;
	--primary-dark: #8a1b1f;
	--primary-light: #d14c50;
	--primary-gradient: linear-gradient(135deg, #a32024, #d14c50);
	--primary-gradient-dark: linear-gradient(135deg, #8a1b1f, #a32024);
	--primary-bg-light: #f8e7e8;
	--primary-border: #c0393c;
	--radius: 8px;
	--transition: all 0.3s ease;
	--shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* 主体 */

.container {
	position: relative;
	z-index: 8;
}

.wrap {
	position: relative;
	width: 1202px;
	min-height: 460px;
	_height: 460px;
	margin: 0 auto;
	/* background:url(/style/images/wrap.gif) repeat-y; */
}

.wrap .sidebar {
	float: left;
	width: 240px;
	margin-right: 30px;
	margin-top: 40px;
}

.wrap .main {
	display: block;
	overflow: hidden;
	*zoom: 1;
	padding: 20px 0 0;
}

.wrapBt {
	height: 0;
	background: none;
	overflow: hidden;
	clear: both;
}

.column02 {
	position: relative;
	background: #fff;
	position: relative;

	padding-bottom: 86px;
	margin-bottom: 40px;
}

.column02>.g-in {
	text-align: center;
	position: static;
	line-height: 100%;
}

.column02>.g-in>ul {
	display: inline-block;
	position: static;
}

.column02>.g-in>ul>li {
	margin: 0 50px;
	float: left;
	position: static;
}

.column02>.g-in>ul>li>a {
	position: relative;
	font-size: 16px;
	color: #484848;
	height: 90px;
	line-height: 90px;
	display: block;
}

.column02>.g-in>ul>li>a .line {
	width: 0px;
	height: 2px;
	background: #a32024;
	transition: 1s;
	position: absolute;
	left: 50%;

	margin-left: -20px;
	top: 66px;
	text-align: center;
}

.column02>.g-in>ul>li.current>a .line,

.column02>.g-in>ul>li:hover>a .line {
	width: 40px
}



/*.column02>.g-in>ul>li:hover .sub,*/

.column02>.g-in>ul>li.current .sub {
	transform: translateY(0px);
	visibility: visible;
	opacity: 1;
}

.column02>.g-in>ul>li .sub {
	position: absolute;
	top: 90px;
	transform: translateY(30px);
	background: #e5e5e5;

	text-align: center;
	width: 100%;
	height: 90px;
	opacity: 0;
	overflow: hidden;
	left: 0px;
	transition: all ease-in-out 0.4s;
	z-index: 999999;
	visibility: hidden;
}

.column02>.g-in>ul>li .sub dd {
	display: inline-block;
	height: 90px;
	line-height: 90px;
	margin: 0 20px;

	overflow: hidden;
	text-align: center;
	display: inline-block;
	transition: all ease-in-out 0.6s;
}

.column02>.g-in>ul>li .sub dd a {
	font-size: 15px;
	display: block;
	color: #333;
	height: 38px;
	margin-top: 29px;
	line-height: 38px;

	padding: 0 15px;
	border-radius: 40px;
}

.column02>.g-in>ul>li .sub dd.active a {
	background: #a32024;
	color: #fff;
}


.floor-section {
	padding: 20px 0;
	position: relative;
}

.floor-section:nth-child(even) {
	background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
}



.floor-header {
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

.floor-header h2 {
	font-size: 32px;
	color: #333;
	margin-bottom: 15px;
	font-weight: 700;
	position: relative;
	display: inline-block;
	padding-bottom: 10px;
}

.floor-header h2:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: var(--primary-color);
}

.floor-header p {
	color: #666;
	font-size: 18px;
	margin: 0 auto;
	line-height: 1.6;
}

/* 产品网格样式 */
.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 30px;
	margin: 40px 0;
}

.product-card {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	border: 1px solid #f0f0f0;
}

.product-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
	border-color: var(--primary-border);
}

.product-image {
	height: 100%;
	overflow: hidden;
	background: #f9f9f9;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
	transform: scale(1.05);
}

.product-content {
	padding: 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.product-title {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin-bottom: 10px;
	line-height: 1.4;
	transition: color 0.3s ease;
}

.product-card:hover .product-title {
	color: var(--primary-color);
}

.product-desc {
	color: #666;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 15px;
	flex-grow: 1;
}

.product-features {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 15px 0;
}

.feature-tag {
	background: var(--primary-bg-light);
	color: var(--primary-color);
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 500;
	border: 1px solid rgba(163, 32, 36, 0.2);
}

.product-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	padding-top: 15px;
	border-top: 1px solid #eee;
}

.product-category {
	font-size: 12px;
	color: #999;
	font-weight: 500;
	padding: 4px 10px;
	background: #f5f5f5;
	border-radius: 4px;
}

.product-link {
	background: var(--primary-gradient);
	color: white;
	padding: 8px 20px;
	border-radius: 5px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	display: inline-block;
}

.product-link:hover {
	background: var(--primary-gradient-dark);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(163, 32, 36, 0.3);
	color: white;
}

/* 应用场景样式 */
.application-section {
	padding: 40px 0;
	margin: 60px 0;
	background: var(--primary-gradient);
	color: white;
	border-radius: 10px;
}

.application-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin: 30px;
}

.application-item {
	text-align: center;
	padding: 30px 20px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: transform 0.3s ease;
}

.application-item:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.15);
}

.application-icon {
	font-size: 40px;
	margin-bottom: 20px;
}

.application-item h4 {
	font-size: 20px;
	margin-bottom: 15px;
	font-weight: 600;
}

.application-item p {
	opacity: 0.9;
	font-size: 14px;
	line-height: 1.5;
}

/* 技术优势样式 */
.tech-advantages {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin: 50px 0;
}

.tech-item {
	padding: 30px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid #f0f0f0;
}

.tech-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	border-color: var(--primary-border);
}

.tech-icon {
	width: 60px;
	height: 60px;
	background: var(--primary-gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	color: white;
	font-size: 24px;
}

.tech-item h3 {
	color: #333;
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 600;
}

.tech-item p {
	color: #666;
	line-height: 1.6;
	font-size: 14px;
}

/* 服务流程样式 */
.service-section {
	padding: 60px 0;
	background: #ffffff;
	border-radius: 10px;
	margin-top: 40px;
}

.service-steps {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 40px;
}

.service-step {
	flex: 1;
	min-width: 180px;
	text-align: center;
	padding: 20px;
	position: relative;
}

.service-step:not(:last-child):after {
	content: '→';
	position: absolute;
	right: -10px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--primary-color);
	font-size: 20px;
}

.service-step .icon {
	width: 60px;
	height: 60px;
	background: var(--primary-bg-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
	font-size: 24px;
	color: var(--primary-color);
	border: 2px solid rgba(163, 32, 36, 0.2);
}

.service-step h4 {
	color: #333;
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: 600;
}

.service-step p {
	color: #666;
	font-size: 14px;
}

/* 容器样式 */


/* 响应式调整 */
@media (max-width: 768px) {
	.floor-section {
		padding: 40px 0;
	}

	.product-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
		gap: 20px;
	}

	.service-step:not(:last-child):after {
		display: none;
	}

	.service-step {
		min-width: 100%;
		margin-bottom: 30px;
	}

	.application-grid {
		margin: 20px;
		gap: 20px;
	}
}


.column {
	position: relative;
	background: #fff;
	position: relative;
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 40px;
}

.column>.g-in {
	text-align: center;
	position: static;
	line-height: 100%;
}

.column>.g-in>ul {
	display: inline-block;
	position: static;
}

.column>.g-in>ul>li {
	margin: 0 25px;
	padding: 0 50px 0 0;
	float: left;
	position: static;
	border-right: 1px solid #e5e5e5;
}

.column>.g-in>ul>li:last-child {
	border-right: 0
}

.column>.g-in>ul>li>a {
	position: relative;
	font-size: 16px;
	color: #484848;
	height: 90px;
	line-height: 90px;
	display: block;
}

.column>.g-in>ul>li>a .line {
	width: 0px;
	height: 2px;
	background: #a32024;
	transition: 1s;
	position: absolute;
	left: 50%;

	margin-left: -20px;
	top: 66px;
	text-align: center;
}

.column>.g-in>ul>li.current>a .line,

.column>.g-in>ul>li:hover>a .line {
	width: 40px
}

.piList01 li {
	float: left;
	width: 31.1%;
	margin-right: 3%;
	overflow: hidden;
}

.piList01 li .pic img {
	width: 100%;
}

.piList01 li:nth-child(3),

.piList01 li:nth-child(6),

.piList01 li:nth-child(9),

.piList01 li:nth-child(12) {
	margin-right: 0
}

.pic-item-list {
	margin: 0 0 20px;
}

.pic-item-list .pic-item {
	display: block;
	float: left;
	width: 130px;
	margin-bottom: 10px;
	padding: 0;
}

.pic-item-list dl {
	padding: 0 5px;
	line-height: 26px;
	text-align: center;
}

.piList {
	overflow: hidden;
}

.piList .pic-item-list {
	width: 1200px;
	margin: 0;
	padding: 0;
}

.piList .pic-item {
	position: relative;
	width: 275px;
	margin: 0 30px 20px 0;
	padding: 0;
	display: inline;
}

.piList .pic-item img {
	width: 275px;
	height: 282px;
}

.piList .pic-item:nth-child(4n) {
	margin-right: 0;
}

.piList .list-pic {
	transition: .6s;
}

.piList .list-pic img {
	display: block;
}

.piList dl {
	padding: 4px 5px;
	line-height: 20px;
	margin: 5px 0 20px;
}

.piList dl dt {
	height: 30px;
	font-size: 16px;
	line-height: 30px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.piList .pic-item:hover dl dt a {
	font-weight: bold;
	color: #000000;
}

.piList .pic-item:hover .list-pic {
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	transform: translate3d(0, -4px, 0);
}

/* 分页 */

.page {
	padding: 40px 0;
	line-height: 24px;
	text-align: center;
}

.page a {
	display: inline-block;
	margin: 0 2px;
	padding: 0 8px;
	border: 1px solid #dedee0;
	color: #333;
	vertical-align: top;
}

.page a:hover,
.page .current {
	border: 1px solid #a32024;
	background: #a32024;
	color: #fff;
}

/* 面包屑 */

.location {
	position: relative;
	height: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #eaeaea;
	line-height: 30px;
}

.location h3 {
	float: left;
	padding-left: 0px;
	background: url(/style/images/o_ico_11.jpg) no-repeat 0 center;
	color: #616161;
	font-size: 14px;

	font-weight: normal;
	background: none;
	border-bottom: 2px solid #40cdec;
}

.breadcrumbs {
	float: right;
	text-align: right;
	margin-right: 10px;
}

.breadcrumbs a {
	display: inline-block;
	margin-left: 12px;
	padding-left: 0px;
	color: #535353;

	background: url(/style/images/o_ico_04.gif) no-repeat 0 center;
	vertical-align: top;
	background: none;
}

.breadcrumbs .u-home {
	padding-left: 0px;
	background: url(/style/images/o_ico_03.gif) no-repeat 0 center;
	background: none;
}

.article { padding:0 0 40px; line-height:2; font-size:14px; word-wrap:break-word; }

.article .hd { padding:0 0 20px; text-align:center; }

.article .hd h1 { color:#000; font-size:20px; }

.article .hd .titBar { color:#797979; font-size:12px; } 

.article .bd { padding-bottom:40px; }

.article .ft { padding:20px 0 0; border-top:1px solid #ddd; }

.article .hdLi {
	margin: 20px 0 16px;
}

.hdLi ul {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}

.hdLi ul li {
	width: 340px;
	padding-left: 50px;
	margin-right: 15px;
	font-size: 16px;
	color: #222;
	line-height: 44px;
	height: 44px;
}

.hdLi ul li:nth-child(1) {
	background: url(/style/images/dis01.png)no-repeat 10px center #ffffff;
}

.hdLi ul li:nth-child(2) {
	background: url(/style/images/dis02.png)no-repeat 10px center #ffffff;
}

.hdLi ul li:nth-child(3) {
	background: url(/style/images/dis03.png)no-repeat 10px center #ffffff;
}

.hdLi ul li:nth-child(1).on {
	background: url(/style/images/dis01h.png)no-repeat 10px center #cc0105;
	color: #fff;
}

.hdLi ul li:nth-child(2).on {
	background: url(/style/images/dis02h.png)no-repeat 10px center #cc0105;
	color: #fff;
}

.hdLi ul li:nth-child(3).on {
	background: url(/style/images/dis03h.png)no-repeat 10px center #cc0105;
	color: #fff;
}


.article_cx {

	width: 710px;
	overflow: hidden;
	padding-top: 20px;
	float: right;

}

.article_cx .arc_name {

	height: 25px;
	line-height: 25px;
	padding-bottom: 8px;
	font-family: "Microsoft Yahei", Arial, "宋体", Helvetica;
	font-size: 22px;
	border-bottom-color: rgb(204, 204, 204);
	border-bottom-width: 1px;
	border-bottom-style: dotted;

}

.article_cx .article_cx_cont {

	background: rgb(166, 27, 32);
	padding: 8px 5px;
	color: rgb(255, 255, 255);
	line-height: 40px;
	overflow: hidden;
	margin-top: 10px;

}

.article_cx .article_cx_cont .artic_cx_dl {

	width: 50%;
	height: 40px;
	line-height: 40px;
	float: left;
	display: block;

}

.article_cx .article_cx_jj {

	background: rgb(238, 238, 238);
	padding: 10px;
	width: 690px;
	line-height: 35px;

}

.article_zaixian {

	width: 710px;
	height: 48px;
	color: rgb(255, 255, 255);
	line-height: 48px;
	margin-top: 10px;

}

.article_zaixian .article_zx_left {

	background: rgb(125, 125, 125);
	width: 440px;
	height: 48px;
	text-align: center;
	color: rgb(255, 255, 255);
	font-family: "Microsoft Yahei", Arial, "宋体", Helvetica;
	font-size: 20px;
	font-weight: bold;
	float: left;
	display: block;

}

.article_zaixian .article_zx_right {

	background: rgb(236, 97, 0);
	width: 270px;
	height: 48px;
	text-align: center;
	font-family: "Microsoft Yahei", Arial, "宋体", Helvetica;
	font-size: 20px;
	font-weight: bold;
	float: left;
	display: block;

}

.article_zaixian .article_zx_right a {

	color: rgb(255, 255, 255);

}

.article_cont {

	padding: 10px;
	line-height: 25px;
	overflow: hidden;
	font-size: 13px;
	border-right-color: rgb(238, 238, 238);
	border-bottom-color: rgb(238, 238, 238);
	border-left-color: rgb(238, 238, 238);
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	min-width: 758px;

}

.zhuanfuwu {
	width: 1200px;
	margin: 0 auto;
	overflow: auto;
	padding-bottom: 40px
}

.zhuanfuwu h2 {
	font-size: 24px;
	font-weight: bold;
	color: #434343;
	text-align: center;
}

.zhuanfuwu h3 {
	text-align: center;
	font-size: 16px;
}

.fa-home {
	padding-right: 5px;
}

.zhuanfuwu ul {
	margin-top: 30px;
	height: 228px;
}

.zhuanfuwu ul li {
	margin-left: 15px;
	width: 228px;
	height: 228px;
	background: #eee;
	border-radius: 50%;
	float: left;
	text-align: center;
}

.zhuanfuwu ul li:hover i {
	color: #fff
}

.zhuanfuwu ul li:hover {
	background: #f00
}

.zhuanfuwu ul li:hover p {
	color: #fff
}

.zhuanfuwu ul li:nth-child(1) {
	margin-left: 0
}

.zhuanfuwu ul li p {
	text-align: center;
	font-size: 18px;
}

.zhuanfuwu ul li i {
	font-size: 6em;
	margin-top: 35px;
}

 .page-wrapper-row {
            margin: 0 auto;
            max-width: 1200px;
        }
        .page-wrapper-middle {
            padding: 20px;
        }
        .page-content {
            background-color: #fff;
            padding: 20px;
        }
        .container {
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
        }
        .page-breadcrumb {
            margin-bottom: 20px;
            padding: 10px;
            background-color: #f5f5f5;
            border-radius: 5px;
        }
        .page-breadcrumb li {
            display: inline-block;
        }
        .page-breadcrumb li a {
            color: #333;
            text-decoration: none;
        }
        .page-breadcrumb li a:hover {
            text-decoration: underline;
        }
        .page-breadcrumb li i {
            margin: 0 5px;
        }
        .caption {
            font-size: 24px;
            margin-bottom: 10px;
        }
        .caption-subject {
            color: #333;
        }
        .portlet {
            margin-bottom: 20px;
        }
        .portlet-title {
            padding: 10px 20px;
            background-color: #f5f5f5;
            border-radius: 5px;
        }
        .portlet-body {
            padding: 20px;
        }
        .row {
            margin-right: -15px;
            margin-left: -15px;
            display: flex;
            flex-wrap: wrap;
        }
        .col-md-1 {
            width: 20%;
            float: left;
            padding-right: 15px;
            padding-left: 15px;
        }
        .tag-box {
            background-color: #f2f2f2;
            border: 1px solid #ddd;
            margin-bottom: 5px;
            padding: 10px;
            border-radius: 5px;
            text-align: center;
        }
        .font-green {
            color: #000000;
        }
        .font-green:hover {
            text-decoration: underline;
        }