/* Mobile header alignment hard override (persist console fix) */
@media (max-width: 768px) {
    .sign-in-area ul { justify-content: flex-end !important; gap: 0 !important; min-width: 0; overflow: hidden; }
    .sign-in-area ul li { padding: 0 6px; white-space: nowrap; word-break: keep-all; flex: 0 1 auto; display: flex; justify-content: space-between; align-items: center; min-width: 0; }
    .sign-in-area ul li svg,
    .sign-in-area ul li img,
    .menu-toggole img { display: block; height: 22px; width: auto; flex: 0 0 auto; }
    .sign-in-area ul li span { display: inline-block; min-width: 0; flex: 1 1 auto; overflow: hidden; text-overflow: ellipsis; }
}
/* 全局修复 */
* {
	box-sizing: border-box;
}

body {
	overflow-x: hidden;
	width: 100%;
}
.header-logo img{
	width: 40%;
}
/* 最简单直接的footer文字显示修复 */
.footer-bottom,
.footer-bottom *,
.copyright-txt,
.footer-nav,
.footer-info,
.footer-info * {
	color: #ffffff !important;
}

.footer-bottom,
.copyright-txt,
.footer-nav,
.footer-info {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
}

@keyframes top-to-bottom {
	0% {
		transform: scaleY(0);
		transform-origin: left top;
	}

	50% {
		transform: scaleY(1);
		transform-origin: left top;
	}

	51% {
		transform-origin: left bottom;
	}

	100% {
		transform: scaleY(0);
		transform-origin: left bottom;
	}
}

@keyframes blank {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 1;
	}
}

/* 平滑滚动过渡效果 */
html {
	scroll-behavior: smooth;
	/* 防止移动端（含百度浏览器）自动放大/重排文字 */
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

/* 阻止系统对文本进行二次放大（增强版，覆盖常见文本载体） */
html, body, input, textarea, select, button {
	-webkit-text-size-adjust: 100% !important;
	text-size-adjust: 100% !important;
	-ms-text-size-adjust: 100% !important;
}

/* 小屏下对头部区域再覆盖一层，防止浏览器“智能放大” */
@media (max-width: 768px) {
	.header-area, .header-area * {
		-webkit-text-size-adjust: 100% !important;
		text-size-adjust: 100% !important;
	}
}

/* 页面元素滚动时的淡入效果 */
.fade-in-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

/* 左侧滑入效果 */
.slide-in-left {
	opacity: 0;
	transform: translateX(-50px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
	opacity: 1;
	transform: translateX(0);
}

/* 右侧滑入效果 */
.slide-in-right {
	opacity: 0;
	transform: translateX(50px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
	opacity: 1;
	transform: translateX(0);
}

/* 缩放效果 */
.scale-in {
	opacity: 0;
	transform: scale(0.8);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
	opacity: 1;
	transform: scale(1);
}

/* 确保footer元素不受动画影响 */
.pc_foot,
.mode_foot,
.footer-bottom,
.footer-bottom *,
.copyright-txt,
.footer-nav,
.footer-info,
.footer-info * {
	opacity: 1 !important;
	transform: none !important;
	transition: none !important;
}

.foot_erweima {
	position: absolute;
	top: 40px;
	right: 0;
	width: 7%;
	max-width: 80px;
}

/* 响应式二维码位置调整 */
@media (min-width: 1200px) {
	.foot_erweima {
		right: 3%;
		width: 3.5%;
		max-width: 70px;
	}
}

/* 全站强制关闭滚动进入类动画（确保这些类不产生任何位移或过渡） */
.fade-in-on-scroll,
.fade-in-on-scroll.visible,
.slide-in-left,
.slide-in-left.visible,
.slide-in-right,
.slide-in-right.visible,
.scale-in,
.scale-in.visible {
	opacity: 1 !important;
	transform: none !important;
	transition: none !important;
	will-change: auto !important;
	contain: none !important;
}

@media (min-width: 1400px) {
	.foot_erweima {
		right: 0%;
		top: 125px;
		width: 7%;
		max-width: 120px;
	}
}

@media (min-width: 992px) {
	.row.seven-cols {
		display: flex;
		flex-wrap: wrap;
		position: relative;
	}

	.row.seven-cols>.footer_widget {
		width: calc(100% / 9);
		flex: 0 0 calc(100% / 9);
		max-width: calc(100% / 9);
	}

	/* PC端footer二级菜单字体缩小 */
	.footer_widget .inner a p {
		font-size: 13px;
	}
}

.message {
	text-align: center;
	font-size: 14px;
	margin-top: 10px;
}

.pc_foot {
	background-image: url('../images/index/bg3.png');
	background-size: 100% 100%;
}

.click_img {
	width: 100%;
}

.mode_foot {
	background-color: #4269e0;
	background-size: 100% 100%;
}

.footer-top {
	padding-top: 80px;
	position: relative;
}

@media only screen and (max-width: 991px) {
	.footer-top {
		padding: 30px 0;
	}
}

.footer-top .media img {
	width: 40px;
}

.footer-top .media img img {
	width: 100%;
}

.footer_widget h5 {
	font-size: 16px;
}

.footer_widget h4,
.footer_widget h5 {
	color: #ffffff;
	border-left: 2px solid #fff;
	padding-left: 15px;
}

@media only screen and (max-width: 991px) {
	.footer_widget {
		padding: 15px;
	}
}

.footer_widget h4 {
	margin-bottom: 40px;
	font-size: 18px;
}

@media only screen and (max-width: 991px) {
	.footer_widget h4 {
		margin-bottom: 20px;
	}
}

.footer_widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer_widget ul li a {
	color: #ffffff;
	padding: 3px 0;
}

.footer_widget .media {
	margin-bottom: 14px;
}

.footer_widget .media h5 {
	margin: 0;
	line-height: 20px;
}

.footer_widget .media a {
	color: #7286a0;
	font-size: 14px;
}

.footer_widget .media span {
	color: rgba(255, 255, 255, 0.4);
	font-size: 12px;
}

.footer_widget .nw_form {
	position: relative;
}

.footer_widget .nw_form input {
	width: 100%;
	display: block;
	background-color: #1f2131;
	border-radius: 3px;
	height: 40px;
	border: 1px solid #1f2131;
	color: #7286a0;
	text-indent: 20px;
}

.footer_widget .nw_form input::-webkit-input-placeholder {
	color: #7286a0;
}

.footer_widget .nw_form input::-moz-placeholder {
	color: #7286a0;
}

.footer_widget .nw_form input:-ms-input-placeholder {
	color: #7286a0;
}

.footer_widget .nw_form input:-moz-placeholder {
	color: #7286a0;
}

.footer_widget .nw_form button {
	position: absolute;
	right: 0;
	top: 0;
	height: 40px;
	border: none;
	color: #fff;
	padding: 0 15px;
	border-radius: 0 3px 3px 0;
}

.footer-bottom {
	padding: 25px 0;
	color: #ffffff !important;
}

.footer-bottom a {
	color: #ffffff !important;
	padding: 0 10px;
}

.bottom_box {
	padding: 0 15px;
}

.copyright-txt {
	color: #ffffff !important;
	font-size: 14px;
}

.footer-bottom .footer-nav {
	color: #ffffff !important;
	font-size: 14px;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
}

/* 第一行：Logo */
.footer-logo {
	display: flex;
	align-items: center;
	padding: 1rem 0 1rem 0;
	border-bottom: 1px solid rgba(52, 73, 94, 0.7);
}

.footer-logo img {
	height: 30px;
	transition: transform 0.3s ease;
}

.footer-logo img:hover {
	transform: scale(1.05);
}

/* 第二行：导航和二维码 */
.footer-content {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 2rem;
	padding: 2rem 0;
	border-bottom: 1px solid rgba(52, 73, 94, 0.7);
}

/* 移动端footer导航样式 */
.mode_foot .footer-nav {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

/* 移动端footer导航链接样式 */
.mode_foot .footer-nav a {
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
	padding: 0.8rem 0;
	position: relative;
	display: block;
	text-align: center;
}

/* 移动端footer导航链接hover样式 */
.mode_foot .footer-nav a:hover {
	color: #3498db;
	transform: translateX(5px);
}

/* 移动端footer导航链接下划线样式 */
.mode_foot .footer-nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #3498db;
	transition: width 0.3s ease;
}

.mode_foot .footer-nav a:hover::after {
	width: 100%;
}

.qrcode-section {
	text-align: center;
	transition: transform 0.3s ease;
}

.qrcode-section:hover {
	transform: translateY(-5px);
}

.qrcode {
	width: 120px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 0.5rem;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.qrcode-text {
	font-size: 0.9rem;
	color: #95a5a6;
}

/* 第三行：备案信息 */
.footer-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 1.5rem;
	font-size: 0.9rem;
	color: #ffffff !important;
}

.footer-info div {
	color: #ffffff !important;
}

/* 平板样式 - 768px到1024px之间 */
@media (min-width: 769px) and (max-width: 1024px) {
	.footer-container {
		max-width: 1000px;
		padding: 0 2rem;
	}
	
	.footer-logo {
		padding: 1.5rem 0;
		justify-content: center;
	}
	
	.footer-logo img {
		height: 35px;
	}
	
	.footer-content {
		display: flex;
		flex-direction: column;
		padding: 2.5rem 0;
		align-items: center;
	}
	
	.qrcode-section {
		text-align: center;
		/* margin-bottom: 1rem; */
		order: 1;
	}
	
	.qrcode {
		width: 100px;
		height: 100px;
		margin: 0 auto 0.8rem;
		background: transparent !important;
		border: none !important;
		padding: 0 !important;
	}
	
	.qrcode-text {
		font-size: 0.85rem;
		color: rgba(255, 255, 255, 0.8);
	}
	
	.mode_foot .footer-nav {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 1rem;
		text-align: center;
		order: 2;
		max-width: 600px;
		margin: 0 auto;
	}
	
	.mode_foot .footer-nav a {
		padding: 0.8rem 0.5rem;
		font-size: 0.95rem;
		font-weight: 500;
		border-radius: 6px;
		transition: all 0.3s ease;
		background: transparent !important;
	}
	
	.mode_foot .footer-nav a:hover {
		background: rgba(255, 255, 255, 0.1);
		transform: translateY(-2px);
		color: #fff;
	}
	
	.mode_foot .footer-nav a::after {
		display: none;
	}
	
	.footer-info {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding-top: 2rem;
		font-size: 0.9rem;
		order: 3;
	}
	
	.footer-info div {
		flex: 1;
		text-align: center;
	}
}

/* 中等平板样式 - 900px到1024px之间 */
@media (min-width: 901px) and (max-width: 1024px) {
	.mode_foot .footer-nav {
		grid-template-columns: repeat(7, 1fr);
		gap: 0.8rem;
		max-width: 800px;
	}
	
	.mode_foot .footer-nav a {
		padding: 0.7rem 0.3rem;
		font-size: 0.9rem;
		background: transparent !important;
	}
}

/* 小平板样式 - 769px到900px之间 */
@media (min-width: 769px) and (max-width: 900px) {
	.mode_foot .footer-nav {
		grid-template-columns: repeat(4, 1fr);
		gap: 0.8rem;
		max-width: 500px;
	}
	
	.mode_foot .footer-nav a {
		padding: 0.8rem 0.4rem;
		font-size: 0.9rem;
		background: transparent !important;
	}
}

/* 平板样式 - 1024px以下保持原有移动端样式 */
@media (max-width: 768px) {
	.mode_foot .footer-nav {
		display: flex;
		flex-direction: column;
		gap: 0.5rem;
	}
}

/* 移动端样式 */
@media (max-width: 768px) {
	.footer-content {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.mode_foot .footer-nav {
		display: flex;
		flex-direction: column;
		gap: 0.5rem;
		text-align: center;
		order: 3;
		/* 导航放在最后 */
	}

	.qrcode-section {
		order: 2;
		/* 二维码放在Logo和导航之间 */
		margin: 1rem 0;
	}

	.footer-logo {
		order: 1;
		/* Logo保持第一 */
		justify-content: center;
		align-items: center;
	}

	.footer-info {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}

	/* 移动端二维码样式优化 */
	.qrcode {
		width: 120px;
		height: 120px;
	}

	.qrcode-text {
		font-size: 1rem;
	}
}

/* 小屏幕手机优化 */
@media (max-width: 480px) {
	.mode_foot .footer-nav a {
		padding: 1rem 0;
		font-size: 1.1rem;
	}

	.qrcode {
		width: 60px;
		height: 60px;
	}
}

/* 统一移动端头部元素水平线与对齐（logo/电话图标/号码/菜单图标） */
@media (max-width: 768px) {
    /* 行容器对齐与最小宽度，避免换行 */
    .header-area .header-wrapper { display: flex; align-items: center; }
    .header-logo, .sign-in-area { min-width: 0; }

    /* 右侧整体行：右对齐，不换行，裁溢出，间距最小 */
    .sign-in-area ul {
        display: flex;
        flex-wrap: nowrap !important;
        align-items: center;
        justify-content: flex-end !important;
        gap: 0 !important;
        min-width: 0;
        overflow: hidden;
    }

    /* 每一项允许收缩但不换行 */
    .sign-in-area ul li { display: flex; align-items: center; padding: 0 2px; white-space: nowrap; word-break: keep-all; flex: 0 1 auto; min-width: 0; }

    /* 图标固定高度，不收缩，保证与文本同高 */
    .sign-in-area ul li svg,
    .sign-in-area ul li img,
    .menu-toggole img { display: block; height: 22px; width: auto; flex: 0 0 auto; }

    /* 电话文本可收缩，单行省略，与图标同基线 */
    .sign-in-area ul li span { line-height: 22px; flex: 1 1 auto; min-width: 0; white-space: nowrap !important; overflow: hidden; text-overflow: ellipsis; font-size: 12px !important; padding-left: 2px !important; }
}
@media (max-width: 768px) {
    .header-area .header-wrapper {
        display: flex;
        align-items: center;
        min-height: 60px;
    }

    .header-logo img {
        display: block;
        max-height: 60px;
        width: auto !important;
        height: auto !important;
    }

    .sign-in-area { min-width: 0; }
    .sign-in-area ul {
        display: flex;
        flex-wrap: nowrap !important;
        align-items: center;
        justify-content: flex-end !important;
        gap: 0 2px;
        min-width: 0;
        overflow: hidden;
    }

    .sign-in-area ul li {
        display: flex;
        align-items: center;
        padding: 0 2px;
        white-space: nowrap;
        word-break: keep-all;
        flex: 0 1 auto;
        min-width: 0;
    }

    .sign-in-area ul li svg,
    .sign-in-area ul li img,
    .menu-toggole img {
        display: block;
        height: 22px;
        width: auto;
        flex: 0 0 auto;
    }

    .sign-in-area ul li span {
        line-height: 22px;
        flex: 1 1 auto;
        min-width: 0;
        white-space: nowrap !important;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 50vw;
    }

    .menu-toggole,
    .menu-toggole span {
        display: flex;
        align-items: center;
    }
}
}

.inner h4 {
	color: #fff;
}

/* Products页面container左右内边距 - 排除头部和底部 */
/* :not(.header-area .container):not(.footer-top .container):not(.footer-bottom .container) */
.products-page .container {
	padding-left: 130px;
	padding-right: 130px;
}

/* 响应式调整 */
/* :not(.header-area .container):not(.footer-top .container):not(.footer-bottom .container) */
@media (max-width: 1200px) {
	.products-page .container {
		padding-left: 100px;
		padding-right: 100px;
	}
}
/* :not(.header-area .container):not(.footer-top .container):not(.footer-bottom .container) */
@media (max-width: 992px) {
	.products-page .container {
		padding-left: 50px;
		padding-right: 50px;
	}
}
/* :not(.header-area .container):not(.footer-top .container):not(.footer-bottom .container) */
@media (max-width: 768px) {
	.products-page .container {
		padding-left: 20px;
		padding-right: 20px;
	}
}
/* :not(.header-area .container):not(.footer-top .container):not(.footer-bottom .container) */
@media (max-width: 480px) {
	.products-page .container {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media only screen and (max-width: 991px) {
	.footer-bottom {
		text-align: center;
	}

	.footer-bottom .text-right {
		text-align: center !important;
		margin-top: 5px;
	}
}

.pc_foot {
	display: block;
}

.mode_foot {
	display: none;
}

/* 首页样式 */
.logo-box {
	background: rgba(255, 255, 255, 0.8);
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	padding: 20px;
	text-align: center;
	transition: transform 0.2s;
}

.logo-box:hover {
	transform: scale(1.05);
}

.logo-img {
	max-width: 100%;
	height: auto;
}

.paper-bag {
	background-image: url('../images/index/paper-bag.png');
	background-size: 100% 100%;
}

.home_outline {
	background-color: #4269e0;
}

.overview {
	background-color: #4269e0;
	margin-bottom: 30px;
	color: #fff;
	position: relative;
}

.overview p {
	line-height: 50px;
	font-size: 48px;
	font-weight: bold;
	position: relative;
	z-index: 999;
	color: #fff;
	font-size: 42px;
}

.overview .overview-bag {
	position: absolute;
	left: 0;
	top: 72%;
	transform: translate(0, -50%);
	font-size: 106px;
	font-weight: bolder;
	opacity: 0.1;
}

.indicators {
	margin: 20px 0;
	text-align: left;
}

.indicators .title {
	font-size: 24px;
	font-weight: bold;

}

.counter {
	font-size: 84px;
	color: #fff;
	/* Change to desired color */
}

.content p {
	margin-top: 10px;
	font-size: 20px;
	color: #fff;

}

.unit {
	font-size: 20px;
	vertical-align: super;
	color: #fff;
}

.business-banner {
	position: relative;
	animation: fadeInUp 2s forwards;
}

/* 响应式显示控制 */
.pc-carousel {
	display: block;
}

.mobile-cards {
	display: none;
}

@media (max-width: 768px) {
	.pc-carousel {
		display: none;
	}
	
	.mobile-cards {
		display: block;
	}
}

/* 移动端卡片布局样式 */
.business-cards {
	padding: 3rem 0;
	background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 50%, #d6e7ff 100%);
}


.business-cards-title {
	text-align: center;
	margin-bottom: 2rem;
}

.business-cards-title h2 {
	font-size: 2rem;
	color: #2c3e50;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.business-cards-title p {
	font-size: 1rem;
	color: #6c757d;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.business-cards-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.2rem;
	max-width: 420px;
	margin: 0 auto;
	
}

.business-card {
	background: white;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 18px;
	padding: 1.2rem;
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: center;
	gap: 1rem;
	position: relative;
	overflow: hidden;
	min-height: 110px;
}

.business-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 12px 40px rgba(66, 105, 224, 0.2);
}

.card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.45) 100%);
	border-radius: 18px;
	z-index: 1;
}

.card-icon {
	flex-shrink: 0;
	width: 65px;
	height: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #4269e0 0%, #70aaf6 100%);
	border-radius: 16px;
	position: relative;
	z-index: 2;
	box-shadow: 0 4px 15px rgba(66, 105, 224, 0.3);
	transition: all 0.3s ease;
}

.card-icon img {
	width: 38px;
	height: 38px;
	filter: brightness(0) invert(1);
	transition: all 0.3s ease;
}

.business-card:hover .card-icon {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(66, 105, 224, 0.4);
}

.business-card:hover .card-icon img {
	transform: scale(1.1);
}

.card-content {
	flex: 1;
	position: relative;
	z-index: 2;
}

.card-content h3 {
	font-size: 1.2rem;
	color: #2c3e50;
	font-weight: 600;
	margin-bottom: 0.3rem;
}

.card-content p {
	font-size: 0.8rem;
	color: #6c757d;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 0.8rem;
}

.card-description {
	font-size: 0.9rem;
	color: #666;
	line-height: 1.4;
	margin-bottom: 1rem;
}

.card-btn {
	background: linear-gradient(135deg, #4269e0 0%, #70aaf6 100%);
	color: white;
	border: none;
	padding: 10px 18px;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	z-index: 2;
	box-shadow: 0 3px 12px rgba(66, 105, 224, 0.3);
	letter-spacing: 0.5px;
}

.card-btn:hover {
	background: linear-gradient(135deg, #3a5bc7 0%, #5a9ae6 100%);
	transform: translateY(-2px);
	box-shadow: 0 5px 18px rgba(66, 105, 224, 0.4);
}

/* Business content container */
.business-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	pointer-events: none; /* 允许点击穿透到轮播图 */
}

.business-content > * {
	pointer-events: auto; /* 恢复子元素的点击事件 */
}

.business-banner .swiper-button-next {
	background-image: none;
}

.business-banner .swiper-button-prev {
	background-image: none;
}

/* 成功案例轮播样式 */
.smin-banner {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.smin-banner .sminSwiper {
	width: 100%;
	height: auto;
}

.smin-banner .swiper-slide {
	position: relative;
	overflow: hidden;
}

.smin-banner .swiper-slide img {
	width: 100%;
	height: auto;
	object-fit: contain; /* 完整显示图片，不裁剪 */
	object-position: center;
	display: block;
	background: #f8f9fa; /* 添加背景色填充空白区域 */
}

.smin-banner .swiper-button-next,
.smin-banner .swiper-button-prev {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: all 0.3s ease;
}

.smin-banner .swiper-button-next:hover,
.smin-banner .swiper-button-prev:hover {
	background: rgba(0, 0, 0, 0.7);
	transform: translateY(-50%) scale(1.1);
}

.smin-banner .swiper-button-next {
	right: 20px;
}

.smin-banner .swiper-button-prev {
	left: 20px;
}

.smin-banner .swiper-button-next::after,
.smin-banner .swiper-button-prev::after {
	display: none; /* 隐藏默认箭头 */
}

.smin-banner.swiper-button-next {
	background-image: none;
}

/* smin-banner 内文字通用样式 - 兼容各端 */
.smin-banner .case-title,
.smin-banner .cooperation p,
.smin-banner .ovrly p {
	font-size: 2rem !important; /* 默认PC端：32px */
}

/* 大屏PC（1200px以上） */
@media (min-width: 1200px) {
	.smin-banner .case-title,
	.smin-banner .cooperation p,
	.smin-banner .ovrly p {
		font-size: 2.2rem !important; /* 35.2px */
	}
}

/* 中屏PC（992px-1199px） */
@media (min-width: 992px) and (max-width: 1199px) {
	.smin-banner .case-title,
	.smin-banner .cooperation p,
	.smin-banner .ovrly p {
		font-size: 1.8rem !important; /* 28.8px */
	}
}

/* 平板（768px-991px） */
@media (min-width: 768px) and (max-width: 991px) {
	.smin-banner .case-title,
	.smin-banner .cooperation p,
	.smin-banner .ovrly p {
		font-size: 1.2rem !important; /* 19.2px */
	}
}

/* 移动端响应式样式 */
@media (max-width: 768px) {
	.smin-banner .swiper-slide img {
		height: auto;
	}
	
	.smin-banner .swiper-button-next,
	.smin-banner .swiper-button-prev {
		width: 40px;
		height: 40px;
	}
	
	.smin-banner .swiper-button-next {
		right: 15px;
	}
	
	.smin-banner .swiper-button-prev {
		left: 15px;
	}
	
	.smin-banner .case-title,
	.smin-banner .cooperation p,
	.smin-banner .ovrly p {
		font-size: 1rem !important; /* 16px */
	}
}

/* 小屏手机（576px以下） */
@media (max-width: 576px) {
	.smin-banner .case-title,
	.smin-banner .cooperation p,
	.smin-banner .ovrly p {
		font-size: 0.9rem !important; /* 14.4px */
	}
}


.business-banner .swiper-button-prev {
	background-image: none;
}

.business-banner .swiper-pagination-bullets {
	display: none !important; /* 隐藏默认分页器 */
}

.business-banner .swiper-pagination-bullet-active {
	width: 25%;
	padding: 60px;
	border-radius: 0;
	background: none;
}

.business-banner .swiper-pagination-bullet {
	opacity: 1;
	border-radius: 0;
	width: 25%;
	padding: 60px;
	margin: 0 !important;
}

.business-banner .swiper-pagination-bullet:nth-child(1) {
	background-image: url('../images/index/loop1.png');
	background-size: 100% 100%;
}

.business-banner .swiper-pagination-bullet:nth-child(2) {
	background-image: url('../images/index/loop2.png');
	background-size: 100% 100%;
}

.business-banner .swiper-pagination-bullet:nth-child(3) {
	background-image: url('../images/index/loop3.png');
	background-size: 100% 100%;
}

.business-banner .swiper-pagination-bullet:nth-child(4) {
	background-image: url('../images/index/loop4.png');
	background-size: 100% 100%;
}

.business-banner .swiper-pagination-bullet:nth-child(5) {
	background-image: url('../images/index/loop5.png');
	background-size: 100% 100%;
}

/* 自定义分页器样式 */
.business-pagination {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999;
	width: 100%;
}

.custom-pagination {
	display: flex !important;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 120px;
	/* background: rgba(0, 0, 0, 0.5); */
	padding: 0 20px;
	visibility: visible !important;
	opacity: 1 !important;
}

.pagination-item {
	display: flex;
	align-items: center;
	flex: 1;
	height: 80px;
	cursor: pointer;
	transition: all 0.3s ease;
	border-radius: 8px;
	padding: 10px;
	position: relative;
}

.pagination-item:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

.pagination-item.active {
/* 	background: rgba(66, 106, 224, 0.8);
	box-shadow: 0 4px 15px rgba(66, 106, 224, 0.3); */
	transform: translateY(-2px);
}

.pagination-icon {
	width: 50px;
	height: 50px;
	margin-right: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pagination-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.pagination-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.pagination-title {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 4px;
	line-height: 1.2;
}

.pagination-subtitle {
	font-size: 10px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: 1.2;
}





@keyframes buttonPulse {
	0%, 100% {
		box-shadow: 0 4px 15px rgba(66, 105, 224, 0.3);
	}
	50% {
		box-shadow: 0 4px 25px rgba(66, 105, 224, 0.5);
	}
}





.all-padding-top {
	padding-top: 100px;
}

.all-padding-bot {
	padding-bottom: 100px;
}

.all_title_pc {
	width: 100%;
	display: block;
}

.all_title_mode {
	width: 100%;
	display: none;
}

.hover-content {
	background-color: rgb(94, 132, 227, 0.5);
	border-radius: 5%;
}

.por_box .icons {
	margin-top: 10px;
}

.por_box .category {
	color: #fff;
	font-size: 24px;
	margin-top: 10px;
	font-weight: bold;
}

.por_box .msg {
	color: #fff;
	font-size: 20px;
	margin-top: 20px;
}

.single-portfolio .inner .portfolio-img {
	position: relative;
}

.single-portfolio .inner .portfolio-img .por_box {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.single-portfolio .inner .portfolio-img .hover-content {
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
	text-align: center;
	opacity: 0.2;

}

.single-portfolio .inner .portfolio-img .hover-content .button {
	background-color: #fff;
	border-color: #fff !important;
}

.single-portfolio .inner .portfolio-img .hover-content .button:hover {
	background-color: #222;
	color: #fff;
	border-color: #222 !important;
}

.single-portfolio .inner .portfolio-img:hover .hover-content {
	opacity: 1;
	visibility: visible;
}

.single-portfolio .inner .portfolio-content {
	text-align: center;
	padding-top: 25px;
	color: #6d7784;
}

.single-portfolio .inner .portfolio-content a {
	display: block;
}

.single-portfolio .inner .portfolio-content .category {
	font-weight: bold;
	margin: 0;
	font-size: 24px;
	color: #fff;
}

.footMode_logo {
	width: 20px;
}

/* .footerMode_widget 样式已移除 */

@media (max-width: 575px) {
	.all_title_pc {
		width: 100%;
		display: none;
	}

	.all_title_mode {
		width: 100%;
		display: block;
	}

	.overview p {
		line-height: 20px;
		font-size: 15px;
		font-weight: bold;
		position: relative;
		z-index: 2;
		color: #fff;

	}

	.overview .overview-bag {
		position: absolute;
		left: 0;
		top: 72%;
		transform: translate(0, -50%);
		font-size: 35px;
		font-weight: bolder;
		opacity: 0.1;
	}

	.indicators {
		margin: 20px 0;
		text-align: left;
	}

	.inner {
		text-align: center;
		animation: fadeInUp 2s forwards;
	}

	.indicators .title {
		font-size: 20px;
		font-weight: bold;
	}

	.counter {
		font-size: 25px;
		color: #fff;

	}

	.content p {
		margin-top: 10px;
		font-size: 15px;
		color: #fff;

	}

	.unit {
		font-size: 18px;
		vertical-align: super;
		color: #fff;
	}

	.business-banner .swiper-pagination-bullet-active {
		width: 25%;
		padding: 20px;
		border-radius: 0;
		background: none;
	}

	.business-banner .swiper-pagination-bullet {
		opacity: 1;
		border-radius: 0;
		width: 25%;
		padding: 20px;
	}

	/* 中等屏幕自定义分页器响应式 */
	@media (max-width: 1200px) {
		.custom-pagination {
			height: 100px;
			padding: 0 15px;
		}

		.pagination-item {
			height: 70px;
			padding: 8px;
		}

		.pagination-icon {
			width: 40px;
			height: 40px;
			margin-right: 10px;
		}

		.pagination-title {
			font-size: 14px;
		}

		.pagination-subtitle {
			font-size: 9px;
		}
	}

	/* 平板端自定义分页器响应式 */
	@media (max-width: 992px) {
		.custom-pagination {
			height: 90px;
			padding: 0 12px;
		}

		.pagination-item {
			height: 65px;
			padding: 6px;
		}

		.pagination-icon {
			width: 35px;
			height: 35px;
			margin-right: 8px;
		}

		.pagination-title {
			font-size: 13px;
		}

		.pagination-subtitle {
			font-size: 8px;
		}
	}

	/* Business banner mobile styles */
	
	/* 手机端自定义分页器 */
	.custom-pagination {
		height: 80px;
		padding: 0 10px;
		flex-direction: row; /* 保持水平排列 */
		justify-content: space-between;
		align-items: center;
	}

	.pagination-item {
		height: 60px;
		padding: 5px;
		flex-direction: column; /* 手机端图标和文字垂直排列 */
		justify-content: center;
		align-items: center;
		text-align: center;
	}

	.pagination-icon {
		width: 30px;
		height: 30px;
		margin-right: 0; /* 手机端不需要右边距 */
		margin-bottom: 4px;
	}

	.pagination-text {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.pagination-title {
		font-size: 10px;
		margin-bottom: 2px;
	}

	.pagination-subtitle {
		font-size: 7px;
	}
}

/* 超小屏幕自定义分页器响应式 */
@media (max-width: 480px) {
	.custom-pagination {
		height: 70px;
		padding: 0 8px;
	}

	.pagination-item {
		height: 50px;
		padding: 3px;
	}

	.pagination-icon {
		width: 25px;
		height: 25px;
		margin-bottom: 2px;
	}

	.pagination-title {
		font-size: 9px;
		margin-bottom: 1px;
	}

	.pagination-subtitle {
		font-size: 6px;
	}
}

	.item_title {
		position: absolute;
		left: 10%;
		top: 18%;
		font-size: 1rem;
		color: #fff;
		line-height: 1.2;
	}

	.item-description {
		position: absolute;
		left: 10%;
		top: 25%;
		font-size: 0.8rem;
		color: #fff;
		line-height: 1.3;
		max-width: 85%;
	}



	.business-banner .swiper-button-next {
		display: block;
		right: 20px;
		top: 50%;
		transform: translateY(-50%);
		width: 50px;
		height: 50px;
		background: rgba(255, 255, 255, 0.2);
		border-radius: 50%;
		backdrop-filter: blur(10px);
		transition: all 0.3s ease;
	}

	.business-banner .swiper-button-next:hover {
		background: rgba(255, 255, 255, 0.3);
		transform: translateY(-50%) scale(1.1);
	}

	.business-banner .swiper-button-prev {
		background-image: none;
		display: block;
		left: 20px;
		top: 50%;
		transform: translateY(-50%);
		width: 50px;
		height: 50px;
		background: rgba(255, 255, 255, 0.2);
		border-radius: 50%;
		backdrop-filter: blur(10px);
		transition: all 0.3s ease;
	}

	.business-banner .swiper-button-prev:hover {
		background: rgba(255, 255, 255, 0.3);
		transform: translateY(-50%) scale(1.1);
	}

	.all-padding-top {
		padding-top: 50px;
	}

	.all-padding-bot {
		padding-bottom: 50px;
	}

	.por_box .icons {
		margin-top: 5px;
	}

	.por_box .category {
		color: #fff;
		font-size: 15px;
		margin-top: 5px;
	}

	.por_box .msg {
		color: #fff;
		font-size: 12px;
		margin-top: 12px;
	}

@media (min-width: 576px) and (max-width: 768px) {
	.all_title_pc {
		width: 100%;
		display: none;
	}

	.all_title_mode {
		width: 100%;
		display: block;
	}

	.overview p {
		line-height: 50px;
		font-size: 40px;
		font-weight: bold;
		position: relative;
		z-index: 999;
		color: #fff;

	}

	.overview .overview-bag {
		position: absolute;
		left: 0;
		top: 72%;
		transform: translate(0, -50%);
		font-size: 95px;
		font-weight: bolder;
		opacity: 0.1;
	}

	.indicators {
		margin: 20px 0;
		text-align: left;
	}

	.indicators .title {
		font-size: 20px;
		font-weight: bold;

	}

	.counter {
		font-size: 70px;
		color: #fff;
		/* Change to desired color */
	}

	.content p {
		margin-top: 10px;
		font-size: 18px;
		color: #fff;

	}

	.unit {
		font-size: 18px;
		vertical-align: super;
		color: #fff;
	}

	.business-banner .swiper-pagination-bullet-active {
		width: 25%;
		padding: 45px;
		border-radius: 0;
		background: none;
	}

	.business-banner .swiper-pagination-bullet {
		opacity: 1;
		border-radius: 0;
		width: 25%;
		padding: 45px;
	}



	.all-padding-top {
		padding-top: 60px;
	}

	.all-padding-bot {
		padding-bottom: 60px;
	}

	.understand {
		font-size: 17px;
		text-align: center;
		color: #7F7F7F;
	}

	.por_box .icons {
		margin-top: 10px;
	}

	.por_box .category {
		color: #fff;
		font-size: 20px;
		margin-top: 8px;
	}

	.por_box .msg {
		color: #fff;
		font-size: 18px;
		margin-top: 12px;
	}

}

/* pc端 */
@media (min-width: 768px) {
	.all_title_pc {
		width: 100%;
		display: block;
	}

	.all_title_mode {
		width: 100%;
		display: none;
	}

	.overview p {
		line-height: 50px;
		font-size: 40px;
		font-weight: bold;
		position: relative;
		z-index: 999;
		color: #fff;

	}

	.overview .overview-bag {
		position: absolute;
		left: 0;
		top: 72%;
		transform: translate(0, -50%);
		font-size: 95px;
		font-weight: bolder;
		opacity: 0.1;
	}

	.indicators {
		margin: 20px 0;
		text-align: left;
	}

	.indicators .title {
		font-size: 20px;
		font-weight: bold;

	}

	.counter {
		font-size: 70px;
		color: #fff;
		/* Change to desired color */
	}

	.content p {
		margin-top: 10px;
		font-size: 18px;
		color: #fff;

	}

	.unit {
		font-size: 18px;
		vertical-align: super;
		color: #fff;
	}

	

	.all-padding-top {
		padding-top: 50px;
	}

	.all-padding-bot {
		padding-bottom: 50px;
	}

	.por_box .icons {
		margin-top: 10px;
	}

	.por_box .category {
		color: #fff;
		font-size: 18px;
		margin-top: 10px;
	}

	.por_box .msg {
		color: #fff;
		font-size: 14px;
		margin-top: 20px;
	}
}




/* 平板端轮播样式 - 768px到1024px之间 */
@media (min-width: 768px) and (max-width: 1024px) {
	
}


/* 示例内容样式 */
.content-section {
	background: white;
	border-radius: 8px;
	padding: 2rem;
	margin-bottom: 2rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

h1 {
	color: #2c3e50;
	margin-bottom: 1rem;
}

p {
	line-height: 1.6;
	color: #7f8c8d;
	margin-bottom: 1rem;
}

@media screen and (max-width: 786px) {}

@media screen and (max-width: 575px) {}

/* 优化后的优势卡片样式 - 完整版本 */
.advantages-section {
	background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 50%, #d6e7ff 100%);
	position: relative;
	overflow: hidden;
}

.advantages-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-10px); }
}

/* 优势展示区域容器样式 */
.advantages-section .container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

/* 优势展示区域标题样式 - 还原为原来的样式 */
.advantages-section .section-title-wrap {
	width: 100%;
	text-align: center;
	position: relative;
	display: inline-block;
	margin: 2rem auto;
}

.advantages-section .section-en {
	font-size: 4rem;
	color: rgba(121, 154, 237, 0.12);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 3px;
	position: relative;
	z-index: 1;
	line-height: 1.2;
	opacity: 0.3;
}

.advantages-section .section-title {
	font-size: 2.5rem;
	color: #2c3e50;
	font-weight: 700;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.advantages-grid {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 2rem;
	margin-top: 3rem;
	width: 100%;
	/* 重置可能的Bootstrap影响 */
	flex-direction: unset !important;
	flex-wrap: unset !important;
	align-items: unset !important;
	justify-content: unset !important;
}

.advantage-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	will-change: transform;
	border: 2px solid transparent;
	display: block;
	width: 100%;
}

.advantage-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	border-color: #4269e0;
	background: linear-gradient(135deg, #4269e0 0%, #70aaf6 100%);
}

.advantage-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(66, 105, 224, 0.05) 0%, transparent 50%);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}

.advantage-card:hover::before {
	opacity: 0;
}

.advantage-card .card-image-container {
	position: relative;
	overflow: hidden;
	height: 220px;
	background: transparent;
	display: block;
	z-index: 2;
	border-radius: 20px 20px 0 0;
}

.advantage-card .card-image {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	transition: transform 0.4s ease;
	/* filter: brightness(1.1) contrast(1.05); */
	display: block !important;
	max-width: none !important;
	/* 强制显示图片 */
	opacity: 1 !important;
	visibility: visible !important;
	position: relative !important;
	z-index: 1 !important;
	border-radius: 0;
}

.advantage-card:hover .card-image {
	transform: scale(1.08);
}

.advantage-card .card-content {
	padding: 2rem 1.5rem !important;
	text-align: center !important;
	position: relative;
	z-index: 2;
}

.advantage-card .icon-container {
	position: relative !important;
	width: 70px !important;
	height: 70px !important;
	margin: 0 auto 1.5rem !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.advantage-card .active-icon,
.advantage-card .inactive-icon {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	transition: all 0.3s ease;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.advantage-card .inactive-icon {
	opacity: 1;
	transform: scale(1);
}

.advantage-card .active-icon {
	opacity: 0;
	transform: scale(0.8);
}

.advantage-card:hover .inactive-icon {
	opacity: 0;
	transform: scale(0.8);
}

.advantage-card:hover .active-icon {
	opacity: 1;
	transform: scale(1.1);
}

.advantage-card .divider {
	width: 50px !important;
	height: 3px !important;
	background: linear-gradient(90deg, #4269e0, #70aaf6) !important;
	margin: 0 auto 1.5rem !important;
	border-radius: 2px;
	position: relative;
	overflow: hidden;
}

.advantage-card:hover .divider {
	background: linear-gradient(90deg, #ffffff, #f0f8ff) !important;
}

.advantage-card .divider::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
	animation: shimmer 2s infinite;
}

@keyframes shimmer {
	0% { left: -100%; }
	100% { left: 100%; }
}

.advantage-card .advantage-title {
	font-size: 1.4rem !important;
	font-weight: 700 !important;
	color: #2c3e50 !important;
	margin-bottom: 1rem !important;
	transition: color 0.3s ease;
}

.advantage-card:hover .advantage-title {
	color: #ffffff !important;
}

.advantage-card .advantage-description {
	color: #6c757d !important;
	line-height: 1.7 !important;
	font-size: 1rem !important;
	margin: 0 !important;
}

.advantage-card:hover .advantage-description {
	color: #ffffff !important;
}


/* 响应式设计 - 平板端两列显示 */
@media (max-width: 1024px) {
	.advantages-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 1.5rem;
	}
}

@media (max-width: 768px) {
	.advantages-section {

	}

	.advantages-section .section-en {
		font-size: 2.5rem;
		letter-spacing: 2px;
	}

	.advantages-section .section-title {
		font-size: 2rem;
	}

	.advantages-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 0.3rem;
	}
	
	.advantage-card {
		height: auto !important;
		min-height: 260px !important;
		border-radius: 12px !important;
		overflow: hidden !important;
	}
	
	.advantage-card .card-image-container {
		border-radius: 0 !important;
		overflow: hidden !important;
	}
	
	.advantage-card .card-image-container img {
		border-radius: 0 !important;
	}
	
	.advantage-card .card-content {
		padding: 1rem 0.6rem !important;
		text-align: center !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
	}

	.advantage-card .advantage-title {
		font-size: 1rem !important;
		margin-bottom: 0.5rem !important;
	}

	.advantage-card .advantage-description {
		font-size: 0.8rem !important;
		line-height: 1.3 !important;
		margin: 0 !important;
	}

	.advantage-card .icon-container {
		width: 50px !important;
		height: 50px !important;
		margin: 0 auto 0.6rem !important;
		display: flex !important;
		justify-content: center !important;
		align-items: center !important;
		position: relative !important;
	}
	
	.advantage-card .icon-container img {
		width: 30px !important;
		height: 30px !important;
		object-fit: contain !important;
		display: block !important;
		position: absolute !important;
		top: 50% !important;
		left: 50% !important;
		transform: translate(-50%, -50%) !important;
	}

	.advantage-card .divider {
		width: 35px !important;
		height: 2px !important;
		margin: 0 auto 0.6rem !important;
	}
}

@media (max-width: 480px) {
	.advantages-section .container {
		padding: 0 15px;
	}

	.advantages-section .section-en {
		font-size: 1.8rem;
		letter-spacing: 1px;
	}

	.advantages-section .section-title {
		font-size: 1.8rem;
	}

	.advantages-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 0.2rem;
	}
	
	.advantage-card {
		min-height: 240px !important;
		border-radius: 10px !important;
		overflow: hidden !important;
	}
	
	.advantage-card .card-image-container {
		border-radius: 0 !important;
		overflow: hidden !important;
	}
	
	.advantage-card .card-image-container img {
		border-radius: 0 !important;
	}
	
	.advantage-card .card-content {
		padding: 0.8rem 0.5rem !important;
		text-align: center !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
	}

	.advantage-card .advantage-title {
		font-size: 0.9rem !important;
		margin-bottom: 0.3rem !important;
	}

	.advantage-card .advantage-description {
		font-size: 0.75rem !important;
		line-height: 1.2 !important;
		margin: 0 !important;
	}

	.advantage-card .icon-container {
		width: 45px !important;
		height: 45px !important;
		margin: 0 auto 0.4rem !important;
		display: flex !important;
		justify-content: center !important;
		align-items: center !important;
		position: relative !important;
	}
	
	.advantage-card .icon-container img {
		width: 25px !important;
		height: 25px !important;
		object-fit: contain !important;
		display: block !important;
		position: absolute !important;
		top: 50% !important;
		left: 50% !important;
		transform: translate(-50%, -50%) !important;
	}

	.advantage-card .divider {
		width: 30px !important;
		height: 2px !important;
		margin: 0 auto 0.4rem !important;
	}

	/* Business banner 超小屏幕布局 */
	.business-content .slider_title {
		top: 20% !important;
		font-size: 1.5rem !important;
	}

	.business-content .item_title {
		top: 35% !important;
		font-size: 1rem !important;
	}



	.advantage-card .card-image-container {
		height: 180px;
	}

	.advantage-card .icon-container {
		width: 50px !important;
		height: 50px !important;
		margin: 0 auto 0.8rem !important;
	}

	.advantage-card .card-content {
		padding: 1rem 0.8rem !important;
	}

	.advantage-card .advantage-title {
		font-size: 1.1rem !important;
		margin-bottom: 0.8rem !important;
	}

	.advantage-card .advantage-description {
		font-size: 0.9rem !important;
		line-height: 1.5 !important;
	}

	.advantage-card .divider {
		width: 30px !important;
		height: 2px !important;
		margin: 0 auto 0.8rem !important;
	}
}

/* 性能优化 */
@media (prefers-reduced-motion: reduce) {
	.advantage-card,
	.advantage-card .card-image,
	.advantage-card .active-icon,
	.advantage-card .inactive-icon,
	.advantage-card .divider::after {
		transition: none;
		animation: none;
	}
}

/* 高对比度模式支持 */
@media (prefers-contrast: high) {
	.advantage-card {
		border: 2px solid #000;
	}

	.advantage-card .advantage-title {
		color: #000;
	}

	.advantage-card .advantage-description {
		color: #333;
	}
}

/* 首页结尾 */
@media screen and (max-width: 1199px) {
	.menu-bar ul li .dropdown {
		position: relative;
		left: 0;
		background-color: transparent;
		box-shadow: none;
		display: none;
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		padding-bottom: 0px;
		transform: none;
	}
}

.menu-bar ul li {
	padding: 35px 15px;
	position: relative;
}

.menu-bar ul li a {
	font-size: 13px;
	font-weight: var(--text-medium);
	font-family: var(--title-font);
	color: var(--input-white);
	display: inline-block;
	position: relative;
	transition: .4s ease;
}

.menu-bar ul li a i {
	margin-left: 5px;
	display: inline-block;
	transition: .4s ease;
}

.menu-bar ul li a:after {
	position: absolute;
	content: "";
	height: 1px;
	width: 100%;
	bottom: -3px;
	left: 0;
	transform: scaleX(0);
	transform-origin: left bottom;
	background-color: var(--color-yellow-deep);
	-webkit-transition: var(--cubic-bezier);
	-moz-transition: var(--cubic-bezier);
	-o-transition: var(--cubic-bezier);
	transition: var(--cubic-bezier);
}

.menu-bar ul li a .drop-icon {
	display: none;
}

.menu-bar ul li .dropdown {
	position: absolute;
	top: 100%;
	left: 15px;
	min-width: 180px;
	background-color: var(--nav-bag);
	padding: 12px 0;
	box-shadow: var(--black-shadow);
	clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	/* transform: translate(-50%, 0); */
	white-space: nowrap;
}



.menu-bar ul li .dropdown li {
	padding: 6px 20px;
	margin: 0;
}

.menu-bar ul li .dropdown li:last-child {
	padding-bottom: 6px;
}

.menu-bar ul li .dropdown li a {
	font-size: 13px;
	display: block;
	line-height: 1.5;
	transition: color 0.3s ease;
}

.menu-bar ul li .dropdown li a:hover {
	color: var(--color-yellow-deep);
}

.menu-bar ul li:hover .dropdown {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	transition: .6s ease;
}

.menu-bar ul li:hover>a {
	opacity: .8;
}

.menu-bar ul li:hover>a:after {
	transform-origin: 100% bottom;
	transform: scaleX(1);
}

.menu-bar ul li:hover>a i {
	transform: rotateX(180deg);
	color: var(--color-Sub-heading);
}

.header-area.sticky .menu-bar>ul>li {
	padding: 25px 15px;
	transition: .4s ease;
}

.header-area {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: #426ae0;
}

.header-area.default-header {
	position: relative;
}

.header-area.sticky {
	background-color: #426ae0;
	position: fixed !important;
}


.header-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.header-logo {
	padding-right: 35px;
	display: flex;
	align-items: center;

}

.header-logo a {
	font-size: 35px;
	font-weight: var(--text-bold);
	font-family: var(--title-font);
	color: var(--menu-color);
	line-height: 44px;
	margin-bottom: 5px;
}

.sign-in-area ul li {
	padding: 25px 15px;
	cursor: pointer;
	font-size: 12px;
	font-weight: var(--text-medium);
	font-family: var(--title-font);
	color: var(--input-white);
	display: inline-block;
}

/* 防止头部电话号码换行（含百度浏览器） */
.sign-in-area ul {
	display: flex;
	flex-wrap: nowrap !important;
	align-items: center;
	min-width: 0;
}

.sign-in-area ul li {
	white-space: nowrap;
	word-break: keep-all;
	flex: 0 1 auto;
}

.sign-in-area ul li:last-child {
	display: none;
}

/* toggole menu style here */
.menu-toggole {
	position: relative;
	cursor: pointer;
	display: none;
}

.comon-tab svg {
	height: 20px;
	width: 20px;
}

.menu-show svg,
.menu-close svg {
	fill: var(--color-Sub-heading);
}

.menu-close {
	position: absolute;
	top: 0;
	left: 0;
}

.menu-show {
	clip-path: circle(200% at 100% 50%);
	-webkit-clip-path: circle(200% at 100% 50%);
	transition: 1s ease-in-out;
}

.menu-show.active {
	clip-path: circle(0% at 100% 50%);
	-webkit-clip-path: circle(0% at 100% 50%);
	transition: .1s ease-in-out;
}

.menu-close svg {
	height: 15px;
}

.menu-close {
	clip-path: circle(0% at 0% 50%);
	-webkit-clip-path: circle(0% at 0% 50%);
	opacity: 0;
}

.menu-close.active {
	clip-path: circle(200% at 0% 50%);
	-webkit-clip-path: circle(200% at 0% 50%);
	transition: 1s ease-in-out;
	opacity: 1;
	transition: 1s ease-in;
}

@media screen and (max-width: 1199px) {
	.header-area.active {
		background-color: #426ae0;
	}

	.pc_foot {
		display: none;
	}

	.mode_foot {
		display: block;
	}

	/* toggole menu style here */
	.menu-toggole {
		display: block;
	}

	.sign-in-area ul li:last-child {
		display: block;
	}

	.menu-bar {
		position: absolute;
		height: calc(100vh - 55px);
		background-color: #426ae0;
		min-width: 300px;
		top: 58px;
		left: 0;
		clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
	}

	.menu-bar ul li .dropdown {
		position: absolute;
		top: 100%;
		left: -5%;
		min-width: 160px;
		background-color: var(--nav-bag);
		padding: 15px;
		box-shadow: var(--black-shadow);
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
		white-space: nowrap;
	}

	.menu-bar ul {
		flex-direction: column;
		align-items: flex-start !important;
		height: auto;
		padding: 25px;
		overflow: hidden;
	}

	.menu-bar ul li {
		padding: 0px;
		padding: 10px 0px !important;
		transform: translateX(-100px);
		transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
		transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
		opacity: 0;
	}

	.menu-bar ul li a i {
		display: none;
	}

	.menu-bar ul li a .drop-icon {
		display: inline-block;
		position: relative;
		width: 25px;
		margin-left: 10px;
	}

	.menu-bar ul li a .drop-icon .icofont-minus {
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		display: none;
	}

	.menu-bar ul li a.active .drop-icon .icofont-minus {
		display: block;
	}

	.menu-bar ul li a.active .drop-icon .icofont-plus {
		display: none;
	}

	.menu-bar ul li .dropdown {
		position: relative;
		left: 0;
		background-color: var(--nav-bag);
		box-shadow: none;
		display: none;
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		padding-bottom: 0px;
	}



	.menu-bar ul li .dropdown.active {
		display: block;
	}

	.menu-bar.active {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
		transition: .5s ease;
	}

	.menu-bar.active ul li {
		transform: translateX(0px);
		opacity: 1;
	}

	.menu-bar.active ul li:nth-child(1) {
		transition-delay: .3s;
	}

	.menu-bar.active ul li:nth-child(2) {
		transition-delay: .4s;
	}

	.menu-bar.active ul li:nth-child(3) {
		transition-delay: .5s;
	}

	.menu-bar.active ul li:nth-child(4) {
		transition-delay: .6s;
	}

	.menu-bar.active ul li:nth-child(5) {
		transition-delay: .7s;
	}

	.menu-bar.active ul li:nth-child(6) {
		transition-delay: .8s;
	}

	.menu-bar.active ul li:nth-child(7) {
		transition-delay: .9s;
	}

	.menu-bar.active ul li:nth-child(8) {
		transition-delay: 1s;
	}

	body {
		position: relative;
	}

	body:after {
		position: absolute;
		content: "";
		height: 100%;
		width: 100%;
		top: 0;
		left: 0;
		z-index: 1;
		background-color: var(--color-heading);
		opacity: 0;
		visibility: hidden;
		z-index: 99;
	}

	body.active:after {
		opacity: 0.5;
		visibility: visible;
	}

	.search-popup-area .popup-close-icon {
		top: 20px;
		right: 20px;
	}
}

@media screen and (max-width: 575px) {
	.sign-in-area {
		width: 85%;
	}

	.header-area {
		padding: 10px 0px;
	}

	.header-logo {
		padding-right: 10px;
	}

	.sign-in-area ul li {
		padding: 0px 10px;
	}

	.sign-in-area ul li svg,
	.sign-in-area ul li img {
		width: 20px;
		height: 30px;
	}

	/* 小屏进一步收紧间距，防止挤成两行 */
	.sign-in-area ul {
		gap: 0 6px;
	}

	/* 修复电话号码在移动端被挤成两行的问题（进一步缩小以给 logo 留空间） */
	.sign-in-area ul li span {
		font-size: 12px !important;
		padding-left: 4px !important;
		white-space: nowrap !important;
		display: inline-block;
		max-width: 32vw;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

/* 移动端头部对齐修复（防止 Logo 在百度浏览器中被挤上去） */
@media (max-width: 768px) {
	.header-area {
		/* 确保头部自身有稳定高度 */
		min-height: 60px;
	}

	.header-area .header-wrapper {
		min-height: 60px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 8px;
		padding: 0 10px;
	}

	.header-logo img {
		display: block;
		max-height: 60px;
		width: auto !important;
		height: auto !important;
	}

	/* 右侧区域收紧：不占过多空间 */
	.sign-in-area {
		width: auto;
		flex: 0 1 auto;
	}

	.sign-in-area ul {
		display: flex;
		flex-wrap: nowrap !important;
		align-items: center;
		justify-content: flex-end !important;
		gap: 0 2px;
		min-width: 0;
	}

	.sign-in-area ul li {
		padding: 0 4px;
		white-space: nowrap;
		word-break: keep-all;
		flex: 0 1 auto;
		display: flex;
		justify-content: space-between;
		align-items: start;
	}

	/* 电话图标更小，给 logo 腾空间 */
	.sign-in-area ul li svg,
	.sign-in-area ul li img {
		width: 18px;
		height: 28px;
	}

	/* 电话文本在 768px 下再收紧一些 */
	.sign-in-area ul li span {
		font-size: 12px !important;
		padding-left: 2px !important;
		max-width: 30vw;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap !important;
	}

	/* 移除菜单图标容器的额外左间距 */
	.sign-in-area .menu-toggole {
		margin-left: 0 !important;
	}
}

@media screen and (max-width: 375px) {
	.sign-in-area ul li {
		padding: 0px 6px;
	}

	/* 更小屏幕的电话号码优化 */
	.sign-in-area ul li span {
		font-size: 12px !important;
		padding-left: 4px !important;
		max-width: 46vw;
		white-space: nowrap !important;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

.banner-area {
	padding: 90px 0px 0px 0px;
	position: relative;
	z-index: 1;
	transition: .4s ease;
	animation: fadeInUp 2s forwards;
}



/* 首页头部轮播样式 */
.header-banner {
	width: 100%;
	position: relative;
}

.header-banner .swiper {
	width: 100%;
}

.header-banner .swiper-slide {
	position: relative;
	width: 100%;
}

.header-banner .swiper-slide img {
	width: 100%;
	height: auto;
	display: block;
}

/* 其他页面的头部图片样式 */
.headerbanner_pc {
	display: block !important;
	width: 100%;
	height: auto;
}

.headerbanner_mode {
	display: none !important;
	width: 100%;
	height: auto;
}

@media (max-width: 768px) {
	.headerbanner_pc {
		display: none !important;
	}
	
	.headerbanner_mode {
		display: block !important;
	}
}


@media screen and (max-width: 1350px) {
	.banner-area {
		padding: 80px 0px 0px;
	}
}

@media screen and (max-width: 1199px) {
	.banner-content-area {
		margin-left: 40px;
	}

	.sign-in-area ul li:last-child {
		padding-right: 0px;
	}
}

@media screen and (max-width: 991px) {
	.banner-area {
		padding: 80px 0px 0px 0px;
	}
}

@media screen and (max-width: 767px) {
	.banner-area {
		padding: 68px 0px 0px 0px;
	}

	.sign-in-area {
		width: 85%;
	}

}

@media screen and (max-width: 575px) {}

@media screen and (max-width: 1350px) {}

@media screen and (max-width: 1199px) {}

@media screen and (max-width: 991px) {}

@media screen and (max-width: 767px) {
	.sign-in-area ul li a {
		font-size: 13px;
	}

	/* 中等屏幕的电话号码优化 */
	.sign-in-area ul li span {
		font-size: 14px !important;
		padding-left: 6px !important;
		white-space: nowrap !important;
		max-width: 42vw;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}


@media screen and (max-width: 350px) {

				@media screen and (max-width: 1190px) {}

				@media screen and (max-width: 767px) {}

				[data-theme='dark'] .sign-in-area ul li svg path {
					fill: var(--color-text);
				}

				[data-theme='dark'] p {
					color: #8e8e8e;
				}

				[data-theme='dark'] .banner-img-area .banner-img img {
					background-color: var(--body-bg-color);
				}

				[data-theme='dark'] .tag-title {
					color: var(--color-text);
				}

				[data-theme='dark'] .tag-card {
					border-color: rgba(255, 255, 255, 0.8);
					color: var(--color-light-dark);
				}

				[data-theme='dark'] .footer-top-area:after {
					background-color: var(--footer-overlay);
				}

				[data-theme='dark'] .subscribe-area {
					position: relative;
					z-index: 1;
				}

				[data-theme='dark'] .subscribe-area:after {
					position: absolute;
					content: "";
					top: 0;
					left: 0;
					height: 100%;
					width: 100%;
					background-color: var(--footer-overlay);
					z-index: -1;
				}

				[data-theme='dark'] .subscribe-area .section-heading p {
					color: #8e8e8e;
				}

				[data-theme='dark'] .subscribe-area .subscribe-input input {
					background-color: var(--color-secondary);
				}

				[data-theme='dark'] .subscribe-area .subscribe-input input::placeholder {
					color: var(--color-bg-three);
				}

				[data-theme='dark'] .stories-card-img .card-img-title {
					background-color: var(--color-text);
					color: var(--body-bg-color);
				}

				[data-theme='dark'] .footer-logo-area p {
					color: #c7c7c7;
				}

				[data-theme='dark'] .footer-top-area .footer-menu-bar ul li a {
					color: var(--color-text2);
				}

				[data-theme='dark'] .footer-top-area .footer-menu-bar ul li a:hover {
					color: var(--color-Sub-heading);
				}

				[data-theme='dark'] .footer-top-area .contact-area .contact-address a,
				[data-theme='dark'] .footer-top-area .contact-area .contact-address p,
				[data-theme='dark'] .footer-top-area .contact-area .contact-address h4 {
					color: var(--color-text2);
				}

				[data-theme='dark'] .footer-top-area .contact-area .contact-address a:hover {
					color: var(--color-Sub-heading);
				}

				[data-theme='dark'] .footer-top-area .contact-area .contact-app-link a {
					color: var(--color-text2);
				}

				[data-theme='dark'] .footer-top-area .contact-area .contact-app-link a:hover {
					color: var(--color-Sub-heading);
				}

				[data-theme='dark'] .footer-top-area .social-icon ul li a svg path {
					fill: var(--color-text2);
				}

				[data-theme='dark'] .footer-top-area .social-icon ul li a svg:hover path {
					fill: var(--color-Sub-heading);
				}

				[data-theme='dark'] .nice-select-wrap ul a:hover {
					box-shadow: none;
				}

				[data-theme='dark'] .border-gray-btn {
					color: #ffffff;
				}

				[data-theme='dark'] .border-gray-btn:hover {
					border-color: transparent;
				}

				[data-theme='dark'] .single-shop-card:hover {
					-webkit-box-shadow: 0px 0px 15px 0px rgba(144, 141, 141, 0.2);
					-moz-box-shadow: 0px 0px 15px 0px rgba(144, 141, 141, 0.2);
					box-shadow: 0px 0px 15px 0px rgba(144, 141, 141, 0.2);
				}

				[data-theme='dark'] .dark-overlay {
					position: relative;
					z-index: 1;
				}

				[data-theme='dark'] .dark-overlay:after {
					position: absolute;
					content: "";
					top: 0;
					left: 0;
					height: 100%;
					width: 100%;
					z-index: -1;
					background-color: var(--footer-overlay);
				}

				[data-theme='dark'] .checkout-dtls {
					box-shadow: none;
					position: relative;
					z-index: 1;
				}

				[data-theme='dark'] .checkout-dtls:after {
					position: absolute;
					content: "";
					top: 0;
					left: 0;
					height: 100%;
					width: 100%;
					z-index: -1;
					background-color: var(--color-secondary);
					opacity: 0.9;
				}

				[data-theme='dark'] .btn-gray {
					background-color: var(--color-text2);
					color: var(--color-text);
				}

				[data-theme='dark'] .badge {
					color: var(--color-text);
				}

				[data-theme='dark'] .suscribe-content-wrapper .btn-orange:hover,
				[data-theme='dark'] .priceing-single-btm .btn-orange:hover {
					background-color: transparent;
				}

				[data-theme='dark'] .suscribe-content-wrapper .btn-orange:hover:after,
				[data-theme='dark'] .priceing-single-btm .btn-orange:hover:after {
					background-color: var(--body-bg-color);
				}

				[data-theme='dark'] body:after {
					background-color: var(--body-bg-color);
				}

				[data-theme='dark'] .banner-wrapper:after {
					width: 100%;
					background-color: var(--color-secondary);
					opacity: 0.8;
				}

				[data-theme='dark'] .contact-from-area input,
				[data-theme='dark'] .contact-from-area textarea {
					color: var(--color-text);
				}

				[data-theme='dark'] .contact-from-area input::placeholder,
				[data-theme='dark'] .contact-from-area textarea::placeholder {
					color: var(--color-text2);
				}

				[data-theme='dark'] .post-full-content ol li,
				[data-theme='dark'] .post-full-content ul li {
					color: #b9b9b9;
				}

				[data-theme='dark'] .post-full-content ul li:after {
					background-color: #b9b9b9;
				}

				[data-theme='dark'] .post-full-content blockquote {
					color: #b9b9b9;
				}

				@media screen and (max-width: 1350px) {}

				@media screen and (max-width: 1199px) {}

				@media screen and (max-width: 991px) {}

				@media screen and (max-width: 767px) {}

				@media screen and (max-width: 400px) {}

				.mx-w-100 {
					max-width: 100%;
				}

				@keyframes spin {
					from {
						-webkit-transform: rotate(0deg);
						transform: rotate(0deg);
					}

					to {
						-webkit-transform: rotate(360deg);
						transform: rotate(360deg);
					}
				}

				@media screen and (max-width: 991px) {}

				@media screen and (max-width: 767px) {}

				@media screen and (max-width: 575px) {}

				@media screen and (max-width: 991px) {}

				@media screen and (max-width: 767px) {}

				@media screen and (max-width: 575px) {}

				@keyframes scaleX {
					from {
						transform: scaleY(0);
					}

					to {
						transform: scaleY(1);
					}
				}
			}

/* 新闻中心标签样式 - 简约风格 */
.tabs-wrap {
	width: 100%;
	margin-bottom: 2.5rem;
	position: relative;
}

.tabs {
	display: flex;
	justify-content: center;
	gap: 0;
	width: 100%;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	padding: 0;
	overflow: hidden;
}

.tab {
	padding: 1rem 2rem;
	border: none;
	border-right: 1px solid #e9ecef;
	cursor: pointer;
	font-weight: 500;
	color: #6c757d;
	position: relative;
	font-size: 1rem;
	letter-spacing: 0;
	text-transform: none;
	margin: 0;
	flex: 1;
	background: none !important;
	background-color: transparent !important;
	box-shadow: none !important;
	text-shadow: none !important;
	outline: none !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	transition: none !important;
	transform: none !important;
	filter: none !important;
	animation: none !important;
	-webkit-transition: none !important;
	-moz-transition: none !important;
	-o-transition: none !important;
	-webkit-transform: none !important;
	-moz-transform: none !important;
	-o-transform: none !important;
	-webkit-filter: none !important;
	-moz-filter: none !important;
	-o-filter: none !important;
}

.tab:last-child {
	border-right: none;
}

.tab:hover {
	color: #426ae0;
	border-color: #426ae0;
	background: none !important;
	background-color: transparent !important;
	box-shadow: none !important;
	text-shadow: none !important;
	outline: none !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	transition: none !important;
	transform: none !important;
	filter: none !important;
	animation: none !important;
	-webkit-transition: none !important;
	-moz-transition: none !important;
	-o-transition: none !important;
	-webkit-transform: none !important;
	-moz-transform: none !important;
	-o-transform: none !important;
	-webkit-filter: none !important;
	-moz-filter: none !important;
	-o-filter: none !important;
}

.tab.active {
	color: #426ae0;
	border-color: #426ae0;
	font-weight: 600;
	background: none !important;
	background-color: transparent !important;
	box-shadow: none !important;
	text-shadow: none !important;
	outline: none !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	transition: none !important;
	transform: none !important;
	filter: none !important;
	animation: none !important;
	-webkit-transition: none !important;
	-moz-transition: none !important;
	-o-transition: none !important;
	-webkit-transform: none !important;
	-moz-transform: none !important;
	-o-transform: none !important;
	-webkit-filter: none !important;
	-moz-filter: none !important;
	-o-filter: none !important;
}

/* 新闻中心网格布局样式 */
.news-grid {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-top: 2rem;
	width: 100%;
}

.news-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 1px solid rgba(0, 0, 0, 0.05);
	display: flex;
	align-items: stretch;
	min-height: 200px;
}

.news-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.news-card .news-cover {
	margin: 0 !important;
	overflow: hidden;
	width: 300px;
	flex-shrink: 0;
	position: relative;
	display: block;
}

.news-card .news-cover img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	transition: transform 0.3s ease;
	display: block;
	margin: 0 !important;
}

.news-card:hover .news-cover img {
	transform: scale(1.05);
}

.news-card .news-meta {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.news-card .date {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 0.8rem;
	font-weight: 500;
}

.news-card .title {
	font-size: 1.2rem;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 1rem;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-card .excerpt {
	font-size: 0.95rem;
	color: #666;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-card .button {
	text-decoration: none;
	display: inline-block;
	margin-top: auto;
	align-self: flex-start;
}

.news-card .btn {
	background: linear-gradient(135deg, #4269e0 0%, #70aaf6 100%);
	border: none;
	color: white;
	padding: 0.6rem 1.2rem;
	border-radius: 6px;
	font-size: 0.9rem;
	font-weight: 500;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.news-card .btn:hover {
	background: linear-gradient(135deg, #3a5bc7 0%, #5a9ae8 100%);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(66, 105, 224, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
	.tabs-wrap {
		margin-bottom: 2rem;
	}
	
	.tab {
		padding: 0.8rem 1.5rem;
		font-size: 0.9rem;
	}
	
	.news-grid {
		gap: 1.5rem;
		margin-top: 1.5rem;
	}
	
	.news-card {
		flex-direction: column;
		min-height: auto;
	}
	
	.news-card .news-cover {
		width: 100% !important;
		height: 180px !important;
		margin: 0 !important;
	}
	
	.news-card .news-meta {
		padding: 1.2rem;
	}
	
	.news-card .title {
		font-size: 1.1rem;
	}
	
	.news-card .excerpt {
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.tabs-wrap {
		margin-bottom: 1.5rem;
	}
	
	.tab {
		padding: 0.6rem 1rem;
		font-size: 0.8rem;
	}
	
	.news-grid {
		gap: 1rem;
		margin-top: 1rem;
	}
	
	.news-card {
		flex-direction: column;
		min-height: auto;
	}
	
	.news-card .news-cover {
		width: 100% !important;
		height: 160px !important;
		margin: 0 !important;
	}
	
	.news-card .news-meta {
		padding: 1rem;
	}
	
	.news-card .title {
		font-size: 1rem;
	}
	
	.news-card .excerpt {
		font-size: 0.85rem;
	}
}