/* ========== 核心修改：导航栏固定在顶部 ========== */
.navbar-custom {
	background-color: #fff;
	border-bottom: 1px solid #eee;
	position: fixed !important;
	/* 固定定位 */
	top: 0;
	/* 贴紧顶部 */
	left: 0;
	width: 100%;
	/* 铺满屏幕宽度 */
	z-index: 9999 !important;
	/* 确保在最上层，避免被遮挡 */
}

/* 补偿固定导航的空间，防止页面内容被覆盖 */
body {
	padding-top: 70px;
	/* 数值略大于导航栏高度，适配不同屏幕 */
}

.logo-img {
	height: 40px;
	margin-right: 8px;
}

.logo-text {
	font-size: 18px;
	font-weight: 600;
	color: #333;
}

.nav-link-main {
	color: #333 !important;
	font-size: 16px;
	padding: 12px 18px !important;
	position: relative;
}

.nav-link-main:hover {
	color: #f60 !important;
}

.nav-shop-btn {
	background-color: #f60;
	color: #fff !important;
	border-radius: 4px;
	padding: 8px 16px !important;
	margin-left: 10px;
}

.nav-shop-btn:hover {
	background-color: #e55a00;
}

.dropdown-menu-level2 {
	border: none;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 15px;
	width: 800px;
	display: none;
	top: 100%;
	left: 50% !important;
	transform: translateX(-50%) !important;
	z-index: 1050;
}

/* 关于我们的二级菜单样式（简约版） */
.dropdown-menu-about {
	border: none;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
	padding: 10px 15px;
	display: none;
	top: 100%;
	left: 50% !important;
	transform: translateX(-50%) !important;
	z-index: 1050;
}

.dropdown-item-about {
	padding: 8px 15px;
	color: #333;
	border-radius: 10px;
	text-decoration: none;
	display: block;
}

.dropdown-menu-about>li {
	border: 1px solid #ccc;
	border-radius: 10px;
}

.s-top>li>a {
	font-size: 15px;
	font-weight: 600;
	color: #006633;
}

.dropdown-menu-about .s-nav {
	padding-bottom: 10px;
}

.dropdown-menu-about>li+li {
	margin-top: 15px;
}

.dropdown-item-about:hover {
	background-color: #f8f9fa;
	color: #f60;
}

/* 图文展示区样式 */
.dropdown-banner-col {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 10px;
	border-left: 1px solid #eee;
}

.dropdown-banner-col:last-child {
	border-right: none;
}

.banner-img {
	width: 100%;
	max-width: 200px;
	height: auto;
	border-radius: 8px;
	margin-bottom: 10px;
}

.banner-text {
	text-align: center;
	font-size: 14px;
	color: #666;
	line-height: 1.5;
}

.banner-title {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 5px;
}

.dropdown-level3-wrap {
	display: none;
	position: absolute;
	left: 100%;
	top: 0;
	background: #fff;
	border: 1px solid #eee;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 10px 15px;
	min-width: 200px;
	z-index: 1060;
	pointer-events: auto;
	transition: all 0.2s ease;
}

.dropdown-level3-item {
	padding: 8px 0;
	color: #333;
	text-decoration: none;
	display: block;
}

.dropdown-level3-item:hover {
	color: #f60;
}

.dropdown-item-level2 {
	position: relative;
	padding: 8px 15px;
	color: #333;
	border: 1px solid #ccc;
	border-radius: 10px;
	text-decoration: none;
	display: block;
	margin: 12px 0;
	padding: 8px 15px;
	font-size: 14px;
	z-index: 1055;
}

.dropdown-item-level2:hover {
	background-color: #f8f9fa;
	color: #f60;
}

.dropdown-item-level2:hover .dropdown-level3-wrap,
.dropdown-level3-wrap:hover {
	display: block;
}

.level3-active {
	color: #f60;
	font-weight: 600;
}

/* 桌面端下拉菜单悬停展开（通用） */
@media (min-width: 992px) {
	.nav-item.dropdown:hover .dropdown-menu-level2 {
		display: block;
	}

	.nav-item.dropdown:hover .dropdown-menu-about {
		display: block;
	}

	.nav-item.dropdown .nav-link.dropdown-toggle::after {
		transition: transform 0.2s;
	}

	.nav-item.dropdown:hover .nav-link.dropdown-toggle::after {
		transform: rotate(180deg);
	}
}

/* 响应式适配 */
/* 平板（768px-991px）：三列→两列+图文占整行 */
@media (max-width: 991px) {
	.dropdown-menu-level2 {
		width: 600px;
		left: 0 !important;
		transform: translateX(0) !important;
	}

	.dropdown-menu-level2 .col-md-4 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.dropdown-banner-col {
		border-left: none;
		border-top: 1px solid #eee;
		margin-top: 15px;
		padding-top: 15px;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.dropdown-menu-about {
		left: 0 !important;
		transform: translateX(0) !important;
	}

	/* 平板端调整body的padding-top，适配导航高度变化 */
	body {
		padding-top: 65px;
	}
}

/* 手机（<768px）：三列→单列 */
@media (max-width: 767px) {
	.dropdown-menu-level2 {
		width: 95vw;
	}

	.dropdown-menu-level2 .col-md-4 {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.banner-img {
		max-width: 150px;
	}

	.dropdown-banner-col {
		border-left: none;
	}

	/* 手机端调整body的padding-top，适配折叠导航 */
	body {
		padding-top: 60px;
	}
}

.nav-mb {
	padding: 15px 0 20px 25px;
}

/* ====================== 核心：自定义圆形箭头 ====================== */
.swiper-button-prev,
.swiper-button-next {
	width: 45px;
	height: 45px;
	background: #fff;
	border: 1px solid var(--theme-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	transition: all 0.5s;
}

/* 鼠标悬浮样式（可选） */
.swiper-button-prev:hover,
.swiper-button-next:hover {
	background: var(--theme-color);
	color: #fff;
	opacity: 1;
}

/* 自定义箭头图标大小+颜色 */
.swiper-button-prev::after,
.swiper-button-next::after {
	font-size: 18px;
	color: var(--theme-color);
	font-weight: bold;
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
	color: #fff;
}

/* 分页指示器：改成长方形 */
.swiper-pagination-bullet {
	width: 20px;
	height: 6px;
	border-radius: 3px;
	background: #ccc;
	opacity: 1;
	margin: 0 4px !important;
}

/* 激活态指示点 */
.swiper-pagination-bullet-active {
	background: var(--theme-color);
}

.pro-logo {
	font-size: 32px;
	font-weight: 700;
	color: #006633;
	margin-bottom: 12px;
	text-shadow: 0 0 10px rgba(74, 222, 128, 0.2);
}

.pro-subtitle {
	font-size: 16px;
	color: #94a3b8;
	max-width: 900px;
	margin: 0 auto;
	opacity: 0.9;
}

/* 标题美化 */
.section-title {
	font-size: 28px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 40px;
	text-align: center;
	position: relative;
}

.section-title::after {
	content: '';
	width: 80px;
	height: 3px;
	background: #0A7C5A;
	display: block;
	margin: 12px auto 0;
	border-radius: 3px;
}

/* 卡片容器：包裹表格，提升质感 */

.pro-new .product-card {
	background: #111827;
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
	overflow: hidden;
	border: 1px solid #1e293b;
}

/* 产品系列标签：美化+微动效 */
.series {
	display: inline-block;
	padding: 7px 12px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 13px;
	transition: all 0.2s ease;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
	white-space: nowrap;
	/* 禁止标签换行 */
}

.series:hover {
	/* transform: translateY(-4px); */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.series-adu {
	background: #065736;
	color: #4ade80;
}

.series-awu {
	background: #273c7a;
	color: #93c5fd;
}

.series-atu {
	background: #5b3475;
	color: #c4b5fd;
}

.series-cockpit {
	background: #6d3f25;
	color: #fdba74;
}

.series-parts {
	background: #475569;
	color: #cbd5e1;
}

/* 应用场景标签：美化 */
.scene-badge {
	background: #1e293b !important;
	color: var(--whitec) !important;
	font-size: 12px;
	padding: 8px 8px;
	margin: 3px 2px;
	border-radius: 6px;
	transition: all 0.2s ease;
	white-space: nowrap;
	/* 禁止标签换行 */
}

.scene-badge:hover {
	background: #2d3748 !important;
	color: var(--color-yellow) !important;
}

/* ======表格样式：全方位优化 =======*/
.pro-new .product-table {
	margin: 0;
	width: 100%;
}

.product-table thead {
	background: linear-gradient(90deg, #162236 0%, #1e293b 100%);
}

.product-table th {
	background-color: var(--theme-color);
	color: var(--whitec);
	font-weight: 600;
	text-align: center;
	padding: 20px 15px;
	border: 1px solid var(--theme-color);
	font-size: 15px;
	white-space: nowrap;
	/* 表头禁止换行 */
}

.product-table td {
	color: #444;
	border-top: 1px solid #1e293b;
	padding: 20px 15px;
	vertical-align: middle;
	font-size: 14px;
}

.product-table td:first-child {
	text-align: center;
}

.product-table tbody tr {
	transition: all 0.3s ease;
	cursor: pointer;
}

.pro-new .product-table tbody tr:hover {
	background: #1f2937;
	transform: scale(1.01);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 空单元格样式优化 */
.pro-new .empty-cell {
	color: #64748b;
	font-style: italic;
}

/* 产品图片样式 */
.product-main-img {
	border-radius: 16px;
	transition: 0.3s;
}

.product-main-img:hover {
	transform: scale(1.02);
}

/* 按钮样式 */
.btn-primary-custom {
	background-color: #0A7C5A;
	border: 1px solid #0A7C5A;
	border-radius: 8px;
	padding: 12px 30px;
	color: white;
}

.btn-primary-custom:hover {
	border: 1px solid #0A7C5A;
	color: #0A7C5A;
}

/* 模块间距 */
.section {
	padding: 60px 0;
}

/* ========-------index 2-----------------===== */
.pro-index2 .section-title {
	color: #006633;
	font-weight: bold;
	margin: 40px 0 20px;
	padding-left: 12px;
	font-size: 20px;
}

.pro-index2 .son-icon {
	font-size: 10px;
	color: var(--color-yellow);
	top: 0;
}

.pro-index2 .product-table .bg-lv {
	background-color: #006633;
}

.pro-index2 .product-table .bg-yellow {
	background-color: var(--color-yellow);
}

/* 表格容器 - 小设备自动横向滚动，完美适配 */
.pro-index2 .table-container {
	overflow-x: auto;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	margin-bottom: 30px;
}

/* 表格样式 */
.pro-index2 .product-table {
	margin: 0;
	min-width: 800px;
}

.pro-index2 .sonth th {
	background-color: #e9ecef;
	color: var(--color-dark);
}

.pro-index2 .product-table th {
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
}

.pro-index2 .product-table td {
	text-align: center;
	vertical-align: middle;
	background: #fff;
}

/* ====== product list 桌面端侧边栏（保持不变） ========= */
.pro-list {}

.pro-list .filter-sidebar {
	background-color: var(--light-gray);
	padding: 24px;
	height: 100%;
	border: 1px solid #E5E6EB;
	border-radius: 8px;
}

.pro-list .sidebar-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 16px;
	color: var(--dark-text);
}

.pro-list .filter-list .nav-link {
	color: var(--gray-text);
	padding: 8px 0;
	font-size: 14px;
	transition: color 0.2s;
}

.filter-list .nav-link.active {
	color: var(--huawei-blue);
	background: transparent;
	font-weight: 500;
}

.filter-list .nav-link:hover {
	color: var(--huawei-blue);
}

/* === 移动端折叠筛选面板（核心优化） === */
.pro-list .mobile-filter {
	display: none;
	margin-bottom: 20px;
}

.pro-list .accordion-button {
	background-color: #fff !important;
	color: var(--dark-text) !important;
	font-size: 15px;
	font-weight: 500;
	box-shadow: none !important;
	border: 1px solid #E5E6EB !important;
}

.pro-list .accordion-button::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23007DFF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.pro-list .accordion-body {
	border: 1px solid #E5E6EB;
	border-top: 0;
	padding: 16px;
}

/* 产品卡片 */
.pro-list .product-item {
	border: 1px solid #E5E6EB;
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

.product-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	border-color: var(--huawei-blue);
}

.pro-list .product-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	background-color: var(--light-gray);
}

.pro-list .pro-listx .product-img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	background-color: var(--light-gray);
}

.pro-list .product-info {
	padding: 20px;
}

.pro-list .product-title a {
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 12px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.pro-list .product-platform {
	font-size: 13px;
	color: var(--gray-text);
}

.pro-list .platform-tag {
	display: inline-block;
	padding: 2px 8px;
	background-color: rgba(0, 125, 255, 0.1);
	color: var(--huawei-blue);
	border-radius: 4px;
	font-size: 12px;
	margin-left: 4px;
}

.yc-lpj ul li {
	line-height: 30px;
	height: 30px;
}

/* 响应式规则 */
@media (max-width: 768px) {

	/* 小屏隐藏桌面侧边栏，显示移动端折叠筛选 */
	.filter-sidebar {
		display: none !important;
	}

	.mobile-filter {
		display: block !important;
	}

	.container {
		padding-left: 16px;
		padding-right: 16px;
	}

	main {
		padding-top: 24px !important;
		padding-bottom: 24px !important;
	}
}

/* ====================================== */
/* 移动端终极优化（核心修改部分） */
/* ====================================== */
@media (max-width: 768px) {
	.pro-logo {
		font-size: 24px;
	}

	.pro-subtitle {
		font-size: 14px;
		line-height: 1.5;
	}

	/* 标题精简 */
	.section-title {
		font-size: 22px;
		margin-bottom: 20px;
	}

	/* 表格核心优化：解决拥挤、错乱 */
	.product-table th,
	.product-table td {
		/* 极小内边距，节省空间 */
		padding: 10px 5px !important;
		/* 极小字体，适配手机 */
		font-size: 11px !important;
		line-height: 1.4;
	}

	/* 产品标签移动端极致缩小 */
	.series {
		padding: 3px 6px !important;
		font-size: 10px !important;
		border-radius: 4px;
	}

	/* 场景标签移动端极致缩小 */
	.scene-badge {
		padding: 2px 4px !important;
		font-size: 9px !important;
		margin: 1px !important;
	}

	/* 取消移动端行放大效果，防止布局错乱 */
	.product-table tbody tr:hover {
		transform: none !important;
	}

	/* 卡片圆角缩小，更贴合手机 */
	.product-card {
		border-radius: 8px;
	}
}

/* 小屏手机（<375px）额外优化 */
@media (max-width: 375px) {
	.series {
		font-size: 9px !important;
	}

	.product-table th,
	.product-table td {
		font-size: 10px !important;
	}
}

/*================= solutions area start  =================*/
/* 所有设备固定：左文右图 */
.s-index .card-item {
	display: flex;
	align-items: center;
	/* 文字 + 图片 垂直居中 */
	gap: 12px;
	padding: 12px;
	border-radius: 8px;
	background: #f8f9fa;
}

/* 文字区域占满剩余宽度 */
.s-index .card-text {
	flex: 1;
	min-width: 0;
	/* 必须加，否则文字无法省略 */
}

/* 描述文字：最多3行，超出... */
.s-index .desc {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.5;
}

/* 固定图片大小 */
.s-index .card-img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 6px;
	flex-shrink: 0;
	/* 图片不被挤压 */
}

.s-class {
	background-color: var(--theme-color);
}

/* 横幅区域 */
.hero-banner {
	min-height: 65vh;
	background: linear-gradient(90deg, var(--theme-color), var(--color-dark));
	color: white;
	display: flex;
	align-items: center;
	color: var(--whitec);
}

.solution-4 {
	font-size: 42px;
	color: #fff;
}

/* 卡片样式 */
.solution-card {
	transition: all 0.3s;
	border: none;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.solution-card:hover {
	transform: translateY(-5px);
}

/* 模块间距 */
.section {
	padding: 60px 0;
}

.bg-light {
	background-color: var(--light-bg) !important;
}

.btn-huawei {
	background-color: var(--huawei-blue);
	color: white;
}

.btn-huawei:hover {
	background-color: var(--huawei-dark-blue);
	color: white;
}

.solution-list-card {
	border: none;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
	transition: 0.3s;
}

.solution-list-card p {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	/* 限制行数：3行 */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	/* 超出显示省略号 */
	word-break: break-all;
	/* 英文自动换行，防止撑破容器 */
	font-size: 13px;
}

.card-title a {
	font-size: 17px;
	line-height: 35px;
	height: 35px;
}

.solution-list-card:hover {
	transform: translateY(-3px);
}

.card-img-top {
	height: 180px;
	object-fit: cover;
}

.btn-huawei {
	background-color: var(--huawei-blue);
	color: white;
}

.btn-huawei:hover {
	background-color: var(--huawei-dark-blue);
	color: white;
}

.filter-bar {
	background-color: #fff;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.sarticle .detail-header {
	background-color: #f8f9fa;
	padding: 30px;
	border-radius: 8px;
}

.sarticle h3 {
	font-size: 18px;
}

.sarticle h6 {
	font-size: 16px;
}

.sarticle img {
	max-width: 1000px;
	text-align: center;
}

.sarticle .feature-item {
	text-align: center;
	padding: 20px;
}

.sarticle .scene-card {
	border: none;
	background: #fff;
	box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}

.btn-huawei {
	background-color: var(--huawei-blue);
	color: white;
}

.btn-huawei:hover {
	background-color: var(--huawei-dark-blue);
	color: white;
}

.hex-card {
	display: flex;
	align-items: center;
	margin-bottom: 2rem;
}

.hex-card .section-title {
	font-size: 20px;
	color: var(--color-yellow);
}

.hex-img {
	flex: 0 0 auto;
	margin-right: 1.5rem;
}

.hex-img img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 10px;
	/* 模拟六边形视觉（原图是六边形，这里用圆角近似） */
}

.content-list {
	list-style-type: disc;
	padding-left: 1.5rem;
	color: #333333;
	line-height: 1.8;
}

/* 响应式适配：小屏幕下图片和文字垂直排列 */
@media (max-width: 768px) {
	.hex-card {
		flex-direction: column;
		text-align: center;
	}

	.hex-img {
		margin-right: 0;
		margin-bottom: 1rem;
	}

	.content-list {
		list-style-position: inside;
		padding-left: 0;
	}
}

.badge {
	padding: 8px 10px;
}

/* 自定义样式匹配原图视觉 */
.table-title {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 1rem;
}

.table thead th {
	background-color: #217d74;
	/* 匹配原图绿色表头 */
	color: white;
	border: 1px solid #dee2e6;
}

.table tbody td {
	vertical-align: middle;
	border: 1px solid #dee2e6;
	font-size: 14px;
}

/* 隔行背景色优化可读性 */
.table tbody tr:nth-child(odd) td {
	background-color: #f8f9fa;
}

.table tbody tr:nth-child(even) td {
	background-color: #e9ecef;
}

/*======== blog left area start  ==========*/
.yblog_left {
	padding: 20px 0 35px;
}

.inner_yblog_form {
	position: relative;
	padding: 20px 0 20px;
	box-shadow: 0 0 20px 0 rgb(0 0 0 / 5%);
}

.inner_yblog_form input {
	width: 90%;
	outline: none;
	height: 55px;
	border: 1px solid #efefef;
	margin-left: 20px;
	padding-left: 20px;
}

.inner_yblog_form button {
	position: absolute;
	right: 0;
	display: inline-block;
	outline: none;
	border: none;
	padding: 15px 20px 14px;
	background-color: #dddddd;
}

.inner_yblog_form button i {
	font-size: 18px;
}

/* inner  left title css */
.inner_yblog_left_title {
	margin: 0px 0 30px;
	width: 100%;
	padding: 20px 20px 15px;
	box-shadow: 0 0 20px 0 rgb(0 0 0 / 5%);
}

.inner_yblog_left_title h2 {
	margin-bottom: 20px;
	padding-bottom: 10px;
	position: relative;
}

.inner_yblog_left_title h2::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 26%;
	border-radius: 50%;
	border: 1px solid var(--brcolor);
}

.inner_yblog_left_title a {
	display: inline-block;
	margin-top: 15px;
	font-weight: 400;
}

.inner_yblog_left_title a.bottom {
	border-bottom: none;
}

.inner_yblog_left_title a i {
	font-weight: 600;
}

/* innr blog left style 2 css*/
.inner_yblgo_left_style2 a {
	display: inline-block;
	width: 100%;
	border-bottom: 1px solid #dddddd;
	padding: 13px 0 12px;
	margin-top: 0;
}

/* blog left inner css */
.yblog_left_inner {
	margin-bottom: 30px;
	border-bottom: none !important;
	overflow: hidden;

}

.yblog_left_sub {
	padding: 25px 20px 3px !important;
}

.yblog_left_inner:hover .inner_blog_img img {
	transform: scale(1.2);
}

.yblog_left_text_sub {
	padding: 0px 0 10px;
	font-size: 13px;
}

.yblog_left_sub p {
	font-size: 16px;
	font-weight: 400;
	width: 95%;
}

.yblog_left_sub>a {
	display: inline-block;
	margin: 7px 0 0;
	padding: 7px 25px;
	border: 1px solid #dddddd;
	font-size: 16px;
	font-weight: 400;
	color: var(--paracolor);
	text-transform: capitalize;
}

.yblog_left_sub>a:hover {
	background-color: var(--brcolor);
	color: var(--whitec);
}

.ycalender_inner h5 {
	padding: 14px 0 12px;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 2px;
	width: 100%;
	margin: 0;
}

.ycalender_inner {
	padding: 20px 20px;
	width: 100%;
}

.ycalender_inner th {
	text-align: center;
	border: 1px solid #dddddd;
	padding: 10px 16px;
	font-size: 15px;
	font-weight: 700;
}

.ycalender_inner td {
	text-align: center;
	border: 1px solid #dddddd;
	padding: 10px 12px;
	font-size: 14px;
	font-weight: 400;
}

/*======== blog left area end  ==========*/

/*======== single blog page area start  ==========*/
.inner_single_box_area {
	background-color: #f8f9fa;
	padding: 20px 20px 20px;
}

.inner_single_box_area p {
	margin-bottom: 5px;
	color: var(--theme-color);
}

.inner_single_page_content_area p {
	margin-top: 20px;
	line-height: 30px;
}

/* inner single page middle text css */
.inner_single_page_middle_text {
	margin: 35px 0 45px;
}

.inner_single_page_middle_text h2 {
	font-size: 24px;
}

/* single blog group css */
.single_blog_group {
	margin-top: 125px;
}

.inner_single_blog_group_box {
	background-color: #f8f9fa;
	padding: 10px 20px 30px;
	margin-top: 30px;
}

.inner_single_blog_group_box p {
	font-size: 1.5em;
	font-style: italic;
	margin-bottom: 0;
}

.inner_single_blog_group_box span {
	font-size: 1.125em;
	font-weight: 400;
	color: var(--paracolor);
}

.single_blog_post_area {
	margin: 80px 0 30px;
	padding: 25px 0 25px;
	border-top: 1px solid var(--textcolor);
	border-bottom: 1px solid var(--textcolor);
}

.single_blog_post_area p {
	margin: 0;
}

.single_blog_post_area a {
	color: var(--paracolor);
	font-size: 16px;
	font-weight: 400;
}

/* single comment title css */
.single_comment_title {
	margin: 35px 0 55px;
}

.single_comment_title h3 {
	font-size: 20px;
}

.inner_sin_com_form input {
	width: 100%;
	height: 42px;
	padding: 0 20px;
	border: 1px solid #ced4da;
	border-radius: 5px;
	margin-right: 20px;
	margin-bottom: 20px;
}

.inner_sin_com_form textarea {
	width: 100%;
	padding: 10px 20px;
	height: 150px;
	margin-top: 15px;
	margin-bottom: 15px;
	border: 1px solid #ced4da;
	border-radius: 5px;
}

.inner_sin_com_btn button {
	display: inline-block;
	text-align: center;
	padding: 16px 30px;
	margin-top: 5px;
	border-radius: 5px;
	border: none;
	transition: .6s;
}

/*======= style 2 shop area end  =======*/

/* ====== my accout area start ====== */
.inner_my_accout_main h4 {
	font-size: 22px;
	margin-bottom: 33px;
}

/* inner my accout area css */
.inner_my_accout_area {
	border: 1px solid #e4e4e4;
	padding: 25px 25px 35px;
	border-radius: 5px;
}

.inner_accout_form>input {
	width: 100%;
	outline: none;
	border: 1px solid #e4e4e4;
	border-radius: 2px;
	height: 40px;
	padding-left: 20px;
	margin-bottom: 15px;
}

.inner_my_accout_form_btn a {
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	padding: 5px 16px;
	border-radius: 2px;
	margin-right: 10px;
	font-family: Roboto, sans-serif;
}

.inner_my_accout_form_btn span {
	font-weight: 400;
}

.inner_my_accout_lost_pass {
	margin-top: 10px;
}

.inner_my_accout_lost_pass a {
	font-size: 16px;
	font-weight: 400;
}

.portfolio_nav ul li {}

.portfolio_nav ul li.current_menu_item,
.portfolio_nav ul li:hover {
	background-color: var(--brcolor);
	color: var(--whitec);
}

.portfolio_nav ul li:hover a {
	color: var(--whitec);
}

/* ======= my accout area end ==== */

/* 子导航容器 */
.son-nav {
	margin: 20px 0;
	overflow: hidden;
}

/* 清除默认样式 */
.son-nav-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	/* 栏目间距 */
}

/* 每个子栏目：一排4个 */
.son-nav-item {
	/* 自动等分4份 */
	box-sizing: border-box;
	border: 1px solid #ccc;
	padding: 5px 10px;
}

/* 栏目链接样式 */
.son-nav-link {
	display: block;
	text-align: center;
	padding: 10px 0;
	background: #f5f5f5;
	color: #333;
	text-decoration: none;
	border-radius: 4px;
}

/* 当前栏目高亮样式 active */
.son-nav-link.active {
	background: #007bff;
	/* 高亮背景色 */
	color: #fff;
	/* 高亮文字色 */
	font-weight: bold;
}

/* 鼠标悬浮 */
.son-nav-link:hover {
	background: #eee;
}

.son-nav-link.active:hover {
	background: #007bff;
}