/* 页面底部 */
footer{
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.footerDiv{
	margin: auto;
	width: 100%;
	max-width: 1420px;
	box-sizing: border-box;
	padding: 100px 10px;
	padding-bottom: 40px;
	margin: 0 auto;
	color: #fff;
}
.footerDiv a{
	color: #fff;
}
.navDiv{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.navDiv .logo{
	width: 20%;
}
.navDiv .logo img{
	width: 80%;
}
.navDiv nav{
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: flex-end;
	gap: 8%;
}
.navDiv nav dl dt{
	font-size: 18px;
	margin-bottom: 5px;
	font-weight: normal;
}
.navDiv nav dl dd{
	padding-top: 10px;
	font-size: 16px;
	font-weight: lighter;
}
.navDiv nav dl dd a{
	font-weight: lighter;
}
.contactDiv{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 20px;
}
.contact h3{
	font-size: 1.8125rem;
	padding-bottom: 1.1rem;
	font-weight: 500;
}
.contact ul li{
	font-size: 16px;
	padding-bottom: 0.6rem;
}
.contact ul li i{
	margin-right: 5px;
}
.QRcode{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px 0;
}
.QRcode .QRcode-item{
	padding: 0 25px;
	position: relative;
}
.QRcode .QRcode-item:after{
	content: '';
	position: absolute;
	right: 0;
	top: 18px;
	width: 1px;
	height: 38px;
	background-color: #7491C8;
}
.QRcode .QRcode-item:last-child:after{
	display: none;
}
.QRcode .QRcode-item img{
	width: 100%;
	margin: 0 auto;
	display: block;
	max-width: 75px;
}
.QRcode .QRcode-item p{
	font-size: 12px;
	margin-top: 4px;
	text-align: center;
	white-space: nowrap;
}
.copyright{
	width: 100%;
	text-align: center;
	margin-top: 5rem;
}
.copyright p{
	font-size: 16px;
}

/* 弹窗样式 */
.getQuoteDiv{
	display: none;
	position: fixed;
	top: 0%;
	left: 0%;
	z-index: 101;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding: 0 10px;
	background-color: rgba(0, 0, 0, 0.6);
}
.getQuoteDiv .getQuoteDiv-inner{
	position: relative;
	max-width: 1040px;
	width: 100%;	
	background-color: var(--popup-bg);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.getQuoteDiv.show {
	display: flex;
}
.getQuoteDiv h3{
	width: 100%;
	height: 54px;
	display: flex;
	align-items: center;
	background-image: url(../_image/web_getquote_windows_03.png);
	font-weight: normal;
	position: relative;
	z-index: 3;
}
.getQuoteDiv h3 i {
	position: absolute;
	right: 45px;
	top: 50%;
	transform: translateY(-50%);
	width: 27px;
	height: 27px;
	cursor: pointer;
	background-image: url(../_image/web_getquote_windows_close_05.png);
	background-repeat: no-repeat;
}
.getQuoteDiv h3 img{
	height: 32px;
	vertical-align: middle;
	margin-left: 45px;
}
.getQuoteDiv h3 span{
	margin: 0.5rem 0 0.5rem 0;
	padding-left: 0.8rem;
	line-height: 1rem;
	color: #fff;
	font-size: 1rem;
	height: 25px;
	line-height: 25px;
	position: relative;
	margin-left: 20px;
	font-size: 16px;
}
.getQuoteDiv h3 span::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 1px;
	height: 100%;
	background-color: #fff;
}
.windowContent{
	display: flex;
	flex-direction: row;
}
.getQuoteDiv .success .windowContent{
	opacity: 0;
}
.windowContent > dt, .windowContent > dd{
	padding-bottom: 30px;
}
.windowContent > dt{
	flex: 5.5;
}
.windowContent > dd{
	flex: 4.5;
	padding-top: 25px;
}
.windowContent > dt ul{
	margin-top: 20px;
	padding-left: 40px;
}
.windowContent > dt ul li{
	margin-left: -0.35rem;
	padding-bottom: 1.6rem;
	color: #333333;
	font-size: 1.2rem;
	line-height: 1;
	position: relative;
}
.windowContent > dt ul li::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0.34rem;
	width: 2px;
	height: 100%;
	background-color: #0c48ff;
	z-index: 1;
}
.windowContent > dt ul li:first-child::before{
	top: 0.5rem;
	height: calc(100% - 0.5rem);
}
.windowContent > dt ul li:last-child::before{
	height: 0.5rem;
}
.windowContent > dt ul li h5{
	display: flex;
	flex-direction: row;
	align-items: center;
	font-size: 18px;
}
.windowContent > dt ul li h5 .icon{
	margin-right: 0.5rem;
	font-size: 9px;
	width: 0.8rem;
	height: 0.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	border: 1px solid #0c48ff;
	border-radius: 50%;
	position: relative;
	z-index: 2;
}
.windowContent > dt ul li i{
	color: #0c48ff;
}
.windowContent > dt ul li p{
	margin-left: 1.4rem;
	padding-top: 0.8rem;
	padding-bottom: 1.3rem;
	font-size: 14px;
	color: #646464;
	border-bottom: 1px solid #ccc;
}
.windowContent > dt ul li:last-child p{
	border-bottom: none;
	margin-bottom: 0;
}
.windowContent > dt ul li:last-child{
	padding-bottom: 0.5rem;
}
.windowContent > dd h5{
	font-size: 1rem;
	margin-left: 2rem;
	font-size: 18px;
}
.windowContent > dd ul{
	margin: 0 2rem;
	margin-top: 25px;
}
.windowContent > dd ul li{
	margin-bottom: 25px;
	font-size: 16px;
}
.windowContent > dd ul.checkList li{
	display: flex;
	flex-direction: row;
}
.windowContent > dd ul li p{
	font-size: 16px;
}
.windowContent > dd ul li i{
	color: #f00;
	font-style: normal;
	display: inline-block;
	padding-right: 0.4rem;
}
.windowContent > dd ul li input[type="text"] {
	border: 1px solid #ccc;
	border-radius: 5px;
	width: 100%;
	box-sizing: border-box;
	padding-left: 10px;
	height: 50px;
	line-height: 50px;
	margin-top: 15px;
}
.windowContent > dd .msg-ipt{
	margin: 0 2rem;
}
.windowContent > dd .msg{
	border: 1px solid #ccc;
	border-radius: 5px;
	width: 100%;
	box-sizing: border-box;
	padding-left: 10px;
	height: 50px;
	line-height: 50px;
}
.windowContent > dd ul li input[type="text"]::placeholder {
	color: #ccc;
}
.windowContent > dd ul.checkList li{
	padding-top: 0;
}
.windowContent > dd .sub-box{
	margin: 0 2rem;
}
.windowContent > dd .sub-box button {
	display: flex;
	width: 100%;
	height: 58px;
	align-items: center;
	justify-content: center;
	background-color: #285BDC;
	font-size: 26px;
	font-weight: 500;
	margin-top: 25px;
	border-radius: 29px;
	text-align: center;
	color: #fff;
	cursor: pointer;
}
.fengmian {
	position: relative;
}
.fengmian h4{
	color: #0c48ff;
	position: absolute;
	left: 45px;
	top: 20px;
	font-size: 18px;
	font-weight: 600;
}
.contactIntro{
	gap: 10px;
	margin-left: 35px;
}
.contactIntro {
	width: 92%;
	display: flex;
	font-size: 12px;
	line-height: 1.8;
}
.contactIntro dt{
	flex: 7;
	font-size: 14px;
}
.contactIntro dt span{
	display: block;
	color: #666;
	padding-bottom: 1.2rem;
}
.contactIntro dd{
	flex: 3;
	text-align: center;
}
.contactIntro dd img{
	max-width: 90px;
}
.checkList {
	display: flex;
}
.checkList label {
	padding-right: 1.5rem;
	padding-left: 5px;
}
.successDiv{
	max-width: 1420px;
	width: 100%;
	box-sizing: border-box;
	padding: 100px 10px;
	margin: 0 auto;
	text-align: center;
}
.getQuoteDiv .successDiv{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: none;
	flex-direction: column;
	justify-content: center;
	z-index: 2;
}
.getQuoteDiv .success .successDiv{
	display: flex;
}
.successDiv img{
	max-width: 250px;
	display: block;
	margin: 0 auto;
}
.successDiv h4{
	font-size: 30px;
	color: #285BDC;
}
.successDiv p{
	color: #999;
	font-size: 18px;
	margin-top: 20px;
}
/* 定义基础大小和位置 */
.successDiv .circle-progress {
  width: 60px;
  height: 60px;
  position: relative;
  margin: 0 auto;
  margin-top: 20px;
}
.successDiv .circle-progress span{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: 3;
	font-size: 24px;
	color: #285BDC;
}
/* 圆圈的基本样式 */
.successDiv .circle {
  width: 100%;
  height: 100%;
  border-radius: 50%; /* 将正方形变为圆形 */
  background-color: transparent; /* 背景透明 */
  border: 8px solid #D9D9D9; /* 外圈灰色线条 */
  border-left-color: #285BDC; /* 左边蓝色线条作为起始点 */
  animation: spin 2s linear infinite; /* 动画名称、时长、速度曲线、重复次数 */
}
/* 实现旋转动画 */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.default-btn{
	background-color: #285BDC;
	color: #fff;
	transition: color .3s linear,background .3s linear;
}
.default-btn:hover{
	background-color: #fff;
	color: #285BDC;
}
.default-btn-border{
	background-color: #285BDC;
	color: #fff;
	border: 1px solid #285BDC;
	transition: all .3s linear;
}
.default-btn-border:hover{
	background-color: #fff;
	color: #285BDC;
}

/* 视频播放样式 */
.video-container{
	position: relative;
	padding-top: 56.25%;
	background-color: rgba(0, 0, 0, 0.2);
	border-radius: 25px;
	overflow: hidden;
}
.myVideo {
	position: absolute;
	left: 0;
	top: 0;
    width: 100%;
	height: 100%;
    display: block;
}
.playPauseButton {
    position: absolute;
	width: 15%;
	height: 0px;
	padding-bottom: 15%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    /* display: none; */
	color: #fff;
	font-size: 1.5rem;
	border: 2px solid #fff;
    z-index: 1;
	align-items: center;
	justify-content: center;
}
.playPauseButton i{
	position: absolute;
	padding-top: 100%;
	transform: translate(20%, 0);
}
/* 鼠标悬停时显示播放按钮 */
.video-container:hover .playPauseButton {
    display: flex;
}

.scroll-top{
	position: fixed;right: 20px;
	bottom: 100px;
	z-index: 99;
	border: 3px solid #285BDC;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 4px;
	background: #fff;
	transition: opacity .3s linear;
	pointer-events:none;
	opacity: 0;
}
.scroll-top i{
	color: #285BDC;
	font-size: 40px;
}
.scroll-top.active{
	pointer-events:auto;
	opacity: 1;
}

@media screen and (max-width:1200px){
	.navDiv nav dl dt{
		font-size: 16px;
	}
	.navDiv nav dl dd{
		font-size: 14px;
	}
	.contact h3{
		font-size: 26px;
	}
	.contact ul li{
		font-size: 14px;
	}
	.copyright p{
		font-size: 14px;
	}
}
@media screen and (max-width:1080px){
	.getQuoteDiv{
		padding-top: 10px;
	}
	.getQuoteDiv.show {
		display: block;
	}
	.getQuoteDiv .getQuoteDiv-inner{
		height: 100%;
		display: flex;
		flex-direction: column;
	}
	.windowContent{
		flex: 1;
		flex-direction: column;
		overflow-y: scroll;
	}
	.fengmian img{
		width: 100%;
		max-width: none;
	}
}
@media screen and (max-width:1024px){
	.footerDiv{
		padding: 80px 10px;
		padding-bottom: 40px;
	}
	.navDiv nav{
		gap: 0;
		justify-content: flex-start;
	}
	.navDiv nav dl{
		width: 25%;
		margin-bottom: 30px;
		box-sizing: border-box;
		padding: 0 5px;
	}
	
	.contactDiv{
		align-items: flex-start;
	}
}
@media screen and (max-width:768px){
	.footerDiv{
		padding: 40px 20px;
	}
	.navDiv .logo{
		width: auto;
	}
	.navDiv .logo img{
		width: 40%;
	}
	.navDiv{
		display: block;
	}
	.navDiv nav{
		margin-top: 20px;
	}
	.navDiv nav dl{
		margin-bottom: 20px;
	}
	.navDiv nav dl dd{
		padding-top: 10px;
	}
	.contact h3{
		font-size: 20px;
	}
	
	.copyright{
		margin-top: 40px;
	}
	
	.getQuoteDiv h3 img{
		margin-left: 10px;
		height: 20px;
	}
	.getQuoteDiv h3 span{
		font-size: 12px;
	}
	.getQuoteDiv h3 i{
		right: 10px;
	}
	.windowContent > dt ul{
		padding-left: 20px;
	}
	.windowContent > dd ul li input[type="text"]{
		height: 40px;
		line-height: 40px;
	}
	.windowContent > dd .msg{
		height: 40px;
		line-height: 40px;
	}
	.windowContent > dd .sub-box button{
		height: 48px;
		font-size: 18px;
	}
	.windowContent > dd h5{
		margin-left: 20px;
	}
	.windowContent > dd ul{
		margin: 0 20px;
		margin-top: 25px;
	}
	.windowContent > dd .msg-ipt{
		margin: 0 20px;
	}
	.windowContent > dd .sub-box{
		margin: 0 20px;
	}
	.windowContent > dd ul li{
		font-size: 12px;
	}
	.windowContent > dd h5{
		font-size: 16px;
	}
	.fengmian h4{
		left: 0;
		width: 100%;
		text-align: center;
	}
	.contactIntro{
		margin-left: 20px;
	}
	
	.scroll-top{
		width: 32px;
		height: 32px;
		right: 10px;
		bottom: 60px;
	}
	.scroll-top i{
		font-size: 30px;
		margin-bottom: 2px;
	}
}
@media screen and (max-width:640px){
	.navDiv nav dl{
		width: 33.333%;
	}
	.contactDiv{
		display: block;
		margin-top: 0;
	}
	.QRcode{
		margin-top: 20px;
		gap: 20px;
	}
	.QRcode .QRcode-item{
		padding: 0;
		margin-right: 0px;
	}
	.QRcode .QRcode-item:after{
		display: none;
	}
	.QRcode .QRcode-item img{
		max-width: 62px;
	}
}
@media screen and (max-width:480px){
	.navDiv nav{
		flex-direction: column;
	}
	.navDiv nav dl{
		width: 100%;
		margin-bottom: 10px;
	}
	.navDiv nav dl dt{
		position: relative;
	}
	.navDiv nav dl dt:after{
		content: '+';
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
	}
	.navDiv nav dl dd{
		display: none;
	}
	.navDiv nav dl.active dd{
		display: block;
	}
	.navDiv nav dl.active dt:after{
		content: '-';
	}
	
	.fengmian h4{
		top: 12px;
		font-size: 0.9375rem;
	}
	.contactIntro dt span br{
		display: none;
	}
	.checkList label{
		padding-right: 10px;
	}
	
	.successDiv h4{
		font-size: 26px;
	}
	.successDiv img{
		max-width: 150px;
	}
}