/* AI背景图层 */
.swiper_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	box-sizing: border-box;
	background: url('../img/bg1.png') no-repeat center center;
	background-size: 100% 100%;
	box-sizing: border-box;
	padding: 50px 2%;
}

.swiper_lt {
	max-width: 930px;
	box-sizing: border-box;
	text-align: left;
	padding: 0 4%;
}

.swiper_lt p {
	font-size: 80px;
	font-weight: bold;
	color: white;
	font-family: "Inter", sans-serif;
}

.swiper_lt span {
	display: block;
	font-size: 30px;
	box-sizing: border-box;
	padding-top: 35px;
	color: white;
}

.swiper_gt {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.swiper_img {
	max-width: 70%;
}

/* 数字模块 */
.number_box {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 40px 0;
	flex-wrap: wrap;
	max-width: 1400px;
	margin: 40px auto;
}

.number_lt {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	justify-self: space-between;
}

.number_lt p {
	font-size: 65px;
	color: #17191f;
	font-weight: bold;
}

.number_lt_img {
	max-width: 700px;
	margin-top: 60px;
	position: relative;
	overflow: hidden;
	display: block;
}

.number_lt_img div {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: white;
}

.number_gt {
	box-sizing: border-box;
	padding: 0 50px;
	margin-left: 150px;
	text-align: left;
	flex: 1;
}

.number_gt_title {
	font-size: 24px;
	font-weight: bold;
}

.number_gt_list {
	margin-top: 50px;
}

.number_gt_list p {
	font-size: 88px;
	font-weight: bold;
}

.number_gt_list span {
	font-size: 16px;
	color: #323232;
	display: block;
	margin-top: 10px;
	margin-left: 10px;
}

/* 产品板块 */
.grey {
	background-color: #F4F4F5;
}

.product_list {
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-wrap: wrap;
	max-width: 1400px;
	margin: 0 auto;
}

.product_txt_box {
	flex: 1;
	box-sizing: border-box;
	padding: 0 160px;
	text-align: center;
}

.product_txt_box p {
	font-size: 50px;
	font-weight: bold;
}

.product_txt_box>span {
	font-size: 22px;
	display: block;
	margin: 20px 0;
}

.product_txt_box>a {
	display: block;
	width: 118px;
	height: 48px;
	margin: 0 auto;
}

.product_txt_box>a span {
	display: inline-block;
	width: 130px;
	height: 52px;
	background-color: #17191f;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	border-radius: 5px;
	border: 1px solid #17191f;
	font-size: 16px;
	font-weight: bold;
}

.product_txt_box>a:hover span {
	background-color: transparent;
	color: #17191f;
}

.product_img {
	flex: 1;
	max-width: 600px;
}

/* 评论板块 */
.say_box {
	max-width: 1400px;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 100px 0;
}

.say_title {
	font-size: 48px;
	font-weight: bold;
	text-align: center;
	line-height: 48px;
}

.say_tip {
	display: block;
	text-align: center;
	font-size: 20px;
	margin: 40px 0 80px;
}

.say_list_box {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex: 1;
	flex-wrap: wrap;
	box-sizing: border-box;
}

.say_list {
	width: 420px;
	border: 1px solid #c1c1c1;
	border-radius: 50px;
	box-sizing: border-box;
	padding: 70px 40px 50px;
	margin-bottom: 30px;
	position: relative;
}

.say_list img {
	position: absolute;
	left: 25px;
	top: 20px;
	width: 40px;
	font-weight: bold;
}

.say_list p {
	font-size: 22px;
}

.say_list p span {
	font-weight: bold;
}

.fadeOutRightWidth {
	-webkit-animation-name: fadeOutRightWidth;
	animation-name: fadeOutRightWidth;
	animation-fill-mode: forwards;
}

.product_list_small{
	display: none;
}

.padding-box{
	box-sizing: border-box;
	padding: 70px 0;
}

@-webkit-keyframes fadeOutRightWidth {
	0% {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}

	100% {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}
}

@keyframes fadeOutRightWidth {
	0% {}

	100% {
		-webkit-transform: translate3d(100%, 0, 0);
		-ms-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}
}