/* 全屏轮播图 */
.swiper-container {
	position: relative;
	z-index: 0;
}
.fixed-swiper {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	z-index: -1;
}
.fixed-swiper .swiper-item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.fixed-swiper .swiper-item {
	opacity: 0;
	transition: var(--transition);
}
.fixed-swiper .swiper-item .explain {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 80px;
	white-space: nowrap;
	opacity: 0;
	transition: var(--transition);
}
.fixed-swiper .swiper-item .explain span {
	color: #ffffff;
}
.fixed-swiper .active, .fixed-swiper .active .explain {
	opacity: 1;
}
.fixed-swiper .swiper-item .explain span:first-child {
	margin-right: 50px;
}
.fixed-swiper .swiper-dot {
	position: absolute;
	top: 50%;
	right: 88px;
	transform: translateY(-50%);
	z-index: 10;
}
.fixed-swiper .swiper-dot li {
	width: 8px;
	height: 8px;
	background: #fff;
	border-radius: 50%;
	margin-bottom: 8px;
	cursor: pointer;
	transition: var(--transition);
}
.fixed-swiper .swiper-dot .active {
	height: 24px;
	background: #fff;
	border-radius: 4px;
}
@media screen and (max-width: 1024px) {
	.fixed-swiper .swiper-dot {
		right: 30px;
	}
}

/* 行业痛点 */
.content-box {
	position: relative;
	width: 100%;
	padding-top: 76px;
	padding-bottom: 37px;
	background: #f7f9fc;
}
.content-box .search-box {
	/* position: fixed; */
	display: flex;
	justify-content: center;
	align-items: center;
	/* top: 76px; */
	/* padding-top: 10px; */
	width: 100%;
	height: 206px;
	background: url(/images/2da07d3475c122ca.webp) no-repeat center;
	background-size: cover;
	/* z-index: 10; */
}
.content-box .search-box img {
	position: absolute;
	width: 100%;
	height: calc(100%);
	min-width: 1024px;
	z-index: -1;
}
.content-box .search-box > div {
	display: flex;
	justify-content: space-between;
	width: 480px;
	height: 50px;
	background: #ffffff;
	border: 1px solid #1890ff;
	border-radius: 24px;
}
.content-box .search-box > div input{
	width: calc(100% - 104px - 12px);
    margin-left: 12px;
 }
.content-box .search-box > div button {
	height: 48px;
    margin-top: 0px;
    margin-right: -2px;
	border-radius: 24px;
}

.content-box .row {
	display: flex;
	margin-top: 16px;
	justify-content: center;
}
.content-box .row .col:first-child {
	width: 800px;
	margin-right: 16px;
	display: flex;
	flex-direction: column;

}
.content-box .row .col:first-child>span:nth-child(2), .content-box .row .col:first-child .content-col {
	width: 100%;
}
.content-box .row .col:first-child .content-col {
	display: flex;
	flex-wrap: wrap;
	
}
.content-box .row .col:first-child .content-col .content-col-item {
	flex-direction: column;
	width: 392px;
	padding: 16px 16px 19px 16px;
	background: #fff;
	margin-bottom: 16px;
	border-radius: 12px;
}

.content-box .row .col:first-child .content-col .content-col-item:nth-child(2n+1) {
	margin-right: 16px;
}
.content-box .row .col:first-child .content-col .content-col-item img {
	width: 360px;
	height: 120px;
	object-fit:cover;
}
.content-box .row .col:first-child .content-col .content-col-item > a {
	margin: 12px 0 16px;
}
.content-box .row .col:first-child .content-col .content-col-item h1 {

	font-size: 16px;
	font-weight: 700;
	color: #030c22;
	width: 360px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow:hidden;
}
.content-box .row .col:first-child .content-col .content-col-item h1:hover {
	color: var(--primary-color);
}
.content-box .row .col:first-child .content-col .content-col-item h3 {
	width: 360px;
	font-size: 12px;
	font-weight: 400;
	color: #676c7a;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.content-box .row .col:first-child .content-col .content-col-item div {
	justify-content: space-between;
	margin-top: 32px;
	
}
.content-box .row .col:first-child .content-col .content-col-item div p {
	font-size: 12px;
	color: #676c7a;
}
@media screen and (max-width: 1200px) {
	.content-box .row .col:first-child {
		width: 760px;
		min-width: 760px;
	}
	.content-box .row .col:first-child .content-col .content-col-item{
		width: 372px;
	}
	.content-box .row .col:first-child .content-col .content-col-item img, 
	.content-box .row .col:first-child .content-col .content-col-item h1, 
	.content-box .row .col:first-child .content-col .content-col-item h3 {
		width: 340px;
	}
}
.content-box .row .col:first-child .pageChange {
	display: flex;
	justify-content: center;
	align-items: center;
}
.content-box .row .col:first-child .pageChange .arrow-left {
	border-top: 2px solid #676c7a;
	border-right: 2px solid #676c7a;
	transform: rotate(-135deg);
	width: 10px;
	height: 10px;
	border-radius: 2px;
	margin-right: 28px;
}
.content-box .row .col:first-child .pageChange .arrow-right {
	border-top: 2px solid #676c7a;
	border-right: 2px solid #676c7a;
	transform: rotate(45deg);
	width: 10px;
	height: 10px;
	border-radius: 2px;
	margin-left: 29px;
}
.content-box .row .col:first-child .pageChange .arrow-left:hover,
.content-box .row .col:first-child .pageChange .arrow-right:hover {
	border-top: 2px solid var(--primary-color);
	border-right: 2px solid var(--primary-color);
}
.content-box .row .col:first-child .pageChange .page-num:not(:nth-last-child(2)) {
	margin-right: 32px;
}
.content-box .row .col:first-child .pageChange .page-num {
	position: relative;
	font-size: 14px;
	color: #030c22;
	cursor: pointer;
}
.content-box .row .col:first-child .pageChange .page-num:not(.current-page):hover {
	color: var(--primary-color);
}
.content-box .row .col:first-child .pageChange .current-page {
	color: #fff;
}
.content-box .row .col:first-child .pageChange .current-page::before {
	position: absolute;
	content: '';
	width: 32px;
	height: 32px;
	background-color: var(--primary-color);
	top: 50%;
	left: 50%;
	border-radius: 100%;
	transform: translate(-50%, -50%);
}
.content-box .row .col:first-child .pageChange .current-page span {
	position: relative;
}
.content-box .row .col:last-child {
	position: relative;
	display: flex;
	flex-direction: column;
}
.content-box .row .col:last-child .left-flex {
	flex-direction: column;
}
.content-box .row .col:last-child .left-flex .wordCloud,  .content-box .row .col:last-child .left-flex .heat-search{
	flex-direction: column;
	width: 360px;
	background: #fff;
	border-radius: 12px;
	padding: 28px 24px;
}
.content-box .row .col:last-child .left-flex .wordCloud {
	height: 310px;
}
.content-box .row .col:last-child .left-flex .wordCloud p, .content-box .row .col:last-child .left-flex .heat-search p {
	font-size: 16px;
	font-weight: 700;
}
.content-box .row .col:last-child .left-flex .wordCloud div {
	margin-top: 40px;
}
.content-box .row .col:last-child .left-flex .heat-search {
	margin-top: 16px;
}
.content-box .row .col:last-child .left-flex .heat-search ul li {
	display: flex;
	align-items: center;
}
.content-box .row .col:last-child .left-flex .heat-search ul li span:first-child {
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 2px;
	background: #8f95a5;
	font-size: 12px;
	text-align: center;
	line-height: 20px;
	color: #ffffff;
}
.content-box .row .col:last-child .left-flex .heat-search ul li .title {
	flex: 1;
	margin-left: 8px;
	padding: 18px 0 13px;
	border-bottom: 1px solid #ebeef5;
	color: #464e64;
	cursor: pointer;
}
.content-box .row .col:last-child .left-flex .heat-search ul li .index-1 {
	background: #ff3939!important;
}
.content-box .row .col:last-child .left-flex .heat-search ul li .index-2 {
	background: #ff8216!important;
}
.content-box .row .col:last-child .left-flex .heat-search ul li .index-3 {
	background: #ffad11!important;
}

/* 详情页 */
.detail {
	min-height: calc(100% - 360px);
	width: 100%;
	padding: 16px 0 22px;
	background: #f7f9fc;
}
.detail-box {
	width: 1200px;
	margin: 0 auto;
	padding: 27px 55px 52px 56px;
	background-color: #fff;
	border-radius: 12px;
}
.detail-box .title h1 {
	font-size: 24px;
	color: #030c22;
	font-weight: 700;
}
.detail-box .date {
	padding: 12px 0 15px;
	border-bottom: 1px solid #ebeef5;
	margin-bottom: 23px;
}
.detail-box .date p{
	font-size: 14px;
	color: #676c7a;
}

/* 解决方案 */
.solution {
	padding-top: 76px;
}
.solution .solution-item {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-top: 24px;
	width: 1200px;
    margin: 0 auto;
}
.solution .solution-item:not(first-child){
	/* margin-top: 100px; */
}
.solution .solution-background{
	
	padding: 100px 0;
}

.solution .solution-item .text-box {
	display: flex;
	flex-direction: column;
	height: 100%;
	
}

.solution .solution-item:first-child .text-box {
	margin-right: 24px;
}
.solution .solution-item:not(first-child) .text-box {
	margin-left: 24px;
}
.solution .solution-item .text-box .title {
	font-size: 2em !important;
	/* font-weight: bold !important; */
	color:var(--main-text-color);
}
.solution .solution-item .text-box .sub-title {
	font-size: 1.5em !important;
	font-weight: bold !important;
}
.solution .solution-item .text-box button {
	width: 114px;
    height: 40px;
    border: 1px solid var(--primary-color);
    color: #fff;
    border-radius: 21px;
    background: var(--primary-color);
	margin-top: 80px !important;
    cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 0 15px;
}


/* 服务保障 */
.service{
	padding-top: 86px;
}
.service .service-item{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-top: 24px;

	width: 1200px;
    margin: 0 auto;
}
.service .service-item .text-box {
	display: flex;
	flex-direction: column;
}
.service-second-title {
	color:#445A82;
	border-bottom: 1px solid #1890ff;
	font-size: 2em !important;
	font-weight: bold !important;
	padding: 10px 0;
}
.service-title {
	font-size: 2em !important;
	font-weight: bold !important;
	color: var(--main-title-color);
}
.service-special{
	width: 1200px;
	margin:50px auto;
}
.service-special-item{
	
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-top: 24px;
	gap: 20px;
}
.service-special-item .service-special-item-box{
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 15px;
    border-radius: 12px;
    -moz-box-shadow: 0px 12px 24px rgba(232, 237, 249, 1);
    -webkit-box-shadow: 0px 12px 24px rgba(232, 237, 249, 1);
    box-shadow: 0px 12px 24px rgba(232, 237, 249, 1);
}

.service-special-item .service-special-item-box .title{
	font-size: 1.7em !important;
	margin:10px 0;
	color: #1F2B56;
}
.service-special-item .service-special-item-box .text{
	width: 312px;
	height: 65px;
	font-size: 16px;
	font-weight: 400;
	color: #97A4BB;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.service-footer{
	background: url('/images/441488a9f27af85c.png');
	height: 300px;
	color:#FFFFFF;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 2.5em !important;
	/* margin-top: 40px; */
	/* font-weight: bold !important; */
}
.service-footer button {
	font-size: 20px;
	width: 200px;
    height: 56px;
    border: 1px solid #fff;
    color: var(--primary-color);
    border-radius: 28px;
    background: #fff;
	margin-top: 70px !important;
    cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 0 40px;
}
/* 关于我们 */
.about-we{
	padding-top: 192px;
	margin: 0 auto;
}

/* .about-we .service-item:not(:first-child){
	margin-top: 200px;
}

.about-we .title{
	font-size: 40px !important;
	margin:20px 0;
	color: var(--main-title-color);
}
.about-we  .second-title{
	color:var(--second-text-color);
	font-size: 2em !important;
}
.about-we .head-title{
	margin:10px 0 80px;
	text-align: center;

}
.about-we .about-row{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 90px;
}
.about-we .about-row .about-row-item{
	display: flex;
	flex-direction: column;
} */

.text-align-center{
	text-align: center;
}
/* 页脚 */
.footer {
	padding: 77px 0 72px;
	background: var(--white-color);
}
.footer .container {
	margin: 0 168px 0 201px;
}
.footer .container .attention {
	justify-content: center;
}
.footer .container .attention .img-width {
	max-width: 100px;
}
.footer .container .attention .two-horse {
	margin: 20px 0;
	text-align: center;
}
.footer .container .divider {
	height: 211px;
	width: 0px;
	border-left: 1px solid #ebeef5;
	margin: 0 183px 0 171px;
	transition: var(--transition);
}
.second-text, .second-text a{
	color: #676c7a;
}
.slide:hover {
    color: #1054FF;
    text-decoration: none;
}
@media screen and (max-width: 1500px) {
	.footer .container {
		margin: 0 148px 0 181px;
	}
	.footer .container .divider {
		margin: 0 143px 0 131px;
	}
}

@media screen and (max-width: 1350px) {
	.footer .container {
		margin: 0 128px 0 161px;
	}
	.footer .container .divider {
		margin: 0 123px 0 111px;
	}
}
@media screen and (max-width: 1200px) {
	.footer .container {
		margin: 0 108px 0 128px;
	}
	.footer .container .divider {
		margin: 0 40px;
	}
}
.footer .container .channels {
	flex: 1;
	justify-content: space-between;
}
.footer .container .channels .channel h3 {
	font-size: 18px;
	color: #030c22;
}
.footer .container .channels .channel .href {
	font-size: 14px;
	color: #676c7a;
	margin-top: 20px;
	cursor: pointer;
}
.footer .container .channels .channel .href a {
	color: inherit;
}

.commend-title {
	color: #79879c;
	font-size: 24px;
	margin-bottom: 10px;
}
.commend-desc {
	color: #1f2b56;
	font-size: 16px;
	margin-bottom: 10px;
}