@charset "utf-8";

.indexfax {
	width: 100%;
	background: #ffffff;
	margin-top: 30px;
	overflow: auto;
	padding-bottom: 60px;
	color: #000;
}

.contantx {
	width: auto;
	padding: 0 3%;
	margin: 0 auto;
	color: #000;
}

.indexfax .indextopx {
	padding-top: 50px;
}

.indextopx .h1 {
	font-size: 40px;
	font-weight: 550;
	letter-spacing: 4px;
	height: 46px;
	line-height: 46px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.indextopx p {
	font-size: 20px;
	letter-spacing: 2px;
	margin-top: 20px;
	text-align: center;
	margin-bottom: 55px;
}

.fadl {
	width: 100%;
	margin-top: 50px;
}

.fadl dl {
	float: left;
	width: 14.5%;
	text-align: center;
	margin: 0px 1%;
	background: #fff;
	color: #000;
	border-radius: 40px;
	padding-top: 30px;
	padding-bottom: 30px;
	position: relative;
}

.fadl dl dt {
	height: 50px;
	line-height: 50px;
	color: #009eff;
	font-size: 22px;
	font-weight: 550;
	letter-spacing: 1.5px;
	font-weight: bold;
}

/* 合作伙伴 */
.contanthz {
	width: auto;
	padding: 0 16%;
	margin: 0 auto;
	color: #000;
}

/* 999 */
.container {  
  display: flex;  
  flex-wrap: wrap; /* 如果需要多行，可以启用这个属性 */  
  justify-content: space-between; /* 水平分布，可根据需要调整 */  
  height: 440px;
  overflow: hidden;
  padding: 10px;
}  
  
.item {  
  flex: 0 0 calc(16% - 10px); /* 每项占据25%宽度，减去间隔 */  
  margin-right: 10px; /* 间隔 */  
  box-sizing: border-box; /* 包括padding和border在宽度内 */  
  transition: transform 0.3s, box-shadow 0.3s;  
}  
  
.item:hover {  
  transform: translateY(-5px);  
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);  
}  
  
.item:nth-child(6n) {  
  margin-right: 0; /* 清除最后一个元素的右边距，假设每行四个 */  
}  
  
.image {  
  width: 100%;  
  height: 100px; /* 你可以根据需要调整高度 */  
  background-size: cover;  
  background-position: center;  
}  
  
.text {  
  /* 根据需要设置文本样式 */  
  padding-top: 30px;
  text-align: center;  
}  
  
/* 如果需要响应式布局，可以添加媒体查询来适应不同屏幕尺寸 */  
@media (max-width: 600px) {  
  .item {  
    flex: 0 0 calc(50% - 10px); /* 小屏幕上每行两个 */  
  }  
    
  .item:nth-child(4n) {  
    margin-right: 10px; /* 清除之前设置的右边距 */  
  }  
    
  .item:nth-child(2n) {  
    margin-right: 0; /* 每行第二个元素右边距为0 */  
  }  
  .container {
	  height: 320px;
  }
}
