@charset "utf-8";
.section{
	display: block;
	width: auto;
	height: auto;
	overflow: hidden;
	margin: auto;
}
.tb{
	display: block;
	width: auto;
	height: auto;
	overflow: hidden;
	margin: auto;
	max-width: var(--max_width);
	margin-top: 60px;
	margin-bottom: 60px;
}
.company_tb{
	display:grid;
	grid-template-columns: auto auto;
	align-items: center;
	column-gap: 5%;
	width: auto;
	height: auto;
	overflow: hidden;
}
.title{
	font-weight: bold;
	font-size: 1.6rem;
	line-height: 1.2;
}
.miaoshu{
	line-height: 1.2;
	font-family: Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	color: #666;
	font-size: 12px;
}
.fazhan_back{
	display: block;
	width: auto;
	height: auto;
	overflow: hidden;
	margin: auto;
	background-color: #f5f5f5;
}

.fazhan_list{
	display: flex;
	display: -webkit-flex;
	align-items: center;
	visibility: hidden;
	width: auto;
	height: auto;
	transition: all 0.4s;
	column-gap: 10px;
	animation-name: fazhan_list_show;
	animation-duration: 1s;
	animation-delay: 1s; /* 延迟1秒后开始动画 */
	animation-fill-mode: forwards; /* 动画结束后保持最终状态 */
	margin-top: 40px;
}
@keyframes fazhan_list_show {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
		visibility: visible;
	}
}
.fazhan_list .arrow{
	width:30px;
	height: 30px;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	border: 1px solid var(--fore_color);
	color: var(--fore_color);
	flex-shrink: 0;
}
.fazhan_list .slick-track{
	display: flex;
	display: -webkit-flex;
	column-gap: 20px;
}
.fazhan_tb{
	display: block;
	width: auto;
	height: auto;
	overflow: hidden;
	text-align: center;
}
.fazhan_pic{
	display: block;
	width: auto;
	height: auto;
	overflow: hidden;
	background-size: cover;
	background-repeat: no-repeat;
	padding-bottom: 60%;
}
.fazhan_name{
	font-weight: bold;
	font-size: 1.2rem;
	font-family: 'Times New Roman', Times, serif;
}
.fazhan_miaoshu{
	display: block;
	width: auto;
	height: auto;
	overflow: hidden;
	text-align: center;
	line-height: 1.2;
}
.tech_list{
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	row-gap: 10px;
	width: auto;
	height: auto;
	overflow: hidden;
	margin-top: 40px;
}
.tech_tb{
	display: flex;
	display: -webkit-flex;
	column-gap: 10px;
	align-items: center;
	width: auto;
	height: auto;
	overflow: hidden;
}
.tech_ico{
	width:16px;
	height: 16px;
	border:1px solid var(--fore_color);
	color: var(--fore_color);
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	border-radius: 50%;
}