* {
	padding: 0;
	margin: 0;
	list-style-type: none;
	text-decoration: none;
	box-sizing: border-box;
	font-family: "Arial", "Microsoft YaHei", 微软雅黑, "MicrosoftJhengHei", 华文细黑, STHeiti, MingLiu;
}

a,
span,
p,
a:hover {
	display: block;
	color: inherit;
	text-decoration: none;
	outline: none;
	cursor: pointer;
}

ul,
li {
	list-style: none;
}

input,
textarea,
button {
	outline: none;
	padding: 5px;
	resize: none;
}


/* Header  */
.Header {
	width: 100%;
	height: 100px;
	text-align: center;
	background: white;
	box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}

.Header>div {
	width: 100%;
	height: 100%;
	margin: auto;
	display: inline-flex;
	justify-content: space-between;
}

.Header>div .logo {
	width: auto;
	margin-left: 5%;
	display: flex;
	justify-content: flex-start;
}

.Header>div .logo img {
	min-height: 48px;
	max-height: 66px;
	margin: auto 0;
}

.Header>div .bizName {
	min-width: 160px;
	margin: auto 5px;
}

.Header>div .bizName p {
	font-size: 18px;
	letter-spacing: 4px;
}

.Header>div .bizName span {
	font-size: 12px;
	letter-spacing: -1px;
}

.Header>div button {
	display: none;
	width: 36px;
	height: 32px;
	line-height: 32px;
	justify-content: space-evenly;
	align-items: center;
	flex-flow: column;
	opacity: 0.5;
	margin: auto 10px;
	color: rgb(120, 120, 120);
	border-radius: 4px;
	border: 2px solid rgba(150, 150, 150, 0.5);
	background: rgba(0, 0, 0, 0.1);
	cursor: pointer;
	overflow: hidden;
}

.Header>div button span {
	display: block;
	width: 90%;
	height: 3px;
	margin: 2px;
	background: #888;
}

#headerNavText {
	width: auto;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.headerNavText li {
	height: 100%;
	margin: auto 1px;
	text-align: center;
	position: relative;
	display: inline-flex;
	border-bottom: 3px solid rgba(40, 160, 225, 0);
	padding: 0 10px;
}

.headerNavText li:hover,
.headerNavText li.active {
	background-color: #BA0102;
	padding: 0 10px;
}


.headerNavText li a {
	font-size: 14px;
	color: rgb(50, 50, 50);
	padding: 0 10px;
	margin: auto;
	cursor: pointer;
}

.headerNavText li:hover a,
.headerNavText li.active a {
	color: #fff;
}

.Header .NavBtn_Right {
	width: auto;
	min-width: 120px;
	height: 100%;
	margin-right: 5%;
	display: inline-flex;
	justify-content: flex-end;
}

.Header .NavBtn_Right a {
	width: 32PX;
	min-width: 32px;
	height: 32PX;
	line-height: 32px;
	margin: auto 0;
	margin-left: 10px;
	display: block;
	color: rgba(150, 150, 150, 0.5);
	border: 1px solid rgba(200, 200, 200, 0.5);
	border-radius: 5%;
	background: none;
	cursor: pointer;
}

.Header .NavBtn_Right .icon_Search {
	background: #fff url(../images/icon_Search.png)top center no-repeat;
}

.Header .NavBtn_Right .icon_Search:hover {
	background: #BA0102 url(../images/icon_Search.png) bottom center no-repeat;
}

.Header .NavBtn_Right a:hover {
	background: #BA0102;
	color: white;
}

.Header .SearchWarp {
	margin: auto 0;
	right: 0;
	position: relative;
}

.Header .SearchWarp>div {
	display: none;
}

.Header .SearchWarp>div .keySearch {
	height: 32px;
	line-height: 32px;
	border: 1px solid rgba(100, 100, 100, 0.5);
}

.Header .SearchWarp>div .btnSearch {
	position: absolute;
	width: 28px;
	height: 28px;
	right: 10px;
	top: 9px;
	border: none;
	background: #fff url(../images/icon_Search.png)top center no-repeat;
}

.Header .SearchWarp .show {
	display: flex;
	position: absolute;
	top: 5rem;
	background: rgba(255, 255, 255, 0.75);
	padding: 0.5rem;
	right: 0;
	border-radius: 0.3rem;
	z-index: 9999;
}

    /* Banner外层容器 基准尺寸1920*500 */
    .top {
      width: 100%;
      max-width: 1920px;
      height: 500px;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
    }
    /* 背景图片铺满容器 */
    .top img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* 等比例裁剪，不变形 */
      display: block;
    }
    /* 文字遮罩层：横向渐变背景，两端透明中间0.35黑 */
    .top h1 {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      /* 核心渐变：左右0透明，中间30%-70%区间固定0.35透明度 */
      background: linear-gradient(to right, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(0, 0, 0, 0.35) 30%, 
        rgba(0, 0, 0, 0.35) 70%, 
        rgba(0, 0, 0, 0) 100%
      );
      color: #ffffff;
      font-size: 38px;
      font-weight: 400;
      padding: 20px 80px; /* 加宽左右内边距，让渐变蒙版更长 */
      white-space: nowrap; /* 文字不换行 */
    }
    /* 移动端H5适配 */
    @media screen and (max-width: 768px) {
      .top {
        height: 300px;
      }
      .top h1 {
        font-size: 26px;
        padding: 12px 40px;
      }
    }
    @media screen and (max-width: 480px) {
      .top {
        height: 240px;
      }
      .top h1 {
        font-size: 28px;
        padding: 10px 25px;
      }
    }

/* 底部整体容器 */
.footer {
	background-color: #f8f8f8;

}

.warp {
	padding: 40px 40px 20px;
	color: #333;
	margin: 20px;
}

/* logo 区域 */
.footer-top {
	padding-bottom: 20px;
	border-bottom: 1px solid #bec0c0;
	/* 分割线 */
	margin-bottom: 30px;
}

.footer-top img {
	height: 80px;
	/* 控制logo高度 */
	width: auto;
}
/* 内容区域 - 四列布局 */
.footer-content {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	/* 列之间的间距 */
	margin-bottom: 30px;
}
.footer-content a:hover{
	color: #BA0102;
	text-decoration: underline;
}
.footer-content ul {
	list-style: none;
	flex: 1;
	/* 四列等分宽度 */
	min-width: 200px;
	/* 防止列过窄 */
}

/* 标题样式 */
.footer-content ul h1 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
	color: #333;
}

/* 列表项样式 */
.footer-content ul li {
	font-size: 14px;
	line-height: 32px;
	height:32px;
	/* 行高匹配图片 */
	color: #666;
}

/* 关注我们 - 二维码区域 */
.footer-content ul p {
	display: flex;
	flex-direction: column;
	align-items: left;
	margin-bottom: 15px;
	text-align: left;
}

.footer-content ul p img {
	width: 100px;
	/* 二维码尺寸 */
	height: 100px;
	margin-bottom: 8px;
	border: 1px solid #ddd;
}

.footer-content ul p span {
	font-size: 12px;
	color: #666;
}

/* 底部版权区域 */
.footer-bottom {
	padding-top: 20px;
	border-top: 1px solid #bec0c0;
	/* 分割线 */
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	color: #666;
}

.footer-bottom a {
	color: #666;
	text-decoration: none;
}

.footer-bottom a:hover {
	text-decoration: underline;
}

/* 响应式适配（可选） */
@media (max-width: 768px) {
	.footer-content {
		flex-wrap: wrap;
		gap: 20px;
	}
	.footer-top{display: flex;
                display: -webkit-flex;
                align-items:center;
                justify-content:center;}

	.warp {
		width: 100%;
		padding: 20px;
	}
	.footer-content ul {
		flex: 0 0 95%;
		margin-bottom: 20px;
		text-align: center;
		padding-bottom: 20px;
		border-bottom: 1px solid #bec0c0;
	}

	.footer {
		padding: 30px 20px 15px;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 10px;
		/* 两行文字上下间距 */
		text-align: center;
	}

	.warp {
		width: 100%;
	}

	.footer-content ul p {
		width: 50%;
		float: left;
		display: flex;
		align-items: center;
		justify-content: center;
	}

}

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

	/* Header */
	.headerNavText li {
		margin: auto;
	}

	.Header>div .bizName {
		display: none;
	}

	.Header {
		padding: 0;
		overflow: visible;
	}

	.Header>div .logo {
		margin-left: 2%;
	}

	.Header>.headerNavText li a {
		padding: 0 5px;
	}

	.Header .NavBtn_Right {
		min-width: 80px;
		margin-right: 2%;
	}

}

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

@media screen and (max-width: 576px) {
	.Header {
		height: 80px;
	}

	.headerNavText li {
		height: auto;
		border-bottom: 1px solid rgba(150, 150, 150, 0.2);
	}

	.headerNavText li a {
		width: 100%;
		color: rgba(255, 255, 255, 0.5);
		padding: 5px;
		height: auto;
		line-height: 24px;
		text-align: center;
	}

	.headerNavText li:hover a {
		color: rgba(255, 255, 255, 1) !important;
		border-bottom: none;
		background: rgba(255, 255, 255, 0.1);
	}

	#headerNavText {
		width: 100%;
		max-width: 100%;
		height: auto;
		display: none;
		flex-flow: column;
		position: absolute;
		background: rgba(0, 0, 0, 0.8);
		top: 100%;
		border-bottom: 1px solid rgba(150, 150, 150, 0.3);
		padding: 0 10px;
	}

	.headerNavText li a {
		height: auto;
		line-height: 24px;
		color: white;
		padding: 15px 10px;
	}

	.Header>div {
		position: relative;
		overflow: visible;
		z-index: 999;
	}

	.Header>div button {
		display: flex;
	}


}
/* 主容器 */
			    .link-container {
			        width: 100%;
			        margin: 0;
			        padding: 20px 0;
			    }
			
			    /* 视口窗口：关键修改点 */
			    .link-viewport {
			        width: 100%;
			        overflow: hidden; /* 隐藏超出部分 */
			        position: relative;
			    }
			
			    /* 图片轨道 */
			    .link-track {
			        display: grid;
			        grid-template-columns: repeat(6, 1fr); /* 桌面端6列 */
			        gap: 15px;
			        transition: transform 0.8s ease-in-out;
			        will-change: transform;
			        /* 确保轨道宽度占满 */
			        width: 100%; 
			    }
			
			    /* 图片样式 */
			    .link-track img {
			        width: 100%;
			        height: auto;
			        display: block;
			        border-radius: 4px;
			        object-fit: cover;
					border:1px #ccc solid;
			        transition: opacity 0.3s;
			    }
			
			    .link-track img:hover {
			        opacity: 0.8;
			        cursor: pointer;
			    }
			
			    /* 移动端适配 */
			    @media (max-width: 768px) {
			        .link-container {
			            padding: 10px;
			        }
			        
			        .link-track {
			            grid-template-columns: repeat(3, 1fr); /* 平板3列 */
			            gap: 10px;
			        }
			    }
			
			    @media (max-width: 480px) {
			        .link-track {
			            grid-template-columns: repeat(2, 1fr); /* 手机2列 */
			        }
			    }
			    /* 主容器 */
			    .link-container {
			        width: 100%;
			        margin: 20px auto;
			        padding: 20px;
			    }
			
			    /* 视口窗口：固定显示两排高度 */
			    .link-viewport {
			        width: 100%;
			        overflow: hidden;
			        position: relative;
			        background-color: #fff;
			        /* 高度由 JS 动态设置，确保正好显示两排 */
			    }
			
			    /* 滚动轨道容器 */
			    .scroll-wrapper {
			        display: flex;
			        flex-direction: column;
			    }
			
			    /* 图片轨道 */
			    .link-track {
			        display: grid;
			        grid-template-columns: repeat(6, 1fr);
			        gap: 15px;
			        width: 100%;
					margin-top:10px;
			    }
			
			    /* 图片样式 */
			    .link-track img {
			        width: 100%;
			        height: auto;
			        display: block;
			        border-radius: 4px;
			        object-fit: cover;
			        transition: opacity 0.3s;
					border: #EAEAEA 1px solid;
			    }
			
			    .link-track img:hover {
			        opacity: 0.8;
			        cursor: pointer;
			    }
			
			    /* 连续滚动动画 */
			    @keyframes scrollUp {
			        0% {
			            transform: translateY(0);
			        }
			        100% {
			            transform: translateY(-50%);
			        }
			    }
			
			    .scroll-wrapper {
			        animation: scrollUp var(--scroll-duration, 20s) linear infinite;
			    }
			
			    /* 鼠标悬停暂停 */
			    .link-viewport:hover .scroll-wrapper {
			        animation-play-state: paused;
			    }
			
			    /* 移动端适配 */
			    @media (max-width: 768px) {
			        .link-container {
			            padding: 10px;
			        }
			        
			        .link-track {
			            grid-template-columns: repeat(3, 1fr);
			            gap: 10px;
			        }
			    }
			
			    @media (max-width: 480px) {
			        .link-track {
			            grid-template-columns: repeat(2, 1fr);
			        }
			    }