/* 新闻列表页面样式 - 参考亚威网站 */

/* Banner */
.banner {
	position: relative;
	height: 400px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	color: #ffffff;
	text-align: left;
	margin-top: 0;
}
.banner-content {
	z-index: 2;
	max-width: 800px;
	padding: 0 6%;
	margin-top: 80px;
}
.banner-content h1 {
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 10px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.banner-content p {
	font-size: 14px;
	margin-bottom: 30px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.mouse-icon {
	position: absolute;
	bottom: 30px;
	left: 6%;
	z-index: 2;
	animation: bounce 2s infinite;
}
.mouse-icon img {
	width: 40px;
	height: auto;
}
.scroll-down {
	position: absolute;
	bottom: 30px;
	right: 6%;
	transform: none;
	z-index: 2;
	animation: bounce 2s infinite;
}
.scroll-down span {
	font-size: 14px;
	color: #ffffff;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
 @keyframes bounce {
 0%, 20%, 50%, 80%, 100% {
 transform: translateY(0);
}
 40% {
 transform: translateY(-20px);
}
 60% {
 transform: translateY(-10px);
}
}
/* 面包屑导航 */
.breadcrumb {
	background-color: #1a365d;
	color: #ffffff;
	padding: 25px 0;
	margin-top: 0;
}
/* 特殊新闻版块 */
.special-news {
	background: linear-gradient(170deg, #fff, #fff 40%, #002055 40%, #002055 100%);
	padding-top: 74px;
	padding-bottom: 190px;
	position: relative;
	overflow: hidden;
}
.special-news-content {
	display: flex;
	/* width: 100%;
    max-width: 1200px; */
	margin: 0 6%;
	position: relative;
	z-index: 2;
}
.special-news-left {
	flex: 0 0 40%;
	background-color: #ffffff;
	padding: 40px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
}
.news-date {
	margin-bottom: 20px;
}
.news-date .date-day {
	display: block;
	font-size: 36px;
	font-weight: bold;
	color: #e60012;
	margin-bottom: 5px;
}
.news-date .date-month {
	display: block;
	font-size: 14px;
	color: #666666;
}
.news-title {
	font-size: 18px;
	font-weight: bold;
	color: #333333;
	margin-bottom: 30px;
	line-height: 1.4;
}
.news-link {
	display: inline-block;
	padding: 10px 60px;
	background-color: #e60012;
	color: #ffffff;
	text-decoration: none;
	border-radius: 4px;
	transition: all 0.3s ease;
	font-size: 14px;
	font-weight: bold;
	margin-top: 50px;
}
.news-link:hover {
	background-color: #c0392b;
	transform: translateY(-2px);
}
.special-news-right {
	flex: 0 0 60%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	padding-top: 20px;
}
.special-news-right img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.index-product-canvas {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 200px;
	overflow: hidden;
	z-index: 1;
}
.index-product-canvas canvas {
	display: block;
	width: 100%;
	height: 100%;
}
.breadcrumb .container {
	margin: 0 6%;
}
.breadcrumb-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.breadcrumb-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	font-size: 14px;
}
.breadcrumb-icon {
	margin-right: 10px;
	display: flex;
	align-items: center;
}
.breadcrumb-icon svg {
	width: 16px;
	height: 16px;
	color: #ffffff;
}
.breadcrumb-item {
	margin-right: 10px;
	position: relative;
}
.breadcrumb-item:not(:last-child)::after {
	content: '>';
	margin-left: 10px;
	color: rgba(255, 255, 255, 0.7);
}
.breadcrumb-item a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s ease;
}
.breadcrumb-item a:hover {
	color: #ffffff;
}
.breadcrumb-item:last-child {
	color: #ffffff;
	font-weight: bold;
}
.back-link {
	color: #ffffff;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
	display: flex;
	align-items: center;
	gap: 5px;
}
.back-icon {
	width: 14px;
	height: 14px;
}
.back-link:hover {
	color: rgba(255, 255, 255, 0.8);
}
/* 新闻列表内容 */
.article-list {
	padding: 60px 0;
	background-color: #f8f9fa;
}
.article-list .container {
	/* max-width: 1200px; */
	margin: 0 6%;/* padding: 0 20px; */
}
.article-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}
.article-card {
	background-color: #ffffff;
	border: 1px solid #eaeaea;
	border-radius: 4px;
	overflow: hidden;
	transition: all 0.3s ease;
}
.article-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.article-card-image {
	width: 100%;
	/* height: 200px; */
	overflow: hidden;
}
.article-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.article-card:hover .article-card-image img {
	transform: scale(1.05);
}
.article-card-title {
	font-size: 16px;
	font-weight: bold;
	margin: 15px;
	line-height: 1.4;
}
.article-card-title a {
	color: #333333;
	text-decoration: none;
	transition: color 0.3s ease;
}
.article-card-title a:hover {
	color: #e60012;
}
.article-card-date {
	font-size: 14px;
	color: #999999;
	margin: 0 15px 15px;
}
/* 分页 */
.pagination {
	margin-top: 40px;
	text-align: center;
}
.pagination-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: inline-flex;
	gap: 10px;
	align-items: center;
}
.pagination-item, .pagination span, .pagination a {
	padding: 8px 15px;
	font-size: 14px;
	color: #666666;
	cursor: pointer;
	border-radius: 4px;
	transition: all 0.3s ease;
}
.pagination-item a {
	color: inherit;
	text-decoration: none;
	display: block;
}
.pagination-item:hover, .pagination a:hover {
	color: #e60012;
}
.pagination-item.active, .pagination-item:hover, .pagination span.current {
	background-color: #e60012;
	color: #ffffff;
}
.pagination span.current {
	margin: 0px 30px;
}
.pagination-item.ellipsis {
	cursor: default;
}
.pagination-item.ellipsis:hover {
	color: #666666;
}
.pagination-item.next {
	border: 1px solid #e60012;
	color: #e60012;
}
.pagination-item.next:hover {
	background-color: #e60012;
	color: #ffffff;
}
.pagination-item.disabled {
	color: #cccccc;
	cursor: not-allowed;
}
.pagination-item.disabled:hover {
	color: #cccccc;
	background-color: transparent;
}

/* 移动端适配 */
@media (max-width: 768px) {
.breadcrumb-list {
	flex-wrap: wrap;
	font-size: 12px;
}
.breadcrumb-item {
	margin-right: 5px;
}
.breadcrumb-item:not(:last-child)::after {
	margin-left: 5px;
}
.article-list {
	padding: 40px 0;
}
.article-content {
	flex-direction: column;
	gap: 20px;
}
.article-left {
	flex: 1;
}
.article-right {
	padding: 20px;
}
.article-grid {
	grid-template-columns: 1fr;
	gap: 20px;
}
.article-card-image {
	height: 150px;
}
.pagination-list {
	flex-wrap: wrap;
	justify-content: center;
}
.pagination-item a {
	padding: 6px 10px;
	font-size: 14px;
}
/* 特殊新闻版块移动端适配 */
.special-news {
	flex-direction: column;
	padding: 40px 0;
	display: none;
}
.special-news-left {
	flex: 1;
	padding: 0 6%;
	margin-bottom: 30px;
}
.special-news-card {
	padding: 30px;
	max-width: 100%;
}
.special-news-right {
	flex: 1;
	height: 300px;
}
.news-date .date-day {
	font-size: 28px;
}
.news-title {
	font-size: 16px;
}
}
/* 新闻详情页样式 */
.article-detail {
	padding: 60px 0;
	background-color: #f8f9fa;
}
.article-detail .container {
	/* max-width: 1200px; */
	margin: 0 6%;/* padding: 0 20px; */
}
.article-detail-content {
	display: flex;
	gap: 40px;
}
/* 左侧新闻内容 */
.article-main {
	flex: 1;
	background-color: #ffffff;
	padding: 40px;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.article-title {
	font-size: 24px;
	font-weight: bold;
	color: #333333;
	margin-bottom: 20px;
	line-height: 1.3;
}
.article-meta {
	display: flex;
	gap: 20px;
	font-size: 14px;
	color: #999999;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eaeaea;
}
.article-body {
	font-size: 16px;
	line-height: 1.8;
	color: #333333;
}
.article-body img {
	max-width: 100% !important;
}
.article-body p {
	margin-bottom: 20px;
}
.article-image {
	margin: 30px 0;
	text-align: center;
}
.article-image img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
}
/* 上一篇/下一篇导航 */
.article-nav {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid #eaeaea;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}
.article-prev, .article-next {
	flex: 1;
	min-width: 200px;
}
.article-prev a, .article-next a {
	color: #666666;
	text-decoration: none;
	transition: color 0.3s ease;
}
.article-prev a:hover, .article-next a:hover {
	color: #e60012;
}
/* 右侧相关新闻 */
.article-sidebar {
	flex: 0 0 300px;
}
.sidebar-title {
	font-size: 18px;
	font-weight: bold;
	color: #333333;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eaeaea;
}
.sidebar-news {
	list-style: none;
	padding: 0;
	margin: 0;
}
.sidebar-news li {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #f0f0f0;
}
.sidebar-news li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}
.sidebar-news a {
	color: #666666;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.4;
	transition: color 0.3s ease;
	display: block;
}
.sidebar-news a:hover {
	color: #e60012;
	padding-left: 5px;
}

/* 新闻详情页移动端适配 */
@media (max-width: 768px) {
.article-detail {
	padding: 40px 0;
}
.article-detail-content {
	flex-direction: column;
	gap: 20px;
}
.article-main {
	padding: 20px;
}
.article-title {
	font-size: 20px;
}
.article-meta {
	flex-direction: column;
	gap: 10px;
}
.article-nav {
	flex-direction: column;
	align-items: flex-start;
}
.article-sidebar {
	flex: 1;
}
}
