body {
	font-family: "Microsoft YaHei", Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif;
	font-size: 14px;
	color: #2d251b;
	overflow-x: hidden;
}

input,
select,
textarea {
	font-family: "Microsoft YaHei", Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif;
	font-size: 1em;
	-webkit-appearance: none;
}


::v-deep .talk {
	display: block;
	background-color: red !important;
}

::v-deep .hasCallBack {
	background-color: red !important;
}


/* 整个滚动条 */
::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

/* 滚动条轨道 */
::-webkit-scrollbar-track {
	background: #f1f1f1;
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
	background: #ccc;
	border-radius: 25px;
}

/* 滑块hover效果 */
::-webkit-scrollbar-thumb:hover {
	background: #555;
}


a:link,
a:visited,
a:hover,
a:active {
	color: inherit;
	text-decoration: none;
}

img,
a {
	color: #000;
	border: 0;
}

ul,
li {
	list-style: none;
}

a {
	text-decoration: none;
}

* {
	margin: 0;
	padding: 0;
}


img {
	width: 100%;
	-ms-interpolation-mode: bicubic;
}



@media screen and (max-width:1680px) {
	body {
		zoom: calc(1680 / 1920);
	}
}

@media screen and (max-width: 1440px) {
	body {
		zoom: calc(1440 / 1920);
	}
}

@media screen and (max-width: 1366px) {
	body {
		zoom: calc(1366 / 1920);
	}
}

@media screen and (max-width: 1280px) {
	body {
		zoom: calc(1280 / 1920);
	}
}




/*不同设备字体em基准*/
/*----------header  start----------*/
.header {
	padding: 0px 0 0 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10000;
	background: rgba(255, 255, 255, 0.7);
}

.wrap {
	max-width: 16.77rem;
	height: .9rem;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	width: 130px;
	height: 32px;
}

.logo img {
	width: 100%;
	height: 100%;
}

.menu {
	width: calc(100% - 120px);
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.header_btn {
	width: 130px;
	height: 35px;
	background: rgba(255, 255, 255, 0.2);
	margin-left: .5rem;
	border-radius: 8px;
	padding: 1px 1px;
	box-sizing: border-box;
	position: relative;
	cursor: pointer;
}

.header_btn .header_btn_tel {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	font-family: PingFangSC, PingFang SC;
	font-weight: 500;
	font-size: 14px;
	color: #200E32;
	line-height: 30px;
	text-align: center;
	font-style: normal;
	background-color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header_btn .header_btn_tel span {
	width: 20px;
	height: 20px;
	display: inline-block;
	/* background: url("//xt10.kuleiman.com/ywkgw/img/technology_img.jpg"); */
	background: url("//xt10.kuleiman.com/ywkgw/img/tel.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.header_btn::before {
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	width: calc(100%);
	height: calc(100%);

	z-index: -1;
	background: repeating-conic-gradient(from var(--range),
			#32C5FF,
			#B620E0,
			#F73C00,
			#32C5FF);
	border-radius: 10px;
	background-clip: padding-box;

	animation: rotating 4s linear infinite;
}

@property --range {
	initial-value: 0deg;
	syntax: "<angle>";
	inherits: false;
}

@keyframes rotating {
	0% {
		--range: 0deg;
	}

	100% {
		--range: 360deg;
	}
}

.header_login {
	width: 94px;
	height: 35px;
	background: #8D5EFF;
	border-radius: 8px;
	font-family: PingFangSC, PingFang SC;
	font-weight: 500;
	font-size: 14px;
	color: #FFFFFF;
	line-height: 35px;
	text-align: center;
	font-style: normal;
	cursor: pointer;
	margin-left: 10px;
}

.header_login:hover {
	background: #6E36F5;
}

.menu ul li {
	float: left;
	margin-left: 30px;
	padding: 12px 16px;
	box-sizing: border-box;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
}



.menu ul li * {
	display: block;
	text-align: center;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;

	display: flex;
	align-items: center;
	justify-content: center;
}

.menu ul li span {
	font-size: 15px;
	padding: 7px 0px;
	color: #200E32;
	border-bottom: 3px solid transparent;
}

.menu ul li:nth-child(n1) {
	margin-top: 15px;
}

.menu ul li:hover {

	span,
	label {
		color: #200E32;
		border-bottom: 3px solid #200E32;
	}
}

.menu ul li.on span,
.menu ul li.on label {
	color: #200E32;
	border-bottom: 3px solid #200E32;
}


/*----------footer----------*/

.footer {
	width: 100%;
	height: 558px;
	background: #16141F;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: space-between;
}

.footer_top {
	width: 16.77rem;
	min-height: calc(100% - 157px);
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	padding: 41px 0px;
	box-sizing: border-box;
}

.footerTop_box {
	width: 100%;
	height: calc(100% - 100px);
}

.footerTop_box li:nth-child(1) {
	width: 440px;
	height: 100%;
	display: flex;
	flex-direction: column;
	float: left;
}

.footerTop_box li:nth-child(2) {
	float: right;
}

.footerTop_box li:nth-child(3) {
	float: right;
	margin-right: 55px;
}

.footerTop_box li:nth-child(1) span {
	width: 1.91rem;
	height: 0.9rem;
	position: relative;
}

.footerTop_box li:nth-child(1) span img {
	width: 100%;
	height: 100%;
	position: absolute;
	object-fit: contain;
}

.footerTop_box li .title {
	height: 24px;
	font-family: PingFangSC, PingFang SC;
	font-weight: 500;
	font-size: 16px;
	color: #FFFFFF;
	line-height: 24px;
	text-align: center;
	font-style: normal;
	display: inline-block;
	margin-bottom: 6px;
}

.footericon_lis {
	position: relative;
}

.footericon_lis .footericon_lisImg {
	width: 24px;
	height: 22px;
	position: relative;
	cursor: pointer;
}

.footericon_lis .footericon_lisImg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
}

.footer_downloadMask {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.footer_downloadMask_box {
	height: 165px;
	display: flex;
	align-items: center;
	margin-top: 10px;
}

.footer_downloadMask_top {
	height: 30px;
	display: flex;
	justify-content: flex-start;
}

.footer_downloadMask_top span:nth-child(1) {
	height: 24px;
	font-family: PingFangSC, PingFang SC;
	font-weight: 500;
	font-size: 16px;
	color: #FFFFFF;
	line-height: 24px;
	text-align: left;
	font-style: normal;
	margin-right: 20px;
	margin-left: 42px;
}

.footer_downloadMask_top span:nth-child(2) {
	height: 24px;
	font-family: PingFangSC, PingFang SC;
	font-weight: 400;
	font-size: 13px;
	color: #999999;
	line-height: 28px;
	text-align: left;
	font-style: normal;
	margin-right: 15px;
}

.footer_downloadMask_top span:nth-child(3) {
	height: 24px;
	font-family: PingFangSC, PingFang SC;
	font-weight: 400;
	font-size: 13px;
	color: #8F78FF;
	line-height: 28px;
	text-align: left;
	font-style: normal;
	cursor: pointer;
}

.footerDownload_content {
	width: 220px;
	height: 100%;
	border: solid 1px transparent;
	background-image: linear-gradient(180deg, #16141F 0%, #16141F 100%), linear-gradient(302deg, rgba(57, 193, 255, 1), rgba(178, 57, 255, 1), rgba(253, 97, 44, 0.94));
	background-clip: padding-box, border-box;
	background-origin: padding-box, border-box;
	border-radius: 16px;

	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	margin-left: 30px;

}

.footerDownload_img {
	width: 45px;
	height: 45px;
	background: url("//xt10.kuleiman.com/ywkgw/img/win_icon.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	margin-top: 32px;
}

.footerDownload_imgs {
	width: 45px;
	height: 45px;
	background: url("//xt10.kuleiman.com/ywkgw/img/iphone_icon.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	margin-top: 32px;
}


.footerDownload_btn {
	width: 172px;
	height: 40px;

	font-family: PingFangSC, PingFang SC;
	font-weight: 500;
	font-size: 15px;
	color: #FFFFFF;
	line-height: 40px;
	text-align: center;
	font-style: normal;
	cursor: pointer;
	background: linear-gradient(302deg, #B239FF 0%, rgba(253, 97, 44, 0.94) 100%);
	border-radius: 10px;
	margin-bottom: 14px;
}

.footerDownload_btn:hover {
	background: linear-gradient(302deg, rgba(253, 97, 44, 0.94) 0%, #B239FF 100%);
}




.qr_code {
	border-radius: 6px;
	position: absolute;
	top: .6rem;
	right: 0px;
	border: solid 2px transparent;
  white-space: nowrap;
}

.qr_code span {
	width: 1.8rem;
	height: 1.8rem;
	display: inline-block;
	position: relative;
	border-radius: 6px;
  margin-left: .5rem;
}

.qr_code span .code_title{
  position: absolute;
  top: -.5rem;
  left: 0;
  font-weight: 500;
  font-size: 0.2rem;
  color: #FFFFFF;
}


.qr_code span::before {
  content: "";
	width: 1.84rem;
	height: 1.84rem;
	display: inline-block;
	position: absolute;
	border-radius: 6px;
  top: -0.02rem;
  left: -0.02rem;
  
  background: linear-gradient(302deg, rgba(57, 193, 255, 1) 0%, rgba(178, 57, 255, 1) 50% , rgba(253, 97, 44, 0.94) 100%);
  /* background-i: linear-gradient(302deg, rgba(57, 193, 255, 1), rgba(178, 57, 255, 1), rgba(253, 97, 44, 0.94)) 0.03 0.03; */
}


.qr_code span .spanj{
  width: 0;
  height: 0;
  border-left: .1rem solid transparent;
  border-right: .1rem solid transparent;
  border-bottom: .2rem solid #ffffff;
  position: absolute;
  top: -.15rem;
  left: 12px;
}
.qr_code span img {
	width: 100%;
	height: 100%;
	position: absolute;
	object-fit: contain;
	border-radius: 6px;
	z-index: 66;
}

.qr_code span .spanj:nth-child(1) {
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 20px solid #ffffff;
	position: absolute;
	top: -12px;
	left: 10px;
}



.footer_dl {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	margin-top: 6px;
	font-family: PingFangSC, PingFang SC;
	font-weight: 400;
	font-size: 14px;
	color: #999999;
	line-height: 21px;
	text-align: left;
	font-style: normal;
	cursor: default;
}




.footer_dl dt {
	font-family: PingFangSC, PingFang SC;
	font-weight: 400;
	font-size: 14px;
	color: #999999;
	line-height: 21px;
	text-align: left;
	font-style: normal;
}

.footer_dl dd {
	font-family: PingFangSC, PingFang SC;
	font-weight: 400;
  font-size: 0.18rem;
	color: #999999;
	line-height: 21px;
	text-align: left;
	font-style: normal;
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid transparent;
	/* 初始状态为透明 */
	transition: border-bottom 0.3s ease-in-out;
	/* 添加过渡效果 */
}



.footer_dl dd:hover {
	font-weight: 500;
	color: #fff;
	/* border-bottom: 1px solid #fff; */
	/* 鼠标悬停时显示底部边框 */
}

.footerTop_ul {
	width: 100%;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footerTop_ul li {
	min-width: 126px;
	height: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: space-between;
}

.footerli_img {
	width: 80%;
	height: 43px;
	position: relative;
}

.footerli_tit {
	height: 21px;
	font-family: PingFangSC, PingFang SC;
	font-weight: 400;
	font-size: 14px;
	color: #FFFFFF;
	line-height: 21px;
	text-align: left;
	font-style: normal;
}

.footerli_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
}



.footer_botm {
	width: 100%;
	height: 156px;
	border-top: 1px solid #8b898998;
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 20px 0px 10px 0px;
	box-sizing: border-box;

}

.footer_botm_text {
	height: 24px;
	font-family: PingFangSC, PingFang SC;
	font-weight: 400;
	font-size: 12px;
	color: #77777A;
	line-height: 24px;
	font-style: normal;
	display: flex;
	align-items: center;
}

.footer_botm_text:nth-child(1) {
	margin-bottom: 14px;
}

.footer_botm_icon {
	width: 22px;
	height: 24px;
	display: inline-block;
	background: url("https://www.kuleiman.com/app/resource/beian110.png");
	background-repeat: no-repeat;
	background-position: center center;
	margin: 0px 13px 0px 48px;
}


/* 动画 */

#movefromleft.move {
	animation: movefromleft 1s;
	animation-fill-mode: forwards;
}

#movefromright.move {
	animation: movefromright 1s;
	animation-fill-mode: forwards;
}

#movefromtop.move {
	animation: movefromtop 1s;
	animation-fill-mode: forwards;
}

#movefrombottom.move {
	animation: movefrombottom 1s;
	animation-fill-mode: forwards;
}



@keyframes movefromleft {
	from {
		opacity: 0;
		transform: translateX(-100%);
	}

	to {
		opacity: 1;
		transform: translateX(0px);
	}
}

@keyframes movefromright {
	from {
		opacity: 0;
		transform: translateX(100%);
	}

	to {
		opacity: 1;
		transform: translateX(0px);
	}
}

@keyframes movefromtop {
	from {
		opacity: 0;
		transform: translateY(-100%);
	}

	to {
		opacity: 1;
		transform: translateY(0px);
	}
}

@keyframes movefrombottom {
	from {
		opacity: 0;
		transform: translateY(100%);
	}

	to {
		opacity: 1;
		transform: translateY(0px);
	}
}




/* 下载弹框 */
.download_mask {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 666666;
	display: none;
}

.downloadMask_box {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.downloadMask_module {
	width: 825px;
	height: 445px;
	background: #FFFFFF;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	/* margin: 13% auto; */
	padding: 44px 50px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: space-between;

	position: relative;
}

.downloadMask_header {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.downloadMask_header_title {
	height: 28px;
	font-family: PingFangSC, PingFang SC;
	font-weight: 600;
	font-size: 20px;
	color: #1B1917;
	line-height: 28px;
	text-align: left;
	font-style: normal;
	display: flex;
	align-items: center;
}

.downloadMask_header_title span {
	width: 20px;
	height: 20px;
	display: inline-block;
	background: url("//xt10.kuleiman.com/ywkgw/img/download_icon.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	margin-right: 6px;
}

.downloadMask_header_text {
	height: 18px;
	font-family: PingFangSC, PingFang SC;
	font-weight: 400;
	font-size: 13px;
	color: #1B1917;
	line-height: 18px;
	text-align: left;
	font-style: normal;
	margin-top: 6px;
	display: flex;
	align-items: center;
}

.downloadMask_header_text span{
	color: #6b4ef4;
	margin-left: 8px;
	cursor: pointer;
}

.downloadMask_header_text span:hover{
	color: #5334ec;
}

.downloadMask_content {
	height: 265px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.downloadMask_content dl {
	width: 350px;
	height: 265px;
	background: #F2F5FF;
	border-radius: 16px;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.downloadMask_content dl dt {
	width: 72px;
	height: 72px;
	position: relative;
}

.downloadMask_content dl dt img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	position: absolute;
	left: 0px;
	top: 0px;
}

.downloadMask_content dl dd {
	width: 277px;
	height: 65px;
	font-family: PingFangSC, PingFang SC;
	font-weight: 500;
	font-size: 16px;
	text-align: center;
	font-style: normal;
	border-radius: 14px;
	margin-top: 43px;
	text-align: center;
	line-height: 65px;
}

.mac_btn {
	width: 277px;
	height: 65px;
	color: #000000;
	background: #FFFFFF;
	border-radius: 14px;
	border: 1px solid #B6BDDC;
	cursor: pointer;
}

.mac_btn:hover {
	border: 1px solid #200E32;
}

.win_btn {
	width: 277px;
	height: 65px;
	color: #FFFFFF;
	border-radius: 14px;
	cursor: pointer;
	background: linear-gradient(74deg, #4093FF 0%, #0444E2 100%);
}

.win_btn:hover {
	background: linear-gradient(74deg, #0444E2 0%, #4093FF 100%);
}

.download_close {
	width: 18px;
	height: 18px;
	position: absolute;
	right: 23px;
	top: 23px;
	cursor: pointer;
	background: url("https://yai.2v.cn/imginfo/image/operations/close.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	transition: transform 0.5s ease;
}

.download_close:hover {
	transform: rotate(180deg);
}

/* 下载弹框  end*/






/* 表单 start */

.form_module {
	width: 100%;
	height: 470px;
	background: url("//xt10.kuleiman.com/ywkgw/img/fromImage.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;

	display: flex;
	align-items: center;
	justify-content: center;
}

.formodule_box {
	width: 16.77rem;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 21px 82px 21px 21px;
	box-sizing: border-box;
	overflow: hidden;
}

.formodule_lef {
	width: 6.8rem;
	position: relative;
}

.formodule_lef img{
	width: 100%;
}

.formodule_right {
	width: 400px;
	height: 420px;
	background: #FFFFFF;
	border-radius: 20px;
	padding: 36px 41px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: space-between;

	position: relative;

}

.formodule_icon {
	width: 112px;
	height: 106px;
	background: url("//xt10.kuleiman.com/ywkgw/img/fromIcon.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	position: absolute;
	right: 29px;
	top: -12px;
}

.formodule_title {
	width: 100%;
	/* width: 198px; */
	height: 60px;
	font-family: PingFangSC, PingFang SC;
	font-weight: 600;
	font-size: 22px;
	color: #200E32;
	line-height: 30px;
	text-align: left;
	font-style: normal;
}

.formodule_name {
	width: 322px;
	height: 50px;
	background: #F6F6FF;
	border-radius: 9px;


}

.formodule_name input {
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	text-indent: 20px;
	border-radius: 10px;
	background: #F6F6FF;
}

.formodule_tel {
	width: 322px;
	height: 50px;
	background: #F6F6FF;
	border-radius: 9px;
}

.formodule_tel input {
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	text-indent: 20px;
	border-radius: 10px;
	background: #F6F6FF;
}

.formodule_text {
	width: 322px;
	height: 87px;
	background: #F6F6FF;
	border-radius: 9px;
}

.formodule_text textarea {
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	text-indent: 20px;
	border-radius: 10px;
	background: #F6F6FF;
	resize: none;
	font-size: 15px;
	text-indent: 0px;

	padding: 12px 22px;
	box-sizing: border-box;
}

textarea::placeholder {
	text-indent: 0px;
}

.formodule_btn {
	width: 322px;
	height: 50px;
	font-family: PingFangSC, PingFang SC;
	font-weight: 600;
	font-size: 16px;
	color: #FFFFFF;
	line-height: 50px;
	text-align: center;
	font-style: normal;
	background: linear-gradient(302deg, #B239FF 0%, rgba(253, 97, 44, 0.94) 100%);
	border-radius: 9px;
	cursor: pointer;
}

.formodule_btn:hover {
	background: linear-gradient(302deg, rgba(253, 97, 44, 0.94) 0%, #B239FF 100%);

}

/* 表单 end */


/* 公共标题  start*/
.Matrix_header {
	width: 100%;
	display: flex;
	flex-direction: column;
	margin-bottom: 55px;
}

.Matrix_header_title {
	height: 56px;
	font-family: PingFangSC, PingFang SC;
	font-weight: 600;
	font-size: 40px;
	color: #200E32;
	line-height: 56px;
	text-align: center;
	font-style: normal;
}

.Matrix_header_title span {
	width: 160px;
	height: 56px;
	font-family: PingFangSC, PingFang SC;
	font-weight: 600;
	font-size: 40px;
	color: #FFFFFF;
	line-height: 56px;
	text-align: center;
	font-style: normal;
	background: linear-gradient(221.1736726341806deg, #B239FF 0%, rgba(253, 97, 44, 0.94) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.Matrix_header_text {
	height: 25px;
	font-family: PingFangSC, PingFang SC;
	font-weight: 400;
	font-size: 18px;
	color: #200E32;
	line-height: 25px;
	text-align: center;
	font-style: normal;
	margin-top: 7px;
}

/* 公共标题  end*/



/* 列表数据 */
.strength_module {
    width: 100%;
    height: 11rem;
    position: relative;
}

.strength_module img {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: -1;
}

.strength_box {
    width: 16.77rem;
    height: 100%;
    margin: 0 auto;
    padding: 77px 10px 103px 0px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.strength_content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 24px;
}

.strength_content li {
    width: 280px;
    background: #FFFFFF;
    box-shadow: 0px 2px 8px 0px #AFCBFF;
    border: 2px solid #FFFFFF;
    margin-left: 10px;
    margin-top: 35px;
    padding: 13px 15px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
}

.strength_img {
	width: 250px;
	height: 185px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
}

.strength_img img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 1;

    transition: transform 0.3s ease;
}

.strength_img:hover img {
    transform: scale(1.1);
}

.strength_title {
    width: 240px;
    height: 50px;
    font-family: SourceHanSansCN, SourceHanSansCN;
    font-weight: bold;
    font-size: 16px;
    color: #200E32;
    line-height: 22px;
    font-style: normal;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}






/* 弹框表单 */

.form_popup {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 999999;
	display: none;
}

.formPopup_module {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: fade-in-out 1s forwards;
}

@keyframes fade-in-out {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}


@keyframes fadeOut {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

.fade-out {
	animation: fadeOut 0.5s forwards;
}



.formPopup_box {
	width: 422px;
	height: 514px;
	background: #FFFFFF;
	border-radius: 14px;
	display: flex;
	flex-direction: column;
	position: relative;
}

.formPopup_icon {
	width: 122px;
	height: 115px;
	position: absolute;
	right: 20px;
	top: -22px;
}

.formPopup_close {
	width: 32px;
	height: 32px;
	position: absolute;
	right: -12px;
	top: -12px;
	border-radius: 50%;
	cursor: pointer;
	background: url("//xt10.kuleiman.com/ywkgw/img/p/from_close.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100%;
}


.formPopup_header {
	width: 100%;
	height: 143px;
	background: url("//xt10.kuleiman.com/ywkgw/img/formheader_img.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% 100%;
	border-top-right-radius: 13px;
	border-top-left-radius: 13px;
	padding: 27px 27px;
	box-sizing: border-box;
	margin-top: -1px;
}

.formPopup_header_title {
	height: 33px;
	font-family: DOUYINSANSBOLD, DOUYINSANSBOLD;
	font-weight: 800;
	font-size: 28px;
	color: #FFFFFF;
	line-height: 33px;
	text-align: left;
	font-style: normal;
	margin-bottom: 18px;
}

.formPopup_header_text {
	height: 15px;
	font-family: SourceHanSansCN, SourceHanSansCN;
	font-weight: 400;
	font-size: 14px;
	color: #FFFFFF;
	line-height: 22px;
	text-align: left;
	font-style: normal;
	display: flex;
	align-items: center;
	margin-bottom: 9px;
}

.formPopup_header_text span {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	margin-right: 6px;
	position: relative;
}

.formPopup_header_text span img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
}

.formPopup_body {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 51px 40px 40px 40px;
	box-sizing: border-box;
}

.formPopup_search {
	width: 335px;
	height: 50px;
	border-radius: 7px;
	border: 1px solid #B7B6B8;
	position: relative;
	background: #F9F6FF;
	margin-bottom: 18px;
}

.formPopup_search input {
	width: 100%;
	height: 100%;
	font-size: 16px;
	text-indent: 40px;
	border: none;
	border-radius: 7px;
	outline: none;
}

.formPopup_search img {
	width: 22px;
	height: 22px;
	position: absolute;
	left: 0px;
	margin-left: 16px;
	margin-top: 16px;
	height: 20px;
}

.formPopup_search_btn {
	width: 343px;
	height: 52px;
	font-family: SourceHanSansCN, SourceHanSansCN;
	font-weight: bold;
	font-size: 19px;
	color: #FFFFFF;
	text-align: center;
	font-style: normal;
	cursor: pointer;
	background: linear-gradient(322deg, #39C1FF 0%, #CD00FF 63%, rgba(253, 97, 44, 0.94) 100%);
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;

}

.formPopup_search_btn:hover {
	background: linear-gradient(322deg, rgba(253, 97, 44, 0.94) 0%, #CD00FF 63%, #39C1FF 100%);
}

.formPopup_Tips {
	width: 100%;
	height: 14px;
	font-family: SourceHanSansCN, SourceHanSansCN;
	font-weight: 400;
	font-size: 14px;
	color: #AEB1B4;
	line-height: 21px;
	text-align: center;
	font-style: normal;
	margin-top: 15px;
}

.formPopup_statistics {
	width: 100%;
	height: 30px;
	font-family: PingFangSC, PingFang SC;
	font-weight: 300;
	font-size: 16px;
	color: #061440;
	line-height: 23px;
	text-align: center;
	font-style: normal;
	margin-top: 18px;
}

.formPopup_statistics span {
	font-size: 19px;
	margin: 0px 5px;
}









/* 表单底部吸底模块  start */
.technology_module {
	width: 100%;
	position: relative;
}

.technology_content {
	max-width: 16.77rem;
	margin: 0px auto;
}

.technology_search {
	width: 18rem;
	height: 70px;
	background: url("//xt10.kuleiman.com/ywkgw/img/technology_img.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;

	padding: 10px 100px 10px 128px;
	box-sizing: border-box;
	z-index: 666;

	position: fixed;
	bottom: 3px;
	left: 50%;
	transform: translateX(-50%);
}

.identification_title {
	max-width: 100px;
	height: 100%;
	font-family: PingFangSC, PingFang SC;
	font-weight: 600;
	font-size: 17px;
	color: #FFFFFF;
	text-align: right;
	font-style: normal;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: space-around;
}

.identification_title span {
	min-width: 115px;
	height: 26px;
	background: linear-gradient(270deg, #FF3233 0%, #AF20E0 51%, #2074E0 100%);
	border-radius: 17px 19px 2px 15px;
	padding: 2px 4px;
	font-family: PingFangSC, PingFang SC;
	font-weight: 400;
	font-size: 16px;
	color: #FFFFFF;
	line-height: 20px;
	letter-spacing: 1px;
	text-align: center;
	font-style: normal;
}

.identification_text {
	height: 100%;
	display: flex;
	align-items: center;
}

.identification_text span:nth-child(1) {
	height: 21px;
	font-family: DOUYINSANSBOLD, DOUYINSANSBOLD;
	font-weight: 800;
	font-size: 20px;
	line-height: 21px;
	text-align: left;
	font-style: normal;
	background: linear-gradient(221.1736726341806deg, #00D0D0 0%, rgba(255, 208, 131, 0.94) 79%, rgba(255, 111, 65, 0.94) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-left: 38px;
}

.identification_text span:nth-child(2) {
	height: 18px;
	font-family: PingFangSC, PingFang SC;
	font-weight: 400;
	font-size: 13px;
	color: #D0D0D0;
	line-height: 18px;
	letter-spacing: 2px;
	text-align: left;
	font-style: normal;
	margin-left: 26px;
}

.identification_text span:nth-child(3) {
	width: 14px;
	height: 11px;
	margin-left: 12px;
	margin-right: 32px;
	display: inline-block;
	position: relative;
}

.identification_text span:nth-child(3) img {
	position: absolute;
	width: 100%;
	height: 100%;
}

.technology_problem {
	width: 100%;
	height: 520px;
	position: relative;
	padding: 52px 0px 0px 0px;
	box-sizing: border-box;
	overflow: hidden;

	display: flex;
	align-items: center;
	justify-content: space-between;
}

.technology_problem_lef {
	width: 418px;
	height: 100%;
	padding: 10px 10px 20px 10px;
	box-sizing: border-box;
	position: relative;
}

.videoIcon {
	width: 41px;
	height: 41px;
	background: url("//xt10.kuleiman.com/ywkgw/img/voiceMessage_solid.svg");
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;

	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 22px;
}

.technology_problem_lef span {
	position: absolute;
	height: 46px;
	background: #F0EFFF;
	padding: 0px 20px;
	line-height: 46px;
	border-radius: 16px 16px 6px 16px;

	font-family: SourceHanSansCN, SourceHanSansCN;
	font-weight: 500;
	font-size: 18px;
	color: #200E32;
	text-align: center;
	font-style: normal;
}

.technology_problem_center {
	width: 611px;
	height: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.technology_problem_center span {
	width: 489px;
	font-family: PingFangSC, PingFang SC;
	font-weight: 600;
	font-size: 36px;
	color: #200E32;
	text-align: center;
	font-style: normal;

}

.technology_problem_rig {
	width: 418px;
	height: 100%;
	position: relative;
}

.technology_problem_rig span {
	position: absolute;
	height: 46px;
	background: #F0EFFF;
	padding: 0px 20px;
	line-height: 46px;
	border-radius: 16px 16px 6px 16px;

	font-family: SourceHanSansCN, SourceHanSansCN;
	font-weight: 500;
	font-size: 18px;
	color: #200E32;
	text-align: center;
	font-style: normal;
}

.technology_problem_img {
	width: 611px;
	height: 420px;
	position: absolute;
	bottom: 0px;
	left: 30%;
	background: url("//xt10.kuleiman.com/ywkgw/img/manImage.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

/* 表单底部吸底模块  end */




/* 全局 客服 start*/
.commonLeftTip {
	width: 200px;
	position: fixed;
	right: 20px;
	top: 50%;
	display: flex;
	justify-content: flex-end;

	z-index: 1000;
	transform: translateY(-50%);
}


.onlineConsultantDilog {
	position: absolute;
	top: 0px;
	right: 0;
}

.OnlineConsultantLeft {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

.OnlineConsultantLeft .OCLeftTop {
	position: relative;
	width: 55px;
	height: 67px;
}

.OnlineConsultantLeft .OCLeftTop .OCLeftTopimg1 {
	width: 55px;
	height: 55px;
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.OnlineConsultantLeft .OCLeftTop .OCLeftTopimg2 {
	width: 62px;
	height: 62px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(1);
	animation: OCLeftTopimg2 1s ease-in-out infinite alternate;
}

@keyframes OCLeftTopimg2 {
	0% {
		transform: translate(-50%, -50%) scale(1);
	}

	100% {
		transform: translate(-50%, -50%) scale(1.18);
	}
}

a:visited {
	color: inherit;
	/* 使用继承的颜色，不设置特定颜色 */
	text-decoration: none;
	/* 去除下划线 */
}

.OnlineConsultantLeft .OCLeftBottom {
	width: 70px;
	height: 28px;
	line-height: 27px;
	background: #8d5eff;
	background: linear-gradient(265deg, rgba(253, 97, 44, 0.94)0%, #CD00FF 100%);
	font-weight: 600;
	color: #FFFFFF;
	font-size: 13px;
	text-align: center;
	position: absolute;
	bottom: -10px;
	border-radius: 7px;
	z-index: 1;
}

.OnlineConsultantRight {
	position: absolute;
	width: 152px;
	height: 62px;
	right: 60px;
	top: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	display: none;
}

.OnlineConsultantRight img {
	width: 100%;
	height: 100%;
	position: absolute;
	transform: scaleX(-1);
	z-index: -1;

}

.OnlineConsultantRight_module {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	/* align-items: center; */
	justify-content: center;
	padding-left: 20px;
}

.OnlineConsultantRight_module p {
	font-size: 14px;
}

.OnlineConsultantRight .closeOC {
	width: 16px;
	height: 16px;
	position: absolute;
	left: 117px;
	top: 12px;
	cursor: pointer;
}

.OnlineConsultantRight .closeOC img {
	width: 10px;
	height: 10px;
	position: absolute;
}

.nav_rig {
	cursor: pointer;
	z-index: 1000;
	margin-top: 90px;
}



.ico1 {
	width: 18px;
	height: 18px;
	background: url("https://www.kuleiman.com/app/resource/new_template/2/imgs/footer/r_zl0.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}

.ico2 {
	width: 18px;
	height: 18px;
	background: url("https://www.kuleiman.com/app/resource/new_template/2/imgs/footer/r_dh0.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}

.ico3 {
	width: 18px;
	height: 18px;
	background: url("https://www.kuleiman.com/app/resource/new_template/2/imgs/footer/r_tp0.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}

.right_list {
	width: 55px;
	border-radius: 15px;
	transition: width 0.3s ease;
	background-color: #fff;
	box-shadow: 0 0 10px 0 rgba(172, 169, 167, 0.27);
}

.rightList_module {
	position: relative;
}

.right_list ul {
	width: 100%;
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;

}

.right_list ul li {
	width: 100%;
	height: 55px;
	display: flex;
	align-items: center;
	border-radius: 15px;
	padding: 16px 18px;
	box-sizing: border-box;
}

.right_list ul li:nth-child(1):hover .ico1 {
	width: 18px;
	height: 18px;
	background: url("//xt10.kuleiman.com/ywkgw/img/updateValue.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}

.right_list ul li:nth-child(2):hover .ico2 {
	width: 18px;
	height: 18px;
	background: url("//xt10.kuleiman.com/ywkgw/img/tels.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}

.right_list ul li:nth-child(3):hover .ico3 {
	width: 18px;
	height: 18px;
	background: url("//xt10.kuleiman.com/ywkgw/img/backTop.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}

.right_list ul li:nth-child(2) {
	margin: 10px 0px;
}

.right_list ul li:hover {
	background-color: #f9f6ff;
}

.right_list ul li:hover .stt {
	color: #5b42ff;
	;
}

.stt {
	display: flex;
	align-items: center;
	justify-content: center;
	display: none;
}

.right_list:hover ul {
	width: 150px;
}

.right_list:hover {
	width: 150px;
}

.right_list:hover .stt {
	display: block;
	margin-left: 10px;
}


.toolbar-div {
	width: 195px;
	background-color: #fff;
	box-shadow: 0 0 10px 0 rgba(172, 169, 167, 0.27);

	border-radius: 15px;
	display: flex;
	flex-direction: column;
	position: absolute;
	right: 160px;
	top: 0px;
	z-index: 666;

	padding: 4px 15px 12px 15px;
	box-sizing: border-box;
	display: none;
}

.toolbar-div p {
	width: 100%;
	height: 45px;
	text-align: center;
	line-height: 45px;
	border-bottom: 1px solid #ccc;
	margin-bottom: 10px;
	font-size: 16px;
}

.toolbar_search {
	width: 100%;
	height: 32px;
	background: #F9F6FF;
	border-radius: 20px;
	border: 1px solid #B7B6B8;
	position: relative;
	margin-bottom: 10px;
}

.toolbar_img {
	width: 12px;
	height: 12px;
	position: absolute;
	left: 10px;
	top: 40%;
	transform: translateY(-50%);
}

.toolbar_img img {
	width: 100%;
	height: 100%;
}

.toolbar_search input {
	width: 100%;
	height: 100%;
	font-size: 12px;
	text-indent: 32px;
	border: none;
	border-radius: 20px;
	outline: none;
}

.toolbar_search_btn {
	width: 100%;
	height: 35px;
	background: linear-gradient(322deg, #39C1FF 0%, #CD00FF 63%, rgba(253, 97, 44, 0.94) 100%);
	border-radius: 20px;
	font-family: PingFangSC, PingFang SC;
	font-weight: 500;
	font-size: 13px;
	color: #FFFFFF;
	line-height: 35px;
	text-align: center;
	font-style: normal;
	cursor: pointer;
}

.toolbar_search_btn:hover {
	background: linear-gradient(322deg, rgba(253, 97, 44, 0.94) 0%, #CD00FF 63%, #39C1FF 100%);
}

.toolbar_text {
	display: block;
	text-align: center;
	font-size: 13px;
	margin-top: 10px;
	color: #999999;
}

.toolbar_tel {
	width: 185px;
	background-color: #fff;
	box-shadow: 0 0 10px 0 rgba(172, 169, 167, 0.27);
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	position: absolute;
	right: 160px;
	top: 68px;

	padding: 12px 12px;
	box-sizing: border-box;
	display: none;
}

.lxwmList {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lxwmList:nth-child(1) {
	margin-bottom: 12px;
}

.lxwmList div {
	font-size: 13px;
	color: #000;
	line-height: 32px;
	text-align: center;
	font-style: normal;
}

/* 全局 客服 end*/




/* 成功失败提示弹框  start*/
.errorPopup {
	/* display: none; */
	position: fixed;
	top: 6%;
	left: 45%;
	transform: translateY(-50%);
	background-color: #fff;
	box-shadow: 0 0 10px 0 rgba(172, 169, 167, 0.27);
	padding: 10px 20px;
	border-radius: 5px;
	z-index: 999999999;
	animation: movefromtop 2s;
	animation-fill-mode: forwards;

	display: flex;
	align-items: center;
}

.errorIcon{
	width: 14px;
	height: 14px;
	border-radius: 50%;
}

@keyframes movefromtop {
	from {
		opacity: 1;
		transform: translateY(-100%);
	}

	to {
		opacity: 1;
		transform: translateY(0px);
	}
}

.errorPopup_module {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* 成功失败提示弹框  end*/





/* 首屏客服入口  start*/
#customer_service {
	width: 445px;
	height: 170px;
	background: #FFFFFF;
	box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.24);
	border-radius: 10px;
	position: fixed;
	bottom: 90px;
	left: 30px;
	z-index: 66666;
}

.customerService_module {
	width: 100%;
	height: 100%;
	padding: 28px 25px;
	box-sizing: border-box;
	position: relative;
}

.customerService_dl {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.customerService_dl dt {
	width: 70px;
	height: 100%;
}

.customerService_img {
	height: 70px;
	overflow: hidden;
	background: #F0E6FF;
	border-radius: 50%;
	margin-top: 10px;
	background: url("//xt10.kuleiman.com/ywkgw/img/customerService_img.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}

.customerService_dl dd {
	width: calc(100% - 90px);
	height: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.customerService_title {
	height: 25px;
	font-family: PingFangSC, PingFang SC;
	font-weight: 400;
	font-size: 18px;
	color: #737B9F;
	line-height: 25px;
	text-align: left;
	font-style: normal;
	margin-bottom: 6px;
}

.customerService_title span {
	height: 25px;
	font-family: PingFangSC, PingFang SC;
	font-weight: 600;
	font-size: 18px;
	color: #200E32;
	line-height: 25px;
	text-align: left;
	font-style: normal;
}

.customerService_btn {
	width: 100%;
	height: 45px;
	display: flex;
	align-items: center;
	margin-top: 12px;
}

.customerService_yuyue {
	display: block;
	width: 125px;
	height: 42px;
	font-family: PingFangSC, PingFang SC;
	font-weight: 500;
	font-size: 17px;
	color: #FFFFFF;
	line-height: 42px;
	text-align: center;
	font-style: normal;
	background: linear-gradient(42deg, #B239FF 0%, rgba(253, 97, 44, 0.94) 62%, rgba(253, 187, 44, 0.94) 100%);
	border-radius: 7px;
	cursor: pointer;
}

.customerService_yuyue:hover {
	background: linear-gradient(42deg, rgba(253, 187, 44, 0.94) 0%, rgba(253, 97, 44, 0.94) 22%, #B239FF 100%);
}

.customerService_ydonw {
	display: block;
	width: 94px;
	height: 35px;
	font-family: PingFangSC, PingFang SC;
	font-weight: 500;
	font-size: 14px;
	color: #FFFFFF;
	line-height: 35px;
	text-align: center;
	font-style: normal;
	background: linear-gradient(42deg, rgba(253, 187, 44, 0.94) 0%, rgba(253, 97, 44, 0.94) 22%, #B239FF 100%);
	border-radius: 7px;
	cursor: pointer;
	margin-left: 10px;
}

.customerService_ydonw:hover {
	background: linear-gradient(42deg, #B239FF 0%, rgba(253, 97, 44, 0.94) 62%, rgba(253, 187, 44, 0.94) 100%);
}


.customerService_zixun {
	width: 125px;
	height: 42px;
	display: block;
	font-family: PingFangSC, PingFang SC;
	font-weight: 500;
	font-size: 17px;
	color: #6B4EF4;
	line-height: 42px;
	text-align: center;
	font-style: normal;
	background: #EFEBFF;
	border-radius: 7px;
	margin-left: 24px;
	cursor: pointer;
}

.customerService_zixun:hover {
	background: #d4ceece0;
}

.customerService_close {
	width: 14px;
	height: 14px;
	position: absolute;
	right: 22px;
	top: 22px;
	border-radius: 50%;
	cursor: pointer;
	background: url("//xt10.kuleiman.com/ywkgw/img/zixunclose.svg");
	background-repeat: no-repeat;
	background-position: center center;
	/* background-size: 100%; */
}

/* CSS 过渡效果 */
.fade-out {
	animation: slide-out 2s ease forwards;
}

/* CSS 动画效果 */
@keyframes slide-out {
	0% {
		transform: translateX(0);
		opacity: 1;
	}

	100% {
		transform: translateX(-100%);
		opacity: 0;
	}
}

/* CSS 动画效果 */
@keyframes slide-in {
	0% {
		transform: translateX(-100%);
		/* opacity: 0; */
	}

	100% {
		transform: translateX(0);
		/* opacity: 1; */
	}
}

.slide-in {
	animation: slide-in 2s ease forwards;
}

/* 首屏客服入口  end*/