﻿* {
	margin: 0;
	padding: 0;
}

:root {
	--textColor: rgba(17, 17, 17, 0.9);
	--main_aColor: rgba(9, 133, 227, 0.902);
	--main_bColor: rgba(250, 151, 75, 0.9);
	--main_cColor: rgba(45, 52, 54, 0.4);
	--main_mask: rgba(0, 0, 0, 0.4);
	--main_textColor: #333;
	--main_navTextColor: #ffffff;
}

sub {
	bottom: 0;
	font-size: 1rem;
	line-height: 1rem;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	padding: 0;
	margin: 0;
}

a,
span,
p {
	color: var(--textColor);
	text-decoration: none;
	letter-spacing: 1.5px;
}
p {
	margin-top: 0;
	margin-bottom: 0rem;
}

a:hover {
	color: var(--textColor);
}

li {
	list-style-type: none;
}

body {
	background-color: #f8f8f8;
	font-size: 16px;
	font-family: "Microsoft YaHei" !important;
	 /*filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);*/
  /*  -webkit-filter: grayscale(100%);*/
}

dl,
ol,
ul {
	margin: 0;
	padding: 0;
}

/* titlt */
.n_title {
	text-align: center;
}

.n_title span {
	font-size: 36px;
	padding-bottom: 10px;
	margin-top: 30px;
	margin-bottom: 15px;
	display: inline-block;
	position: relative;
	font-weight: 500;
	letter-spacing: 4px;
	color: var(--main_textColor);
}

.n_title span::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 60%;
	height: 3px;
	border-radius: 2px;
	background-color: var(--main_aColor);
}

.n_title p {
	font-size: 14px;
	color: var(--main_textColor);
	margin-bottom: 2rem;
	max-width: 95%;
	display: block;
	margin: auto;
	padding-bottom: 2rem;
}

/* titlt */
/* nav-lcm */
.nav-lcm {
	position: absolute;
	height: 90px;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
	width: 100%;
	border-bottom: 1px solid #333;
	top: 0;
	z-index: 9;
	background-color: var(--main_mask);
}

.nav-lcm .nav-box {
	-ms-flex: 1;
	-webkit-box-flex: 1;
	flex: 1;
	height: 100%;
}

.nav-lcm .nav-item-box {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
	height: 100%;
	width: 60%;
}

.nav-lcm .nav-pc {
	height: 100%;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
}

.nav-lcm .nav-img {
	height: 50px;
}

.nav-lcm .nav-img img {
	height: 100%;
}

.nav-lcm .nav-item {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
	height: 100%;
	-ms-flex: 1;
	-webkit-box-flex: 1;
	flex: 1;
	/* width: 100%; */
}

.nav-lcm .nav-item .link {
	display: block;
	height: 100%;
	-ms-flex: 1;
	-webkit-box-flex: 1;
	flex: 1;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
	text-align: center;
	position: relative;
}

.nav-lcm .nav-item .link::after {
	content: "";
	position: absolute;
	height: 2px;
	width: 0%;
	left: 50%;
	bottom: 0;
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: var(--main_aColor);
	-webkit-transition: 0.7s;
	-o-transition: 0.7s;
	transition: 0.7s;
}

.nav-lcm .nav-item .link:hover::after {
	width: 100%;
}

.nav-lcm .nav-item .link.hover::after {
	width: 100%;
}

.nav-lcm .nav-item .link > a {
	width: 100%;
	font-size: 1.1rem;
	color: var(--main_navTextColor);
}

.nav-lcm .nav-item .link.hover > a {
	color: var(--main_aColor);
	font-weight: bold;
}

.nav-lcm .nav-item .link > a:hover {
	color: var(--main_aColor);
	font-weight: bold;
}

.nav-lcm .nav-id {
	//padding-left: 20px;
	//margin-left: 10px;
	//border-left: 2px solid var(--main_navTextColor);

	display: -ms-flexbox;

	display: -webkit-box;

	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
}

.nav-lcm .nav-id i {
	height: 32px;
	width: 32px;
	display: inline-block;
	margin-right: 10px;
}

.nav-lcm .nav-id i svg {
	width: 100%;
	height: 100%;
}

.nav-lcm .nav-id i svg * {
	stroke: var(--main_navTextColor);
}

.nav-lcm .nav-id span {
	color: var(--main_navTextColor);
}

.nav-lcm .link-box1 {
	position: fixed;
	left: 0;
	top: 90px;
	width: 100%;
	background-color: #fff;
	display: none;
}

.nav-lcm .nav-item1 {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	justify-content: center;
}

.nav-lcm .link1 {
	aspect-ratio: 1.7/1;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
	text-align: center;
	padding: 1rem;
	position: relative;
	height: 130px;
}

.nav-lcm .link1:last-child::after {
	width: 0;
}

.nav-lcm .link1::after {
	content: "";
	position: absolute;
	right: 0;
	width: 1px;
	height: 40%;
	border-radius: 1px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);

	background-color: var(--main_cColor);
}

.nav-lcm .link1 > a {
	width: 100%;
	font-size: 1.2rem;
}

.nav-lcm .link1.hover > a {
	color: var(--main_aColor);
	font-weight: bold;
}

.nav-lcm .link1 > a:hover {
	color: var(--main_aColor);
	font-weight: bold;
}

/* nav-lcm */
/* banner */
.banner-video {
	width: 100%;
	height: 300px;
	position: relative;
	overflow: hidden;
}

.banner-video video {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.banner-video .banner-mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.banner-video .title {
	position: relative;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	display: -ms-inline-flexbox;
	display: -webkit-inline-box;
	display: inline-flex;
	-ms-flex-direction: column;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
}

.banner-video .title span {
	color: var(--main_navTextColor);
	font-size: 3rem;
	position: relative;
	padding-bottom: 1.5rem;
	letter-spacing: 10px;
	margin-bottom: 2rem;
}

.banner-video .title span::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 120%;
	height: 3px;
	background-color: var(--main_navTextColor);
}

.banner-video i {
	height: 64px;
	width: 64px;
	display: inline-block;
	margin-right: 10px;
}

.banner-video i svg {
	width: 100%;
	height: 100%;
}

.banner-videoi svg * {
	stroke: var(--main_navTextColor);
}

.banner-video span {
	color: var(--main_navTextColor);
}

/* banner */
/* .in_product */
.in_product {
	padding: 1rem 0;
	padding-bottom: 5rem;
}

.in_product .n_title {
	padding-bottom: 1rem;
	margin-bottom: 2rem;
	border-bottom: 1px solid var(--main_mask);
}

.in_product .in_case .caseSort {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	justify-content: center;
	text-align: center;
}

.in_product .in_case .caseSort a {
	width: 13%;
	padding: 0.5rem 1rem;
	border-radius: 3rem;
	margin: 0 2rem;
	color: #333;
	font-size: 1.1rem;
	font-weight: 500;
	background-color: #fff;
	border: 1px solid rgba(51, 51, 51, 0.1);
}

.in_product .in_case .caseSort a.choose {
	font-weight: bold;
	color: #fff;
	background-color: var(--main_aColor);
}

.in_product .swiper {
	height: 100%;
}

.in_product .slide-box {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-direction: row;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-direction: row;
	margin: 3%;
	padding: 2%;
	padding: 1rem;
	background-color: #fff;
	border-radius: 15px;
}

.in_product .slide-box .img {
	width: 35%;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-direction: row;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-direction: row;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	justify-content: center;
}

.in_product .slide-box .s_box_con {
	-ms-flex: 1;
	-webkit-box-flex: 1;
	flex: 1;
}

.in_product .slide-box .img img {
	width: 80%;
	height: auto;
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	align-self: center;
}

.in_product .s_box_con .n_title p {
	font-size: 14px;
	color: var(--main_textColor);
	margin-bottom: 0rem;
}

.in_product .s_box_con .n_title {
	padding-bottom: 1rem;
	margin-bottom: 0rem;
	border-bottom: 0px solid var(--main_mask);
	text-align: inherit;
}

.in_product .s_box_con .n_title span {
	font-size: 1.4rem;
	margin-bottom: 1.5rem;
}

.in_product .s_box_con .n_title p {
	margin-bottom: 1.5rem;
}

.in_product .s_box_con .n_title span::after {
	left: 0;
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}

.in_product .s_box_item > ul {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-direction: row;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-direction: row;
	-ms-flex-pack: space-evenly;
	-webkit-box-pack: space-evenly;
	justify-content: space-evenly;
}

.in_product .s_box_item .link {
	text-align: center;
	margin-bottom: 0.5rem;
}

.in_product .s_box_img {
	padding: 1rem;
	border: 1px dashed var(--main_textColor);
	border-radius: 50%;
	margin-bottom: 1rem;
}

.in_product .s_box_img img {
	width: 64px;
}

/* .in_product */
/* 业务场景 */
.in_scene {
	padding-bottom: 5rem;
	background-color: #fff;
}

.in_scene .scenes > ul {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: distribute;
	/* justify-content: space-around; */
}

.in_scene .scenes .list {
	width: 30%;
	text-align: center;
	overflow: hidden;
	margin: 1.51515%;
	border-radius: 10px;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.in_scene .list .img {
	width: 100%;
	aspect-ratio: 1/1;
	position: relative;
}

.in_scene .list .img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.in_scene .list .img .imgBox span.imgbox-text {
	position: absolute;
	width: 80%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	font-size: 1.2rem;
	letter-spacing: 3px;
}

.in_scene .list .img .imgBox {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
	-webkit-transition: 0.8s;
	-o-transition: 0.8s;
	transition: 0.8s;
}

.in_scene .list .img .imgBox span {
	color: #fff;
	font-weight: bold;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.in_scene .list .img .imgBox p {
	opacity: 0;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.in_scene .list.hover .img .imgBox {
	background-color: rgba(255, 255, 255, 0.9);
}

.in_scene .list.hover .img .imgBox span {
	color: #333;
	font-weight: bold;
}

.in_scene .list.hover .img .imgBox p {
	opacity: 1;
	font-weight: 400;
}

/* 业务场景 */
/* 新闻 */
.in_news {
	padding: 3rem;
}

.in_news img {
	max-width: 100%;
}

.in_news .news {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
}

.in_news .newsLeft {
	width: 40%;
	padding: 1%;
}

.in_news .newsRight {
	width: 60%;
	padding: 1%;
}

/* .in_news .newsRight ul{
	display: flex;
    flex-direction: column;
} */
.in_news .newsRight a {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	height: 180px;
	background-color: #fff;
	border-radius: 5px;
	overflow: hidden;
	-webkit-box-shadow: 0 0 8px rgba(126, 126, 126, 0.1);
	box-shadow: 0 0 8px rgba(126, 126, 126, 0.1);
}

.in_news .newsRight ul > li {
	margin-bottom: 2.1%;
}

.in_news .newsRight .img {
	width: 35%;
	border-radius: 5px;
	overflow: hidden;
}

.in_news .newsRight .con {
	width: 65%;
	padding: 3%;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-direction: column;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	justify-content: space-between;
}

.in_news .newsRight .con .time {
	position: relative;
	bottom: 0;
}

.in_news .newsRight .con .title span {
	font-size: 20px;
}

.in_news .newsRight .con .title p {
	font-size: 14px;
}

.in_news .newsRight .img img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.in_news .newsRight .img img:hover {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.in_news .hd > ul {
	padding: 1%;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	height: 100%;
	-ms-flex-direction: column;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	justify-content: center;
}

.in_news .hd > ul > li {
	width: 25px;
	height: 25px;
	background-color: var(--main_aColor);
	border-radius: 50%;

	margin: 50% 0;
	color: #ffffff00;
}

.in_news .hd > ul > li.on {
	border: 4px solid var(--main_bColor);
	background-color: #fff;
}

.in_news .newsLeft > a {
	height: 99%;
	display: block;
	background-color: #fff;
	border-radius: 5px;
	-webkit-box-shadow: 0 0 8px rgba(126, 126, 126, 0.1);
	box-shadow: 0 0 8px rgba(126, 126, 126, 0.1);
}

.in_news .newsLeft .img {
	height: 67%;

	overflow: hidden;
	border-radius: 5px;
}

.in_news .newsLeft .img img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.in_news .newsLeft .img img:hover {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.in_news .newsLeft .imgbox {
	height: 33%;
	padding: 3%;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-direction: column;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	justify-content: space-between;
}

.in_news .newsLeft .imgbox .title {
	padding: 2%;
	background-color: #fff;
}

.in_news .newsLeft .imgbox .time {
	position: relative;
	bottom: 0;
}

.in_news .newsLeft .imgbox .title span {
	font-size: 20px;
}

.in_news .newsLeft .imgbox .title p {
	font-size: 14px;
}

/* 新闻 */
/* 项目案例 */
.in_plan {
	padding: 3rem 0;
	/* background-color: #fff; */
}

.in_plan img {
	max-width: 100%;
}

.in_plan .plans > ul {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.in_plan .plans > ul li {
	width: 50%;
}

.in_plan .plans > ul li > a {
	padding: 3%;
	display: block;
}

.in_plan .plans .listBox {
	-webkit-box-shadow: 0 0 8px rgba(126, 126, 126, 0.3);
	box-shadow: 0 0 8px rgba(126, 126, 126, 0.3);
	border-radius: 5px;
}

.in_plan .plans .listBox .conTitle {
	text-align: center;
	padding: 30px;
}

.in_plan .plans .listBox .conTitle span {
	font-size: 26px;
	margin-top: 20px;
	margin-bottom: 20px;
	display: block;
	font-weight: 600;
}

.in_plan .plans .listBox .conTitle p {
	font-size: 15px;
}

.in_plan .plans .listBox .img {
	width: 100%;
	aspect-ratio: 5/3;
	overflow: hidden;
}

.in_plan .plans .listBox .img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.in_plan .plans .listBox .img img:hover {
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.in_plan .ahref {
	text-align: end;
	padding: 0 1%;
}

.in_plan .ahref a {
	color: var(--main_bColor);
}

.in_plan .ahref a:hover {
	color: var(--main_aColor);
}

/* 项目案例 */
/* 解决方案 */
.in_solution {
	background-color: #fff;
	padding: 3rem;
}

.in_solution .sort {
	background-color: #edf1f7;
	border-radius: 10px;
	padding: 1rem 2rem;
}

.in_solution .sort > ul {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	justify-content: center;
}

.in_solution .sort li {
	padding: 0.5rem 1rem;
	margin: 0 1rem;
}

.in_solution .sort li.on {
	background-color: #fff;
	border-radius: 2rem;
	-webkit-box-shadow: 0 0 8px rgba(126, 126, 126, 0.3);
	box-shadow: 0 0 8px rgba(126, 126, 126, 0.3);
}

.in_solution .bg {
	background-color: #fff;
	border-radius: 10px;
	-webkit-box-shadow: 0 0 8px rgba(126, 126, 126, 0.3);
	box-shadow: 0 0 8px rgba(126, 126, 126, 0.3);
}

.in_solution .list {
	display: none;
}

.in_solution .list .title {
	padding: 2rem;
}

.in_solution .list .title span {
	font-size: 32px;
	display: inline-block;
	padding-bottom: 1rem;
	margin-top: 10px;
	margin-bottom: 1.6rem;
	font-weight: bold;
	position: relative;
}

.in_solution .list .title span::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 2px;
	width: 40%;
	background-color: var(--main_bColor);
}

.in_solution .list .title sub {
	font-size: 18px;
	display: block;
	margin-bottom: 10px;
}

.in_solution .list .title p {
	font-size: 14px;
}

.in_solution .list .btn {
	padding: 0 2rem;
	margin-bottom: 2rem;
	width: 100%;
	text-align: left;
}

.in_solution .list .btn a {
	display: inline-block;
	padding: 0.5rem 1.5rem;
	background-color: var(--main_aColor);
	color: #fff;
	border-radius: 2rem;
}

.in_solution .list .btn a:hover {
	font-weight: bold;
	background-color: var(--main_cColor);
}

/* 解决方案 */
/* 合作 */
.in_coo {
	padding: 4rem 0;
	background-color: #fff;
}

.in_coo .list {
	width: 33.333%;
	padding: 1rem;
	aspect-ratio: 4/3;
}

.in_coo .list .listBox {
	background-color: #fff;
	border-radius: 5px;
	-webkit-box-shadow: 0 0 8px rgba(126, 126, 126, 0.3);
	box-shadow: 0 0 8px rgba(126, 126, 126, 0.3);
	padding: 1.5rem;
	position: relative;
	height: 100%;
}

.in_coo .list .listBox:hover .cooHover {
	height: 100%;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	padding: 1.5rem 1.5rem;
}

.in_coo .list .img img {
	min-width: 190px;
}

.in_coo .list .cooBox {
	text-align: center;
	height: 100%;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-direction: column;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-ms-flex-pack: space-evenly;
	-webkit-box-pack: space-evenly;
	justify-content: space-evenly;
}

.in_coo .list .cooBox span {
	font-size: 20px;
	font-weight: bold;
}

.in_coo .list .cooBox ul {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	justify-content: center;
}

.in_coo .list .cooBox ul li {
	padding: 0rem 1rem;
	border-right: 2px solid var(--main_bColor);
	line-height: 1rem;
}

.in_coo .list .cooBox ul li:last-child {
	border: 0;
}

.in_coo .cooHover {
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	height: 0%;
	padding: 0 1.5rem;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgb(47, 153, 235);
	border-radius: 5px;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-ms-flex-direction: column;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
}

.in_coo .cooHover > * {
	color: #fff;
}

.in_coo .cooHover span {
	font-size: 20px;
	font-weight: bold;
}

.in_coo .cooHover p {
	font-size: 14px;
}

.in_coo .cooHover a {
	float: left;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	padding: 0.6rem 0.2rem;
	border-bottom: 1px solid #fff;
}

.in_coo .cooHover a:hover {
	font-weight: bold;
}

/* 合作 */
/* 关于宝露 */
.gybl_intro {
	padding: 4rem 0;
}

.gybl_intro .introBox {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
}

.gybl_intro .introText {
	width: 50%;
	padding: 1rem;
	padding-right: 3rem;
}

.gybl_intro .introText p {
	letter-spacing: 3px;
	line-height: 1.7rem;
	padding: 0.3rem;
	font-size: 16px;
}

.gybl_intro .introImg {
	width: 50%;
	position: relative;
}

.gybl_intro .introImg img {
	width: 90%;
	-o-object-fit: cover;
	object-fit: cover;
	aspect-ratio: 7/5;
	position: relative;
	display: block;
	top: 10%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 2;
}

.gybl_intro .introImg::after {
	content: "";
	width: 76%;
	aspect-ratio: 1/1;
	display: inline-block;
	position: absolute;
	top: 3%;
	left: 62%;
	-webkit-transform: translateX(-47.5%);
	-ms-transform: translateX(-47.5%);
	transform: translateX(-47.5%);
	z-index: 1;
	background-color: var(--main_aColor);
}

/* 服务领域 */
.gybl_culture .bg {
	padding: 3rem 0;
}

.gybl_culture .n_title span,
.gybl_culture .n_title p {
	color: #fff;
}

.gybl_culture .culture {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.gybl_culture .culture span {
	color: #fff;
}

.gybl_culture .culture .list {
	width: 16.6666%;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-direction: column-reverse;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	flex-direction: column-reverse;
	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	justify-content: center;
	aspect-ratio: 1/1;
	/* transform: scale(1.1); */
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.gybl_culture .culture .list:hover {
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.gybl_culture .culture .list:hover img {
	-webkit-animation-name: spin;
	animation-name: spin;
	-webkit-animation-duration: 0.8s;
	animation-duration: 0.8s;
}

.gybl_culture .culture .list img {
	width: 40%;
}

@-webkit-keyframes spin {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes spin {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.gybl_culture .culture .list.on {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	background-color: rgba(51, 51, 51, 0.288);
	border-radius: 5px;
}

/* 服务领域 */
.gybl_Paas {
	padding-top: 3rem;
	padding-bottom: 5rem;
}

.gybl_Paas .paasBox {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	justify-content: center;
	padding-top: 1rem;
}

.gybl_Paas .list {
	background-color: #fff;
	margin: 0 2rem;
	border-radius: 5px;
	-webkit-box-shadow: 0 0 8px rgba(126, 126, 126, 0.1);
	box-shadow: 0 0 8px rgba(126, 126, 126, 0.1);
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-direction: column;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.gybl_Paas .list:hover {
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.gybl_Paas .list .title {
	margin: 10px;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	width: 280px;
	height: 180px;
	line-height: 180px;
	-webkit-box-shadow: 0 0 8px rgba(126, 126, 126, 0.3);
	box-shadow: 0 0 8px rgba(126, 126, 126, 0.3);
	background-color: var(--main_aColor);
	border-radius: 5px;
}

.gybl_Paas .list .title span {
	color: #fff;
}

.gybl_Paas .list .tag {
	margin: 10px;
	width: 280px;
	-ms-flex: 1;
	-webkit-box-flex: 1;
	flex: 1;
	text-align: center;
}

.gybl_Paas .list .tag ul {
	height: 100%;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.gybl_Paas .list .tag ul li {
	width: 50%;
	height: 50px;
	line-height: 50px;
	border-radius: 5px;
}

.gybl_Paas .list .tag ul li:hover {
	background-color: var(--main_aColor);
	color: #fff;
	font-weight: bold;
}

/* 地图 */
.gybl_map {
	position: relative;
	padding: 4rem 0;
	height: 800px;
}

.gybl_map .n_title {
	-webkit-transform: translateX(-557px);
	-ms-transform: translateX(-557px);
	transform: translateX(-557px);
}

.gybl_map .n_title * {
	color: #fff;
}

.mapBox .num {
	position: relative;
}

.mapBox .num img {
	position: absolute;
	top: 244px;
	left: 50%;
	width: 390px;
	height: 290px;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.mapBox .num .numBox {
	position: absolute;
	top: 306px;
	left: 51%;
	width: 240px;
	height: 147px;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-direction: column;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
}

.mapBox .num .numBox span {
	-ms-flex: 1;
	-webkit-box-flex: 1;
	flex: 1;
	font-size: 20px;
	color: #fff;
	letter-spacing: 5px;
}

.mapBox .num .numBox span label {
	color: #fff;
	letter-spacing: 5px;
	font-size: 32px;
}

/* 服务流程 */
.gybl_flow {
	padding: 3rem;
	background-color: #fff;
}

.gybl_flow .flowBox .list {
	height: 150px;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
}

.gybl_flow .flowBox .list .img {
	height: 62px;
}

.gybl_flow .line {
	height: 100%;
	width: 2px;
	margin: 0 2rem;
	background-color: var(--main_aColor);
	position: relative;
}

.gybl_flow .line span {
	width: 25px;
	height: 25px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background-color: rgb(9, 133, 227);
	border-radius: 50%;
	border: 4px solid #fff;
}

.gybl_flow .line span::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 13px;
	height: 13px;
	-webkit-transform: translate(-46%, -46%);
	-ms-transform: translate(-46%, -46%);
	transform: translate(-46%, -46%);
	background-color: rgb(9, 133, 227);
	border-radius: 50%;
	border: 2px solid #fff;
}

.gybl_flow .list .title {
	-ms-flex: 1;
	-webkit-box-flex: 1;
	flex: 1;
}

.gybl_flow .list .title span {
	font-size: 24px;
	position: relative;
	padding-bottom: 5px;
	margin-bottom: 10px;
	display: inline-block;
	font-weight: bold;
	color: var(--main_aColor);
}

/* 公司优势 */
.gybl_firm {
	padding: 3rem 0;
}

.gybl_firm .firm {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-direction: column;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
}

.gybl_firm .list > div {
	float: left;
	padding: 2.5rem 2rem;
	margin: 1rem 0;
	background-color: #fff;
	border-radius: 5px;
	-webkit-box-shadow: 0 0 8px rgba(126, 126, 126, 0.2);
	box-shadow: 0 0 8px rgba(126, 126, 126, 0.2);
	width: 90%;
}

.gybl_firm .list .title {
	padding-bottom: 10px;
	margin-bottom: 15px;
}

.gybl_firm .list .title span {
	font-size: 24px;
	font-weight: bold;
	color: var(--main_aColor);
}

.gybl_firm .list.on > div {
	text-align: end;
	float: right;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

/* 关于宝露 */
.gybl_wenhua {
	padding: 3rem;
	padding-bottom: 4rem;
}

.gybl_wenhua .img {
	width: 100%;
	aspect-ratio: 4/3;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.gybl_wenhua .img img {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.gybl_wenhua .img img:hover {
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	-webkit-transform: scale(1.08);
	-ms-transform: scale(1.08);
	transform: scale(1.08);
}

.gybl_wenhua ul {
	display: -webkit-box;
	display: -ms-flexbox;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	display: flex;
	justify-content: space-evenly;
}

.gybl_wenhua .list {
	width: 23%;
	margin: 0 1%;
	text-align: center;
	background-color: #fff;
	border-radius: 2px;
}

.gybl_wenhua .list span {
	padding: 0.8rem;
	display: block;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	color: var(--main_aColor);
	border-top: 1px solid var(--main_aColor);
}

.gybl_wenhua .list p {
	padding: 0.8rem;
	min-height: 140px;
}

/*	品牌客户 */
.gybl_client {
	padding: 3rem 0;
	background-color: #fff;
}

.gybl_client .index {
	position: relative;
	z-index: 1;
	-webkit-box-shadow: 0 0 8px rgba(126, 126, 126, 0.1);
	box-shadow: 0 0 8px rgba(126, 126, 126, 0.1);
}

.gybl_client .index ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 1rem 1rem;
	background-color: #edf1f7;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.gybl_client .index ul .list {
	padding: 0.5rem 2rem;
	border-radius: 2rem;
	cursor: pointer;
}

.gybl_client .index ul .list:hover {
	background-color: var(--main_aColor);
	font-weight: bold;
}

.gybl_client .index ul .list:hover span {
	color: #fff;
}

.gybl_client .index ul .list.on {
	background-color: var(--main_aColor);
	font-weight: bold;
}

.gybl_client .index ul .list.on span {
	color: #fff;
}

.gybl_client .index ul .line {
	width: 1px;
	background-color: var(--main_cColor);
	margin: 0.6rem 1.2rem;
}

.gybl_client .index ul .line:last-child {
	display: none;
}

.gybl_client .folders {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	-webkit-box-shadow: 0 0 8px rgba(126, 126, 126, 0.2);
	box-shadow: 0 0 8px rgba(126, 126, 126, 0.2);
}

.gybl_client .folder ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 1rem 1.2rem;
}

.gybl_client .folder ul img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	cursor: pointer;
}

.gybl_client .folder ul li {
	width: 16.6666%;
	aspect-ratio: 2/1;
	padding: 1%;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	position: relative;
	z-index: 1;
}

.gybl_client .folder ul li.on {
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	-webkit-box-shadow: 0 0 8px rgb(126 126 126 / 20%);
	box-shadow: 0 0 8px rgb(126 126 126 / 20%);
	position: relative;
	z-index: 2;
}

/* 资质荣誉 */
.gybl_honor{
    padding-bottom: 2rem;
}
.gybl_honor .img {
	width: 90%;
	margin: 0 auto;
}

.gybl_honor .img img {
	width: 100%;
}

.gybl_honor .swiperHonor {
	height: 632px;
}

.gybl_honor .swiper-slide {
	height: 316px;
}

.gybl_honor .honorBox {
	text-align: center;
	margin: 2%;
	background-color: #fff;
	padding: 1rem;
	border-radius: 5px;
	-webkit-box-shadow: 0 0 8px rgba(126, 126, 126, 0.1);
	box-shadow: 0 0 8px rgba(126, 126, 126, 0.1);
}

.gybl_honor .honorBox span {
	display: inline;
	padding: 1rem 0;
	font-size: 20px;
}

.gybl_honor .index {
	margin: 0.8%;
	/* background-color: ; */
}

.gybl_honor .index ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 1rem;
	margin-bottom: 2rem;
}

.gybl_honor .index ul li {
	padding: 0.4rem 1.5rem;
	margin: 0 0.5rem;
	border-bottom: 2px solid #fff0;
}

.gybl_honor .index ul li:hover {
	border-bottom: 2px solid var(--main_aColor);
}

.gybl_honor .index ul li.on {
	border-bottom: 2px solid var(--main_aColor);
}

/* 资讯设计 */
.zhsj_consult {
	padding: 3rem;
}

/* 我们的优势 */
.zhsj_abv {
	text-align: center;
	padding-top: 5rem;
	padding-bottom: 8rem;
}

/* 方案定制 */
.zhsj_plan {
	padding-top: 2rem;
	padding-bottom: 3rem;
	background-color: #fff;
}

.zhsj_plan .container {
	margin: auto;
}

.zhsj_plan .he_b2p8li.fl.even .he_b2p8ubx {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.zhsj_plan .he_b2p8li.fl.even .he_b2p8uri {
	left: 0;
}

/* 工程实施 */
.gcss_model {
	padding: 3rem 0;
}

.gcss_model .box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 550px;
	border-radius: 5px;
	/* background-color: #fff; */
}

/* 施工流程 */
.gcss_process {
	background-color: #fff;
	padding: 3rem 0;
}

/* 施工流程 */
.gcss_model .box .index {
	width: 170px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.gcss_model .box .index a {
	padding: 8px;
	margin: 8px auto;
	border-radius: 5px;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	display: block;
	height: 55px;
	width: 105px;
	line-height: 37px;
	text-align: center;
	background-color: #fff;
	-webkit-box-shadow: 0 0 8px rgba(126, 126, 126, 0.15);
	box-shadow: 0 0 8px rgba(126, 126, 126, 0.15);
}

.gcss_model .box .index a:hover {
	background-color: var(--main_aColor);
	color: #fff;
	font-weight: bold;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.gcss_model .box .index a.on {
	background-color: var(--main_aColor);
	color: #fff;
	font-weight: bold;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.gcss_model .box .index a:first-child {
	margin-top: 0;
}

.gcss_model .box .conBox {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.gcss_model .box .img {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	height: auto;
	overflow: hidden;
	border-radius: 5px;
	-webkit-box-shadow: 0 0 8px rgba(126, 126, 126, 0.1);
	box-shadow: 0 0 8px rgba(126, 126, 126, 0.1);
}

.gcss_model .box .img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 5px;
}

.gcss_model .box .img img.animate__animated {
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
}

.gcss_model .box .tag {
	height: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.gcss_model .box .tag a {
	padding: 0.5rem 1rem;
	/* margin: 0 1rem; */
	position: relative;
}

.gcss_model .box .tag a::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	height: 40%;
	width: 2px;
	border-radius: 2px;
	background-color: var(--main_aColor);
}

.gcss_model .box .tag a:last-child::after {
	display: none;
}

/* 软件开发 */

.rjkf_xtjc .gybl_firm .list > div {
	width: 100%;
	height: 100%;
	margin: 0;
}

.rjkf_xtjc .gybl_firm .list.on > div {
	text-align: end;
	float: right;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.rjkf_xtjc .gybl_firm .firm .list {
	width: 50%;
	padding: 1rem;
}

.rjkf_xtjc .gybl_firm .firm {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
}

/* 软件开发 */
.rjkf_rjkf {
	padding: 3rem 0;
	background-color: #fff;
	overflow: hidden;
	position: relative;
}

.rjkf_rjkf .imgBg {
	width: 100%;
	height: 100%;
	position: absolute;
	-o-object-fit: cover;
	object-fit: cover;
	z-index: 0;
	top: 0;
	left: 0;
}

.rjkf_rjkf * {
	color: #fff !important;
}

.rjkf_rjkf .n_title {
	position: relative;
	z-index: 1;
}

.rjkf_rjkf .tetx {
	position: relative;
	z-index: 1;
	width: 40%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.rjkf_rjkf .tetx p {
	letter-spacing: 4px;
	line-height: 1.8rem;
	padding-bottom: 1rem;
}

.rjkf_rjkf .container {
	height: 500px;
}

/* 开发流程 */
.rjkf_kflc {
	background-color: #00396c;
	padding: 3rem 0;
}

.rjkf_kflc .n_title * {
	color: #fff;
}

.rjkf_kflc .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 4rem 0;
	-webkit-box-pack: space-evenly;
	-ms-flex-pack: space-evenly;
	justify-content: space-evenly;
}

.rjkf_kflc .conBox {
	width: 320px;
	padding: 4rem;
	height: 100%;
	background-color: #fff;
	border-radius: 5px;
	-webkit-box-shadow: 0 0 8px rgba(126, 126, 126, 0.1);
	box-shadow: 0 0 8px rgba(126, 126, 126, 0.1);
}

.rjkf_kflc .conBox span {
	font-size: 24px;
	font-weight: bold;

	position: relative;
}

.rjkf_kflc .conBox span::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -8px;
	width: 4px;
	height: 80%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: var(--main_bColor);
}

.rjkf_kflc .conBox > div {
	padding: 4px;
}

.rjkf_kflc .conBox > div p {
	line-height: 2rem;
}

.rjkf_kflc .roulette {
	height: 400px;
	width: 400px;
	position: relative;
	border-radius: 50%;
	background-image: url("../img/kflc-bg.png");
	-webkit-box-shadow: 0 0 8px rgba(9, 133, 227, 0.1);
	box-shadow: 0 0 8px rgba(9, 133, 227, 0.1);
	background-size: cover;
}

.rjkf_kflc .roulette .main_inner {
	width: 160px;
	height: 160px;
	font-size: 32px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	line-height: 160px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	z-index: 1;
	border-radius: 50%;
	/* background-color: #74baffa9; */
	background-size: cover;
}

.rjkf_kflc .roulette .main_con {
	position: absolute;
	width: 20%;
	height: 20%;
	font-weight: bold;
	line-height: 80px;
	text-align: center;
	border-radius: 50%;
	top: 0;
	left: 0;
	color: #fff;
	background-color: var(--main_aColor);
	-webkit-box-shadow: 0 0 8px rgba(126, 126, 126, 0.2);
	box-shadow: 0 0 8px rgba(126, 126, 126, 0.2);
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.rjkf_kflc .roulette .main_con:hover {
	color: var(--main_aColor);
	background-color: #fff;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.rjkf_kflc .roulette .main_con.on {
	color: var(--main_aColor);
	background-color: #fff;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.large-aiot .banner-lage {
	position: relative;
}

.large-aiot .banner-lage .img {
	position: relative;
}

.large-aiot .banner-lage .img::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background-color: rgba(30,30,30,.3); */
}

.large-aiot .banner-lage .img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.large-aiot .banner-lage .lageBox {
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 100%;
}

.large-aiot .banner-lage .title {
	padding: 1rem;
}

.large-aiot .banner-lage .title span {
	font-size: 3rem;
	font-weight: bold;
	display: inline-block;
	padding-bottom: 0.6rem;
	color: #fff;
}

.large-aiot .banner-lage .title p {
	color: #fff;
}

/* aiot */
.aiot_gn {
	padding: 3rem 0;
}

.giot_cj sub {
	display: block;
	margin-bottom: 5px;
}

.aiot_cwyd {
	background-color: #fff;
	padding: 3rem 0;
}

.aiot_cwyd .title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 130px;
}

.aiot_cwyd .title span {
	font-size: 32px;
	font-weight: bold;
	text-align: center;
	display: block;
	width: 30%;
}

.aiot_cwyd .title p {
	width: 70%;
}

.aiot_cwyd .cwydBox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.aiot_cwyd .cwydBox .img {
	width: 40%;
}

.aiot_cwyd .cwydBox .img img {
	width: 100%;
}

.aiot_cwyd .cwydBox .wayBox {
	width: 60%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.aiot_cwyd .cwydBox .wayBox span {
	font-size: 22px;
	display: inline-block;
	margin-bottom: 10px;
}

.aiot_cwyd .cwydBox .wayBox .way {
	width: 30%;
}

.aiot_cwyd .cwydBox .wayBox .wayImg {
	width: 7rem;
	height: 7rem;
	margin: 1rem auto;
	padding: 1rem;
	border-radius: 50%;
	border: 2px dashed var(--main_aColor);
}

.aiot_cwyd .cwydBox .wayBox .wayImg img,
.aiot_cwyd .cwydBox .wayBox .wayImg svg {
	width: 100%;
	height: 100%;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.aiot_cwyd .cwydBox .wayBox .wayImg img:hover,
.aiot_cwyd .cwydBox .wayBox .wayImg svg:hover {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	margin-top: 5px;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.aiot_cwyd.vice .cwydBox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.aiot_pic {
	padding: 3rem 0;
}

.aiot_tags {
	padding: 3rem 0;
	background-color: #fff;
}

.aiot_tags .img {
	width: 60%;
	margin: auto;
}

.aiot_tags .img img {
	width: 100%;
}

.aiot_tags .tag {
	display: inline-block;
	background: var(--main_aColor);

	color: #fff;
	padding: 5px 10px;
	margin: 10px 10px 10px 20px;
	font: normal 16px sans-serif;
	position: relative;
	cursor: default;
	-webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.26);
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.26);
	-webkit-transform-origin: 0% 50%;
	-webkit-animation: swing 1s;
	animation: swing 1s;
	transition: 0.5s;
}
.aiot_tags .tag:hover {
	transition: 0.5s;
	transform: scale(1.1);
	z-index: 9;
}
.aiot_tags .tag:before {
	content: "";
	position: absolute;
	width: 0;
	background: inherit;
	height: 100%;
	border: 10px solid #fff;
	border-right-color: rgb(255, 255, 255);
	border-right-color: transparent;
	/* border-radius: 10px 0 0 10px; */
	left: -20px;
	top: 0;
}

.aiot_tags .tag:after {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 3px;
	background: #fff;
	position: absolute;
	left: -3px;
	top: 12px;
	-webkit-box-shadow: inset 1px 1px 0 #ccc;
	box-shadow: inset 1px 1px 0 #ccc;
}

.aiot_tags .tag .close {
	position: absolute;
	background: inherit;
	left: -4px;
	z-index: 3;
	visibility: hidden;
}

.aiot_tags .close:hover {
	color: rgba(0, 0, 0, 0.5);
}

/*! CSS Used keyframes */
@-webkit-keyframes swing {
	0% {
		-webkit-transform: rotate(100deg);
	}

	25% {
		-webkit-transform: rotate(-25deg);
	}

	50% {
		-webkit-transform: rotate(15deg);
	}

	100% {
		-webkit-transform: rotate(0deg);
	}
}

@keyframes swing {
	0% {
		-webkit-transform: rotate(-200);
	}

	25% {
		-webkit-transform: rotate(-70);
	}

	50% {
		-webkit-transform: rotate(-185);
	}

	100% {
		-webkit-transform: rotate(-180);
	}
}
/* aiot_platform */
.aiot_platform {
	padding: 3rem 0;
}
.aiot_platform .plaBox {
	display: flex;
	justify-content: space-evenly;
	margin: 2rem 0;
	flex-wrap: wrap;
}
.aiot_platform .pla {
	width: 14%;
	text-align: center;
	border-radius: 5px;
	background-color: #fff;
	position: relative;
	box-shadow: 0 0 8px rgba(126, 126, 126, 0.1);
}
.aiot_platform .pla::after {
	position: absolute;
	content: "";
	top: 15px;
	right: 15px;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background-color: #f8f8f8;
	box-shadow: 0 0 8px rgba(126, 126, 126, 0.1) inset;
	border: 1px solid var(--main_aColor);
}
.aiot_platform .pla span {
	font-size: 24px;
	padding: 1rem 1rem 0rem 1rem;
	display: block;
	font-weight: bold;
	letter-spacing: 4px;
}
.aiot_platform .pla .tag {
	padding: 1rem;
}
.aiot_platform .pla .tag p {
	line-height: 1.8rem;
}
.aiot_gn_yy {
	background-color: #fff;
}
.aiot_ys .imgTitle {
	display: flex;
	padding: 1rem;
}
.aiot_ys .imgTitle > img {
	width: 45%;
}
.aiot_ys .imgTitle .title {
	flex: 1;
	padding-left: 8rem;
	/* text-align: center; */
}
.aiot_ys .imgTitle .title span {
	font-size: 3em;
	display: inline-block;
	letter-spacing: 10px;
	margin: 1rem 0;
	/* font-weight: bold; */
}
.aiot_ys .imgTitle .title div p {
	line-height: 3.5rem;
	letter-spacing: 4px;
	font-size: 20px;
	color: #696969;
}
.aiot_ys .introduce {
	display: flex;
	justify-content: space-around;
	margin: 3rem 0;
}
.aiot_ys .introduce .int {
	width: 30%;
}
.aiot_ys .introduce .int span {
	font-size: 24px;
	text-align: center;
	display: block;
	margin-bottom: 1rem;
}
.aiot_rwfn {
	background-color: #fff;
}
.aiot_rwfn .rwBox {
	display: flex;
	margin-top: 4rem;
}
.aiot_rwfn .rw {
	display: flex;
	flex-direction: column;
}
.aiot_rwfn .text {
	width: 100%;
	aspect-ratio: 3/2;
}
.aiot_rwfn .img {
	width: 100%;
	aspect-ratio: 3/2;
	overflow: hidden;
}
.aiot_rwfn .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s;
}
.aiot_rwfn .img:hover img {
	transform: scale(1.1);
	transition: 0.5s;
}
.aiot_rwfn .rw:nth-child(even) {
	flex-direction: column-reverse;
}
.aiot_rwfn .rw .text:hover {
	background-color: #fff;
	transition: 0.5s;
}
.aiot_rwfn .rw .text:hover * {
	color: #383838;
	transition: 0.5s;
}
.aiot_rwfn .text {
	text-align: center;
	padding: 1.2rem;
	background-color: var(--main_aColor);
	transition: 0.5s;
}
.aiot_rwfn .text * {
	color: #fff;
	transition: 0.5s;
}
.aiot_rwfn .text span {
	font-size: 26px;
	display: inline-block;
	margin-bottom: 15px;
}
.aiot_rwfn .text > div p {
	line-height: 2rem;
}
/* xmal_category */

.xmal_category {
	padding: 3rem 0;
}
.xmal_category .category > ul {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-around;
}
.xmal_category .category > ul li {
	width: 23%;
	margin: 1%;
	background-color: #fff;
	overflow: hidden;
	border-radius: 5px;
	box-shadow: 0 0 8px rgba(126, 126, 126, 0.1);
	position: relative;
}
.xmal_category .base .img {
	position: relative;
}
.xmal_category .base .img > img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 5/3;
}

.xmal_category .base .logo {
	position: absolute;
	right: 5%;
	top: 100%;
	transform: translateY(-50%);
	width: 25%;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background-color: #fff;
	overflow: hidden;
	box-shadow: 0 0 5px rgba(126, 126, 126, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
}
.xmal_category .base .logo img {
	width: 90%;
}

.xmal_category .base .title {
	padding: 26px;
	padding-bottom: 32px;
}
.xmal_category .base .title span {
	font-size: 24px;
	color: #333;
	display: inline-block;
	padding: 1rem;
	font-weight: bold;
}
.xmal_category .base .title p {
	line-height: 24px;
	font-size: 14px;
	height: 48px;
	display: block;
	overflow: hidden;
	color: #666;
}
.xmal_category .referral {
	csswidth: 100%;
	display: none;
	position: absolute;
	bottom: 0;
	height: 100%;
	left: 0;
	z-index: 2;
	background-color: #fff;
}
.xmal_category .referral .img {
	height: 120px;
	text-align: center;
	background-color: #fff;
	/* border-bottom: 2px solid var(--main_aColor); */
}
.xmal_category .referral .img img {
	height: 60px;
	margin-top: 40px;
}
.xmal_category .referral .text {
	padding: 0 1rem;
	height: calc(100% - 120px);
}
.xmal_category .referral .text p {
	font-size: 15px;
	letter-spacing: 3px;
	line-height: 22px;
	color: #696969;
	word-break: break-all;
	padding: 1rem;
}
.xmal_category .referral .text span {
	font-size: 15px;
	letter-spacing: 3px;
	color: var(--main_aColor);
	position: relative;
	bottom: -20%;
	left: 10px;
}
.product_ms .tame {
	margin-bottom: 1rem;
	padding-bottom: 10px;
	border-bottom: 1px solid;
}
.product_ms {
	margin-bottom: 3rem;
}
.product.active.index {
	width: auto;
	border-radius: 5px;
	box-shadow: 0 0 5px rgba(126, 126, 126, 0.1);
}
.product_ms .container {
	padding: 2rem;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0 0 5px rgba(126, 126, 126, 0.1);
}
.produtc_yt {
	padding-bottom: 3rem;
}
.produtc_yt .container {
	padding: 0;
}
.produtc_yt ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.produtc_yt ul li {
	width: 25%;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-around;
	padding: 5px;
	position: relative;
}
.produtc_yt ul li .img {
	border-radius: 4px;
	overflow: hidden;
}
.produtc_yt ul li .img img {
	width: 100%;
	aspect-ratio: 5/3;
}
.produtc_yt ul li span {
	position: absolute;
	bottom: 10%;
	left: 10%;
	background-color: #fff;
	color: #333;
	font-weight: bold;
	padding: 0.5rem 1.5rem;
	border-radius: 5px;
	box-shadow: 0 0 5px rgba(126, 126, 126, 0.1);
}
/* 新闻 */
.newslist_box {
}
.newslist_box .container {
	display: flex;
}
.newslist_box .container .left {
	width: 75%;
	padding-right: 2px;
}
.newslist_box .container .right {
	width: 25%;
}
.newslist_box .left .img img {
	max-width: 100%;
}
.newslist_box .left ul {
	display: flex;
	flex-direction: column;
}
.newslist_box .left .tiem {
	padding: 1rem;
	margin: 8px;
	background-color: #fff;
	border-radius: 4px;
}

.newslist_box .left .tiemBox {
	display: flex;
}
.newslist_box .left .tiemBox .img {
	width: 38%;
}
.newslist_box .left .tiemBox .text-box {
	width: 72%;
	padding: 0 1rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.newslist_box .left .tiemBox .text-box .title span {
	font-size: 24px;
}
.newslist_box .left .tiemBox .text-box .title p {
	color: #888;
	margin-top: 8px;
}
.newslist_box .left .tiemBox .text-box .tag {
	display: flex;
	justify-content: space-between;
}
.newslist_box .left .tiemBox .text-box .tag .time {
	display: flex;
	align-items: center;
}
.newslist_box .left .tiemBox .text-box .tag .time i {
	height: 24px;
	width: 24px;
	display: block;
	margin-right: 8px;
}
.newslist_box .left .tiemBox .text-box .tag .time svg {
	height: 100%;
	width: 24px;
}

.newslist_box .left .tiem:hover .text-box .title span {
	color: var(--main_aColor);
}
.newslist_box .right {
	margin: 8px;
}
.newslist_box .right .tj {
	padding: 1rem;
	background-color: #fff;
	border-radius: 4px;
}
.newslist_box .right .tj .title {
	font-size: 28px;
	padding-bottom: 16px;
	margin-bottom: 12px;
	display: block;
}
.newslist_box .right .tj .rightBox li {
	padding: 8px 0;
	margin-bottom: 8px;
	border-bottom: 1px solid #eee;
}
.newslist_box .right .tj .rightBox p {
	text-align: end;
	font-size: 14px;
}
.newslist_box .right .tag {
	padding: 1rem;
	background-color: #fff;
	border-radius: 4px;
	margin-top: 1rem;
}
.newslist_box .right .tag .title {
	font-size: 28px;
	padding-bottom: 16px;
	margin-bottom: 12px;
	display: block;
}
.newslist_box .right .tag .rightBox {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.newslist_box .right .tag .rightBox li {
	border: 1px solid #aaa;
	margin: 4px;
	padding: 4px 6px;
	border-radius: 4px;
}
.newslist_box .right .tag .rightBox li:hover span {
	color: var(--main_aColor);
}
.news_position {
	padding: 1rem 0;
	color: #777;
	background-color: #fff;
}
.news_position a {
	margin: 0 4px;
	color: #777;
}
.news_text .title {
	padding-top: 2rem;
	padding-bottom: 3rem;
}
.news_text .title span {
	font-size: 24px;
	padding-bottom: 1rem;
	display: block;
	font-weight: bold;
}
.news_text {
	background-color: #fff;
}
.news_text img {
	max-width: 100%;
}
.news_text .other-news {
	display: flex;
	justify-content: space-evenly;
	padding-top: 3rem;
	padding-bottom: 2rem;
}
.news_text .other-news .news-next,
.news_text .other-news .news-prev {
	flex: 0 0 382px;
}
.news_text .other-news .news-next .news-wrapper,
.news_text .other-news .news-prev .news-wrapper {
	background: #f2f3f5;
	padding: 24px 40px;
	box-sizing: border-box;
	height: 96px;
	display: flex;
	align-items: center;
}
.news_text .other-news .news-prev .news-wrapper .news-arrow {
	margin-right: 40px;
	width: 24px;
	height: 20px;
}
.news_text .other-news .news-next .news-wrapper .news-arrow,
.news_text .other-news .news-next .news-wrapper .news-arrow img,
.news_text .other-news .news-prev .news-wrapper .news-arrow img {
	width: 24px;
	height: 20px;
}
.news_text .other-news .news-next .news-wrapper .news-title,
.news_text .other-news .news-prev .news-wrapper .news-title {
	flex: 1;
	line-height: 24px;
	color: #333;
	font-size: 14px;
	font-weight: 300;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.news_text .other-news .news-next .news-arrow-active,
.news_text .other-news .news-next:hover .news-arrow-normal,
.news_text .other-news .news-prev .news-arrow-active,
.news_text .other-news .news-prev:hover .news-arrow-normal {
	display: none;
}
.news_text .other-news .news-next:hover .news-arrow-active,
.news_text .other-news .news-prev:hover .news-arrow-active {
	display: block;
}
.news_text .other-news .news-next:hover .news-wrapper,
.news_text .other-news .news-prev:hover .news-wrapper {
	background: #0e57a2;
}
.news_text .other-news .news-next:hover .news-wrapper .news-title,
.news_text .other-news .news-prev:hover .news-wrapper .news-title {
	line-height: 24px;
	color: #fff;
	font-size: 14px;
	font-weight: 300;
}
.news_text .other-news .news-next .news-wrapper .news-arrow {
	margin: 0 0 0 40px;
}
.sthz_strength .container {
	width: 100%;
	max-width: 90%;
}
.sthz_strength {
	padding-bottom: 3rem;
}
.rczp_gk {
	padding: 3rem 0;
}
.rczp_gk img {
	width: 100%;
	height: 500px;
	object-fit: cover;
}
.rczp_gk .gkBox {
	display: flex;
	padding: 0rem 2rem;
}
.rczp_gk .gkBox .text {
	width: 60%;
	margin-top: 5rem;
	border-top: 2px solid #2391ff8d;
	border-left: 2px solid #2391ff8d;
	border-bottom: 2px solid #2391ff8d;
	padding: 3rem;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
}
.rczp_gk .gkBox .text > span {
	font-size: 26px;
	font-weight: bold;
	color: var(--main_aColor);
	display: inline-block;
	margin-bottom: 1rem;
}
.rczp_gk .gkBox .text > p {
	color: #666;
}
.rczp_gk .gkBox .text ul {
	display: flex;
}
.rczp_gk .gkBox .text ul li {
	padding: 1rem;
	background-color: #efefef;
	position: relative;
}
.rczp_gk .gkBox .text ul li:first-child::after {
	display: none;
}
.rczp_gk .gkBox .text ul li::after {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 30%;
	width: 1px;
	background-color: #333;
}
.rczp_gk .gkBox .img {
	width: 40%;
}
.gsxx_map .mapBox {
	display: flex;
	height: 300px;
	margin: 2rem 0;
	background-color: #fff;
	box-shadow: 0 0 5px rgb(227, 227, 227);
	border-radius: 5px;
	overflow: hidden;
}
.gsxx_map .mapBox .map {
	flex: 1;
}
.gsxx_map .mapBox .con {
	padding: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.gzfa.gybl_intro {
	padding-bottom: 8rem;
	background-color: #fff;
}
.gzfa.sthz_strength .he_h5p5ul {
	display: flex;
	justify-content: center;
}
