.news{
	position: relative;
	background: url('../images/about_bg.png') no-repeat center center;
	background-size: cover;
	min-height: 600px;
}
.news::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(245, 245, 247, 0.65);
	z-index: 1;
	pointer-events: none;
}
.news > .wrapper{
	position: relative;
	z-index: 2;
	padding: 20px 0;
}
.page-title{
	text-align: center;
	margin: 80px 0;
	color: rgba(83, 83, 83, 1);
	font-size: 30px;
}
.page-title .page-title-en{
	font-size: 40px;
	color: rgba(138, 138, 138, 1);
}

/* 联系方式页面样式 */
.contact-info-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 30px;
	margin: 40px 0;
	padding: 30px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-info-item {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px;
	flex: 1;
	min-width: 250px;
	max-width: 400px;
	transition: all 0.3s ease;
}

.contact-info-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.contact-icon {
	width: 60px;
	height: 60px;
	flex-shrink: 0;
}

.contact-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.contact-detail h3 {
	font-size: 20px;
	color: rgba(24, 56, 132, 1);
	margin-bottom: 10px;
	font-weight: 600;
}

.contact-detail p {
	font-size: 16px;
	color: rgba(54, 54, 54, 1);
	line-height: 1.6;
}

.contact-image-wrapper {
	margin: 30px 0;
	padding: 20px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-full-image {
	width: 100%;
	max-width: 1200px;
	height: auto;
	display: block;
	margin: 0 auto;
	border-radius: 8px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
	.contact-info-wrapper {
		padding: 20px;
		gap: 20px;
		background: transparent;
		box-shadow: none;
		border-radius: 0;
		margin: 20px 0;
	}
	
	.contact-info-item {
		flex-direction: column;
		text-align: center;
		padding: 15px;
	}
	
	.contact-icon {
		width: 50px;
		height: 50px;
	}
	
	.contact-detail h3 {
		font-size: 18px;
	}
	
	.contact-detail p {
		font-size: 14px;
	}
}

@media (max-width: 768px) {
	.contact-info-wrapper {
		flex-direction: column;
		padding: 15px;
		gap: 15px;
	}
	
	.contact-info-item {
		width: 100%;
		max-width: none;
		flex-direction: row;
		text-align: left;
		padding: 15px;
	}
	
	.contact-icon {
		width: 45px;
		height: 45px;
	}
	
	.contact-detail h3 {
		font-size: 16px;
	}
	
	.contact-detail p {
		font-size: 14px;
	}
	
	.contact-image-wrapper {
		padding: 10px;
	}
}

@media (max-width: 480px) {
	.contact-info-item {
		flex-direction: column;
		text-align: center;
	}
	
	.contact-icon {
		width: 40px;
		height: 40px;
	}
	
	.contact-detail h3 {
		font-size: 15px;
	}
	
	.contact-detail p {
		font-size: 13px;
		word-break: break-word;
	}
}

.news-lists{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	justify-content: center;
}
.news-lists .news-item{
	display: inline-block;
	width: 100%;
	height: 370px;
	border-radius: 6px;
	box-shadow: 0px 2px 5px  rgba(0, 0, 0, 0.05);
	background: #fff;
	padding: 45px ;
	text-align: center;
	transition: all 0.3s ease;
}
.news-lists .news-item:hover{
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
	background: #f8fafc;
}
.news-item .news-img{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 321px;
	height: 180px;
	background: #f5f5f5;
	border-radius: 4px;
	transition: all 0.3s ease;
}
.news-item:hover .news-img{
	border-radius: 4px;
}
.news-item .news-image{
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: transform 0.4s ease;
}
.news-item:hover .news-image{
	transform: scale(1.05);
}
.news-item .news-icon{
	display: inline-block;
	margin: 32px auto;
}
.news-item .news-title{
	font-size: 18px;
	line-height: 30px;
	height: 60px;
	margin-top: 15px;
	color: rgba(102, 102, 102, 1);
	display: -webkit-box!important;
	text-overflow:ellipsis;
	word-break:break-all;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:2;
	overflow: hidden;
	text-align: center;
	transition: all 0.3s ease;
}
.news-item:hover .news-title{
	color: rgba(19, 75, 159, 1);
}
.news-item .news-des{
	font-size: 13px;
	color: rgba(153, 153, 153, 1);
	line-height: 25px;
	height: 125px;
	display: -webkit-box!important;
	text-overflow:ellipsis;
	word-break:break-all;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:5; 
	overflow: hidden;
	margin-bottom: 20px;
	text-align: left;
}
.news-bottom{
	display: flex;
	font-size: 12px;
	justify-content: space-between;
	color: rgba(179, 179, 179, 1);
	line-height: 30px;
	transition: all 0.3s ease;
}
.news-item:hover .news-bottom{
	color: rgba(19, 75, 159, 1);
}
.news-bottom .see-icon{
	position: relative;
	top: 5px;
	margin-right: 10px;
	transition: all 0.3s ease;
}
.news-item:hover .see-icon{
	transform: scale(1.1);
}
/*pages*/
.pages{
	text-align: center;
	height: 40px;
	line-height: 40px;
	margin: 20px;
}
.pages .page-item{
	display: inline-block;
	width: 40px;
	height: 40px;
	margin: 0 10px;
	cursor: pointer;
}
.pages .page-item:hover ,.pages .page-item.active{
	background: #fff;
	color: rgba(8, 55, 150, 1);
	border: 1px solid rgba(8, 55, 150, 1);
	border-radius: 50%;
}
.pages a{
	color: #6a6a6a;
	text-decoration: none;
}
.pages a:hover{
	color: rgb(55, 55, 55);
}
.pages span,.pages select,.pages a{
	margin-left: 10px;
}
/*about.html*/
.about{
	background: url('../images/about_bg.png') no-repeat center center;
	background-size: cover;
	position: relative;
	padding-top: 45px;
}
.about::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(245, 245, 247, 0.65);
	z-index: 1;
	pointer-events: none;
}
.about > .wrapper{
	position: relative;
	z-index: 2;
}
.about-title{
	text-align: right;
	font-size: 36px;
	margin-bottom: 34px;
	padding-right: 9px;
	height: 60px;
	line-height: 60px;
	border-right: 8px solid rgba(24, 56, 132, 1);;
}
.about-con{
	display: flex;
	justify-content: center;
}
.about-con .about-img{
	display: inline-block;
	width: 564px;
	height: 406px;
	border-radius: 47px;
	overflow: hidden;
	position: relative;
}
/* .about-img::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to left, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 1)100%);
	pointer-events: none;
} */
.about-des{
	flex: 1;
	margin-left: 30px;
	color: rgba(54, 54, 54, 1);
	font-size: 16px;
	
}
.about-des p{
	text-indent: 32px;
	margin-bottom: 22px;
	line-height: 24px;
}
.about-items{
	display: flex;
	justify-content: space-between;
	margin: 27px 0 120px;
}
.about-items .about-view-item{
	display: inline-block;
	width: 120px;
	padding: 30px;
	height: 139px;
	border-radius: 10px;
	text-align: center;
	margin-bottom: 13px;
	background: #fff;
	box-sizing: content-box; 
	margin-right: 25px;
	color: rgba(30, 27, 27, 1);
}
.about-view-item .about-item-num{
	font-size: 48px;
	font-weight: 500;
	line-height: 76px;
	color: rgba(23, 63, 143, 1);
	text-align: center;
	vertical-align: top;
	
}
.about-links{
	display: flex;
	justify-content: space-between;
	margin-bottom: 100px;
	padding: 0 20px;
}
.about-links .about-link{
	display: inline-block;
	width: 270px;
	height: 61px;
	line-height: 61px;
	border: 3px solid rgba(24, 56, 132, 1);
	border-radius: 36px;
	color: rgba(24, 56, 132, 1);
	font-size: 36px;
	text-align: center;
}
.detail{
	padding: 10px 0 90px 0;
}
.detail .detail-title{
	text-align: center;
	position: relative;
	color: rgba(51, 51, 51, 1);
	font-size: 30px;
	position: relative;
	margin-bottom: 50px;
}
.detail .detail-title:after{
	content: "";
	display: inline-block;
	width: 40px;
	height: 2px;
	background: rgba(19, 75, 159, 1);
	position: absolute;
	bottom: -30px;
	left: 50%;
	margin-left: -20px;
}
.detail .detail-con{
	font-size: 16px;
	color: rgba(102, 102, 102, 1);
	overflow-x: auto;
}
.detail .detail-con table{
	margin: 0 auto;
	width: 100%;
	max-width: 1000px;
}
.detail .detail-con img{
	max-width: 100%;
}
/*team.html*/
.team{
	background: url('../images/about_bg.png') no-repeat center center;
	background-size: cover;
	position: relative;
	padding-top: 45px;
}
.team::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(245, 245, 247, 0.65);
	z-index: 1;
	pointer-events: none;
}
.team > .wrapper{
	position: relative;
	z-index: 2;
}
.team-lists{
	display: flex;
	flex-wrap: wrap;
	text-align: left;
}
.team-list{
	display: inline-block;
	width: 390px;
	height: 411px;
	overflow: hidden;
	position: relative;
	margin-bottom: 45px;
	background: #fff;
	margin-right: 31px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.team-list:hover{
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
	z-index: 10;
}
.team-list .team-img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.team-list:hover .team-img{
	transform: scale(1.1);
}
.team-bottom{
	width: 100%;
	height: 80px;
	background: rgba(255,255,255,0.6);
	color: rgba(102, 102, 102, 1);
	font-size: 16px;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all 0.3s ease;
}
.team-list:hover .team-bottom{
	background: #F8FAFC;
	height: 80px;
}
.team-bottom .team-bottom-title{
	font-size: 24px;
	font-weight: 600;
	color: #183884;
	display: block;
	margin: 23px 0 4px;
	transition: all 0.3s ease;
}
.team-list:hover .team-bottom-title{
	transform: translateY(-5px);
	font-size: 26px;
}
/*case.html*/
.case-items{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(432px, 1fr));
	gap: 58px;
}
.case-items .case-item{
	display: inline-block;
	width: 432px;
	height: 520px;
	border-radius: 6px;
	background: rgba(255, 255, 255, 1);
	box-shadow: 0px 2px 5px  rgba(0, 0, 0, 0.05);
	background: #fff;
	margin: 21px 0 21px 0;
}
.case-items .case-item:nth-child(4n) {
  margin-right: 0;
}
.case-item .case-img{
	height: 237px;
	overflow: hidden;
}
.case-image{
	width: 100%;
}
.case-con{
	padding: 33px ;
	border-bottom: 2px solid rgba(247, 247, 247, 1);
}
.case-con .case-title{
	font-size: 18px;
	line-height: 30px;
	color: rgba(102, 102, 102, 1);
}
.case-con .case-des{
	font-size: 18px;
	line-height: 26px;
	color: rgba(102, 102, 102, 1);
	text-indent: 36px;
}
.case-bottom{
	padding: 10px 33px;
	color: rgba(179, 179, 179, 1);
	font-size: 12px;
}
.case-bottom .case-mess{
	position: relative;
	margin-left: 60px;
	top: 5px;
}
.case-banner {
	margin: 40px 0 50px;
	position: relative;
}
.case-banner .swiper-slide{
	position: relative;
}
.case-banner  .case-banner-bg{
	width: 100%;
	height: 100%;
}
.case-banner  .swiper-con{
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 1;
	color: #fff;
	top: 0;
	left: 0;
	bottom: 0;
	overflow: hidden;
	text-align: center;
	padding:  30px 20px 0 20px;
	transition: all 0.4s ease;
}
.swiper-con .swiper-icon{
	display: inline-block;
	width: 85px;
	height: 85px;
	border-radius: 50%;
	border: 1px solid #fff;
	margin: 0 auto 40px;
}
.swiper-con .case-ban-title{
	font-size: 24px;
	margin-bottom: 50px;
}
.swiper-con .case-banner-more{
	color: #fff;
	display: inline-block;
	width: 117px;
	height: 40px;
	line-height: 40px;
	margin: 110px auto 0;
}
.case-banner .swiper-con:hover{
	background: rgba(10, 48, 130, 0.6);
	padding-top: 0px;
}
.swiper-con:hover .case-banner-more{
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
.case-banner .swiper-button-prev,.case-banner .swiper-button-next{
	top: 100%;
	margin-top: 50px;
	display: inline-block;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #fff;
	position: relative;
	left: 50%;
	margin-left: -50px;
}
.case-banner .swiper-button-next{
	margin-left: 0;
	}
.swiper-button-prev .next-icon,.swiper-button-next .next-icon{
	display: inline-block;
	width: 3px;
	height: 3px;
	background: rgba(19, 75, 159, 1);
	position: absolute;
	left: 22px;
	top: 20px;
}
.swiper-button-prev .next-icon{
	left: 25px;
}
.swiper-button-next .next-icon-02{
	top: 23px;
	left: 26px;
}
.swiper-button-next .next-icon-03{
	top: 26px;
}
.swiper-button-prev .next-icon-02{
	top: 23px;
	left: 21px;
}
.swiper-button-prev .next-icon-03{
	top: 26px;
}
.swiper-button-prev:hover,.swiper-button-next:hover{
	background: rgba(19, 75, 159, 1);
}
.swiper-button-prev:hover .next-icon,.swiper-button-next:hover .next-icon{
	background: #fff;
}
.case-banner .swiper-button-prev::after,.case-banner .swiper-button-next::after{
	display: none;
}
@media (max-width: 1280px) {
}
@media (max-width: 1024px) { 
	.wrapper{
		width: 100%;
	}
	.page-title {
	    margin: 2rem 0;
	    font-size: 1rem;
	}
	.page-title .page-title-en{
		font-size: 1.4rem;
	}
	.news-lists{
		display: block;
		padding: 0 1rem;
	}
	.news-lists .news-item{
		width: 100%;
		padding: 1rem;
		height: auto;
		margin-bottom: 20px;
	}
	.news-item .news-img{
		width: 100%;
	}
	.news-item .news-icon{
		margin: 1rem 0;
	}
	.news-item .news-title{
		font-size: 1.2rem;
		margin-bottom: 1rem;
	}
	.pages {
	    height: 1.5rem;
	    line-height: 1.5rem;
	    margin: 0.5rem;
	}
	.pages .page-item{
		width: 1.5rem;
	    height: 1.5rem;
	    margin: 0 0.1rem 0.5rem;
	}

	.detail {
	    padding: 2rem 0;
	}
	.detail .detail-title {
	    font-size: 1.2rem;
	    margin-bottom: 3rem;
	}
	.detail .detail-title:after {
	    width: 2rem;
	    height: 2px;
	    bottom: -1rem;
	    left: 50%;
	    margin-left: -0.5rem;
	}
	.detail .detail-con {
	    font-size: 0.8rem;
	    padding: 0 0.5rem;
	}
	.about-title {
	    font-size: 1.6rem;
	    margin-bottom: 1.4rem;
	    padding-right: 0.5rem;
	    height: 2.5rem;
	    line-height: 2.5rem;
	    margin-right: 0.5rem;
	    border-right: 4px solid rgba(24, 56, 132, 1);
	}
	.about-con{
		display: block;
		padding: 0 0.5rem;
	}
	.about-con .about-img{
		width: 100%;
		height: 100%;
		margin-bottom: 1rem;
	}
	.about-des{
		margin-left: 0;
	}
	.about-items{
		flex-wrap: wrap;
		padding: 0 0.5rem;
		margin-bottom: 1.5rem;
	}
	.about-items .about-view-item {
	    width: 5rem;
	    padding: 1rem;
	    height: 5rem;
	    border-radius: 5px;
	    margin-bottom: 0.5rem;
	    font-size: 1rem;
	    margin-right: 0;
	}
	.about-view-item .about-item-num{
		font-size: 2rem;
		line-height: 2.2rem;
	}
	.about-links{
		margin-bottom: 2rem;
	}
	.about-links .about-link {
	    display: inline-block;
	    width: 8rem;
	    height: 2rem;
	    line-height: 2rem;
	    border-radius: 1rem;
	    font-size: 1rem;
        border: 1px solid rgba(24, 56, 132, 1);
        margin: 0 0.2rem;
	}
	.case-banner .swiper-con{
		padding: 1rem 0.5rem 0 0.5rem;
	}
	.case-banner {
	    margin: 1rem 0;
	    position: relative;
	}
	.case .swiper-slide{
		width: 100%;
	}
	.case-items{
		padding: 0 0.5rem;
		display: block;
	}
	.case-items .case-item {
	    width: 100%;
	    height: auto;
	    margin: 0.6rem 0 ;
	}
	.case-item .case-img{
		width: 100%;
	}
	.case-con{
		padding: 0 1rem;
	}
	.case-banner .swiper-slide{
		
	}
	.case-banner .swiper-con{
		display: block;
	}
	.case-ban-des{
		display: none;
	}
	.case-banner .swiper-button-prev, .case-banner .swiper-button-next{
		top: 0;
		margin-top: 0;
		transform: scale(0.6);
	}
	.case-item .case-img{
		height: auto;
	}
	.swiper-con .case-banner-more {
	    width: 3rem;
	    height: 1.8rem;
	    line-height: 1.8rem;
	    margin: 0 auto 0;
	}
	.case-con .case-title,.case-con .case-des{
		font-size: 1rem;
		line-height: 1.7rem;
	}
	.case-con .case-title{
		margin: 0.4rem 0;
	}
	.swiper-con .swiper-icon {
	    width: 3rem;
	    height: 3rem;
	    border-radius: 50%;
	    margin: 0 auto 1rem;
	}
	.swiper-icon-img{
		width: 100%;
	}
	.team{
		padding-top: 1rem;
	}
	.team-lists{
		display: block;
		padding: 0 0.4rem
	}
	.team-lists .team-list{
		margin-bottom: 1rem;
		width: 100%;
		height: auto;
	}
	.team-img{
		margin-bottom: 3.7rem;
	}
	.team-bottom {
	    height: 4rem;
	    font-size: 0.8rem;
	}
	.team-bottom .team-bottom-title {
	    font-size: 1rem;
	    margin: 0.8rem 0 0.1rem 0;
	}
	
	.swiper-con .case-ban-title{
		font-size: 1.1rem;
		margin-bottom: 1rem;
	}
}
