/* 基础样式 */
html, body {
	font-family: 'Lato', sans-serif;
	background: #FFF;
	font-weight: 300;
	font-size: 16px;
	color: #555;
}

body a {
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
}

/* 标题样式 */
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 20px 0;
	color: #666;
}

h2 {
	margin: 20px 0;
}

p {
	margin: 0;
	color: #666;
	line-height: 1.6;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* 导航栏样式 */
.navbar {
	min-height: 80px;
	background-color: #fff;
	border: none;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-default {
	padding: 20px 0 0 0;
	background-color: #fff;
	border-bottom: 1px solid #eee;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
	margin-bottom: 0;
}

.navbar-default .navbar-brand {
	color: #555;
	font-size: 24px;
	font-weight: 700;
	padding: 0;
	height: auto;
    margin-top: -5px;
}

.navbar-default .navbar-brand img {
	height: 40px;
	display: inline-block;
	vertical-align: middle;
}

.navbar-default .navbar-brand .brand-text {
	display: inline-block;
	vertical-align: middle;
    padding-top: 10px;
}

.navbar-default .navbar-nav > li {
	padding: 0 5px;
}

.navbar-default .navbar-nav > li > a {
	font-size: 16px;
	color: #777;
	font-weight: 500;
	padding: 10px 15px;
	border-radius: 4px;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > .active > a:hover {
	color: #fff;
	background-color: #dd4a49;
}

.navbar-default .navbar-nav > .active > a {
	background-color: #f8f9fa;
	color: #dd4a49;
}



/* 导航栏下拉菜单样式 */
.navbar-nav .dropdown {
	position: relative;
}

.navbar-nav .dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 250px;
	padding: 10px 5px;
	margin: 0;
	background: #fff;
	border: none;
	border-radius: 4px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	animation: fadeInDown 0.3s ease;
}

.navbar-nav .dropdown:hover .dropdown-menu {
	display: block;
}

.navbar-nav .dropdown-menu li {
	padding: 0;
	margin: 0;
}

.navbar-nav .dropdown-menu a {
	display: block;
	padding: 10px 25px;
	color: #666;
	font-size: 14px;
	transition: all 0.3s ease;
}

.navbar-nav .dropdown-menu a:hover {
	color: #dd4a49;
	background: #f8f9fa;
	padding-left: 30px;
}

.navbar-nav .dropdown > a i {
	margin-left: 5px;
	font-size: 12px;
	transition: transform 0.3s ease;
}

.navbar-nav .dropdown:hover > a i {
	transform: rotate(180deg);
}

/* 下拉菜单动画 */
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 响应式调整 */
@media (max-width: 767px) {
	.navbar {
		min-height: 70px;
		background-color: #fff;
		border: none;
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	}

	.navbar-nav .dropdown-menu {
		position: static;
		float: none;
		width: auto;
		box-shadow: none;
		background: #f8f9fa;
	}

	.navbar-nav .dropdown-menu a {
		padding: 10px 15px 10px 25px;
	}

	.navbar-nav .dropdown-menu a:hover {
		padding-left: 30px;
	}
}

/* 区块标题样式 */
#section_header {
	text-align: center;
	background-color: #f8f9fa;
	padding: 40px 0;
	margin: 0;
}

#section_header h2 {
	color: #333;
	font-size: 28px;
	margin: 0;
}

#section_header h2 span {
	border-bottom: 2px solid #dd4a49;
	padding-bottom: 10px;
}

/* 按钮样式 */
.btn {
	font-size: 14px;
	padding: 10px 25px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.btn-common {
	background-color: #dd4a49;
	color: #fff;
	border: none;
}

.btn-common:hover {
	background-color: #bf3f3e;
	color: #fff;
}

/* 地图样式 */
#china-map {
	width: 100%;
	height: 600px;
	margin: 20px auto;
}

/* 响应式样式 */
@media (max-width: 991px) {

	.navbar-default .navbar-brand {
		font-size: 20px;
	}

	.navbar-default .navbar-brand img {
		height: 35px;
	}

	#china-map {
		height: 450px;
	}
}

@media (max-width: 767px) {

	#section_header {
		padding: 10px 0;
	}

	#section_header h2 {
		font-size: 20px;
		margin: 15px 0 15px;
	}

	#section_header h2 span {
		padding-bottom: 1px;
	}

	.navbar-default {
		padding: 10px 0;
	}

	#china-map {
		height: 350px;
	}
}

@media (max-width: 480px) {

	#section_header {
		padding: 10px 0;
	}

	#section_header h2 {
		font-size: 20px;
		margin: 15px 0 15px;
	}

	#section_header h2 span {
		padding-bottom: 1px;
	}

	.navbar-default .navbar-brand {
		font-size: 18px;
	}

	.navbar-default .navbar-brand img {
		height: 30px;
	}

	#china-map {
		height: 300px;
	}
}

/* 通用新闻样式 */
.news-section {
	padding: 30px 0;
	background: #fff;
}

.news-section .no-data-message {
	min-height: 300px;
	height: 100%;
	vertical-align: middle;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* 日期样式 */
.news-date {
	position: absolute;
	top: 15px;
	left: 15px;
	background: rgba(221, 74, 73, 0.9);
	color: #fff;
	padding: 8px 15px;
	border-radius: 4px;
	z-index: 1;
}

.news-date .day {
	font-size: 18px;
	font-weight: 600;
	margin-right: 5px;
}

/* 阅读更多按钮样式 */
.read-more {
	color: #dd4a49;
	font-size: 14px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
}

.read-more i {
	margin-left: 8px;
	transition: transform 0.3s ease;
}

.read-more:hover {
	color: #bf3f3e;
	text-decoration: none;
}

.read-more:hover i {
	transform: translateX(5px);
}

/* 首页资讯中心样式 */
.home-news-section {
	padding: 60px 0;
	background: #fff;
}

.home-news-item {
	display: block;
	background: #fff;
	border-radius: 10px;
	margin-bottom: 30px;
	box-shadow: 0 0 25px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	text-decoration: none;
	overflow: hidden;
}

.home-news-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* 首页新闻图片容器 */
.home-news-item .news-image {
	position: relative;
	width: 100%;
	height: 220px;
	overflow: hidden;
}

.home-news-item .news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.home-news-item:hover .news-image img {
	transform: scale(1.1);
}

/* 日期样式 */
.home-news-item .news-date {
	position: absolute;
	top: 15px;
	left: 15px;
	background: rgba(221, 74, 73, 0.9);
	color: #fff;
	padding: 10px 15px;
	border-radius: 5px;
	text-align: center;
	line-height: 1.2;
	z-index: 1;
}

.home-news-item .news-date .day {
	display: block;
	font-size: 20px;
	font-weight: 700;
}

.home-news-item .news-date .month {
	display: block;
	font-size: 13px;
	text-transform: uppercase;
}

/* 内容样式 */
.home-news-item .news-content {
	padding: 25px;
	background: #fff;
}

.home-news-item .news-content h4 {
	font-size: 18px;
	color: #333;
	font-weight: 600;
	margin: 0 0 15px 0;
	line-height: 1.4;
	height: 50px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.home-news-item .news-content p {
	color: #666;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 20px;
	height: 67px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.home-news-item .news-content footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 15px;
	border-top: 1px solid #eee;
}

.home-news-item .category {
	color: #666;
	font-size: 13px;
}

.home-news-item .category i {
	margin-right: 5px;
	color: #dd4a49;
}

.home-news-item .read-more {
	color: #dd4a49;
	font-size: 14px;
	font-weight: 500;
	display: flex;
	align-items: center;
}

.home-news-item .read-more i {
	margin-left: 5px;
	transition: transform 0.3s ease;
}

.home-news-item:hover .read-more i {
	transform: translateX(5px);
}

/* 响应式调整 */
@media (max-width: 991px) {
	.home-news-item .news-image {
		height: 200px;
	}
}

@media (max-width: 767px) {
	.home-news-section {
		padding: 0;
	}

	.home-news-item .news-image {
		height: 180px;
	}

	.home-news-item .news-content {
		padding: 20px;
	}

	.home-news-item .news-content h4 {
		font-size: 16px;
		height: 44px;
	}

	.home-news-item .news-content p {
		font-size: 13px;
		height: 60px;
		margin-bottom: 15px;
	}
}

/* 新闻列表页样式 */
.news-item {
	background: #fff;
	border-radius: 8px;
	margin-bottom: 30px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
	display: flex;
	overflow: hidden;
}

.news-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.news-item .news-image {
	width: 280px;
	min-width: 280px;
	height: 180px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.news-item .news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
	transform: scale(1.05);
}

.news-item .news-content {
	flex: 1;
	padding: 25px 30px;
	display: flex;
	flex-direction: column;
}

.news-item .news-content h4 {
	font-size: 20px;
	color: #333;
	font-weight: 600;
	margin: 0 0 15px 0;
	line-height: 1.4;
}

.news-item .news-content p {
	color: #666;
	line-height: 1.8;
	margin-bottom: 20px;
	flex: 1;
}

.news-item .news-content footer {
	margin-top: auto;
}

/* 无图片样式 */
.news-item.no-image .news-content {
	padding: 25px 30px;
}

/* 响应式调整 */
@media (max-width: 767px) {
    /* 首页新闻响应式 */
	.home-news-item .news-image {
		height: 180px;
	}

	.home-news-item .news-content {
		padding: 20px;
	}

	.home-news-item .news-content h4 {
		font-size: 16px;
		height: 44px;
	}

	.home-news-item .news-content p {
		font-size: 14px;
		height: 66px;
	}

    /* 新闻列表页响应式 */
	.news-item {
		flex-direction: column;
	}

	.news-item .news-image {
		width: 100%;
		height: 160px;
	}

	.news-item .news-content {
		padding: 20px;
	}

	.news-item .news-content h4 {
		font-size: 18px;
	}
}

/* 联系我们样式 */
#contact {
	padding: 60px 0;
	background: #fff;
}

.contact-form-area {
	max-width: 1000px;
	margin: 0 auto;
}

.contact-block {
	background: #f8f9fa;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.contact-right-area {
	background: #f8f9fa;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 2px 15px rgba(0,0,0,0.05);
	height: 100%;
}

.contact-title {
	margin-bottom: 25px;
	text-align: center;
}

.contact-title h2 {
	color: #333;
	font-size: 24px;
	margin-bottom: 0;
}

.single-contact {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.contact-icon {
	width: 40px;
	height: 40px;
	background: #dd4a49;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

.contact-icon i {
	color: #fff;
	font-size: 18px;
}

.single-contact p {
	margin: 0;
	color: #666;
}

.single-contact a {
	color: #666;
	text-decoration: none;
	transition: color 0.3s ease;
}

.single-contact a:hover {
	color: #dd4a49;
}

.form-group {
	margin-bottom: 20px;
}

.form-control {
	height: 45px;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 10px 15px;
	transition: all 0.3s ease;
}

textarea.form-control {
	height: auto;
	resize: vertical;
}

.form-control:focus {
	border-color: #dd4a49;
	box-shadow: 0 0 0 0.2rem rgba(221, 74, 73, 0.25);
}

.submit-button {
	text-align: center;
	margin-top: 20px;
}

.btn-common {
	background: #dd4a49;
	color: #fff;
	padding: 12px 30px;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.btn-common:hover {
	background: #bf3f3e;
	transform: translateY(-2px);
}

/* 响应式调整 */
@media (max-width: 991px) {
	#contact {
		padding: 10px 0;
		background: #fff;
	}

	.contact-right-area {
		margin-top: 30px;
	}
}

@media (max-width: 767px) {
	#contact {
		padding: 10px 0;
		background: #fff;
	}

	.contact-block,
    .contact-right-area {
		padding: 20px;
	}

	.contact-title h2 {
		font-size: 20px;
	}

	.contact-info {
		padding: 0;
		margin: 0;
	}
}

@media (max-width: 480px) {
	#contact {
		padding: 10px 0;
		background: #fff;
	}

	.contact-right-area {
		margin-top: 20px !important;
		padding: 0 !important;
	}

	.contact-title {
		padding: 0;
		margin: 0;
	}

	.contact-title h2 {
		padding: 10px 0;
		margin: 0;
	}

	.contact-info {
		padding: 0;
		margin: 0;
	}
}

/* About页面样式 */
.about-section {
	padding: 80px 0;
	background: #fff;
}

/* 图片容器样式 */
.about-section .col-lg-6 {
	display: flex;
	align-items: center;
}

/* 图片样式 */
.about-section .img-responsive {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	height: auto;
}

/* 关于我们内容样式优化 */
.about-content {
	padding: 0 0 0 50px;
}

.about-content h3 {
	font-size: 32px;
	color: #333;
	margin-bottom: 30px;
	font-weight: 600;
	position: relative;
	padding-bottom: 15px;
}

.about-content h3:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: #dd4a49;
}

.about-content p {
	color: #666;
	line-height: 1.8;
	margin-bottom: 15px;
	font-size: 15px;
	text-align: justify;
	letter-spacing: 0.3px;
}

.about-content p:last-child {
	margin-bottom: 0;
}


/* 关于我们列表式优化 */
.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 35px;
    color: #555;
    line-height: 2.2;
    font-size: 15px;
    text-align: justify;
    letter-spacing: 0.8px;
    font-weight: 400;
}

.about-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: #dd4a49;
    border-radius: 50%;
}

.about-list li:last-child {
    margin-bottom: 0;
}

/* 响应式调整 */
@media (max-width: 991px) {
	.about-section {
		padding: 15px 0;
	}

	.about-content {
		padding: 20px 0 0 0;
	}

	.about-content h3 {
		font-size: 28px;
		margin-bottom: 25px;
	}

	.about-list li {
		font-size: 15px;
		line-height: 1.8;
	}
}

@media (max-width: 767px) {
	.about-section {
		padding: 15px 0;
	}

	.about-content h3 {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.about-list li {
		font-size: 14px;
		line-height: 1.7;
		padding-left: 20px;
		margin-bottom: 15px;
	}

	.about-list li:before {
		top: 10px;
		width: 6px;
		height: 6px;
	}
}

/* 企业优势样式优化 */
.advantage-section {
	padding: 60px 0;
	background: linear-gradient(to right, #f8f9fa, #fff);
	position: relative;
}

.advantage-item {
	background: #fff;
	padding: 35px 40px;
	margin-bottom: 25px;
	border-radius: 12px;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	border-left: 4px solid #dd4a49;
	display: flex;
	align-items: center;
}

.advantage-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.12);
	background: linear-gradient(to right, rgba(221,74,73,0.03), #fff);
}

.advantage-item h4 {
	color: #dd4a49;
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	letter-spacing: 0.5px;
	min-width: 180px;
}

.advantage-item h4 i {
	color: #dd4a49;
	margin-right: 20px;
	font-size: 28px;
	width: 40px;
	text-align: center;
}

.advantage-item p {
	color: #666;
	line-height: 2;
	margin: 0;
	font-size: 14px;
	letter-spacing: 0.8px;
	font-weight: 400;
	flex: 1;
}

/* 添加背景装饰 */
.advantage-section:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('../images/pattern.png') repeat;
	opacity: 0.05;
	pointer-events: none;
}

/* 响应式调整 */
@media (max-width: 767px) {
	.advantage-section {
		padding: 20px 0;
		background: linear-gradient(to right, #f8f9fa, #fff);
		position: relative;
	}

	.advantage-item {
		padding: 25px 30px;
		margin-bottom: 20px;
		flex-direction: column;
		align-items: flex-start;
	}

	.advantage-item h4 {
		font-size: 20px;
		margin-bottom: 15px;
		min-width: auto;
	}

	.advantage-item h4 i {
		font-size: 24px;
	}

	.advantage-item p {
		font-size: 13px;
		line-height: 1.8;
		letter-spacing: 0.5px;
	}
}

/* 客户案例样式 */
#clients {
	padding: 30px 0;
}

#clients .img-responsive {
	margin: 0 auto;
	opacity: 0.4;
	transition: all 0.3s ease;
}

#clients img:hover {
	opacity: 1;
}

#clients p {
	margin-bottom: 20px;
}


/* 联系我们样式 */
.contact {
	padding: 30px 0;
}

.contact .fa {
	color: #dd4a49;
}

.contact p {
	padding: 15px 0;
}

.contact p span {
	color: #999;
	margin-right: 5px;
}

.contact .btn {
	font-size: 14px;
	padding: 10px 20px;
	background-color: #dd4a49;
	color: #fff;
	border: 0;
	text-transform: uppercase;
}

.contact .btn:hover,
.contact .btn:focus {
	background-color: #bf3f3e;
	outline: 0;
}

/* 单样式 */
.form_details input[type="text"],
.form_details textarea {
	padding: 10px;
	width: 65%;
	font-size: 1em;
	margin: 10px 0;
	border: 1px solid #ccc;
	color: #8A8888;
	background: none;
	float: left;
	outline: none;
	font-weight: 500;
}

.form_details textarea {
	height: 200px;
	resize: none;
	width: 90%;
}

.form_details textarea:hover,
.form_details input[type="text"]:hover {
	border: 1px solid #777;
}

/* Footer样式 */
#footerwrap {
	background-color: #f7f7f7;
	padding: 40px 0 30px 0;
	text-align: center;
	border-top: 1px solid #e6e6e6;
}

#footerwrap span.copyright {
	color: #888;
	font-size: 16px;
}

#footerwrap span.copyright a {
	color: #888;
	border-bottom: 1px dotted;
}

#footerwrap span.copyright a:hover {
	color: #dc4a49;
	text-decoration: none;
}

ul.social-buttons {
	margin: 0;
}

ul.social-buttons li a {
	font-size: 24px;
	outline: 0;
	color: #888;
}

ul.social-buttons li a:hover,
ul.social-buttons li a:focus,
ul.social-buttons li a:active {
	color: #dc4a49;
}

/* 响应式调整 */
@media (max-width: 991px) {
	.contact {
		padding: 0;
	}

	.contact .col-md-6 {
		margin-bottom: 10px;
	}

	.contact .btn {
		margin: 0;
	}

	.form_details input[type="text"],
    .form_details textarea {
		width: 90%;
	}
}

@media (max-width: 767px) {
	.contact {
		padding: 0;
	}

	.contact .col-md-6 {
		margin-bottom: 10px;
	}

	.contact .btn {
		margin: 0;
	}

	.form_details textarea {
		height: 150px;
	}
}

/* 信息化管理系统 */
.info-system-section {
	padding: 30px 0;
}

.info-system-section .info-content .info-text {
	text-indent: 2em;
	line-height: 3.6;
}

/* 发展历程样式 */
.history-section {
	padding: 30px 0;
	background: #fff;
}

.history-img {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: block;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
}

.history-img:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* 响应式调整 */
@media (max-width: 991px) {
	.history-section {
		padding: 0;
	}

	.history-img {
		border-radius: 8px;
	}
}

@media (max-width: 767px) {
	.history-section {
		padding: 0;
	}
}

/* 面包屑导航样式 */
.breadcrumb-section {
	background: #fff;
	padding: 15px 0;
	border-bottom: 1px solid #eee;
}

.breadcrumb {
	background: none;
	margin: 0;
	padding: 0;
}

.breadcrumb > li {
	font-size: 14px;
	color: #666;
}

.breadcrumb > li + li:before {
	content: ">";
	color: #999;
	padding: 0 10px;
}

.breadcrumb > li a {
	color: #666;
	text-decoration: none;
	transition: color 0.3s ease;
}

.breadcrumb > li a:hover {
	color: #dd4a49;
}

.breadcrumb > .active {
	color: #dd4a49;
}

/* 响应式调整 */
@media (max-width: 767px) {
	.breadcrumb-section {
		padding: 10px 0;
	}

	.breadcrumb > li {
		font-size: 13px;
	}

	.breadcrumb > li + li:before {
		padding: 0 8px;
	}
}

/* 服务价值样式 */
.service-value-section {
	padding: 10px 0;
	background: #fff;
}

.section-title h3 {
	color: #333;
	font-size: 32px;
	margin: 20px 0;
	font-weight: 600;
}

.section-title p {
	color: #666;
	font-size: 16px;
}

.value-item {
	display: flex;
	align-items: center;
	background: #fff;
	padding: 30px;
	margin-bottom: 25px;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	border-left: 4px solid #dd4a49;
}

.value-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.12);
	background: linear-gradient(to right, rgba(221,74,73,0.03), #fff);
}

.value-icon {
	width: 70px;
	min-width: 70px;
	height: 70px;
	background: rgba(221,74,73,0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 25px;
}

.value-icon i {
	font-size: 28px;
	color: #dd4a49;
}

.value-content {
	flex: 1;
}

.value-content h4 {
	color: #333;
	font-size: 20px;
	margin: 0 0 10px 0;
	font-weight: 600;
}

.value-content p {
	color: #666;
	font-size: 15px;
	line-height: 1.8;
	margin: 0;
}

/* 响应式调整 */
@media (max-width: 767px) {
	.service-value-section {
		padding: 0;
	}

    .info-system-section {
        padding: 0;
    }

	.value-item {
		padding: 20px;
		margin-bottom: 20px;
	}

	.value-icon {
		width: 50px;
		min-width: 50px;
		height: 50px;
		margin-right: 15px;
	}

	.value-icon i {
		font-size: 20px;
	}

	.value-content h4 {
		font-size: 18px;
	}

	.value-content p {
		font-size: 14px;
	}
}

.certificates-section {
	padding: 40px 0;
	background: #f9f9f9;
}

.certificate-item {
	margin-bottom: 30px;
	padding: 15px;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
}

.certificate-item:hover {
	transform: translateY(-5px);
}

.certificate-item img {
	width: 100%;
	height: auto;
}

.certificate-item h5 {
	margin-top: 15px;
	color: #333;
	font-weight: 500;
}

.mt-3 {
	margin-top: 15px;
}

/* Alert Container 样式 */
#alertContainer {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 9999;
	min-width: 300px;
	max-width: 450px;
}

#alertContainer .alert {
	margin-bottom: 10px;
	padding: 15px 20px;
	border: none;
	border-radius: 4px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	animation: slideIn 0.3s ease-out;
}

#alertContainer .alert-success {
	background-color: #d4edda;
	color: #155724;
	border-left: 4px solid #28a745;
}

#alertContainer .alert-danger {
	background-color: #f8d7da;
	color: #721c24;
	border-left: 4px solid #dc3545;
}

#alertContainer .alert-warning {
	background-color: #fff3cd;
	color: #856404;
	border-left: 4px solid #ffc107;
}

#alertContainer .alert-info {
	background-color: #d1ecf1;
	color: #0c5460;
	border-left: 4px solid #17a2b8;
}

#alertContainer .close {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: inherit;
	opacity: 0.8;
	font-size: 16px;
	padding: 0;
	background: none;
	border: none;
}

#alertContainer .close:hover {
	opacity: 1;
}

/* Alert 动画 */
@keyframes slideIn {
	from {
		transform: translateX(100%);
		opacity: 0;
	}

	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideOut {
	from {
		transform: translateX(0);
		opacity: 1;
	}

	to {
		transform: translateX(100%);
		opacity: 0;
	}
}

.alert.fade-out {
	animation: slideOut 0.3s ease-in forwards;
}

/* 响应式调整 */
@media (max-width: 576px) {
	#alertContainer {
		left: 10px;
		right: 10px;
		min-width: auto;
	}

	#alertContainer .alert {
		margin: 0 10px 10px;
	}
}

/* 全局 Alert 容器样式 */
#globalAlertContainer {
	margin-bottom: 30px;
}

#globalAlertContainer .alert {
	margin-bottom: 0;
	padding: 15px 20px;
	border: none;
	border-radius: 4px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	animation: slideDown 0.3s ease-out;
}

/* Alert 动画 */
@keyframes slideDown {
	from {
		transform: translateY(-20px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Alert 类样式 */
#globalAlertContainer .alert-success {
	background-color: #d4edda;
	color: #155724;
	border-left: 4px solid #28a745;
}

#globalAlertContainer .alert-danger {
	background-color: #f8d7da;
	color: #721c24;
	border-left: 4px solid #dc3545;
}

/* Alert 关闭按钮样式 */
#globalAlertContainer .close {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: inherit;
	opacity: 0.8;
	font-size: 16px;
	padding: 0;
	background: none;
	border: none;
}

#globalAlertContainer .close:hover {
	opacity: 1;
}

/* 确保导航栏和banner之间没有何间隔 */
.navbar-default + .slider,
.navbar-default + #banner,
.navbar-default + .banner {
	margin-top: 0;
}

.comparison-table {
	width: 100%;
	border-collapse: collapse;
	background-color: white;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	margin: 20px 0;
}

.comparison-table th {
	background-color: #ff8c42;
	color: white;
	padding: 15px;
	text-align: center;
	font-weight: bold;
}

.comparison-table th:nth-child(2) {
	background-color: #4169e1;
}

.comparison-table th:nth-child(3) {
	background-color: #808080;
}

.comparison-table td {
	padding: 15px;
	text-align: center;
	border: 1px solid #eee;
	line-height: 1.5;
}

.comparison-table tr:nth-child(odd) td {
	background-color: #fff0f5;
}

.comparison-table tr:nth-child(even) td {
	background-color: #f0f0f0;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
	.comparison-table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		margin: 10px 0;
	}

	.comparison-table th,
    .comparison-table td {
		padding: 10px;
		font-size: 14px;
		white-space: normal;
		min-width: 150px;
	}

	.comparison-table td {
		text-align: left;
	}
}

/* 超小屏幕适配 */
@media screen and (max-width: 480px) {
	.comparison-table th,
    .comparison-table td {
		padding: 8px;
		font-size: 12px;
		min-width: 120px;
	}
}

/* Add these styles to your existing CSS file */
.advantage-card {
	background: #fff;
	border-radius: 16px;
	padding: 35px 30px;
	margin-bottom: 30px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.04),
                0 0 1px rgba(0,0,0,0.1);
	transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	height: 100%;
	border-left: 4px solid #dd4a49;
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
}

.advantage-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg,
        rgba(221,74,73,0.03) 0%,
        rgba(221,74,73,0.01) 50%,
        transparent 100%);
	opacity: 0;
	transition: opacity 0.5s ease;
}

.advantage-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.08),
                0 0 2px rgba(0,0,0,0.1);
}

.advantage-card:hover::before {
	opacity: 1;
}

.advantage-header {
	display: flex;
	align-items: center;
	margin-bottom: 28px;
	position: relative;
	z-index: 1;
}

.advantage-header i {
	font-size: 26px;
	color: #dd4a49;
	margin-right: 22px;
	width: 64px;
	height: 64px;
	background: rgba(221,74,73,0.07);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease;
	position: relative;
}

.advantage-header i::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	border: 1px solid rgba(221,74,73,0.2);
	top: 0;
	left: 0;
	transition: all 0.4s ease;
}

.advantage-card:hover .advantage-header i {
	background: #dd4a49;
	color: #fff;
	transform: scale(1.05) rotate(5deg);
}

.advantage-card:hover .advantage-header i::after {
	transform: scale(1.15);
	opacity: 0;
}

.advantage-header h3 {
	margin: 0;
	color: #2c3e50;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 0.3px;
	transition: color 0.3s ease;
}

.advantage-card:hover .advantage-header h3 {
	color: #dd4a49;
}

.advantage-list {
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
	z-index: 1;
}

.advantage-list li {
	position: relative;
	padding-left: 26px;
	margin-bottom: 16px;
	color: #4a5568;
	line-height: 1.7;
	font-size: 15px;
	transition: all 0.3s ease;
	/* display: flex;
	align-items: flex-start; */
}

.advantage-list li:last-child {
	margin-bottom: 0;
}

/* .advantage-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #dd4a49;
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
    top: 2px;
    transition: all 0.3s ease;
} */

.advantage-list li:hover {
	color: #2c3e50;
	transform: translateX(3px);
}

.advantage-list li:hover::before {
	transform: scale(1.2);
}

.advantage-list li.highlight {
	color: #dd4a49;
	font-weight: 500;
	padding-left: 30px;
	background: rgba(221,74,73,0.03);
	padding: 10px 15px 10px 30px;
	border-radius: 8px;
	margin-left: -4px;
	margin-right: -4px;
}

.advantage-list li.highlight::before {
	content: "★";
	font-size: 14px;
	top: 12px;
	left: 8px;
}

.text-danger {
	color: #dd4a49;
	font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
	.advantage-card {
		padding: 30px 25px;
	}

	.advantage-header i {
		width: 70px;
		height: 70px;
		font-size: 28px;
	}
}

@media (max-width: 991px) {
	.advantage-card {
		padding: 25px 20px;
	}

	.advantage-header i {
		width: 60px;
		height: 60px;
		font-size: 24px;
		margin-bottom: 15px;
	}

	.advantage-header h3 {
		font-size: 18px;
	}
}

@media (max-width: 767px) {
	#product-advantages {
		padding: 40px 0;
	}

	.advantage-card {
		padding: 25px 20px;
		margin-bottom: 20px;
	}

	.advantage-header {
		margin-bottom: 20px;
	}

	.advantage-header i {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}

	.advantage-list li {
		font-size: 13px;
		margin-bottom: 12px;
	}
}

/* 产品优势部分样式 */
#product-advantages {
	padding: 60px 0;
	background: #fff;
}

.advantage-row {
	margin-bottom: 50px;
	position: relative;
	padding: 30px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.advantage-row:last-child {
	margin-bottom: 0;
}

.advantage-row:hover {
	background: rgba(221,74,73,0.02);
}

.advantage-header {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eee;
}

.advantage-header i {
	font-size: 24px;
	color: #dd4a49;
	width: 50px;
	height: 50px;
	background: rgba(221,74,73,0.08);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.3s ease;
}

.advantage-row:hover .advantage-header i {
	background: #dd4a49;
	color: #fff;
	transform: scale(1.05);
}

.advantage-header h3 {
	margin: 0;
	color: #333;
	font-size: 22px;
	font-weight: 600;
}

.advantage-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	margin: -10px;
}

.advantage-list li {
	position: relative;
	padding-left: 20px;
	margin: 10px;
	color: #666;
	line-height: 1.6;
	font-size: 15px;
	/* flex: 0 0 calc(50% - 20px);
	transition: all 0.3s ease; */
}

.advantage-list li:hover {
	color: #333;
	transform: translateX(5px);
}

.advantage-list li:hover::before {
	transform: scale(1.3);
}

.advantage-list li.highlight {
	color: #dd4a49;
	font-weight: 500;
	flex: 0 0 calc(100% - 20px);
	background: rgba(221,74,73,0.03);
	padding: 12px 20px 12px 25px;
	border-radius: 4px;
	margin-bottom: 15px;
}

.advantage-list li.highlight::before {
	background: transparent;
	border: 2px solid #dd4a49;
	left: 10px;
	top: 18px;
}

.text-danger {
	color: #dd4a49;
	font-weight: 600;
}

/* 分隔线 */
.advantage-row:not(:last-child)::after {
	content: '';
	position: absolute;
	bottom: -25px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 1px;
	background: #eee;
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.advantage-row {
		padding: 25px 20px;
		margin-bottom: 40px;
	}

	.advantage-header {
		margin-bottom: 20px;
	}

	.advantage-header i {
		width: 45px;
		height: 45px;
		font-size: 20px;
		margin-right: 15px;
	}

	.advantage-header h3 {
		font-size: 20px;
	}

	.advantage-list li {
		font-size: 14px;
		/* flex: 0 0 calc(100% - 20px); */
	}
}

@media (max-width: 767px) {
	#product-advantages {
		padding: 40px 0;
	}

	.advantage-row {
		padding: 20px 15px;
		margin-bottom: 30px;
	}

	.advantage-header {
		margin-bottom: 15px;
		padding-bottom: 12px;
	}

	.advantage-header i {
		width: 40px;
		height: 40px;
		font-size: 18px;
		margin-right: 12px;
	}

	.advantage-header h3 {
		font-size: 18px;
	}

	.advantage-list {
		margin: -8px;
	}

	.advantage-list li {
		font-size: 13px;
		margin: 8px;
		padding-left: 18px;
	}

	.advantage-list li.highlight {
		padding: 10px 15px 10px 22px;
	}

	.advantage-list li.highlight::before {
		top: 16px;
		left: 8px;
	}
}

.infor {
	color: #666;
	text-indent: 2em;
	line-height: 1.8;
	font-size: 16px;
}

#section_header h2.text-white {
	color: #fff;
}

.bg-header {
	position: relative;
	background-size: cover;
	padding: 60px 0;
	color: #fff;
	height: 110px;
	min-height: 110px;
}

.header-bg-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
	padding: 40px 0;
}


/* ===== 导航栏样式 ===== */
.navbar-brand {
    padding: 15px;
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 50px;
    width: auto;
    display: block;
    margin: 0 10px;
}

.brand-text {
    font-size: 22px;
    color: #333;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ===== 产品优势样式 ===== */
#product-advantages .container {
    padding: 0 10px;
}

#product-advantages .row {
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: 5px;
}

.col-lg-6 {
    padding-left: 5px;
    padding-right: 5px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    height: 100%;
    margin-bottom: 5px;
    padding: 25px;
    background: #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.advantage-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.advantage-content h3 {
    margin: 0 0 15px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.advantage-content p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 14px;
    flex: 1;
}

.advantage-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    margin-right: 20px;
    background: #f8f9fa;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon i {
    color: #333;
    font-size: 24px;
}

/* ===== 资讯中心样式 ===== */
#news-section {
    padding: 60px 0;
    background: #fff;
}

.news-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.news-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 15px;
    text-align: center;
}

.news-content h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
}

.news-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.news-link:hover {
    text-decoration: none;
    color: inherit;
}

/* ===== 客户案例样式 ===== */
#customer-cases {
    padding: 20px 0;
    background: #fff;
}

/* ===== 联系我们样式 ===== */
/* 联系我们 */
.contact-info, .contact-form-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.info-item {
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.submit-btn {
    width: 100%;
    padding: 12px;
}

.contact-form-area {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-block {
    padding: 30px;
    background: #fff;
    border-radius: 4px;
}

.contact-form-area .form-group {
    margin-bottom: 20px;
}

.contact-form-area .form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #eee;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form-area .form-control:focus {
    border-color: #e60012;
    outline: none;
}

.contact-form-area textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    text-align: center;
    margin-top: 20px;
}

.btn-common {
    background: #e60012;
    color: #fff;
    padding: 10px 30px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-common:hover {
    background: #cc0000;
    color: #fff;
}

.single-contact {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.contact-icon {
    margin-right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e60012;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e60012;
    flex-shrink: 0;
}

.single-contact p,
.single-contact a {
    margin: 0;
    color: #666;
    font-size: 14px;
    text-decoration: none;
    text-align: left;
}

.single-contact a:hover {
    color: #e60012;
}

/* ===== 响应式样式 ===== */
@media (max-width: 991px) {
    /* 轮播响应式 */
    .fullscreen-banner,
    .carousel-item-one,
    .carousel-item-two,
    .carousel-item-three {
        height: 500px;
    }

    .carousel-title-v1,
    .carousel-title-v2 {
        font-size: 40px;
    }

    /* 导航栏响应式 */
    .navbar-brand {
        height: 60px;
    }

    .nav-logo {
        height: 40px;
    }

    .brand-text {
        font-size: 18px;
    }

    /* 产品优势响应式 */
    .advantage-item {
        padding: 20px;
    }

    .advantage-icon {
        width: 50px;
        height: 50px;
    }

    .advantage-content h3 {
        font-size: 16px;
    }

    .advantage-content p {
        font-size: 13px;
    }

    /* 新闻响应式 */
    .news-item {
        height: auto;
    }

    .news-img {
        height: 180px;
    }
}

@media (max-width: 767px) {

    /* 新闻响应式 */
    .news-img {
        height: 150px;
    }

    .news-content {
        padding: 10px;
    }

    .contact-right-area {
        padding-left: 0;
        margin-top: 30px;
    }

    .contact-block {
        padding: 20px;
    }

    .contact-info {
        max-width: 100%;
    }

    .contact-form-area .form-control {
        padding: 10px 12px;
        font-size: 13px;
    }

    .btn-common {
        width: 100%;
        padding: 10px 20px;
    }
}


/* 底部样式调整 */
.footer {
    padding: 80px 0 40px;
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

/* Logo和描述 */
.footer .mb-5 img {
    width: auto;
    margin-bottom: 25px;
    display: block;
}

.footer .text-white-50 {
    font-size: 14px;
    line-height: 1.8;
    opacity: 1; /* 增加不透明度 */
    margin: 25px 0;
    color: rgba(255, 255, 255, 1); /* 改为纯白色 */
}

.footer .text-white-70 {
    color: rgba(255, 255, 255, 1); /* 改为纯白色 */
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* 菜单标题 */
.footer .f-22 {
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
    /* padding-bottom: 10px; */
    color: #fff; /* 纯白色 */
}

/* 菜单链接 */
.footer-sub-menu {
    margin: 0;
    padding: 0;
}

.footer-sub-menu li {
    margin-bottom: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 1); /* 改为纯白色 */
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* .footer-link:hover {
    color: #e60012;
    text-decoration: none;
    padding-left: 5px;
} */

/* 版权信息 */
.footer .text-center {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
    margin-top: 10px;
}

.footer .text-white-50.f-15 {
    font-size: 13px;
    opacity: 1;
    color: rgba(255, 255, 255, 1); /* 改为纯白色 */
}

.footer .copyright ul li,
.footer .copyright ul li a {
    color: #999;
}

/* 底部导航样式调整 */
.footer .col-lg-7 {
    display: flex;
    justify-content: flex-end; /* 整体右对齐 */
}

.footer .row {
    width: 100%; /* 确保row占满容器宽度 */
}

.footer-sub-menu {
    margin: 0;
    padding: 0;
    text-align: center; /* 文字右齐 */
}

.footer-sub-menu li {
    margin-bottom: 12px;
    text-align: right; /* 确保列表项右对齐 */
}

.footer .f-22 {
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
    color: #fff;
    text-align: right; /* 标题右对齐 */
}

/* 修改下划线位置 */
.footer .f-22::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #e60012;
}

/* 响应式调整 */
@media (max-width: 991px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer .col-md-4 {
        margin-bottom: 40px;
    }

    .footer .footer-menu {
        display: none !important;
    }

    .footer-sub-menu,
    .footer-sub-menu li,
    .footer .f-22 {
        text-align: left; /* 小屏幕时改为左对齐 */
    }

    .footer .f-22::after {
        left: 0; /* 小屏幕时改为左侧 */
        right: auto;
    }

    .footer .copyright ul li {
        text-align: left;
        font-size: 14px;
    }

    .footer .copyright ul li a {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer .footer-menu {
        display: none !important;
    }

    .footer .mb-5 {
        margin-bottom: 30px !important;
    }

    .footer .col-md-4 {
        margin-bottom: 30px;
    }

    .footer .copyright ul li {
        text-align: left;
        font-size: 14px;
    }

    .footer .copyright ul li a {
        font-size: 14px;
    }
}

/* 新闻列表页样式 */
.news-list-section {
    padding: 60px 0;
    background: #fff;
}

.news-list-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.news-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.news-list-item .news-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news-list-item .news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.news-list-item:hover .news-img img {
    transform: scale(1.05);
}

.news-list-item .news-content {
    padding: 20px;
}

.news-list-item .news-content h3 {
    font-size: 18px;
    color: #333;
    margin: 0 0 10px;
    font-weight: 600;
    line-height: 1.4;
}

.news-list-item .news-date {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}

.news-list-item .news-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    height: 66px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news-list-item .read-more {
    color: #e60012;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-list-item .read-more:hover {
    color: #cc0000;
    padding-left: 5px;
}

/* 分页样式 */
.pagination-wrapper {
    text-align: center;
}

.pagination > li > a,
.pagination > li > span {
    color: #666;
    border: 1px solid #ddd;
    margin: 0 3px;
    border-radius: 4px;
}

.pagination > li.active > a,
.pagination > li.active > span {
    background-color: #e60012;
    border-color: #e60012;
}

.pagination > li > a:hover,
.pagination > li > span:hover {
    color: #e60012;
    background-color: #fff;
    border-color: #e60012;
}

/* 响应式调整 */
@media (max-width: 991px) {
    .news-list-item .news-img {
        height: 180px;
    }
}

@media (max-width: 767px) {
    .news-list-item .news-img {
        height: 160px;
    }

    .news-list-item .news-content {
        padding: 15px;
    }

    .pagination > li > a,
    .pagination > li > span {
        padding: 6px 10px;
    }
}

/* 成功案例列表样式 */
.cases-list-section {
    padding: 60px 0;
    background: #fff;
}

.case-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.case-header {
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.case-header h3 {
    font-size: 20px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.case-type {
    font-size: 14px;
    color: #666;
    padding: 4px 12px;
    background: #fff;
    border-radius: 4px;
}

.case-content {
    padding: 20px;
}

.case-services {
    margin-bottom: 20px;
}

.case-services h4 {
    font-size: 16px;
    color: #333;
    margin: 0 0 10px;
    font-weight: 600;
}

.case-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-services li {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.case-services li i {
    color: #52c41a;
    margin-right: 8px;
    font-size: 12px;
}

.case-desc {
    margin-bottom: 20px;
}

.case-desc p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.case-more {
    display: inline-block;
    color: #e60012;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.case-more:hover {
    color: #cc0000;
    text-decoration: none;
    padding-left: 5px;
}

/* 响应式调整 */
@media (max-width: 767px) {
    .case-header {
        padding: 15px;
    }

    .case-header h3 {
        font-size: 18px;
    }

    .case-content {
        padding: 15px;
    }
}

/* 合作伙伴页面样式 */
.partners-section {
    padding: 60px 0;
    background: #fff;
}

.partner-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e60012;
    display: inline-block;
}

.partner-item {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.partner-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-item h4 {
    font-size: 16px;
    color: #333;
    margin: 0 0 5px;
    font-weight: 600;
}

.partner-type {
    font-size: 13px;
    color: #666;
    display: block;
}

/* 响应式调整 */
@media (max-width: 767px) {
    .partner-category {
        margin-bottom: 40px;
    }

    .category-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .partner-logo {
        width: 100px;
        height: 100px;
    }

    .partner-item h4 {
        font-size: 14px;
    }

    .partner-type {
        font-size: 12px;
    }
}

/* 产品价格页面样式 */
.pricing-section {
    padding: 60px 0;
    background: #fff;
}

.pricing-item {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pricing-item.featured {
    border: 2px solid #e60012;
}

.featured-label {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #e60012;
    color: #fff;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
}

.pricing-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.pricing-header h3 {
    font-size: 24px;
    color: #333;
    margin: 0 0 20px;
    font-weight: 600;
}

.price {
    font-size: 48px;
    color: #e60012;
    font-weight: 700;
}

.currency {
    font-size: 24px;
    vertical-align: super;
}

.period {
    font-size: 16px;
    color: #666;
    font-weight: normal;
}

.pricing-features {
    padding: 30px 0;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 10px 0;
    color: #666;
    font-size: 14px;
}

.pricing-features i {
    color: #52c41a;
    margin-right: 10px;
}

.pricing-footer {
    text-align: center;
}

.btn-pricing {
    display: inline-block;
    padding: 12px 40px;
    background: #fff;
    color: #e60012;
    border: 2px solid #e60012;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: #e60012;
    color: #fff;
    text-decoration: none;
}

.btn-pricing.featured {
    background: #e60012;
    color: #fff;
}

.btn-pricing.featured:hover {
    background: #cc0000;
    border-color: #cc0000;
}

/* 响应式调整 */
@media (max-width: 991px) {
    .pricing-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .pricing-header h3 {
        font-size: 20px;
    }

    .price {
        font-size: 36px;
    }

    .currency {
        font-size: 20px;
    }

    .period {
        font-size: 14px;
    }

    .pricing-features li {
        font-size: 13px;
    }

    .btn-pricing {
        padding: 10px 30px;
        font-size: 14px;
    }
}

/* 价格表格样式 */
.pricing-table {
    margin: 40px 0;
    overflow-x: auto;
}

.pricing-table .table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    max-width: 100%;
    background-color: transparent;
}

.pricing-table .table th {
    background: #f8f9fa;
    color: #333;
    font-weight: 600;
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
    border-bottom: 2px solid #e60012;
}

.pricing-table .table th:first-child {
    text-align: left;
    background: #fff;
}

.pricing-table .table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
    vertical-align: middle;
}

.pricing-table .table td:first-child {
    text-align: left;
    font-weight: 500;
    background: #f8f9fa;
}

.pricing-table .table .fa-check {
    color: #52c41a;
}

.pricing-table .table .fa-minus {
    color: #999;
}

/* 响应式调整 */
@media (max-width: 767px) {
    .pricing-table {
        margin: 20px -15px;
    }

    .pricing-table .table th,
    .pricing-table .table td {
        padding: 10px;
        font-size: 13px;
    }
}

/* 新闻内容页面样式优化 */
.news-content {
    text-align: left;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

/* 标题样式 */
.news-content h2 {
    font-size: 24px;
    color: #333;
    font-weight: 600;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.news-content h3 {
    font-size: 20px;
    color: #333;
    font-weight: 600;
    margin: 25px 0 15px;
}

.news-content h4 {
    font-size: 18px;
    color: #444;
    font-weight: 600;
    margin: 20px 0 15px;
}

/* 段落样式 */
.news-content p {
    margin-bottom: 20px;
    text-align: justify;
}

/* 列表样式 */
.news-content ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

.news-content ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.news-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 18px;
}

/* 文章头部样式 */
.news-header {
    margin-bottom: 40px;
}

.news-meta {
    color: #666;
    font-size: 15px;
}

.news-meta .date i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* 文章导航样式优化 */
.article-navigation {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.nav-link {
    display: block;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: #f0f2f5;
    text-decoration: none;
}

.nav-label {
    display: block;
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 8px;
}

.nav-title {
    color: #333;
    font-size: 16px;
    margin: 0;
    line-height: 1.4;
}

/* 响应式调整 */
@media (max-width: 768px) {

    .news-content h2 {
        font-size: 22px;
    }

    .news-content h3 {
        font-size: 18px;
    }

    .news-content h4 {
        font-size: 16px;
    }

    .news-content {
        font-size: 15px;
    }
}

