.page-head-background{
	position: relative;
	background: url('../../images/about/index/banner.png') no-repeat;
	background-size: cover;
	background-position: center;
	padding: 125px 0;
}
.page-head-background::before{
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), linear-gradient(90deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.8) 50%, rgba(10, 10, 10, 0) 100%);
}
.page-head{
	position: relative;
}
.page-head-title{
	font-size: 43px;
	color: white;
	font-weight: bold;
	margin-bottom: 20px;
}
.page-head-msg{
	font-size: 14px;
	color: #d6d6d6;
	line-height: 26px;
	max-width: 525px;
	margin-bottom: 20px;
}
.page-head-btn{
	display: block;
	width: fit-content;
	padding: 12px 26px;
	background: #1D4ED8;
	color: white;
	border-radius: 6px;
	font-size: 14px;
}
.page-head-btn:hover{
	opacity: .8;
}
.advantage-background{
	background: white;
	padding: 60px 0;
}
.public-title{
	font-size: 30px;
	color: #181818;
	text-align: center;
}
.public-msg{
	font-size: 14px;
	color: #4B5563;
	margin: 17px 0 52px 0;
	text-align: center;
}
.advantage-box{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.advantage-item{
	width: 23.5%;
	text-align: center;
}
.advantage-item img{
	width: 70px;
	height: auto;
}
.advantage-item-title{
	font-size: 17px;
	color: #111827;
	font-weight: bold;
	margin: 18px 0;
}
.advantage-item-msg{
	font-size: 14px;
	color: #4B5563;
}
@keyframes mobileZoomIn {
	0% {
		transform: translateY(0) scale(1);
		-webkit-transform: translateY(0) scale(1);
		-moz-transform: translateY(0) scale(1);
		-ms-transform: translateY(0) scale(1);
		-o-transform: translateY(0) scale(1);
	}
	50% {
		transform: translateY(-1rem) scale(1.2);
		-webkit-transform: translateY(-1rem) scale(1.2);
		-moz-transform: translateY(-1rem) scale(1.2);
		-ms-transform: translateY(-1rem) scale(1.2);
		-o-transform: translateY(-1rem) scale(1.2);
	}
	100% {
		transform: translateY(0) scale(1);
		-webkit-transform: translateY(0) scale(1);
		-moz-transform: translateY(0) scale(1);
		-ms-transform: translateY(0) scale(1);
		-o-transform: translateY(0) scale(1);
	}
}
@keyframes rotates {
	0% {
		transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
	}
}
.advantage-item:nth-child(1) img,.advantage-item:nth-child(4) img{
	animation: mobileZoomIn 4s ease infinite;
    -webkit-animation: mobileZoomIn 4s ease infinite;
}
.advantage-item:nth-child(2) img{
	animation: rotates 4s ease infinite;
    -webkit-animation: rotates 4s ease infinite;
}
.advantage-item:nth-child(3) img{
	animation: rotates 6s ease infinite;
    -webkit-animation: rotates 6s ease infinite;
}
.about-background{
	background: white;
	padding: 60px 0;
}
.about-box{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.about-left{
	width: 48%;
}
.about-box img{
	width: 48%;
	border-radius: 8px;
}
.about-left-title{
	font-size: 26px;
	color: black;
	font-weight: bold;
	margin-bottom: 26px;
}
.about-left-line{
	width: 63px;
	height: 3px;
	background: #2B7FFB;
	margin-bottom: 20px;
}
.about-left-msg{
	max-width: 90%;
	font-size: 14px;
	color: #4B5563;
	line-height: 26px;
	margin-bottom: 26px;
}
.about-left-btn{
	display: block;
	width: fit-content;
	padding: 12px 35px;
	background: #2B7FFB;
	color: white;
	border-radius: 6px;
	font-size: 14px;
	margin-top: 50px;
}
.about-left-btn:hover{
	opacity: .8;
}
.qualification-background{
	background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), linear-gradient(135deg, #EFF6FF 1%, #E0E7FF 99%);
	padding: 60px 0;
}
.qualification-box{
	display: flex;
	justify-content: space-between;
	align-content: center;
	flex-wrap: wrap;
}
.qualification-item{
	width: 22%;
	padding: 17px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.001), rgba(0, 0, 0, 0.001)), #FFFFFF;
	box-shadow: 0rem 0.25rem 0.38rem -0.25rem rgba(0, 0, 0, 0.1), 0rem 0.63rem 0.94rem -0.19rem rgba(0, 0, 0, 0.1);
	border-radius: 14px;
	position: relative;
	transition: all .3s;
}
.qualification-item:hover{
	-webkit-transform: scale(1.05);
}
.qualification-item-icon{
	position: absolute;
	top: -14px;
	right: -14px;
	width: 35px;
	height: 35px;
	background: #2563EB;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.qualification-item-icon img{
	width: 18px;
	height: 18px;
}
.qualification-img{
	width: 100%;
	height: 315px;
	border-radius: 7px;
}
.qualification-title{
	font-size: 17px;
	color: #1F2937;
	font-weight: bold;
	margin: 17px 0 9px 0;
}
.qualification-msg{
	font-size: 14px;
	color: #4B5563;
}
.qualification-tips{
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.001), rgba(0, 0, 0, 0.001)), rgba(255, 255, 255, 0.3);
	padding: 8px 17px;
	font-size: 14px;
	color: #374151;
	display: flex;
	align-content: center;
	width: fit-content;
	margin: 50px auto 0 auto;
	border-radius: 8px;
}
.qualification-tips img{
	width: 17px;
	margin-right: 4px;
}
.grow-background{
	background: white;
	padding: 60px 0;
}
.grow-box{
	position: relative;
	width: 930px;
	margin: auto;
	padding: 35px 0;
}
.grow-box::after{
	content: "";
    position: absolute;
    width: 0.1rem;
    height: 100%;
    background: #f2f2f2;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}
.grow-item-box{
	display: flex;
	margin-bottom: 20px;
}
.grow-item-box:nth-child(2n){
	justify-content: flex-end;
}
.grow-item{
	padding: 17px;
	border-radius: 8px;
	box-shadow: 0rem 0.25rem 0.38rem -0.25rem rgba(0, 0, 0, 0.1), 0rem 0.63rem 0.94rem -0.19rem rgba(0, 0, 0, 0.1);
	width: 400px;
}
.grow-item div:nth-child(1){
	font-size: 19px;
	color: #423838;
	font-weight: bold;
	margin-bottom: 12px;
}
.grow-item div:nth-child(2){
	font-size: 14px;
	color: #919191;
}
.contact-background{
	background: #F9FAFB;
	padding: 60px 0;
}
.contact-box{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.contact-item{
	width: 32%;
	text-align: center;
}
.contact-item img{
	width: 71px;
	height: auto;
}
.contact-item-title{
	font-size: 17px;
	color: #111827;
	font-weight: bold;
	margin: 18px 0;
}
.contact-item-msg{
	font-size: 14px;
	color: #4B5563;
}

.agent{
    height: 500px;
    background-image: url('../images/agent/header.png');
    background-size:2500px;
    background-position:  center;
    background-repeat: no-repeat;
}
/* .agent-overview-new{
    max-width: 1200px;
    margin: auto;
} */
.agent-title{
    padding-top: 125px;
}
.agent-title span{
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}
.agent-content{
    margin-top: 3%;
    margin-bottom: 8%;
    color: white;
    width: 500px;
}
.agent-call{
    display: flex;
     margin-bottom: 3%;
}
.agent-call-btn1 a{
    padding: 10px 30PX;
    background-color:  #1D4ED8;;
    border-radius: 5px;
    color: white;
}
.agent-call-btn1 a:hover{
    background-color:  #7296f8;;
    color: rgb(255, 255, 255);
}
.product{
        background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), linear-gradient(180deg, #F5F9FF 0%, #FFFFFF 100%);
}
.open-product-title{
    font-size:30px;
    font-weight:bold;
    
}
.open-product-body{
    display: flex;
}
.open-product-item{
    padding: 20px;
}
.open-product-item-icon img{
    width: 40px;
}
.open-product-item-title{
    margin-top: 20px;
}
.open-product-item-text{
    margin-top: 20px;
    color: #4B5563;
    line-height: 1.5rem;
}

/* 手机样式 */
@media (max-width: 1024px) {
    .page-head-title{
		font-size: 18px;
	}
	.page-head-msg{
		font-size: 13px;
	}
	.public-title{
		font-size: 16px;
	}
	.public-msg{
		font-size: 13px;
	}
	.advantage-item{
		width: 100%;
		margin-bottom: 20px;
	}
	.advantage-item:last-child{
		margin-bottom: 0;
	}
	.about-left{
		width: 100%;
		margin-bottom: 20px;
	}
	.about-box img{
		width: 100%;
	}
	.advantage-item-title{
		font-size: 14px;
	}
	.advantage-item-msg{
		font-size: 13px;
	}
	.about-left-title{
		font-size: 16px;
	}
	.about-left-msg{
		font-size: 13px;
	}
	.qualification-item{
		width: 100%;
		margin-bottom: 20px;
	}
	.qualification-item:last-child{
		margin-bottom: 0;
	}
	.qualification-title{
		font-size: 14px;
	}
	.qualification-msg{
		font-size: 12px;
	}
	.grow-box{
		width: 92%;
	}
	.grow-box::after{
		display: none;
	}
	.grow-item{
		width: 100%;
		margin-bottom: 20px;
	}
	.grow-item:last-child{
		margin-bottom: 0;
	}
	.grow-item div:nth-child(1){
		font-size: 14px;
	}
	.grow-item div:nth-child(2){
		font-size: 12px;
	}
	.contact-item{
		width: 100%;
		margin-bottom: 20px;
	}
	.contact-item:last-child{
		margin-bottom: 0;
	}
	.contact-item-title{
		font-size: 14px;
	}
	.contact-item-msg{
		font-size: 12px;
	}
}