/*
Author: 金鲤云IT服务平台
Version:1.0
*/
@charset "utf-8";

/*banner*/
.x-banner {
	position: relative;
}

.x-banner .arr-container {
	position: absolute;
	right: 0;
	bottom: 50px;
	max-width: 1430px;
	width: 100%;
	left: 50%;
	transform: translateX(-50%);
	padding-left: 15px;
	padding-right: 15px;
	z-index: 3;
}

.x-banner .arr-btns {
	display: flex;
	justify-content: flex-end;
}

.x-banner .arr-btns .swiper-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border: 1px solid #eff0f1;
	border-radius: 50%;
	cursor: pointer;
}

.x-banner .arr-btns .swiper-btn.swiper-next {
	margin-right: 30px;
}

.x-banner .arr-btns .swiper-btn:hover {
	background-color: #0154b4;
	border-color: #0154b4;
}

.x-banner .arr-down {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	cursor: pointer;
	-webkit-animation: shakes 1s infinite;
	animation: shakes 1s infinite;
	-moz-animation: shakes 1s infinite;
	-o-animation: shakes 1s infinite;
}

.x-banner .swiper-slide img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
}

.x-banner .swiper-slide .con {
	position: absolute;
	width: 100%;
	text-align: center;
	top: 25%;
}

.x-banner .swiper-slide .con h3 {
	font-size: 42px;
	color: #ffffff;
	font-weight: bold;
}

.x-banner .swiper-slide .con p {
	font-size: 34px;
	color: #ffffff;
	margin-bottom: 15px;
}

@media (max-width:960px) {
	.x-banner .swiper-slide img {
		height: 95vh;
	}

	.x-banner .swiper-slide .con h3 {
		font-size: 26px;
	}

	.x-banner .swiper-slide .con p {
		font-size: 22px;
	}

	.x-banner .arr-btns .swiper-btn {
		width: 40px;
		height: 40px;
	}
}

@media (max-width:768px) {
	.x-banner .swiper-slide img {
		height: 60vh;
	}

	.x-banner .arr-container {
		bottom: 15%;
	}

	.x-banner .arr-btns {
		display: none;
	}

	.x-banner .swiper-slide .con h3 {
		font-size: 18px;
		line-height: 1.6;
	}

	.x-banner .swiper-slide .con p {
		margin-bottom: 10px;
		font-size: 16px;
	}
}

.index-title {
	margin-bottom: 50px;
	display: flex;
	align-items: baseline;
}

.index-title h3 {
	margin-right: 20px;
	font-size: 40px;
	color: #333333;
}

.index-title p {
	font-size: 16px;
	color: #999999;
	flex: 1;
}

@media (max-width:1230px) {
	.index-title h3 {
		font-size: 32px;
	}
}

@media (max-width:960px) {
	.index-title {
		flex-wrap: wrap;
		margin-bottom: 20px;
	}

	.index-title h3 {
		width: 100%;
		margin-right: 0;
		margin-bottom: 10px;
	}

	.index-title p {
		width: 100%;
	}
}

@media (max-width:768px) {
	.index-title {
		text-align: center;
	}

	.index-title h3 {
		font-size: 18px;
	}
}

@keyframes shakes {
	0% {
		top: 10px;
	}

	50% {
		top: 15px;
	}

	100% {
		top: 10px;
	}
}

@-moz-keyframes shakes

/* Firefox */
	{
	0% {
		top: 10px;
	}

	50% {
		top: 15px;
	}

	100% {
		top: 10px;
	}
}

@-webkit-keyframes shakes

/* Safari 和 Chrome */
	{
	0% {
		top: 10px;
	}

	50% {
		top: 15px;
	}

	100% {
		top: 10px;
	}
}

@-o-keyframes shakes

/* Opera */
	{
	0% {
		top: 10px;
	}

	50% {
		top: 15px;
	}

	100% {
		top: 10px;
	}
}


.about {
	display: flex;
	justify-content: center;
	align-items: center;
}

.about .box {
	display: flex;
	max-width: 700px;
	margin-left: auto;
}

.about .img {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
	width: 50%;
	text-align: right;
}

.about .box img {
	max-width: 100%;
}

.about .con {
	/* width: 50%; */
	color: #000000;
	line-height: 1.8;
	padding: 0;
	flex: 1;
}

.about .con h4 {
	margin-bottom: 20px;
	font-size: 16px;
}

.about .con h3 {
	font-size: 22px;
	line-height: 40px;
	margin-bottom: 24px;
}

.about .con p {}

.about .con>p {
	font-size: 14px;
	color: #999999;
	padding-right: 25%;
}

.about .con .flex {
	display: flex;
	flex-wrap: wrap;
	margin-top: 25px;
}

@media (max-width:1460px) {
	.about {
		max-width: 1430px;
		margin: 0 auto;
		padding-left: 15px;
		padding-right: 15px;
	}

	.about .con {
		margin-left: 35px;
	}
}

@media (max-width:1230px) {
	.about .con {
		line-height: 1.8;
	}

	.about .con>p {
		font-size: 14px;
		color: #999999;
		padding-right: 12%;
	}

	.about .con h4 {
		margin-bottom: 10px;
		font-size: 14px;
	}

	.about .con h3 {
		font-size: 20px;
		line-height: 1.5;
		margin-bottom: 16px;
	}

	.about .con .flex {
		margin-top: 10px;
	}
}

@media (max-width:960px) {
	.about {
		flex-wrap: wrap;
		overflow: hidden;
	}

	.about .box {
		flex-wrap: wrap;
		margin-left: 0;
		max-width: unset;
	}

	.about .con {
		margin-left: 0;
		width: 100%;
	}

	.about .img {
		width: 100%;
		margin-bottom: 25px;
	}

	.about .box img {
		width: 100%;
		/* display: none; */
	}

	.about .con h3 {
		font-size: 16px;
	}

	.about .con>p {
		color: #999999;
		padding-right: 0;
	}
}

.product {
	background-color: #eef3f7;
}

.product ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.product ul::after {
	content: '';
	width: 30%;
	height: 0;
	visibility: hidden;
}

.product ul li {
	display: flex;
	flex-direction: column;
	width: 32%;
	padding: 32px 50px;
	background-color: #ffffff;
}

.product ul li:hover {
	/* background-color: #0b65ce; */
	background-color: #ffffff;
}

.product ul li h3 {
	font-size: 22px;
	color: #000000;
	line-height: 1.4;
}

.product ul li:hover h3 {
	color: #0b65ce;
}

.product ul li .con {
	margin: 15px 0;
}

.product ul li .con p {
	font-size: 14px;
	color: #666666;
	line-height: 1.5;
}

.product ul li:hover .con p {
	color: #0b65ce
}

.product ul li a {
	display: block;
	font-size: 16px;
	color: #666666;
}

.product ul li:hover a {
	color: #ffffff;
}

.product ul li img {
	display: block;
	margin: auto auto 0;
	max-width: 100%;
}

@media (max-width:1120px) {
	.product ul li {
		padding: 30px 30px;
	}

	.product ul li h3 {
		font-size: 20px;
	}
}

@media (max-width:960px) {
	.product ul li {
		width: 49%;
		margin-bottom: 15px;
	}
}

@media (max-width:768px) {
	.product ul li {
		width: 100%;
	}

	.product ul li h3 {
		font-size: 16px;
	}
}

.app .swiper-slide {
	position: relative;
	width: 70%;
}

.app .swiper-slide img {
	width: 100%;
}

.app .swiper-slide .con {
	position: absolute;
	bottom: 40px;
	left: 30px;
	opacity: 0;
	visibility: hidden;
}

.app .swiper-slide .con h3 {
	display: block;
	margin-bottom: 15px;
	font-size: 26px;
	color: #ffffff;
}

.app .swiper-slide .con p {
	font-size: 16px;
	color: #ffffff;
}

.app .swiper-slide.swiper-slide-active .con {
	opacity: 1;
	visibility: visible;
}

.swiper-btns {
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.swiper-btn {
	cursor: pointer;
}

.swiper-btn.swiper-prev {
	margin-right: 28px;
}

@media (max-width:1120px) {
	.app .swiper-slide {
		width: 75%;
	}

	.app .swiper-slide .con {
		bottom: 30px;
		left: 20px;
	}

	.app .swiper-slide .con h3 {
		margin-bottom: 10px;
		font-size: 22px;
	}

	.app .swiper-slide .con p {
		font-size: 14px;
	}
}

@media (max-width:768px) {
	.app .swiper-slide {
		width: 100%;
	}

	.app .swiper-slide .con {
		padding-right: 15px;
		bottom: 20px;
		left: 10px;
	}

	.app .swiper-slide .con h3 {
		font-size: 16px;
	}

	.swiper-btns {
		display: none;
	}

}