﻿

/* 主容器样式 */
.hero-container {
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	height: 360px; /* 增加高度以创造更好的视觉效果 */
}

/* 背景区域 */
.hero-background {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}

/* 背景图片样式 */
.hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover; /* 确保图片覆盖整个区域且比例正确 */
	transition: transform 1s ease; /* 添加微小的缩放动画 */
}

/* 图片上的渐变叠加层 */
.overlay-gradient {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.7) 100%);
	z-index: 2;
}

/* 内容区样式 */
.hero-content {
	position: relative;
	width: 100%;
	max-width: 1200px;
	z-index: 3;
	padding: 0 20px;
}

/* 内容包装器，提供更好的对齐 */
.content-wrapper {
	text-align: center;
}

/* 文本组区域 */
.hero-text {
	margin-bottom: 40px;
}

/* 日文字体通用类 */
.japanese-font {
	font-family: 'Noto Sans JP', メイリオ, meiryo, ヒラギノ角ゴ pro w3, hiragino kaku gothic pro, sans-serif;
}

/* 日文字体通用类 */
.cta-container a:hover {
	color: #fff;
}

/* 标题1样式 - 更现代化 */
.home-top-title1 {
	font-size: 25px;
	font-weight: 300;
	color: #ffffff;
	letter-spacing: 0.05em;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
	margin-bottom: 10px;
	opacity: 0;
	animation: fadeInUp 0.6s ease forwards;
}

/* 标题2样式 - 更大胆现代 */
.home-top-title2 {
	font-size: 40px;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-shadow: 0 2px 10px rgba(0,0,0,0.4);
	margin-bottom: 15px;
	opacity: 0;
	animation: fadeInUp 0.6s ease 0.2s forwards;
}

/* 标题3样式 - 清晰简洁 */
.home-top-title3 {
	font-size: 18px;
	font-weight: 400;
	color: #ffffff;
	letter-spacing: 0.2em;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
	opacity: 0;
	animation: fadeInUp 0.6s ease 0.4s forwards;
}

/* CTA按钮容器 */
.cta-container {
	margin-top: 35px;
	text-align: center;
	opacity: 0;
	animation: fadeInUp 0.6s ease 0.6s forwards;
}

/* 现代化CTA按钮样式 */
.cta-button {
	background: linear-gradient(135deg, #ff3636 0%, #ff0000 100%);
	padding: 10px 20px;
	color: #fff;
	font-size: 1.2em;
	font-weight: 600;
	border-radius: 30px;
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

	/* 按钮悬停效果 */
	.cta-button:hover {
		transform: translateY(-3px);
		box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
		background: linear-gradient(135deg, #ff0000 0%, #ff3636 100%);
	}

	/* 按钮按下效果 */
	.cta-button:active {
		transform: translateY(1px);
		box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
	}

/* 箭头图标 */
.arrow-icon {
	margin-left: 10px;
	transition: transform 0.3s ease;
}

/* 按钮悬停时箭头动画 */
.tdb-category-title:hover .arrow-icon {
	transform: translateX(5px);
}

/* 按钮悬停时箭头动画 */
.cta-button:hover .arrow-icon {
	transform: translateX(5px);
}

/* 淡入上移动画 */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 响应式设计 - 平板和桌面 */
@media screen and (min-width: 768px) {
	.hero-container {
		height: 360px;
	}

	.home-top-title1 {
		font-size: 32px;
	}

	.home-top-title2 {
		font-size: 64px;
	}

	.home-top-title3 {
		font-size: 20px;
	}

	.hero-container:hover .hero-image {
		transform: scale(1.05); /* 鼠标悬停时微小缩放效果 */
	}
}

/* 大屏幕响应式 */
@media screen and (min-width: 1200px) {
	.home-top-title1 {
		font-size: 32px;
	}

	.home-top-title2 {
		font-size: 72px;
	}

	.home-top-title3 {
		font-size: 18px;
	}
}

.five-pictures-title {
	text-align: center;
	font-size: 1.4em;
}

@media screen and (min-width: 768px) {
	.five-pictures-title {
		text-align: center;
		font-size: 3em;
	}
}

.five-pictures-all {
	width: auto;
	margin: 0 auto;
}

@media screen and (min-width: 1200px) {
	.five-pictures-all {
		width: 1360px;
		margin: 0 auto;
	}
}

.footer-apply-free {
	width: auto;
	text-align: center;
	margin: 0 auto;
}

@media screen and (min-width: 992px) {
	.footer-apply-free {
		width: 1200px;
		text-align: center;
		margin: 0 auto;
	}
}

.home-report-in {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	top: 100px;
	margin: 0 auto;
	color: #fff;
	text-align: center;
	font-family: メイリオ,meiryo,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,sans-serif;
}

@media screen and (min-width: 992px) {
	.home-report-in {
		position: absolute;
		bottom: 0;
		right: 0;
		left: 0;
		top: 100px;
		width: 1200px;
		margin: 0 auto;
		color: #fff;
		text-align: center;
		font-family: メイリオ,meiryo,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,sans-serif;
	}
}

.home-report-in-image {
	margin-top: 50px;
	background-color: #fff;
}

@media screen and (min-width: 992px) {
	.home-report-in-image {
		margin-top: 50px;
		background-color: #fff;
		width: 1200px;
	}
}

.search-data {
	position: absolute;
	left: 0px;
	right: 0;
	margin: auto;
	height: 50px;
	width: 150px;
	background-color: #5f9bec;
	font-size: 20px;
	font-weight: bold;
}

	.search-data a p {
		line-height: 50px;
		color: #ffffff;
	}

.a3 {
	position: relative;
	padding-top: 3%;
	padding: 30px 36px 30px 36px;
}

.layui-col-sm6 .a2 img {
	padding-right: 10%;
	padding: 45px;
}

.layui-col-sm6 .a2 ul {
	float: right;
	padding-top: 5%;
	padding-right: 10%;
}

.layui-col-md4 {
	width: 33%;
}

.content .pic {
	width: 43px;
	height: 80px;
	margin-top: 12%;
	margin-left: 10%;
}

.content ol {
	position: absolute;
	top: 22%;
	left: 38%;
}

	.content ol li a {
		line-height: 28px;
	}

.a1:hover {
	transform: scale(1.05);
}



.hide .hidden span {
	font-weight: bolder;
	line-height: 22px;
	font-size: 15px;
}


.hidden ul {
	margin-top: -10px;
	font-size: 14px;
	margin-top: -18px;
}

#div_m1 .hidden ul li a,
#div_m2 .hidden ul li a,
#div_m3 .hidden ul li a,
#div_m4 .hidden ul li a {
	color: #063d8e;
	font-size: 12px;
}

.table_baogao tr td {
	height: 15px;
	text-align: left;
	width: 33%;
}

.layui-carousel-ind ul {
	display: none !important;
}

/*新*/
.c-container {
	max-width: 1200px;
	margin: 0 auto
}

.c-container_aboutus {
	max-width: 1500px;
	margin: 0 auto
}

.c-container-md {
	max-width: 1100px;
	margin: 0 auto
}

.c-container-sm {
	max-width: 800px;
	margin: 0 auto
}

.c-round-tag {
	display: inline-block;
	box-sizing: border-box;
	text-align: center;
	background: #fff;
	font-size: 1.3rem;
	border-radius: 20px;
	margin: 5px;
}

@media print {
	.c-round-tag {
		font-size: 1.3rem
	}
}

@media screen and (min-width: 768px) {
	.c-round-tag {
		height: 60px;
		line-height: 60px;
		font-size: 1.5rem
	}
}

.c-tag-list, .c-tag-list--thinGap {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	/*gap: 5px*/
}

@media screen and (min-width: 768px) {
	.c-tag-list, .c-tag-list--thinGap {
		grid-template-columns: repeat(auto-fit, minmax(224px, 1fr));
		/*gap: 15px 20px*/
	}
}

/*.c-tag-list--thinGap {
    gap: 10px 5px
}*/

@media screen and (min-width: 768px) {
	.c-tag-list--thinGap {
		/*grid-template-columns: repeat(auto-fit, minmax(195px, 1fr))*/
		font-family: "Noto Sans JP",sans-serif;
	}
}

.new_style_fontfamily {
	font-family: "楷体","楷体_GB2312";
}


/* 数据下拉面板相关 ↓ */
/* 基础样式设置 */
.five-pictures {
	position: relative; /* 设置为相对定位，作为内部绝对定位元素的参考点 */
	overflow: hidden; /* 确保溢出内容被隐藏，以支持悬停效果 */
	width: 100%; /* 宽度设为100% */
	height: 100%; /* 高度设为100% */
	border-radius: 5px; /* 添加圆角效果，使其更时尚 */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 添加阴影效果，增加立体感 */
	transition: all 0.3s ease; /* 添加过渡效果，使变化更平滑 */
	cursor: pointer; /* 鼠标悬停时显示手型指针 */
}

/* 图片样式 */
.five-pictures-img {
	width: 100%; /* 图片宽度设为100% */
	height: 100%; /* 图片高度设为100% */
	object-fit: cover; /* 保持图片比例，覆盖整个容器 */
	display: block; /* 设置为块级元素 */
	transition: transform 0.5s ease; /* 图片放大效果的过渡 */
}

/* 原有的search-data样式 */
.search-data {
	position: absolute; /* 绝对定位 */
	bottom: 0; /* 定位在底部 */
	left: 0; /* 定位在左侧 */
	width: 100%; /* 宽度100% */
	background-color: rgba(0, 0, 0, 0.7); /* 半透明黑色背景 */
	color: white; /* 文字颜色设为白色 */
	text-align: center; /* 文字居中 */
	box-sizing: border-box; /* 盒模型设置 */
	z-index: 3;
}

/* 悬停面板样式 */
.hover-panel {
	position: absolute; /* 绝对定位 */
	top: 0; /* 定位在顶部 */
	left: 0; /* 定位在左侧 */
	width: 100%; /* 宽度100% */
	height: 100%; /* 高度100% */
	background-color: rgba(41, 128, 185, 0.85); /* 时尚的蓝色半透明背景 */
	color: white; /* 文字颜色设为白色 */
	display: flex; /* 使用弹性布局 */
	flex-direction: column; /* 垂直方向排列 */
	justify-content: flex-start; /* 从顶部开始布局 */
	align-items: center; /* 水平居中 */
	opacity: 0; /* 初始时完全透明 */
	transform: translateY(100%); /* 初始时向下平移100% */
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* 使用贝塞尔曲线使过渡更生动 */
	padding: 20px 15px; /* 内边距 */
	box-sizing: border-box; /* 盒模型设置 */
	z-index: 10; /* 确保面板显示在最上层 */
	text-align: center; /* 文字居中 */
	overflow-y: auto; /* 允许垂直滚动 */
}

/* 鼠标悬停时显示面板 */
.five-pictures:hover .hover-panel {
	opacity: 1; /* 鼠标悬停时显示面板 */
	transform: translateY(0); /* 重置平移，面板回到原位 */
}

/* 鼠标悬停时图片效果 */
.five-pictures:hover .five-pictures-img {
	transform: scale(1.1); /* 图片轻微放大，增加视觉效果 */
}

/* 链接样式 */
.hover-panel a {
	color: white; /* 链接颜色设为白色 */
	text-decoration: none; /* 移除下划线 */
	margin-top: 10px; /* 上边距 */
	position: relative; /* 相对定位，用于添加悬停效果 */
	padding: 5px 8px; /* 上下内边距 */
	font-size: 14px;
}

	/* 链接悬停效果 */
	.hover-panel a:hover {
		color: #044093; /* 鼠标悬停时链接变为深蓝色 */
	}

/* 面板标题样式 */
.hover-panel h3 {
	margin: 0 0 15px 0; /* 外边距 */
	font-size: 1.5em; /* 字体大小 */
	align-self: center; /* 水平居中 */
	padding-bottom: 10px; /* 底部内边距 */
	border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* 添加底部边框 */
	width: 100%; /* 宽度100% */
	text-align: center; /* 文字居中 */
}

/* 面板内容样式 */
.hover-panel p {
	margin: 0 0 20px 0; /* 外边距 */
	font-size: 1em; /* 字体大小 */
	line-height: 1.6; /* 行高 */
}

/* 按钮样式 */
.hover-panel .btn {
	background-color: transparent; /* 透明背景 */
	border: 2px solid white; /* 白色边框 */
	color: white; /* 文字颜色设为白色 */
	padding: 8px 20px; /* 内边距 */
	border-radius: 25px; /* 圆角 */
	text-transform: uppercase; /* 文字转为大写 */
	letter-spacing: 1px; /* 字间距 */
	font-weight: bold; /* 加粗文字 */
	transition: all 0.3s ease; /* 过渡效果 */
	cursor: pointer; /* 鼠标指针变为手形 */
	margin-top: 15px; /* 上边距 */
	font-size: 0.9em; /* 字体大小 */
}

	/* 按钮悬停效果 */
	.hover-panel .btn:hover {
		background-color: white; /* 背景变为白色 */
		color: #2980b9; /* 文字颜色变为蓝色 */
	}

/* 数据列表样式 */
.data-list {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: left;
	display: flex;
	flex-direction: row;
	gap: 8px;
	overflow-y: auto;
	width: 100%;
	flex-wrap: wrap;
}

.data-item {
	margin-bottom: 0;
}

.data-link {
	color: white;
	text-decoration: none;
	display: block;
	padding: 8px 12px;
	border-radius: 5px;
	background-color: rgba(255, 255, 255, 0.15);
	transition: all 0.3s ease;
	font-size: 0.95em;
	position: relative;
	padding-left: 30px;
}

	.data-link:hover {
		background-color: rgba(255, 255, 255, 0.25);
		transform: translateX(5px);
	}

	.data-link.disabled {
		color: rgba(255, 255, 255, 0.6);
		cursor: not-allowed;
	}

		.data-link.disabled:hover {
			background-color: rgba(255, 255, 255, 0.1);
			transform: none;
		}

.data-icon {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 0.8em;
	opacity: 0.8;
}

	.data-icon.lock {
		font-size: 0.7em;
	}

/* 无数据时的样式 */
.no-data {
	color: rgba(255, 255, 255, 0.7);
	font-style: italic;
	text-align: center;
	width: 100%;
}

/* 滚动条样式 */
.data-list::-webkit-scrollbar {
	width: 5px;
}

.data-list::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
}

.data-list::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.3);
	border-radius: 10px;
}

	.data-list::-webkit-scrollbar-thumb:hover {
		background: rgba(255, 255, 255, 0.5);
	}

/* 同样为hover-panel添加滚动条样式 */
.hover-panel::-webkit-scrollbar {
	width: 5px;
}

.hover-panel::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
}

.hover-panel::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.3);
	border-radius: 10px;
}

	.hover-panel::-webkit-scrollbar-thumb:hover {
		background: rgba(255, 255, 255, 0.5);
	}
/* 数据下拉面板相关 ↑ */


/* 行业区块右侧悬停面板样式 */
/* 使用特定的选择器避免与现有样式冲突 */

/* 行业容器相对定位 */
.industry-container {
	position: relative !important;
	z-index: 100 !important;
}

@media screen and (min-width: 768px) {
	.industry-side-panel {
		width: 350px !important; /* 面板宽度 */
	}
}











/* 行业容器相对定位 */
.industry-container {
	position: relative !important;
	z-index: 100 !important;
}

/* TDB风格右侧悬停面板 */
.tdb-side-panel {
	position: absolute !important;
	top: 0 !important;
	left: 100% !important;
	width: 950px !important;
	height: auto !important; /* 自适应高度 */
	background-color: #E6E8EF !important; /* TDB风格白底 */
	color: #333333 !important; /* 深灰色文字 */
	border-radius: 0 !important; /* 方正设计 */
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important; /* 轻微阴影 */
	z-index: 9999 !important;
	opacity: 0 !important;
	visibility: hidden !important;
	transform: translateX(-20px) !important;
	transition: all 0.25s ease !important;
	overflow: hidden !important;
	margin-left: 10px !important;
	border-radius: 20px !important;
	padding: 10px;
}

	/* 悬停时显示面板 - 现在由JavaScript控制 */
	/* #industry_hover_div:hover + .tdb-side-panel,
	.tdb-side-panel:hover {
		opacity: 1 !important;
		visibility: visible !important;
		transform: translateX(0) !important;
	} */

/* 面板标题区 */
.tdb-panel-header {
	padding: 12px 10px !important;
	font-size: 16px !important;
	font-weight: bold !important;
	background-color: #E6E8EF !important;
	color: #000 !important;
	text-align: left !important;
}

/* 面板主体区 */
.tdb-panel-body {
	padding: 0 !important;
}

/* 标签和内容容器 */
.tdb-tab-container {
	display: flex !important;
	flex-direction: row !important;
	gap: 10px;
}

/* 左侧标签导航 */
.tdb-tab-nav {
	width: 140px !important;
	background-color: #E6E8EF !important; /* 浅灰色背景 */
}

/* 标签项 */
.tdb-tab-item {
	padding: 15px 10px !important;
	cursor: pointer !important;
	font-size: 14px !important;
	text-align: left !important;
	color: #333333 !important;
}

	/* 标签项悬停效果 */
	.tdb-tab-item:hover {
		color: #044093 !important;
		border-radius: 7px !important;
		font-weight: bold !important;
	}

	/* 激活的标签项 */
	.tdb-tab-item.tdb-tab-active {
		background-color: #FFFFFF !important;
		color: #044093 !important;
		font-weight: bold !important;
		border-right: 1px solid #FFFFFF !important;
		margin-right: -1px !important; /* 抵消右边框，覆盖分隔线 */
		border-radius: 7px;
	}

/* 右侧内容区 */
.tdb-tab-content {
	flex: 1 !important;
	padding: 15px !important;
	background: #fff;
	border-radius: 7px;
}

/* 内容面板 */
.tdb-tab-pane {
	display: none !important;
	opacity: 0 !important;
	transition: opacity 0.2s ease !important;
}

	/* 激活的内容面板 */
	.tdb-tab-pane.tdb-tab-active {
		display: block !important;
		opacity: 1 !important;
	}

/* 列表样式 */
.tdb-list {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

	.tdb-list li {
		margin-bottom: 5px !important;
		border-bottom: 1px solid #E6E8EF !important;
	}

	.tdb-list a {
		display: block !important;
		padding: 10px 5px !important;
		color: #333333 !important;
		text-decoration: none !important;
		transition: all 0.2s ease !important;
		font-size: 14px !important;
	}

		.tdb-list a:hover {
			color: #000E3B !important;
			background-color: #F9F9F9 !important;
			padding-left: 8px !important; /* 轻微移动效果 */
		}

/* 新闻列表样式 */
.tdb-news-list {
	display: flex !important;
	flex-direction: column !important;
}

.tdb-news-item {
	padding: 10px 5px !important;
	border-bottom: 1px solid #E6E8EF !important;
}

.tdb-news-date {
	display: block !important;
	font-size: 12px !important;
	color: #888888 !important;
	margin-bottom: 4px !important;
}

.tdb-news-item a {
	color: #333333 !important;
	text-decoration: none !important;
	font-size: 14px !important;
	transition: color 0.2s ease !important;
}

	.tdb-news-item a:hover {
		color: #000E3B !important;
	}

/* 面板底部 */
.tdb-panel-footer {
	padding: 15px 20px !important;
	text-align: right !important;
	border-top: 1px solid #EEEEEE !important;
	background-color: #F9F9F9 !important; /* 浅灰色底部背景 */
	display: none;
}

/* 按钮样式 */
.tdb-button {
	display: inline-block !important;
	padding: 8px 20px !important;
	background-color: #000E3B !important; /* 深蓝色按钮 */
	color: #FFFFFF !important;
	text-decoration: none !important;
	font-size: 14px !important;
	border: none !important;
	transition: background-color 0.2s ease !important;
}

	.tdb-button:hover {
		background-color: #001C54 !important; /* 稍深的蓝色 */
	}

/* 滚动条美化 */
.tdb-tab-content::-webkit-scrollbar {
	width: 6px !important;
}

.tdb-tab-content::-webkit-scrollbar-track {
	background: #E6E8EF !important;
}

.tdb-tab-content::-webkit-scrollbar-thumb {
	background: #CCCCCC !important;
	border-radius: 3px !important;
}

	.tdb-tab-content::-webkit-scrollbar-thumb:hover {
		background: #AAAAAA !important;
	}



.tdb-industry-down-category {
	width: 20%;
}

.tdb-category-down-title {
	font-size: 15px !important;
	font-weight: bold !important;
	color: #000E3B !important;
	padding-left: 8px !important;
	display: flex;
	align-items: center;
	/*cursor: pointer;*/
}

/* 行业分类结构样式 */
.tdb-industry-categories {
	display: flex !important;
	row-gap: 1.25rem;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.tdb-industry-category {
	width: 33%;
	padding-bottom: 15px !important;
}

.tdb-category-title {
	font-size: 15px !important;
	font-weight: bold !important;
	color: #000E3B !important;
	padding: 5px 0 !important;
	margin-bottom: 10px !important;
	padding-left: 8px !important;
	display: flex;
	align-items: center;
	/*cursor: pointer;*/
}

.tdb-category-items {
	display: flex !important;
	flex-wrap: nowrap;
	gap: 8px 12px !important;
	padding-left: 5px !important;
	flex-direction: column;
	margin-left: 40px;
}

.tdb-category-item {
	color: #999 !important;
	text-decoration: none !important;
	font-size: 12px !important;
	transition: all 0.2s ease !important;
}

/*.tdb-category-item {
	display: inline-block !important;
	color: #333333 !important;
	text-decoration: none !important;
	font-size: 13px !important;
	transition: all 0.2s ease !important;
}*/

/*	.tdb-category-item:hover {
		color:#044093 !important;
		font-weight:bold !important;
	}*/
