@charset "utf-8";
/* 添加 CSS 样式 */

.list__nav ul.flex {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	position: relative;
}

.list__nav ul.flex li {
	position: relative;
	padding: 8px 16px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.list__nav ul.flex li::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #007bff;
	/* 根据你的主题色调整 */
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.list__nav ul.flex li.active::after,
.list__nav ul.flex li:hover::after {
	transform: scaleX(1);
}
/* 移除原来的 hover-block */

.list__nav .hover-block {
	display: none;
}
/* 用户头像和用户信息样式 */

#logged {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
}

.nav-item-user {
	display: flex;
	align-items: center;
	margin-right: 16px;
}

.user_headimg {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	margin-right: 10px;
}
/* 用户信息背景样式 */

.user_id {
	font-size: 14px;
	color: #fff;
	/* 文字颜色 */
	/* padding: 5px 10px; */
	/* 增加内边距，使背景颜色更好看 */
	border-radius: 4px;
	/* 圆角效果 */
}
/* 下拉框样式 */

.dropdown-toggle {
	cursor: pointer;
	color: #fff;
	font-size: 14px;
	position: relative;
}
/* 下拉框箭头 */

.caret {
	margin-left: 5px;
	border-top: 5px solid #fff;
	border-right: 5px solid transparent;
	border-bottom: 0;
	border-left: 5px solid transparent;
	display: block;
}
/* 下拉菜单样式 */

.ul_hide_tag {
	display: none;
	position: absolute;
	top: 100%;
	/* 依旧保持菜单位置 */
	right: 0;
	background-color: #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	padding: 0;
	/* 去除整体内边距 */
	border-radius: 4px;
	min-width: 100px;
	z-index: 1000;
	list-style: none;
	/* 去除默认的列表样式 */
	margin: 0;
	/* 去除外边距 */
}
/* 每个菜单项li的样式 */

.ul_hide_tag li {
	text-align: center;
	padding: 2px 10px;
	/* 设置上下内边距为 2px，左右 10px */
	margin: 0;
	/* 去掉li之间的间距 */
	font-size: 14px;
	/* 设置字体大小 */
	line-height: 2.5;
	/* 减小行高，减少每个li的上下间距 */
	cursor: pointer;
	/* 鼠标悬停时显示为指针 */
}
/* 下拉菜单项链接样式 */

.ul_hide_tag li a {
	color: #333;
	text-decoration: none;
	font-size: 14px;
	display: block;
	padding: 4px 0;
	/* 减少上下的内边距 */
}
/* 鼠标悬停下拉菜单项 */

.ul_hide_tag li a:hover {
	background-color: #f1f1f1;
}
/* 激活下拉菜单 */

.dropdown:hover .ul_hide_tag {
	display: block;
}
/* 鼠标悬停下拉按钮时显示下拉菜单 */

.dropdown:hover .dropdown-toggle {
	color: #3566ff;
}
/* 基础样式 */

body {
	font-family: Arial, sans-serif;
	color: #333;
	background-color: #f9f9f9;
	margin: 0;
	padding: 0;
}
/* 主容器背景 */

.ftco-section.bg-light {
	background-color: #f8f9fa;
	/*padding: 50px 0;*/
}
/* 容器 */

.container {
	max-width: 1200px;
	margin: 0 auto;
}

.container h2 {
	color: #28333d;
	font-size: 36px;
	line-height: 58px;
	text-align: center;
	/*padding-bottom: 48px;*/
}
/* Price Section */

.price-section {
	background-color: #f9f9f9;
	border-radius: 8px;
	margin-top: 20px;
}
/* Section Title */

.price-category {
	margin-bottom: 20px;
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.price-category h2 {
	font-size: 24px;
	font-weight: bold;
	color: #333;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.price-tit {
	font-size: 20px;
	font-weight: bold;
	margin-right: 15px;
}
/* Price Type Links */

.price-types-con a {
	margin-right: 15px;
	font-size: 14px;
	color: #007bff;
	text-decoration: none;
	padding: 5px 10px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.price-types-con a:hover {
	background-color: #f0f8ff;
}

.price-types-con .act {
	color: #fff;
	background-color: #007bff;
	font-weight: bold;
}
/* 图片容器样式 */

.image-container-wrapper {
	border: 1px solid #dee2e6;
	padding: 15px;
	margin-bottom: 20px;
}

.image-container {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: flex-start;
}
/* 单个图片表格样式 */

.single-image-table {
	border-collapse: collapse;
	width: 200px;
	table-layout: fixed;
	border: 1px solid #dee2e6;
	/* 添加表格边框 */
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	/* 添加轻微阴影 */
}

.single-image-table td {
	padding: 0;
	text-align: center;
	border: 1px solid #dee2e6;
	/*height: 90px;*/
	width: 200px;
	vertical-align: middle;
	/* 确保内容垂直居中 */
}

.single-image-table img {
	max-width: 100%;
	max-height: 100%;
	transition: transform 0.3s ease;
	display: block;
	margin: 0 auto;
	object-fit: contain;
	vertical-align: middle;
	/* 确保图片垂直居中 */
}

.single-image-table img:hover {
	transform: scale(1.05);
}
/* 详情表格样式 */

.table {
	width: 100%;
	margin-bottom: 20px;
	border-collapse: collapse;
	table-layout: fixed;
}

.table th,
.table td {
	padding: 12px;
	text-align: center;
	border: 1px solid #ddd;
	color: #666;
}

.table th {
	background-color: #ededed;
	color: #333;
	font-weight: 600;
}

.table-bordered {
	border: 1px solid #ddd;
}
/* 添加悬停效果 */

.detail_40 tbody tr,
.detail_19 tbody tr {
	transition: background-color 0.3s ease;
}

.detail_40 tbody tr:hover,
.detail_19 tbody tr:hover {
	background-color: #f9f9f9;
	/* 悬停时的背景色 */
}

.table-responsived {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
/* 列宽设置 */

.col-type {
	width: 10%;
}

.col-desc {
	width: 40%;
	/* 描述列设置为最宽 */
	/* 添加文本溢出处理 */
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.col-price {
	width: 15%;
}

.col-action {
	width: 10%;
}

.col-doc {
	width: 15%;
}

.col-charge {
	width: 10%;
}
/* 高亮价格 */

.price-highlight {
	color: #e74c3c;
	font-weight: bold;
}

.text-highlight {
	color: #146ef5;
	;
}
/* 链接样式 */

.href_console_tag_class {
	color: #146ef5;
	/* 充值链接颜色改为#146ef5 */
	text-decoration: none;
	font-weight: bold;
}

.href_console_tag_class:hover {
	text-decoration: underline;
}
/* 操作列链接样式 */

.col-action a,
.col-doc a {
	color: #146ef5;
	/* 测试和开发文档链接颜色改为#146ef5 */
	text-decoration: none;
	font-weight: bold;
}

.col-action a:hover,
.col-doc a:hover {
	text-decoration: underline;
}
.applyScene-content .content-right {
	margin-right: auto !important;
}

.applyScene-content .content-right a {
	font-size: inherit !important;  /* 继承父元素的 font-size */
}

.applyScene-content .text-highlight a {
	width: auto !important;
	line-height: auto !important;
	font-size: inherit !important;
	margin-bottom: 0 !important;
	background-color: transparent !important;
	color: inherit !important;
}

/* 响应式设计 */

@media (max-width: 768px) {
	.price-category h2 {
		flex-direction: column;
		align-items: flex-start;
	}
	.price-tit {
		margin-bottom: 10px;
	}
	.price-types-con {
		display: flex;
		flex-wrap: wrap;
	}
	.price-types-con a {
		margin: 5px;
	}
	.image-container {
		justify-content: center;
	}
	.table {
		table-layout: auto;
	}
	.col-type,
	.col-desc,
	.col-price,
	.col-action,
	.col-doc,
	.col-charge {
		width: auto;
	}
	/* 移动端描述列允许换行 */
	.col-desc {
		white-space: normal;
		text-overflow: clip;
	}
}