body{
	background: #f3f3f3;
}
.banner{
	width: 100%;
	overflow: hidden;
}
.banner img{
	width: 100%;
	position: relative;
	left: 50%;
	transform: translate(-50%,0);
	display: flex;
}

.container{
	width: 100%;
	max-width: 1250px;
	margin: 0 auto;
	position: relative;
	margin-top: -60px;
	background: #fff;
	border-radius: 4px;
	z-index: 1;
	padding: 0 20px 20px 20px;
	box-sizing: border-box;
}
.container-top{
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #f3f3f3;
}
.container-nav{
	display: flex;
	justify-content: flex-start;
	gap: 30px;
	width: 70%;
	overflow-y: hidden;
	overflow-x: auto;
}
.container-nav li{
	height: 60px;
	line-height: 60px;
	position: relative;
	flex-shrink: 0;
}
.container-nav li a{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
	line-height: 60px;
	font-size: 14px;
}
.container-nav .on::after{
	position: absolute;
	content: '';
	left: 0;
	top: -1px;
	width: 100%;
	height: 3px;
	background: #f66a0b;
}
.container-nav .on a{
	color: #f66a0b;
}


.container-map{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	color: #999999;
}
.container-map a{
	color: #333333;
	height: 60px;
	line-height: 60px;
}

.xinxi {
	
}
.xinxi .list-content{
	display: flex;
	justify-content: space-between;
	padding: 20px 50px 40px 50px;
}
.xinxi .img {
	width: 280px;
	height:350px;
	overflow: hidden;
	border-radius: 8px;
}

.xinxi .img img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* 关键属性：等比缩放，短边填满，长边裁剪 */
	object-position: center; /* 可选：控制裁剪的焦点位置，默认居中 */
	transition: all 0.6s ease;
}

.xinxi .xq {
	width: calc(100% - 280px - 30px);
	display: flex;
	align-items: flex-start;
	padding: 30px 0 0 0;
}


.xinxi .item{
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 0 0;
	font-size: 18px;
	line-height: 40px;
}
.xinxi .item1{
	margin-bottom: 20px;
	line-height: unset;
	gap: 0 20px;
}
.xinxi .item2{
	gap: 0 20px;
}
.xinxi .xq .title {
	color: #4A4A4A;
	font-size: 50px;
	border-bottom: 4px solid #f66a0b;
	font-weight: 700;
}

.xinxi .xq .rank {
	font-weight: 300;
	color: #666666;
	font-size: 22px;
}
.xinxi .item .itm{
	
}
.xinxi .item label{
	color: #666666;
}
.xinxi .item span{
	color: #666666;
}
.swiper-wrapper{
	z-index: 1;
}
/* 同时修改左右箭头的颜色 */
.swiper-button-prev, 
.swiper-button-next {
    color: #f66a0b; /* 将颜色改为白色 */
	z-index: 999;
	position: absolute;
}


.list-team{
	width: 100%;
	max-width: 1250px;
	margin: 0 auto;
	margin-top: 25px;
	padding-bottom: 100px;
}

.team-nav {
	width: 100%;
	display: flex;
	gap: 10px;
	overflow-x: auto;
	overflow-y: hidden;
	margin-bottom: 20px;
	padding-bottom: 5px;
}

.team-nav::-webkit-scrollbar {
	height: 0;
}

.team-nav a {
	flex-shrink: 0;
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 14px;
	cursor: pointer;
	background: #e8e8e8;
	color: #666;
	transition: all 0.3s ease;
}

.team-nav a:nth-child(even) {
	background: #e8e8e8;
}

.team-nav a:hover,
.team-nav a.on {
	background: #C81432;
	color: #fff;
}

.list-team ul {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

.list-team ul li {
	overflow: hidden;
	border-radius: 8px;
}

.list-team ul li a {
	display: block;
	position: relative;
	overflow: hidden;
}

.list-team ul li img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	display: block;
	transition: transform 1s ease;
}

.list-team ul li:hover img {
	transform: scale(1.1);
}

.list-team .xq {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	color: #333333;
	text-align: left;
	background: rgba(255, 255, 255, 0.85);
	transition: all 1s ease;
}

.list-team .xq h4 {
	font-size: 18px;
	font-weight: normal;
	margin-bottom: 5px;
    margin-top: 0;
}

.list-team .xq h4 span {
	font-size: 14px;
	margin-left: 10px;
	opacity: 0.8;
}

.list-team .xq .fensuo {
	font-size: 14px;
	opacity: 0.8;
}

.list-team .xq .zhuanye {
	font-size: 13px;
	line-height: 22px;
	margin-top: 5px;
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: all 1s ease;
	color: #999999;
}

.list-team ul li:hover .xq .zhuanye {
	opacity: 1;
	max-height: 60px;
}

@media only screen and (max-width: 1200px) {
	.list-team ul {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media only screen and (max-width: 900px) {
	.banner{
		width: 100%;
		overflow: hidden;
		padding-top: 60px;
	}
	.banner img{
		width: auto;
		position: relative;
		left: 50%;
		transform: translate(-50%,0);
		display: flex;
		height: 220px;
	}
	.container{
		width: 100%;
		max-width: 1250px;
		margin: 0 auto;
		position: relative;
		top: 0;
		background: #fff;
		border-radius: 4px;
		z-index: 1;
		padding: 0 10px 20px 10px;
		box-sizing: border-box;
	}
	.container-top{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		border-bottom: 1px solid #f3f3f3;
	}
	.container-nav{
		display: flex;
		justify-content: flex-start;
		gap: 30px;
		width: 100%;
		overflow-y: hidden;
		overflow-x: auto;
	}
	.container-nav li{
		height: 60px;
		line-height: 60px;
		position: relative;
		flex-shrink: 0;
	}
	.container-nav li a{
		display: flex;
		justify-content: center;
		align-items: center;
		height: 60px;
		line-height: 60px;
		font-size: 14px;
	}
	.container-nav .on::after{
		position: absolute;
		content: '';
		left: 0;
		top: -1px;
		width: 100%;
		height: 3px;
		background: #f66a0b;
	}
	
	
	.container-map{
		display: flex;
		justify-content: flex-end;
		align-items: center;
		color: #999999;
		width: 100%;
		display: none;
	}
	.container-map a{
		color: #999999;
	}
	
	.xinxi .list-content{
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		padding: 20px 5px 40px 5px;
	}
	
	.xinxi .img {
		width: 224px;
		height:280px;
		overflow: hidden;
		border-radius: 8px;
	}
	
	.xinxi .img img {
		width: 100%;
		height: 100%;
		object-fit: cover; /* 关键属性：等比缩放，短边填满，长边裁剪 */
		object-position: center; /* 可选：控制裁剪的焦点位置，默认居中 */
		transition: all 0.6s ease;
	}
	
	.xinxi .xq {
		width: 100%;
		display: flex;
		align-items: flex-start;
		padding: 30px 0 0 0;
	}
	
	
	.xinxi .item{
		display: flex;
		justify-content: flex-start;
		align-items: flex-end;
		flex-wrap: wrap;
		gap: 0 0;
		font-size: 16px;
		line-height: 40px;
	}
	.xinxi .item1{
		margin-bottom: 20px;
		line-height: unset;
		gap: 0 20px;
	}
	.xinxi .item2{
		gap: 0 20px;
	}
	.xinxi .xq .title {
		color: #4A4A4A;
		font-size: 28px;
		border-bottom: 4px solid #f66a0b;
		font-weight: 700;
	}
	
	.xinxi .xq .rank {
		font-weight: 300;
		color: #666666;
		font-size: 18px;
	}
	.xinxi .item .itm{
		
	}
	.xinxi .item label{
		color: #666666;
	}
	.xinxi .item span{
		color: #666666;
	}
	.swiper-button-prev,
	.swiper-button-next {
	    color: #f66a0b; /* 将颜色改为白色 */
		top: 140px;
		margin-top: 0;
	}

	.list-team{
		width: 100%;
		max-width: 1250px;
		margin: 0 auto;
		margin-top: 25px;
		padding:0 10px 100px 10px;
		box-sizing: border-box;
	}
	.list-team ul {
		grid-template-columns: repeat(3, 1fr);
		gap: 15px;
	}

	.list-team .xq {
		padding: 15px;
	}

	.list-team .xq h4 {
		font-size: 16px;
	}

	.list-team .xq h4 span {
		font-size: 12px;
		margin-left: 6px;
	}

	.list-team .xq .fensuo {
		font-size: 12px;
	}

	.list-team .xq .zhuanye {
		font-size: 12px;
		line-height: 20px;
		opacity: 1;
		max-height: none;
	}

	.team-nav a {
		font-size: 13px;
		padding: 6px 16px;
	}
}

@media only screen and (max-width: 600px) {
	.list-team ul {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.list-team .xq {
		padding: 10px;
	}

	.list-team .xq h4 {
		font-size: 14px;
	}

	.list-team .xq h4 span {
		font-size: 11px;
		margin-left: 4px;
	}

	.list-team .xq .fensuo {
		font-size: 11px;
	}

	.list-team .xq .zhuanye {
		font-size: 11px;
		line-height: 18px;
	}

	.team-nav a {
		font-size: 12px;
		padding: 6px 14px;
	}

	.team-nav {
		gap: 8px;
	}
}
