.home {
	position: relative;
	width: 100%;
}

.home .wrap-container {
	max-width: 1460px;
	margin: 0 auto;
}

.home .banner {
	width: 100%;
	position: relative;
	max-height: 100vh;
	overflow: hidden;
}

.home .banner .swiper1 {
	width: 100%;
	height: 100%;
}

.home .banner .swiper1 .swiper-slide img {
	width: 100%;
	height: 100%;
}

.home .banner video {
	width: 100%;
	max-height: 100vh;
	object-fit: cover;
}

.home .banner .text {
	position: absolute;
	left: 7.1875vw;
	bottom: 5.2083333333vw;
	z-index: 5;
}

.home .banner .text .t {
	color: #fff;
	font-size: 1.25vw;
	line-height: 2.5vw;
	/* 200% */
}

.home .banner .text .btn {
	display: flex;
	background: rgba(255, 255, 255, 0.20);
	backdrop-filter: blur(17.25px);
	font-size: 0.9375vw;
	width: fit-content;
	border-radius: 30px;
	align-items: center;
	justify-content: space-between;
	padding: 0.3vw 0.6vw 0.3vw 1.5vw;
	color: white;
	margin-top: 1.5vw;
	font-weight: 700;
	cursor: pointer;
}

.home .banner .text .btn p {
	transform: translateY(-2px);
	font-weight: 200;
}

.home .banner .text .btn img {
	margin-left: 1.2vw;
	width: 2.0833333333vw;
	transition: all 600ms;
	display: block;
}

.home .banner .text .btn:hover img {
	transform: translateX(5px);
}

.home .banner .text .cut {
	margin: 2.0833333333vw 0 0 0;
	display: flex;
	width: 11.3541666667vw;
	justify-content: space-between;
}

.home .banner .text .cut div {
	width: 2.6041666667vw;
	height: 0.2083333333vw;
	background: #c0c0c0;
	border-radius: 0.2604166667vw;
	cursor: pointer;
}

.home .banner .text .cut div.on {
	background: #fff;
}

.home .index1 .wrap {
	padding: 3.4375vw 1.25vw 3.4375vw 1.25vw;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1.25vw;
}

.home .index1 .wrap .index1-desc .desc {
	max-width: 730px;
	margin-left: auto;
	font-size: 20px;
	font-weight: 300;
}

.home .index1 .wrap-item {
	padding: 3.4375vw 1.25vw 0 1.25vw;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1.25vw;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.home .index1 {
	margin-bottom: 4.4375vw;
}

.home .index1 * {
	box-sizing: border-box;
}

.home .index1 .index1-title h1 {
	font-size: 50px;
	font-weight: 500;
}

.home .index1 .wrap-item .item {
	width: 100%;
	height: 30.4166666667vw;
	position: relative;
	overflow: hidden;
	border-radius: 25px;
}

.home .index1 .wrap-item .item:hover img {
	transform: scale(1.05);
}

.home .index1 .wrap-item .item:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 14.3229166667vw;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.71) 100%);
	z-index: 2;
	bottom: 0;
	left: 0;
}

.home .index1 .wrap-item .item .position {
	position: absolute;
	bottom: 1.241667vw;
    left: 1.541667vw;
	z-index: 3;
	padding-right: 20px;
}

.home .index1 .wrap-item .item .position h1 {
	color: #fff;
	font-size: 2.0833333333vw;
	font-style: normal;
	font-weight: 400;
	margin: 0 0 1.0416666667vw;
}

.home .index1 .wrap-item .item .position>p {
	color: #fff;
	font-size: 1.0416666667vw;
	font-style: normal;
	font-weight: 300;
}

.home .index1 .wrap-item .item .position .btn {
	display: flex;
	background: rgba(255, 255, 255, 0.20);
	backdrop-filter: blur(17.25px);
	font-size: 0.9375vw;
	width: fit-content;
	border-radius: 1.5625vw;
	align-items: center;
	justify-content: space-between;
	padding: 0.3vw 0.6vw 0.3vw 1.5vw;
	color: white;
	margin-top: 1.5vw;
	font-weight: 700;
	cursor: pointer;
}

.home .index1 .wrap-item .item .position .btn p {
	font-weight: 200;
}

.home .index1 .wrap-item .item .position .btn img {
	margin-left: 1.2vw;
	width: 2.0833333333vw;
	transition: all 600ms;
	display: block;
}

.home .index1 .wrap-item .item .position .btn:hover img {
	transform: translateX(5px);
}

.home .index1 .wrap-item .item .img {
	height: 100%;
	width: 100%;
	transition: 0.6s all;
}

.home .index1 .wrap-item .item .img img {
	width: 100%;
	height: 100%;
	transition: 0.6s all;
	object-fit:cover;
	object-position: top;
}

@keyframes opacityAnimate {
	0% {
		opacity: 1;
		transform: translate(0, 0) scale(1);
	}

	30% {
		opacity: 0.2;
		transform: translate(-5vw, 0vw) scale(0.8);
	}

	50% {
		opacity: 1;
		transform: translate(2vw, 5vw) scale(0.85);
	}

	60% {
		opacity: 0.5;
		transform: translate(0vw, 10vw) scale(0.9);
	}

	80% {
		opacity: 1;
		transform: translate(5vw, 0vw) scale(0.95);
	}

	100% {
		opacity: 1;
		transform: translate(0, 0) scale(1);
	}
}

.home .texts {
	width: 80vw;
	margin: 15.9895833333vw auto 8.4895833333vw;
	position: relative;
}

.home .texts .d1 {
	position: absolute;
	top: 55%;
	left: 45%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.home .texts .d1 img {
	animation: 10s opacityAnimate linear infinite;
}

.home .texts .d2 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.home .texts .d2 img {
	animation: 10s opacityAnimate linear infinite reverse;
}

.home .texts .swiper-container {
	width: 100%;
	position: relative;
	z-index: 5;
}

.home .texts .swiper-container .st {
	color: #142929;
	font-size: 4.1666666667vw;
	text-align: center;
}

.home .texts .b_dom .swiper-pagination {
	position: static;
	display: flex;
	width: 100%;
	justify-content: center;
	margin-top: 3vw;
}

.home .texts .b_dom .swiper-pagination .swiper-pagination-bullet {
	width: 4.2708333333vw;
	height: 3px;
	background: rgba(20, 41, 41, 0.3);
	border-radius: 0;
	opacity: 1;
	margin-right: 1vw;
	position: relative;
}

.home .texts .b_dom .swiper-pagination .swiper-pagination-bullet::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	width: 0;
	top: 0px;
	height: 100%;
	background: #7ddac7;
}

.home .texts .b_dom .swiper-pagination .swiper-pagination-bullet-active::before {
	animation: long 4s infinite linear;
}

@keyframes long {
	to {
		width: 100%;
	}
}

.home .partners .scroll-container {
	width: 100%;
	overflow: hidden;
	margin: 3vw 0 6vw 0;
}

.home .partners .scroll-container .animate_box {
	display: flex;
	width: max-content;
	animation: ani-loop 20s linear infinite;
	padding-bottom: 4.5833333333vw;
}

.home .partners .scroll-container .animate_box .flex-xb {
	display: flex;
	flex-wrap: wrap;
}

.home .partners .scroll-container .animate_box .flex-xb .icon {
	min-width: 5.7291666667vw;
	height: 2.6041666667vw;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 6.25vw;
}

.home .partners .scroll-container .animate_box .flex-xb .icon img {
	width: 100%;
	max-height: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

.home .partners .scroll-container .animate_box .flex-xb .icon_bg {
	width: 9.8958333333vw;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.50);
	background: rgba(255, 255, 255, 0.30);
	box-shadow: 0px 5.4px 16.2px 0px rgba(4, 38, 128, 0.04);
	height: 5.8333333333vw;
	margin-left: 1vw;
	position: relative;
}

.home .partners .scroll-container .animate_box .flex-xb .icon_bg::before {
	background: rgba(45, 52, 95, 0.60);
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 12px;
}

.home .partners .scroll-container .animate_box .flex-xb .icon_bg .bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
}

.home .partners .scroll-container .animate_box .flex-xb .icon_bg p {
	position: absolute;
	left: 0;
	transform: translateY(-50%);
	top: 50%;
	color: #fff;
	font-size: 1.1vw;
	width: 100%;
	text-align: center;
}

@keyframes ani-loop {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

.home .partners .scroll-container .animate_box2 {
	animation-direction: reverse;
}

.home .pros {
	display: flex;
	justify-content: space-between;
	width: 80vw;
	margin: 5vw auto;
}

.home .pros .item {
	width: 48%;
}

.home .pros .item .pic {
	width: 100%;
}

.home .pros .item .pic img {
	width: 100%;
	display: block;
	object-fit: cover;
	border-radius: 15px;
	transition: all 600ms;
}

.home .pros .item .pic:hover img {
	transform: scale(1.05);
}

.home .pros .item .name {
	color: #000;
	font-size: 2.1vw;
	margin: 2.7vw 0 1vw 0;
}

.home .pros .item .des {
	color: #666;
	font-size: 0.8333333333vw;
	width: 80%;
	line-height: 1.6;
	text-align: justify;
}

.home .pros .item a {
	display: flex;
	background-color: #353539;
	font-size: 0.9375vw;
	width: fit-content;
	border-radius: 30px;
	align-items: center;
	justify-content: space-between;
	padding: 0.3vw 0.6vw 0.3vw 1.5vw;
	color: white;
	font-weight: 700;
	margin-top: 1.5vw;
}

.home .pros .item a img {
	margin-left: 1.2vw;
	width: 2.0833333333vw;
	transition: all 600ms;
	display: block;
}

.home .pros .item a p {
	transform: translateY(-2px);
}

.home .pros .item a:hover img {
	transform: translateX(5px);
}

.home .drag_section {
	margin: 4.5vw 0;
}

.home .drag_section .t {
	width: 80vw;
	margin: 0 auto;
}

.home .drag_section .t p {
	color: #000;
	font-size: 2.5vw;
	line-height: 1.5;
}

.home .drag_section .t p span {
	background: linear-gradient(84deg, #7ddac7 12.91%, #6a89ec 118.25%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.home .drag_section .t2 {
	width: 80vw;
	margin: 1vw auto 2vw auto;
	color: #666;
	font-size: 0.8333333333vw;
}

.home .drag_section .box {
	width: 100%;
}

.home .drag_section .box .swiper-container {
	width: 100%;
	height: 100%;
	cursor: url('../images/drag.ico'), auto;
}

.home .drag_section .box .swiper-container .swiper-slide .pic {
	transform: scale(0.9);
	transition: all 600ms;
	border-radius: 20px;
}

.home .drag_section .box .swiper-container .swiper-slide .pic img {
	width: 100%;
	display: block;
	object-fit: cover;
	border-radius: 20px;
	max-height: 28.6458333333vw;
}

.home .drag_section .box .swiper-container .swiper-slide-active .pic {
	transform: scale(1);
}

.home .drag_section .box .b_dom .swiper-pagination {
	position: static;
	display: flex;
	width: 100%;
	justify-content: center;
	margin-top: 2vw;
}

.home .drag_section .box .b_dom .swiper-pagination .swiper-pagination-bullet {
	width: 4.2708333333vw;
	border-radius: 0;
	opacity: 1;
	margin-right: 1vw;
	background-color: transparent;
}

.home .drag_section .box .b_dom .swiper-pagination .swiper-pagination-bullet span {
	display: block;
	color: #9c9c9c;
	transition: all 600ms;
}

.home .drag_section .box .b_dom .swiper-pagination .swiper-pagination-bullet .line {
	width: 4.2708333333vw;
	height: 2px;
	position: relative;
	background: rgba(20, 41, 41, 0.3);
	margin-top: 10px;
}

.home .drag_section .box .b_dom .swiper-pagination .swiper-pagination-bullet .line::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	width: 0;
	bottom: 0px;
	height: 100%;
	background: #7ddac7;
}

.home .drag_section .box .b_dom .swiper-pagination .swiper-pagination-bullet-active span {
	color: #142929;
}

.home .drag_section .box .b_dom .swiper-pagination .swiper-pagination-bullet-active .line::after {
	animation: long 4s infinite linear;
}

@keyframes long {
	to {
		width: 100%;
	}
}

.home .drag_section .box .des_box {
	width: 60vw;
	margin: 3vw auto 0 auto;
	text-align: center;
}

.home .drag_section .box .des_box .d1 {
	display: none;
	color: #666;
	font-size: 1.0416666667vw;
	line-height: 1.6;
}

.home .drag_section .box .des_box .active {
	display: block;
}

.home .about_brand {
	width: 100%;
	position: relative;
	margin-bottom: 4.5833333333vw;
	min-height: 800px;
	overflow: hidden;
	border-radius: 25px;
	background-size: cover;
}

.home .about_brand .bg {
	border-radius: 25px;
	overflow: hidden;
}

.home .about_brand .bg img {
	width: 100%;
	object-fit: cover;
}

.home .about_brand .text {
	position: absolute;
	left: 0;
	width: 100%;
	top: 7.34375vw;
	/* text-align: center; */
	color: white;
	display: flex;
	flex-direction: column;
	padding: 50px;
}

.home .about_brand .text .t {
	font-size: 2.5vw;
	text-transform: uppercase;
	font-weight: lighter;
	font-weight: 500;
}

.home .about_brand .text .t2 {
	font-size: 1.05vw;
	font-weight: lighter;
	margin: 1.4583333333vw 0;
	max-width: 800px;
}

.home .about_brand .text .btn {
	display: flex;
	background: rgba(255, 255, 255, 0.20);
	backdrop-filter: blur(17.25px);
	font-size: 0.9375vw;
	width: fit-content;
	border-radius: 1.5625vw;
	align-items: center;
	justify-content: space-between;
	padding: 0.3vw 0.6vw 0.3vw 1.5vw;
	color: white;
	font-weight: 700;
	/* margin: auto; */
	cursor: pointer;
}

.home .about_brand .text .btn p {
	font-weight: 200;
}

.home .about_brand .text .btn img {
	margin-left: 1.2vw;
	width: 2.0833333333vw;
	transition: all 600ms;
	display: block;
}

.home .about_brand .text .btn:hover img {
	transform: translateX(5px);
}

.home .robot {
	height: 100vh;
	background: #000;
	position: relative;
}

.home .robot .fix {
	height: 100vh;
	position: sticky;
	top: 0;
}

.home .robot .fix .wrap {
	overflow: hidden;
}

.home .robot .fix .position_cut {
	opacity: 0;
	pointer-events: none;
	transition: 1s;
	position: absolute;
	right: 7.2916666667vw;
	bottom: 5.6770833333vw;
	width: fit-content;
	z-index: 101;
}

.home .robot .fix .position_cut .item {
	cursor: pointer;
	position: relative;
	margin-bottom: 10px;
	opacity: 0.5;
	transition: all 600ms;
}

/* .home .robot .fix .position_cut .item .pic1 {
	width: 4.53125vw;
	height: 5.1041666667vw;
} */

.home .robot .fix .position_cut .item>img {
	width: 100%;
}

.home .robot .fix .position_cut .item .pic2 {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.home .robot .fix .position_cut .item .pic2 img {
	width: 3.125vw;
	height: 3.125vw;
}

.home .robot .fix .position_cut .item:hover {
	opacity: 1;
}

.home .robot .fix .position_cut.on {
	opacity: 1;
	pointer-events: auto;
}

.home .robot .fix .wrap {
	width: 100%;
	height: 100%;
	position: relative;
}

.home .robot .fix .wrap .center_img {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 46.875vw;
	z-index: 8;
}

.home .robot .fix .wrap .center_img .img {
	width: 100%;
	position: relative;
	vertical-align: middle;
	object-fit: contain;
	opacity: 0;
	transition: 0.6s;
}

.home .robot .fix .wrap .center_img .img:not(:first-child) {
	position: absolute;
	top: 0;
	left: 0;
}

.home .robot .fix .wrap .center_img .img img {
	width: 100%;
	max-height: 86vh;
	object-fit: contain;
}

.home .robot .fix .wrap .center_img .img.on {
	opacity: 1;
}

.home .robot .fix .wrap .content {
	position: absolute;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}

.home .robot .fix .wrap .content .matter {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.home .robot .fix .wrap .content .matter {
	opacity: 0;
}

.home .robot .fix .wrap .content .matter .joke {
	width: 100%;
	height: 100%;
}

.home .robot .fix .wrap .content .matter .top {
	position: absolute;
	top: 8.6458333333vw;
	left: 9.375vw;
	width: 23.75vw;
}

.home .robot .fix .wrap .content .matter .top .list_ {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #565656;
	padding: 0 0 0.5729166667vw;
}

.home .robot .fix .wrap .content .matter .top .list_:not(:last-child) {
	margin: 0 0 2.0833333333vw;
}

.home .robot .fix .wrap .content .matter .top .list_ p:nth-child(1) {
	color: #fff;
	font-size: 1.25vw;
	font-style: normal;
	font-weight: 400;
	line-height: 2.5208333333vw;
	/* 201.667% */
	margin: 0 2.6041666667vw 0 0;
}

.home .robot .fix .wrap .content .matter .top .list_ p:nth-child(2) {
	color: #fff;
	font-size: 1.875vw;
	font-style: normal;
	font-weight: 400;
	line-height: 2.5208333333vw;
}

.home .robot .fix .wrap .content .matter .bottom {
	position: absolute;
	bottom: 7.2916666667vw;
	left: 9.375vw;
}

.home .robot .fix .wrap .content .matter .bottom .text {
	color: #efefe5;
	font-size: 1.171875vw;
	font-weight: 400;
	line-height: 1.5588541667vw;
	/* 133.022% */
	text-transform: uppercase;
	margin: 0 0 1.5625vw;
}

.home .robot .fix .wrap .content .matter .bottom .title .headline {
	position: relative;
}

.home .robot .fix .wrap .content .matter .bottom .title .headline p {
	color: #efefe5;
	font-size: 2.5vw;
	font-weight: 400;
}

.home .robot .fix .wrap .content .matter .bottom .title .headline .l1 {
	width: 21.1458333333vw;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}

.home .robot .fix .wrap .content .matter .bottom .title .headline .l2 {
	bottom: -1.0416666667vw;
	right: -1.6145833333vw;
	width: 10.8854166667vw;
	position: absolute;
	display: none;
}

.home .robot .fix .wrap .content .matter .bottom .title .headline2 {
	position: relative;
}

.home .robot .fix .wrap .content .matter .bottom .title .headline2 p {
	color: #efefe5;
	font-size: 2.5vw;
	font-weight: 400;
	line-height: 4.9479166667vw;
	/* 100% */
}

.home .robot .fix .wrap .content .matter .bottom .title .headline2 .l3 {
	position: absolute;
	top: 0;
	left: 0;
	width: 7.34375vw;
	display: none;
}

.home .robot .fix .wrap .content .matter .bottom .posi_line {
	width: 56.875vw;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	padding: 2.0833333333vw 0 0 0;
	color: #efefe5;
	font-size: 1.171875vw;
	font-weight: 400;
	line-height: 1.7578125vw;
	/* 150% */
	display: flex;
	justify-content: flex-end;
	position: absolute;
	top: 9.7916666667vw;
	left: 18.0729166667vw;
}

.home .robot .fix .wrap .content .matter .bottom .posi_line p {
	position: relative;
	left: 1.5625vw;
}

.home .robot .fix .wrap .content .matter1 .text_copy {
	display: flex;
	white-space: nowrap;
	overflow: hidden;
	z-index: -1;
	position: absolute;
	left: 0;
	width: 100%;
	top: 20vw;
}

.home .robot .fix .wrap .content .matter1 .text_copy .main-copy-wrap {
	padding-right: 0.3em;
	animation: textLoop 24s linear infinite;
	color: white;
	font-size: 6.25vw;
	background: linear-gradient(90deg, #87ffea 0%, #6388ff 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.home .robot .fix .wrap .content .matter1 .text_copy .main-copy-wrap .t-stroke {
	color: transparent;
	-webkit-text-stroke: 1px #fff;
}

@keyframes textLoop {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	100% {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

.home .robot .fix .wrap .content .matter1 .top {
	width: 82.8125vw;
	margin: 0 auto 0;
	display: none;
}

.home .robot .fix .wrap .content .matter1 .top .border {
	width: 3.4375vw;
	height: 3.4375vw;
	border: 1px solid #fff;
	border-bottom: none;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.home .robot .fix .wrap .content .matter1 .top .border .position {
	position: absolute;
	left: -1.09375vw;
	top: -0.8333333333vw;
	width: 0.78125vw;
}

.home .robot .fix .wrap .content .matter1 .top .flex {
	display: flex;
	justify-content: space-between;
	height: 5.2083333333vw;
	position: relative;
}

.home .robot .fix .wrap .content .matter1 .top .flex .position {
	position: absolute;
	left: -1.09375vw;
	bottom: -0.8333333333vw;
	width: 0.78125vw;
}

.home .robot .fix .wrap .content .matter1 .top .flex .l {
	width: 50%;
	border: 1px solid #fff;
	padding: 1.40625vw 0 0 1.40625vw;
	color: #efefe5;
	font-size: 0.9114583333vw;
	font-weight: 400;
	line-height: 1.2942708333vw;
	/* 142% */
	text-transform: uppercase;
}

.home .robot .fix .wrap .content .matter1 .top .flex .l p:nth-child(2) {
	opacity: 0.7;
}

.home .robot .fix .wrap .content .matter1 .top .flex .r {
	flex: 1;
}

.home .robot .fix .wrap .content .matter1 .top .flex .r .list {
	width: 100%;
	border-top: 1px solid rgba(53, 53, 57, .6);
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 1.71875vw;
}

.home .robot .fix .wrap .content .matter1 .top .flex .r .list:last-child {
	border-bottom: 1px solid rgba(53, 53, 57, .6);
	opacity: 0.7;
}

.home .robot .fix .wrap .content .matter1 .top .flex .r .list p {
	color: #d8d8cf;
	text-align: right;
	font-size: 0.78125vw;
	font-style: normal;
	font-weight: 400;
	min-width: 7.2916666667vw;
	margin: 0 0 0 10.4166666667vw;
}

.home .robot .fix .wrap .content .matter1 .top .pick {
	color: #efefe5;
	font-size: 0.9114583333vw;
	font-weight: 400;
	line-height: 1.2942708333vw;
	/* 142% */
	text-transform: uppercase;
	margin: 1.5104166667vw 0 0 1.40625vw;
	opacity: 0.5;
}

.home .robot .fix .wrap .content .matter1 .bottom .text,
.home .robot .fix .wrap .content .matter1 .bottom .title {
	opacity: 0;
}

.home .robot .fix .wrap .content .matter1 .bottom .title .headline p {
	font-size: 4.9479166667vw;
}

.home .robot .fix .wrap .content .matter1 .bottom .title .headline2 p {
	font-size: 4.9479166667vw;
}

.home .robot .fix .wrap .content .matter1 .bottom .posi_line {
	border-top: none;
	justify-content: flex-start;
	left: 0;
	line-height: 1.8;
}

.home .robot .fix .wrap .content .matter2 .bottom .title .headline2 .l3 {
	width: 9.5833333333vw;
}

.home .robot .fix .wrap .content .matter3 .bottom .title .headline .l1 {
	width: 37.8125vw;
}

.home .robot .fix .wrap .content .matter3 .bottom .title .headline .l2 {
	width: 28.0729166667vw;
	right: -14.4270833333vw;
}

.home .robot .fix .wrap .content .matter3 .bottom .title .headline2 .l3 {
	width: 7.5vw;
}

.home .robot .fix .wrap .content .matter5 .bottom .title .headline .l1 {
	width: 37.8125vw;
}

.home .robot .fix .wrap .content .matter5 .bottom .title .headline .l2 {
	width: 28.0729166667vw;
	right: unset;
	left: 10.15625vw;
}

.home .robot .fix .wrap .content .matter5 .bottom .title .headline2 .l3 {
	width: 7.5vw;
}

.home .dialog {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, .8);
	display: none;
	z-index: 100;
}

.home .dialog .close {
	position: absolute;
	right: 5%;
	top: 5%;
	cursor: pointer;
	z-index: 100;
}

.home .dialog .close img {
	width: 50px;
}

.home .dialog .content {
	width: 100%;
}

.home .dialog .content video {
	width: 80%;
	height: 80vh;
	object-fit: cover;
	display: block;
	margin: 0 auto;
}

.home .index_news {
	background: #f5f5f7;
	position: relative;
	padding: 4.125vw 10.4166666667vw 2.65625vw 10.4166666667vw;
	overflow: hidden;
	margin-bottom: 4.5833333333vw;
}

.home .index_news .top {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin: 0 0 4.1666666667vw;
}

.home .index_news .top .title h1 {
	color: #000;
	font-size: 2.5vw;
	font-style: normal;
	font-weight: 400;
	margin: 0 0 1.6666666667vw;
}

.home .index_news .top .title p {
	color: #666;
	font-size: 0.9375vw;
	font-style: normal;
	font-weight: 400;
}

.home .index_news .top .more {
	width: fit-content;
	padding: 0 0.9375vw 0 1.875vw;
	height: 3.2291666667vw;
	border-radius: 10.4166666667vw;
	border: 0.15625vw solid #323941;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.6s ease;
}

.home .index_news .top .more p {
	color: #323941;
	font-size: 0.9375vw;
	font-style: normal;
	font-weight: bold;
	transition: 0.6s ease;
}

.home .index_news .top .more svg {
	width: 2.0833333333vw;
	height: 2.0833333333vw;
}

.home .index_news .top .more:hover {
	background: #000;
	border: 0.15625vw solid #000;
}

.home .index_news .top .more:hover p {
	color: #fff;
}

.home .index_news .top .more:hover svg path {
	stroke: #fff;
	transition: 0.6s ease;
}

.home .index_news .content .newsSwiper {
	width: 105.9895833333vw;
}

.home .index_news .content .newsSwiper .swiper-slide .item {
	width: 100%;
	border-radius: 1.9791666667vw;
	overflow: hidden;
	display: block;
	background: #fff;
}

.home .index_news .content .newsSwiper .swiper-slide .item:hover .img img {
	transform: scale(1.05);
}

.home .index_news .content .newsSwiper .swiper-slide .item .img {
	width: 100%;
	height: 13.0208333333vw;
	overflow: hidden;
}

.home .index_news .content .newsSwiper .swiper-slide .item .img img {
	width: 100%;
	height: 100%;
	transition: 0.6s;
}

.home .index_news .content .newsSwiper .swiper-slide .item .text {
	padding: 1.6666666667vw 1.6666666667vw 1.6145833333vw 1.875vw;
	position: relative;
}

.home .index_news .content .newsSwiper .swiper-slide .item .text .position {
	width: 2.4479166667vw;
	height: 2.4479166667vw;
	background: #323941;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 1.6666666667vw;
	bottom: 1.6666666667vw;
}

.home .index_news .content .newsSwiper .swiper-slide .item .text .position svg {
	width: 1.5625vw;
	height: 1.5625vw;
}

.home .index_news .content .newsSwiper .swiper-slide .item .text h1 {
	color: #1f2227;
	font-size: 1.1458333333vw;
	font-style: normal;
	font-weight: 500;
	text-transform: uppercase;
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 0 0 1.3541666667vw;
}

.home .index_news .content .newsSwiper .swiper-slide .item .text .pick {
	width: 17.5vw;
	color: #5f6c72;
	font-size: 0.7291666667vw;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4583333333vw;
	/* 200% */
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0 0 1.3541666667vw;
}

.home .index_news .content .newsSwiper .swiper-slide .item .text .time {
	color: #5f6c72;
	font-size: 0.7291666667vw;
	font-style: normal;
	font-weight: 400;
}

.home .index_news .content .button {
	display: flex;
	justify-content: flex-end;
	margin: 4.0625vw 0 0 0;
}

.home .index_news .content .button .circle {
	width: 2.6041666667vw;
	height: 2.6041666667vw;
	background: rgba(223, 223, 226, 0.50);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.6s ease;
	cursor: pointer;
}

.home .index_news .content .button .circle:hover {
	background: #dfdfe2;
}

.home .index_news .content .button .circle:hover svg path {
	stroke: #5f6c72;
}

.home .index_news .content .button .circle:first-child {
	transform: rotate(180deg);
	margin: 0 1.6666666667vw 0 0;
}

.home .index_news .content .button .circle svg {
	width: 1.6666666667vw;
	height: 1.6666666667vw;
}

.home .index_news .content .button .circle svg path {
	stroke: #b1b5c0;
	transition: 0.6s ease;
}

/* secton 6 */
.home .introduce {
	/* margin-bottom: 4.4375vw; */
	padding: 3.4375vw 1.25vw 3.4375vw 1.25vw;
}

.home .introduce .text {
	margin-bottom: 3.4375vw;
}

.home .introduce .bg {
	overflow: hidden;
	border-radius: 25px;
}

.home .introduce .text .t h2 {
	font-size: 50px;
	font-weight: 500;

}

.home .introduce .text .t2 {
	max-width: 730px;
	margin-left: auto;
	font-size: 20px;
	font-weight: 300;
}

@media screen and (max-width: 1024px) {


	.home img {
		object-fit: cover;
	}

	.home .banner .swiper1 {
		height: 100vh;
	}

	.home .banner video {
		height: 100vh;
	}

	.home .banner .text {
		bottom: 15%;
		left: 0;
		padding: 0 5%;
	}

	.home .banner .text .t {
		font-size: 16px;
		line-height: 1.6;
	}

	.home .banner .text .t br {
		display: none;
	}

	.home .banner .text .btn {
		font-size: 14px;
		padding: 8px 10px 8px 15px;
		margin-top: 20px;
	}

	.home .banner .text .btn p {
		transform: translateY(-1px);
	}

	.home .banner .text .btn img {
		width: 24px;
		height: 24px;
		margin-left: 10px;
	}

	.home .banner .text .cut {
		margin: 20px 0 0 0;
		width: fit-content;
		gap: 0 10px;
	}

	.home .banner .text .cut div {
		width: 40px;
		height: 2px;
		border-radius: 10px;
	}

	.home .texts {
		width: 90%;
		margin: 30px auto;
	}

	.home .texts .d1 {
		width: 70%;
	}

	.home .texts .d1 img {
		width: 100%;
	}

	.home .texts .d2 {
		width: 70%;
	}

	.home .texts .d2 img {
		width: 100%;
	}

	.home .texts .swiper-container .st {
		font-size: 20px;
	}

	.home .texts .swiper-container .st br {
		display: none;
	}

	.home .texts .b_dom .swiper-pagination {
		margin-top: 20px;
	}

	.home .texts .b_dom .swiper-pagination .swiper-pagination-bullet {
		width: 50px;
		margin-right: 10px;
	}

	.home .partners .scroll-container .animate_box {
		padding-bottom: 10px;
	}

	.home .partners .scroll-container .animate_box .flex-xb .icon,
	.home .partners .scroll-container .animate_box .flex-xb .icon_bg {
		width: 70px;
		height: 40px;
		margin-left: 30px;
	}

	.home .partners .scroll-container .animate_box .flex-xb .icon_bg p {
		font-size: 14px;
	}

	.home .pros {
		width: 90%;
		flex-wrap: wrap;
	}

	.home .pros .item {
		width: 100%;
		margin-bottom: 30px;
	}

	.home .pros .item .pic img {
		border-radius: 10px;
	}

	.home .pros .item .name {
		font-size: 20px;
		margin: 20px 0 10px 0;
	}

	.home .pros .item .des {
		font-size: 16px;
		width: 100%;
	}

	.home .pros .item a {
		font-size: 14px;
		padding: 6px 10px 6px 15px;
		margin-top: 15px;
	}

	.home .pros .item a p {
		transform: translateY(-1px);
	}

	.home .pros .item a img {
		width: 24px;
		margin-left: 10px;
	}

	.home .drag_section {
		margin: 20px 0;
	}

	.home .drag_section .t {
		width: 90%;
	}

	.home .drag_section .t p {
		font-size: 24px;
	}

	.home .drag_section .t2 {
		width: 90%;
		font-size: 14px;
		line-height: 1.6;
	}

	.home .drag_section .box {
		width: 90%;
		margin: 30px auto;
	}

	.home .drag_section .box .swiper-container .swiper-slide .pic {
		border-radius: 10px;
	}

	.home .drag_section .box .swiper-container .swiper-slide .pic img {
		border-radius: 10px;
	}

	.home .drag_section .box .b_dom .swiper-pagination {
		margin-top: 20px;
	}

	.home .drag_section .box .b_dom .swiper-pagination .swiper-pagination-bullet {
		width: 70px;
		margin-right: 10px;
	}

	.home .drag_section .box .b_dom .swiper-pagination .swiper-pagination-bullet .line {
		width: 70px;
		margin-top: 5px;
	}

	.home .drag_section .box .des_box {
		width: 100%;
		margin: 40px auto;
	}

	.home .drag_section .box .des_box .d1 {
		font-size: 16px;
	}

	.home .about_brand .text .t {
		font-size: 18px;
	}

	.home .about_brand .text .t2 {
		font-size: 14px;
		margin: 10px 0 20px 0;
	}

	.home .about_brand .text .btn {
		font-size: 14px;
		padding: 8px 10px 8px 15px;
		margin-top: 10px;
		border-radius: 30px;
	}

	.home .about_brand .text .btn p {
		transform: translateY(-1px);
	}

	.home .about_brand .text .btn img {
		width: 24px;
		margin-left: 10px;
	}

	.home .dialog .close {
		top: 80px;
	}

	.home .dialog .close img {
		width: 30px;
	}

	.home .dialog .content video {
		width: 90%;
		height: 60vh;
	}

	.home .index1 .wrap-item {
		padding: 20px 5%;
		grid-template-columns: repeat(1, 1fr);
		gap: 15px;
	}

	.home .index1 .wrap-item .item {
		height: auto;
		border-radius: 0;
	}

	.home .index1 .item .img {
		position: relative;
		z-index: 1;
	}

	.home .index1 .item .img:after {
		content: '';
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background: rgba(0, 0, 0, .5);
	}

	.home .index1 .item .position {
		width: 100%;
		padding: 0 5%;
		left: 0;
		bottom: 5%;
	}

	.home .index1 .wrap-item .item .position h1 {
		font-size: 20px;
		margin: 0 0 10px;
	}

	.home .index1 .wrap-item .item .position>p {
		width: 100%;
		font-size: 14px;
	}

	.home .index1 .wrap-item .item .position .btn {
		font-size: 14px;
		padding: 8px 10px 8px 15px;
		margin-top: 20px;
		border-radius: 30px;
	}

	.home .index1 .wrap-item .item .position .btn p {
		transform: translateY(-1px);
	}

	.home .index1 .wrap-item .item .position .btn img {
		width: 24px;
		margin-left: 10px;
	}

	.home .index_news {
		padding: 20px 5%;
	}

	.home .index_news .top {
		flex-direction: column;
		align-items: unset;
		margin: 0 0 25px;
	}



	.home .index1 .index1-title h1 {
		font-size: 24px;
		margin: 0 0 10px;
		font-weight: 700;

	}

	.home .index1 .index1-title h1 br {
		display: none;
	}

	.home .index_news .top .title p {
		font-size: 14px;
	}

	.home .index1 .wrap .index1-desc .desc {
		font-size: 16px;
	}

	.home .introduce .text .t h2 {
		font-size: 24px;
		font-weight: 700;
	}

	.home .introduce {
		padding: 20px 5%;
	}

	.home .introduce .text .t2 {
		font-size: 16px;
	}
.home .index_news .top .title h1{
	font-size:  24px;
}
	.home .index_news .top .more {
		width: fit-content;
		height: 30px;
		padding: 0 8px 0 15px;
		margin: 20px 0 0 0;
	}

	.home .index_news .top .more p {
		font-size: 14px;
	}

	.home .index_news .top .more svg {
		width: 25px;
		height: 25px;
	}

	.home .index_news .content .newsSwiper {
		width: 100%;
	}

	.home .index_news .content .newsSwiper .swiper-slide .item .img {
		height: auto;
	}

	.home .index_news .content .newsSwiper .swiper-slide .item .text {
		padding: 15px 5% 40px 5%;
	}

	.home .index_news .content .newsSwiper .swiper-slide .item .text h1 {
		font-size: 20px;
		margin: 0 0 15px;
	}

	.home .index_news .content .newsSwiper .swiper-slide .item .text .pick {
		font-size: 14px;
		width: 100%;
		line-height: 1.6;
	}

	.home .index_news .content .newsSwiper .swiper-slide .item .text .time {
		font-size: 12px;
		margin: 25px 0 0 0;
	}

	.home .index_news .content .newsSwiper .swiper-slide .item .text .position {
		right: 5%;
		bottom: 15px;
		width: 34px;
		height: 34px;
	}

	.home .index_news .content .newsSwiper .swiper-slide .item .text .position svg {
		width: 18px;
		height: 18px;
	}

	.home .index_news .content .button {
		margin: 25px 0 0 0;
	}

	.home .index_news .content .button .circle {
		width: 36px;
		height: 36px;
	}

	.home .index_news .content .button .circle:first-child {
		margin: 0 15px 0 0;
	}

	.home .index_news .content .button .circle svg {
		width: 20px;
		height: 20px;
	}
	.home .about_brand{
		min-height: 400px;
	}
	.home .home .robot .fix .wrap .content .matter1 .text_copy {
		top: 0;
	}

	.home .robot .fix .wrap .center_img {
		position: relative !important;
		transform: none !important;
		width: 100%;
		left: 0;
		top: 70px;
	}

	.home .robot .fix .wrap .content {
		position: relative;
		margin: 0;
	}

	.home .robot .fix .wrap .content .matter .top {
		position: static;
	}

	.home .robot .fix .wrap .content .matter .joke {
		width: 90%;
		margin: auto;
	}

	.home .robot .fix .wrap .content .matter .top .list_ p:nth-child(1) {
		font-size: 20px;
		line-height: 1.1;
		margin: 0;
	}

	.home .robot .fix .wrap .content .matter .top {
		width: 100%;
	}

	.home .robot .fix .wrap .content .matter .top .list_:not(:last-child) {
		margin: 0 0 10px;
	}

	.home .robot .fix .wrap .content .matter .top .list_ {
		padding: 0 0 10px;
	}

	.home .robot .fix .wrap .content .matter .top .list_ p:nth-child(2) {
		font-size: 20px;
		line-height: 1;
	}

	.home .robot .fix .wrap .content .matter .bottom {
		position: static;
		margin: 30px 0 0 0;
	}

	.home .robot .fix .wrap .content .matter .bottom .text {
		font-size: 16px;
		line-height: 1;
		margin: 0 0 15px;
	}

	.home .robot .fix .wrap .content .matter .bottom .title .headline img {
		display: none;
	}

	.home .robot .fix .wrap .content .matter .bottom .title .headline2 img {
		display: none;
	}

	.home .robot .fix .wrap .content .matter .bottom .title .headline p {
		font-size: 21px;
		line-height: 1;
	}

	.home .robot .fix .wrap .content .matter .bottom .title .headline2 p {
		font-size: 15px;
		line-height: 1;
	}

	.home .robot .fix .wrap .content .matter .bottom .title .headline {
		padding: 0;
		margin: 0 0 10px;
	}

	.home .robot .fix .wrap .content .matter .bottom .title .headline2 {
		padding: 0;
		margin: 0;
	}

	.home .robot .fix .wrap .content .matter1 .top .border {
		width: 30px;
		height: 30px;
	}

	.home .robot .fix .wrap .content .matter1 .top .border img {
		width: 48%;
	}

	.home .robot .fix .wrap .content .matter1 .top .border .position {
		display: none;
	}

	.home .robot .fix .wrap .content .matter1 .top .flex {
		flex-direction: column;
		height: auto;
	}

	.home .robot .fix .wrap .content .matter1 .top .flex .l {
		width: 100%;
		padding: 10px 0 0 10px;
		font-size: 15px;
		line-height: 1.5;
	}

	.home .robot .fix .wrap .content .matter1 .top .flex .position {
		display: none;
	}

	.home .robot .fix .wrap .content .matter1 .top .flex .r .list {
		height: 30px;
	}

	.home .robot .fix .wrap .content .matter1 .top .flex .r .list p {
		font-size: 13px;
		min-width: 150px;
		margin: 0 0 0 9%;
	}

	.home .robot .fix .wrap .content .matter1 .top .pick {
		font-size: 15px;
		line-height: 1.5;
		margin: 20px 0 0 0;
	}

	.home .robot .fix .wrap .content .matter .bottom .posi_line {
		position: static;
		width: 100%;
		font-size: 18px;
		margin-top: 60px;
	}

	.home .robot .fix .position_cut {
		display: flex;
	}

	.home .robot .fix .position_cut .item .pic1 {
		width: 50px;
		height: auto;
	}

	.home .robot .fix .position_cut .item .pic2 img {
		width: 30px;
		height: auto;
	}

	.home .robot .fix .position_cut .item .other .img {
		width: 150px;
	}

	.home .robot .fix .position_cut .item .other .cen .line {
		height: 80px !important;
	}

	.home .robot .fix .position_cut .item .other .cen {
		width: 45px;
	}

	.home .robot .fix .position_cut .item .other .cen .circle {
		width: 7px;
		height: 7px;
	}

	.home .robot .fix .position_cut {
		gap: 10px 18px;
		right: 5%;
		bottom: 3%;
	}

	.home .robot .fix .wrap .center_img .img img {
		max-height: 50vh;
	}

	.home .robot .fix .wrap .content .matter1 .text_copy .main-copy-wrap {
		font-size: 48px;
	}
}