/* 弹窗样式 */
 .video-modal {
	display: none; /* 默认隐藏 */
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;    
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.8); /* 半透明背景 */
}
.video-modal .videobox{
  width: 100%;
  height: 100%;
}
.video-modal .row-center{
  display: flex;
  justify-content: center;
  align-items: center;
}
/* 弹窗内容 */
.video-modal .modal-content {
	position: relative;
	background-color: #fff;
	margin: 10% auto;
	padding: 20px;
	border: 1px solid #888;
	/*width: 80%;*/
	max-width: 80vw;
	text-align: center;
}
@media (max-width: 992px) {
    .video-modal .modal-content {
        width: 100%;
        margin: 0 auto;
        max-width: 100vw;
    }
}

.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
	animation: pulse 2s infinite;
}

.play-button::before {
	content: "";
	width: 0;
	height: 0;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-left: 30px solid #ff4757;
	transform: translateX(5px);
	transition: all 0.3s ease;
}

.play-button:hover {
	background-color: rgba(255, 255, 255, 1);
	transform: translate(-50%, -50%) scale(1.1);
}

.play-button:hover::before {
	border-left-color: #ff6b81;
}

/* 点击后的动画效果 */
.play-button.clicked {
	animation: pulse 0.5s ease-out;
}

@keyframes pulse {
	0% {
		transform: translate(-50%, -50%) scale(1);
		opacity: .8;
	}
	50% {
		transform: translate(-50%, -50%) scale(1.2);
		opacity: 0.6;
	}
	100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 1
	}
}
/* 关闭按钮 */
.video-modal .close {
  position: absolute;
  right: 5px;
  top: 4px;
  color: #aaa;
  font-size: 28px;
  cursor: pointer;
  z-index: 999;
}

.video-modal .close:hover {
	color: #000;
}

/* 视频样式 */
.video-modal video {
	width: 100%;
	height: auto;
	max-height: 60vh;
}





  .introbox2{
    height: 770px;
    background-attachment: fixed;
    display: flex;
    align-items: center;
	background-size: cover;
  }
  .introbox2 h2{
    color: #fff;
    font-size: var(--fs36);
    font-weight: 500;
    line-height: 1;
  }
  .introbox2 p{
    color: #fff;
    font-size: var(--fs18);
    font-weight: 500;
    margin-top: 15px;
  }
  .introbox2 .left{
    width: 50%;
  }
  .introbox2 .right{
    width: 50%;
    border-left: 1px solid #fff;
    height: 50px;
    justify-content: flex-end;
  }
  .introbox2 .right a{
    display: inline-block;
    background: #07308C;
    width: 178px;
    transition: all .4s;
    color: #fff;
    text-align: center;
    padding: 10px;
  }
  .introbox2 .right i{
    display: inline-block;
    vertical-align: middle;
    width: 32px;
    height: 10px;
    background: url(../images/jt64x20-1.png) no-repeat center;
    background-size: 100% 100%;
    margin-left: 28px;
    transition: all .4s;
  }

  .pro-container {
	padding: 6.8% 0;
	gap: 20px;
	/* background-color: #f5f7fa; */
	background-color: #EFF6FF;
	animation: fadeIn 1s ease-in;
  }
  
  .grid-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	height: 100%;
  }
  
  .pro-container .container {
	/* padding: 15px; */
	border: 1px solid #eee;
	border-radius: 8px;
	transition: all 0.3s ease;
	background-color: #fff;
	padding-bottom: 10px;
  }
  
  .pro-container .container:hover {
	/* transform: scale(1.08); */
	/* margin-top: -10px; */
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  .pro-container .container .imgbox {
	overflow: hidden;
  }
  .pro-container .container .imgbox img{
	transition: all 0.3s ease;
  }
  .pro-container .container:hover .imgbox img {
	transform: scale(1.1);
	transition: all 0.3s ease;
  }
  
  .pro-container .t1 {
	font-size: 17px;
	font-weight: bold;
	  text-align: center;
	  color: #fff;
	  line-height: 40px;
	  background-color: rgba(0, 0, 0, .4);
	  margin-top: -40px;
	  position: relative;
	  z-index: 1;
  }
  
  .pro-container ul {
	list-style: none;
	padding: 10px;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	/* justify-content: space-between; */
  }
  
  .pro-container li {
	padding: 0 10px;
	text-align: center;
	margin: 6px 0;
	color: #666;
	font-size: 14px;
	transition: all 0.3s ease;
  }
  
  .pro-container li:hover {
	/*color: #1890ff;*/
	/*text-decoration: underline;*/
	/*cursor: pointer;*/
  }
  
  .pro-container .more {
	color: #A00826;
	font-size: 14px;
	padding: 0 20px 20px 20px;
	text-align: right;
	display: none;
  }
  
  @keyframes fadeIn {
	from {
	  opacity: 0;
	  transform: translateY(20px);
	}
	to {
	  opacity: 1;
	  transform: translateY(0);
	}
  }



  .intro-title .row{
	flex-wrap: wrap;
  }




  .index-youshi {
	padding: 50px 0 80px;
	background: #fff;
  }
  .index-youshi .auto-title-des {
	max-width: 1000px;
	margin: 20px auto 20px;
	font-size: 16px;
	line-height: 1.8;
	color: #666;
  }
  .index-youshi .advantage-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	text-align: center;
  }
  .index-youshi .advantage-item {
	padding: 40px 30px;
	background: #f8f9fc;
	border-radius: 8px;
	transition: all 0.3s;
	border: 1px solid #ddd;
  }
  /* .index-youshi .advantage-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: all 0.3s;
  } */
  .index-youshi .advantage-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  }
  .index-youshi .advantage-icon img {
	width: 40px;
	height: 40px;
	transition: transform 0.3s;
  }
  /* .index-youshi .advantage-item:hover .advantage-icon img {
	transform: scale(1.1);
  } */
  .index-youshi .advantage-title {
	font-size: 16px;
	color: #333;
	margin-bottom: 15px;
	font-weight: 500;
	position: relative;
	padding-bottom: 15px;
  }
  .index-youshi .advantage-title:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 3px;
	background: var(--mcolor);
	border-radius: 2px;
  }
  .index-youshi .advantage-desc {
	font-size: 14px;
	color: #666;
	line-height: 1.8;
  }
  @media (max-width: 1400px) {
	.index-youshi {
	  padding: 60px 0;
	}
	.index-youshi .advantage-grid {
	  gap: 30px;
	}
	.index-youshi .advantage-item {
	  padding: 30px 20px;
	}
	.index-youshi .advantage-icon {
	  width: 70px;
	  height: 70px;
	}
	.index-youshi .advantage-icon img {
	  width: 35px;
	  height: 35px;
	}
	.index-youshi .advantage-title {
	  font-size: 18px;
	}
  }
  @media (max-width: 992px) {
	.index-youshi {
	  padding: 30px 0;
	}
	.index-youshi .advantage-grid {
	  grid-template-columns: 1fr;
	  /* grid-template-columns: repeat(1, 1fr); */
	  gap: 10px;
	}
	.index-youshi .auto-title-des {
	  margin: 15px auto 0;
	  font-size: 12px;
	  line-height: 24px;
	}
	.grid-container{
		/* display: block; */
		grid-template-columns: repeat(1, 1fr);
		gap: 10px;
	}
	.index-youshi .advantage-title{
		font-size: 14px;
	}
	.index-youshi .advantage-desc{
		font-size: 12px;
	}
	.index-youshi .advantage-icon{
		width: 50px;
		height: 50px;
	}
	.introbox2{
		height: 70vw;
        background-size: cover;
        background-attachment: unset;
        background-position: center;
	}
	.intro-title{
		text-align: center;
	}
	.introbox2 .left{
		width: 100%
	}
	.introbox2 .right{
		width: 100%;
		border-left: 0;
		justify-content: center;
		margin-top: 20px;
	}
  }






  .news-box {
	padding: 80px 0;
	background: #fff;
	position: relative;
  }
  .news-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
  }
  .gd-title-top {
	display: flex;
	align-items: center;
	color: #666;
	font-size: 13px;
  }
  .gd-title-top img {
	margin-left: 5px;
	width: 20px;
  }
  .newsbox {
	display: flex;
	gap: 20px;
  }
  .news-l {
	width: 50%;
  }
  .news-r {
	width: 50%;
	display: flex;
	flex-direction: row;
	gap: 20px;
	align-items: flex-start;
  }
  .news-r .news-item {
	width: 50%;
  }
  .news-item {
	/* height: 100%; */
	/* background: #f7f7f7; */
	/* padding: 20px; */
	border-radius: 10px;
	transition: all 0.3s;
  }
  .news-item:hover img{
	transform: scale(1.05);
	transition: all .3s;
  }
  .news-item .title {
	font-size: 16px;
	font-weight: bold;
	color: #000;
	margin-bottom: 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
  }
  .news-item .desc {
	color: #999;
	margin-bottom: 20px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	font-size: 14px;
	line-height: 24px;
	height: 48px;
  }
  .news-item img {
	width: 100%;
  }
  .news-item .more {
	margin-top: 20px;
	/* color: #000; */
	font-size: 14px;
  }
  .news-item .more:hover{
	color: #0066ff;
  }
  .news-item .imgbox{
	border-radius: 5px;
  }
  .corner-img {
	position: absolute;
	bottom: 0;
	right: 0;
	max-width: 550px;
  }
  .imgbox{
	overflow: hidden;
  }
  .imgbox img{
	transition: all .3s;
  }
  .news-box .sortname {
	font-size: var(--fs36);
	font-weight: bold;
	line-height: 1.22em;
	color: #181818;
  }
  .news-box .sortname span{
	color: #A00826;
  }
  .relative{
	position: relative;
}

@media (max-width: 992px) {
	.news-box{}
	.news-box .corner-img{
		display: none;
	}
	.newsbox{
		display: block;
	}
	.news-l,.news-r{
		width: 100%;
		flex-wrap: wrap;
	}
	.news-r .news-item {
		width: 100%;
        border-bottom: 1px solid #ddd;
        padding-bottom: 10px;
        border-radius: 0;
	}
	.news-l{
		margin-bottom: 20px;
		border-bottom: 1px solid #ddd;
		padding-bottom: 10px;
	}
	.news-item .more{
		margin-top: 12px;
	}
	.news-box .sortname{
		font-size: 18px;
	}
	.news-box{
		padding: 30px 0;
	}
	.news-header{
		margin-bottom: 20px;
	}
	.news-item .title{
		margin-bottom: 10px;
	}
	.news-item .desc{
		margin-bottom: 15px;
		line-height: 22px;
	}
}







.solution_three{ overflow:hidden;padding: 20px 0 60px;}

.solution_three .ul{}

.solution_three .ul ul{ width:100%;--gap:12px;margin: calc(var(--gap)*-1);}

.solution_three .ul ul li{width:33%; overflow:hidden; background-color: rgba(255, 255, 255, 1); padding: var(--gap);}

.solution_three .ul ul li .boxs{border: 1px solid #eee;}

.solution_three .ul ul li .cons{ width:94%; margin:0 auto; max-width:666px; overflow:hidden; margin-top:12px; margin-bottom:12px;display: flex;align-items: center;justify-content: space-between;}

.solution_three .ul ul li .txts{ width:60%; max-width:380px; margin-top:18px; margin-bottom:10px; font-size:14px;}

.solution_three .ul ul li .h3{font-weight:bold; line-height:30px; height:30px; overflow:hidden;white-space:nowrap;text-overflow:ellipsis; margin-bottom:17px;}

.solution_three .ul ul li .p{ overflow:hidden; line-height:22px; padding-top:3px; padding-bottom:3px; }

.solution_three .ul ul li .imgs{ width:30%;}

.solution_three .ul ul li .imgs img{ display:block; max-width:100%;}
.f22 {
    font-size: 22px;
}


@media (max-width: 992px) {
	.solution_three .ul ul{--gap:0;}

.solution_three .ul ul li{ width:100%; margin-bottom:2%; }

.solution_three .ul ul li .cons{ max-width:640px;}

.solution_three .ul ul li .h3{ line-height:26px; height:26px; margin-bottom:12px;}

.solution_three .ul ul li .txts{ font-size:13px;}

.solution_three .ul ul li .p{ background-position:left top 8px;}

}




.suanfabox {
	position: relative;
	padding: 68px 0;
	background-color: #EFF6FF;
}
.suanfabox .des{
	margin-top: 30px;
    width: 100%;
    font-size: 16px;
    color: #666;
	line-height: 24px;
	margin-bottom: 20px;
}
.suanfabox .cont-img{
	width: 100%;
}
.suanfabox .cont-box{
	width: 68%;
}
.suanfabox .cont-box .title{
	font-size: 30px;
}
.suanfabox .img-box{
	width: 30%;
	flex: 0 0 30%;
}
.suanfabox .img-box img{
	width: 100%;
}
.suanfabox .btn-box{
	display: flex;
	margin-top: calc(85vw* 0.0305);
}
.suanfabox .more-box-a.type-c .more-box::before{
	border-color: #00a0e9;
    background-color: #00a0e9;
}
.suanfabox .more-box-a.type-b .more-box::before{
	border-color: #00a0e9;
}
.suanfabox .more-box-a.type-b:hover .more-box{
	color: #fff;
}
.suanfabox .more-box-a.type-b .more-box{
	color: #00a0e9;
}
.put-algorithm-list{
	background-color: #f5f5f5;
	padding: 30px 0;
}
@media (max-width: 992px) {
}