@charset "utf-8";

body {
	min-width: 320px;
	margin: 0 auto;
	padding: 0;
	/* font-family:"Microsoft YaHei"; */
	font-family: 'PingFang SC', 'Microsoft YaHei', Helvetica, Sans-serif;
	color: #9b9b9b;
	position: relative;
}

a:hover,
a:focus,
a {
	text-decoration: none;
	color: #333333;
}

.btn:focus,
.btn:active,
.btn:focus:active {
	outline: 0;
}

input,
button,
select,
textarea {
	outline: none;
}

div,
p,
ul,
li {
	margin: 0;
	padding: 0;
}

ul,
li {
	list-style: none;
}

a {
	text-decoration: none;
	font-family: "Microsoft YaHei";
	color: #515151;
}

a:hover {
	text-decoration: none;
}

.qc {
	clear: both;
	height: 0px;
}

img {
	border: 0px;
	outline-width: 0px;
	vertical-align: top;
	max-width: 100%;
}

b {
	font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
	padding: 0px;
	margin: 0;
	font-weight: normal;
}

i {
	font-style: normal;
}

input {
	font-family: "Microsoft YaHei";
}

textarea {
	font-family: "Microsoft YaHei";
	padding: 0;
	margin: 0;
}

* {
	-webkit-transition: all .6s;
	-moz-transition: all .6s;
	-ms-transition: all .6s;
	-o-transition: all .6s;
	transition: all .6s
}

/*滚动条*/
/* ::-webkit-scrollbar-corner { background-color:#ffffff;}
::-webkit-scrollbar{width: 6px; height:6px; border-radius:3px; }
::-webkit-scrollbar-track{ background:none; }
::-webkit-scrollbar-thumb{ background-color:rgba(0,0,0,0.4); border-radius:3px; } */
/* 清除浮动 */
.clearfix:after,
.clearfix:before {
	display: table;
	content: " ";
	clear: both;
}

.flex {
	display: -webkit-box;
	/* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
	display: -moz-box;
	/* 老版本语法: Firefox (buggy) */
	display: -ms-flexbox;
	/* 混合版本语法: IE 10 */
	display: -webkit-flex;
	/* 新版本语法: Chrome 21+ */
	display: flex;
	/* 新版本语法: Opera 12.1, Firefox 22+ */
}

/*各个行中间对齐*/
.flex-center {
	display: -webkit-box;
	/* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
	display: -moz-box;
	/* 老版本语法: Firefox (buggy) */
	display: -ms-flexbox;
	/* 混合版本语法: IE 10 */
	display: -webkit-flex;
	/* 新版本语法: Chrome 21+ */
	display: flex;
	/* 新版本语法: Opera 12.1, Firefox 22+ */
	align-items: center;
}

/*充满父元素*/
.flex_bd {
	-prefix-box-flex: 1;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-moz-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	min-width: 0;
}

.flex-end {
	-webkit-box-align: flex-end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}


.flex-zEnd {
	-webkit-box-pack: end;
	-moz-justify-content: flex-end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}

/* 主轴两端对齐 */
.flex-zBetween {
	-webkit-box-pack: justify;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

/* 主轴居中对齐 */
.flex-hc,
.flex-cz {
	-webkit-box-pack: center;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	justify-content: center;
}

/* 超出隐藏 */
.line-1 {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.line-2 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.line-3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

/* 文本域 */
textarea,
.input {
	resize: none;
	outline: none;
}

/* 图片滑过放大 */
.whole-img img {
	transition: .6s all;
}

.whole-img img:hover {
	transform: scale(1.1);
}

/* 背景图不重复 */
.whole-bgt {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}



/* 头部 */

.logo {
	margin-right: 46px;
}

.logo .logo-img{
  display: inline-block;
}

.logo .logo-home{
  display: none;
}

.pc_nav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	padding: 30px;
	width: 100%;
}

.pc_nav .container {
	overflow: inherit !important;
}

.pc-nav-list li {
	position: relative;
	margin-right: 12px;
}

.pc-nav-list li a {
	display: block;
	padding: 21px 8px;
	color: #fff;
	font-size: 18px;
}

.pc-nav-list li ul {
	position: absolute;
	left: 0;
	/* ____(4)____: 1;设置层级 */
	z-index: 1;
	/*设置层级*/
	padding: 0;
	margin-top: 1px;
	display: none;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	background: transparent;
}

.pc-nav-list li:hover ul {
	padding: 15px 0;
	width: 100%;
	background: #fff;
	display: block !important;
	/* ___(1)____: 1px 1px 7px rgba(0,0,0,.5); */
	box-shadow: 1px 1px 7px rgba(0, 0, 0, .5);
}

.pc-nav-list li li {
	position: static;
	text-align: center;
	margin-right: 0;
}

.pc-nav-list li li a {
	font-size: 14px;
	padding: 4px 0;
	margin: 0;
}

.pc-nav-list li:hover li a {
	color: #000;
}

.pc-nav-list li a:hover {
	color: #0A1F61 !important;
	font-weight: bold;
}

.pc-nav-list .download a {
	position: relative;
	line-height: 36px;
	height: 36px;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	padding: 0 20px 0 48px;
	color: #333333;
	float: left;
	background: #f0f5fe;
	cursor: pointer;
	border-radius: 18px;
}

.pc-nav-list .download a:hover {
	background: #c3d8ff;
}

.pc-nav-list .download img {
	position: absolute;
	width: 20px;
	height: 20px;
	z-index: 1;
	top: 8px;
	left: 20px;
}

.pc-nav-list .pc-nav-list-menu:hover {
	background: #fff;
	padding: 8px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	color: #000 !important;
}

.pc-nav-list li:hover .pc-nav-list-menu {
	background: #fff;
	padding: 8px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	color: #000 !important;
}

.pc-nav-list li ul::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 30px;
	background: none;
	top: -15px;
}

.pc-nav-list .initial {
	position: initial !important;
}

.pc-nav-list .initial:hover .pc-nav-list-box {
	display: block;
}

.pc-nav-list .pc-nav-list-box {
	display: none;
}

.pc-nav-list .pc-nav-list-child {
	width: 100%;
	display: flex !important;
	justify-content: center;
	margin-top: 1px;
}

.pc-nav-list .pc-nav-list-child::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 30px;
	background: none;
	top: -15px;
}

.pc-nav-list .pc-nav-list-child div {
	padding: 6px 20px;
}

.pc-nav-list .pc-nav-list-child .pc-nav-list-child-li {
	width: 1280px;
	display: flex;
	margin: 0 auto;
}

.pc-nav-list .pc-nav-list-child .pc-nav-list-child-li div:nth-of-type(2) {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
}

.pc-nav-list .pc-nav-list-child li {
	text-align: left;
	width: 25%;
}

.pc-nav-list .pc-nav-list-child .pc-nav-list-child-title {
	text-align: left;
	color: #0a1f61;
	font-weight: bold;
	padding-top: 8px;
	font-size: 16px;
}


.pc-nav-tel {
	color: #fff;
	font-size: 26px;
}

.pc-nav-menu{
  display: none;
}

.obanner {
	display: flex;
	height: 360px;
	align-items: center;
	justify-content: center;
}

.obanner>span {
	display: block;
	color: #fff;
	text-shadow: 3px 3px 3px rgba(0, 0, 0, .75);
	font-size: 36px;
}

footer {
	background-color: #0a1f61;
	color: #fff;
}

footer a {
	color: #fff;
}

footer .foot-top {
	margin-top: 40px;
	border-bottom: 1px solid #3b4c81;
}

footer .foot-l {
	margin-right: 56px;
	padding-right: 90px;
	padding-bottom: 50px;
	border-right: 1px solid #3b4c81;
}

footer .foot-r {
	flex: 1;
}

footer .foo-l-tel {
	margin-top: 20px;
	text-align: center;
	font-size: 28px;
}

footer .foot-bd {
	padding: 16px 0;
}

footer a:active,
footer a:focus {
	color: #fff;
}

footer .foot-r dt {
	margin-bottom: 16px;
	font-size: 17px;
}

footer .foot-r dd {
	margin-bottom: 5px;
}

.moblie_nav {
	display: none;
}

.post-bd a:hover,
.solve-col-more a:hover,
.solve-col-tt a:hover,
footer a:hover {
	color: #00a0ff;
}

.page {
	margin-top: 40px;
}

/* .page li a{display:block;margin:0 1.5px;width:44px;height:44px;border:1px solid #f6f6f6;background-color:#fff;color:#1d1d21;text-align:center;font-size:16px;line-height:44px;} */
.page li a {
	display: block;
	margin: 0 1.5px;
	border: 1px solid #f6f6f6;
	background-color: #fff;
	color: #1d1d21;
}

.page .active span {
	color: #fff;
	background-color: #0a52bd;
}

.page .current,
.page li a:hover {
	border: 1px solid #0a52bd;
	background-color: #0a52bd;
	color: #fff;
}

/* 新闻 */
.news_nav {
	border-bottom: 1px solid #e8e8e8
}

.news-nav-col {
	padding: 23px 0;
	width: 172px;
	color: #464646
}

.news-nav-col:hover {
	background-color: #00218e;
	color: #fff
}

.news-col-icon .iconfont {
	margin-right: 5px;
	color: #464646;
	font-size: 16px
}

.news-nav-col .news-col-icon img {
	width: 22px;
	height: auto
}

.news-nav-col:hover .news-col-icon .iconfont,
.news-nav-col:hover .news-col-tt {
	color: #fff
}

.news-col-tt {
	margin-left: 5px;
	color: #464646;
	font-size: 17px
}

.news-nav .current {
	background-color: #00218e;
	color: #fff
}

.news-nav .current .news-col-icon .iconfont,
.news-nav .current .news-col-tt {
	color: #fff
}

.post {
	padding: 20px 0
}

.post,
.post-bd a {
	color: #605f5f;
	font-size: 14px
}

.post-bd {
	flex: 1;
	flex-wrap: wrap
}

.post-bd span {
	margin: 0 8px
}

.post-bd li:last-child span {
	display: none
}

.news-hd-name {
	position: relative;
	margin-bottom: 56px;
	color: #393939;
	text-align: center;
	font-size: 24px
}

.news-hd-name:before {
	position: absolute;
	bottom: -15px;
	left: 50%;
	margin-left: -30px;
	width: 60px;
	height: 7px;
	background-color: #00218e;
	content: ""
}

.news-panel {
	margin-bottom: 38px
}

.news-panel-data {
	padding: 24px 36px 0;
	background-color: #f7f6f6;
	flex: 1
}

.news-panel-date {
	color: #0a1f61;
	font-size: 16px
}

.news-panel-name {
	display: -webkit-box;
	overflow: hidden;
	margin: 5px 0 10px;
	font-weight: 700;
	font-size: 18px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2
}

.news-panel-name a {
	color: #0a1f61
}

.news-panel-name a:hover {
	color: #00a0ff
}

.news-panel-desc {
	display: -webkit-box;
	overflow: hidden;
	height: 92px;
	color: #5a5a5a;
	font-size: 16px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4
}

.news-panel-more a {
	display: inline-block;
	margin-top: 25px;
	padding: 5px 23.5px;
	border: 1px solid #0a1f61;
	color: #0a1f61;
	font-size: 18px
}

.news-panel-more a:hover {
	border: 1px solid #00a0ff;
	background-color: #00a0ff;
	color: #fff
}

.news-panel-more a:hover .iconfont {
	color: #fff
}

.news-panel-more a .iconfont {
	color: #0a1f61;
	font-weight: 700;
	font-size: 16px
}

.news-panel:hover {
	box-shadow: 0 0 5px 1px #ddd;
	cursor: pointer
}

.news-panel:hover .news-panel-data {
	background-color: #fff
}

.news-panel-img {
	overflow: hidden;
	width: 462px;
	height: 272px;
}

.news-nav {
	flex-wrap: wrap
}

/* 公司简介 */
.about-pic img {
	width: 100%;
}

.about-pic {
	margin-bottom: 30px;
}

.ahout-bd p {
	margin-bottom: 30px;
	color: #5a5a5a;
	text-indent: 32px;
	font-size: 16px;
	line-height: 26px;
}

/* 解决方案 */
.solve-panel {
	padding: 20px 0 40px;
	background-color: #f6f6f6;
}

.solve-col-pic {
	overflow: hidden;
}

.solve-col-pic img {
	width: 100%;
}

.solve-col {
	padding: 2px;
}

.sovle-col-name {
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 0 3px 1px rgba(0, 0, 0, .21);
}

.solve-col-tt {
	margin-bottom: 10px;
	font-weight: 700;
	font-size: 18px;
}

.solve-col-tt a {
	display: block;
	overflow: hidden;
	height: 24px;
	color: #1d1d21;
}

.solve-col-more a {
	color: #0259dc;
	font-size: 16px;
}

.solve-col-more a .iconfont {
	font-weight: 700;
	font-size: 14px;
}

.solve-panel .row {
	margin: 0 -8px;
}

.solve-panel .col-lg-4 {
	padding-right: 8px;
	padding-left: 8px;
}

.solve-col {
	margin-bottom: 16px;
}

/* 荣誉资质 */
.honor-from {
	margin-bottom: 24px;
	padding: 4px;
	text-align: center;
}

.honor-from-pic {
	overflow: hidden;
	margin-bottom: 15px;
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 0 5px 1px rgba(0, 0, 0, .3);
	height: 287px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.honor-from-pic img {
	transition: .6s all;
}

.honor-from-pic img:hover {
	cursor: pointer;
	transform: scale(1.1);
}

.honor-list {
	margin-top: 40px;
}

.honor-list .row {
	margin: 0 -12px;
}

.honor-list .col-lg-4 {
	padding-right: 12px;
	padding-left: 12px;
}

.honor-from-date,
.honor-from-name {
	margin-top: 5px;
	color: #525252;
	font-size: 16px;
}

.post-bd1 {
	display: inline-block;
	background-color: #00218e;
}

.post-bd1 a {
	display: inline-block;
	margin: 9px 12px;
	color: #fff;
	font-size: 16px;
}

.post-bd1 li {
	float: left;
	display: flex;
	align-items: center;
}

.post-bd1 li .iconfont {
	font-size: 14px;
}

.post-bd1 li:last-child .iconfont {
	display: none;
}

.prd_nav .news-nav-col {
	width: 200px;
}

.prd-left-nav li a {
	position: relative;
	display: block;
	padding-bottom: 40px;
	padding-left: 22px;
	color: #a3a1a5;
	font-size: 16px;
}

.prd-left-nav li a:hover {
	color: #0028aa;
}

.prd-left-nav li a:hover::after {
	box-shadow: 0 0 3px 1px #0028aa;
}

.prd-left-nav li a::after {
	position: absolute;
	top: 5px;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background-color: #0028aa;
	content: '';
}

.prd-left-nav li a:before {
	position: absolute;
	top: 5px;
	left: 5px;
	width: 1px;
	height: 100%;
	background-color: #d4dbf1;
	content: '';
}

.prd-left-nav li:last-child a:before {
	display: none;
}

.prd-left-nav {
	margin: 30px 30px 0 140px;
	width: 180px;
}

.prd-col-hd {
	padding: 60px 30px 80px 80px;
	height: 378px;
	flex: 1;
}

.prd-col-tt {
	margin-bottom: 30px;
	color: #5d5c5c;
	font-weight: 700;
	font-size: 30px;
}

.prd-col-desc {
	color: #6f6f6f;
	font-weight: 700;
	font-size: 16px;
	line-height: 30px;
}

.prd-col-flex {
	flex-direction: row-reverse;
}

.prd-col-more a {
	display: inline-block;
	margin-top: 40px;
	padding: 6px 0;
	width: 192px;
	border: 1px solid #669cc1;
	border-radius: 50px;
	color: #0172aa;
	text-align: center;
	font-weight: 700;
	font-size: 16px;
}

.prd-col-bd {
	overflow: hidden;
	cursor: pointer;
	width: 40%;
}

.prd-col-more a:hover {
	border: 1px solid #00a0ff;
	background-color: #00a0ff;
	color: #fff;
}

.prd-col .prd-col-hd:hover {
	background-color: #fff;
	box-shadow: 0 0 5px 1px #eee;
	cursor: pointer;
}

.prd-col-f8 {
	margin: 0 -353px;
	padding: 30px 353px;
	background-color: #f8f8f8;
}

.prd-col-ff {
	margin: 0 -353px;
	padding: 30px 353px;
	background-color: #fff;
}

.warp-bkg {
	background-color: #f6f6f6;
}

.warp-bkg .post-bd .iconfont {
	margin-right: 5px;
}

.prd-show .container {
	padding: 30px;
	background-color: #fff;
}

.prd-show-pic_tt {
	margin-bottom: 20px;
	color: #0c0c0c;
	font-size: 20px;
}

.prd-show-pic {
	position: relative;
	width: 524px;
}

.prd-body-tt {
	color: #3a3a3a;
	font-size: 18px;
}

.prd-body-line {
	margin-top: 10px;
	width: 36px;
	height: 2px;
	background-color: #99a5cd;
}

.prd-body-cnt span {
	display: inline-block;
	margin-bottom: 20px;
	color: #6a6a6a;
	text-indent: 34px;
	font-size: 17px;
}

.prd-body-cnt p {
	position: relative;
	margin-bottom: 5px;
	padding-left: 20px;
	color: #6a6a6a;
	font-size: 15px;
}

.prd-body-cnt p:before {
	position: absolute;
	top: 4px;
	left: 0;
	width: 14px;
	height: 14px;
	border-radius: 100%;
	background-color: #001e83;
	content: '';
}

.prd-show-body {
	margin-left: 60px;
	flex: 1;
}

.prd-body-cnt {
	padding: 10px 10px 30px 0;
}

.prd-body-ft .btn {
	display: inline-block;
	margin-right: 10px;
	padding: 12px 63px;
	border-radius: 0;
	background-color: #001e83;
	color: #fff;
	font-size: 20px;
}

.prd-body-ft .btn_fe {
	background-color: #a3a3a3;
}

.prd-show-pic .btn-button {
	position: absolute;
	bottom: 0;
	left: 40%;
	z-index: 99999999999999999999;
	cursor: pointer;
}

.prd-show-pic .btn-button .iconfont {
	font-size: 30px;
}

.prd-show-pic .btn_next {
	right: 40%;
	left: auto;
	outline: 0;
}

.swiper-prdshow {
	margin-bottom: 30px;
}

.prd-bd-name {
	margin: 0 -30px;
	border-bottom: 1px solid #c7c7c7;
}

.prd-bd-t {
	display: inline-block;
	padding: 9px 51px;
	background-color: #001e83;
	color: #fff;
	font-size: 20px;
}

.prd-bd-tel {
	padding-right: 10px;
	color: #001e83;
	font-weight: 700;
	font-size: 20px;
}

.prd-bd-col {
	padding: 30px 0;
}

.prd-col-title {
	margin-bottom: 15px;
	color: #3a3a3a;
	font-size: 22px;
}

.prd-col-span {
	margin-bottom: 22px;
	color: #727272;
	text-indent: 32px;
	font-size: 16px;
}

.prd-bd-col p {
	color: #727272;
}

.prd-bd-col .prd-img {
	margin: 10px 0;
	text-align: center;
}

/*软件下载*/
.download_list {
	clear: both;
	color: #333;
	margin-top: 30px;
}

.download_list .top {
	border-bottom: 1px solid #bcbcbc;
	line-height: 80px;
	font-size: 36px
}

.download_list .list {
	clear: both;
	margin-top: 45px;
	width: 100%
}

.download_list .list .pic {
	width: 122px;
	max-height: 122px;
	float: left;
	overflow: hidden
}

.download_list .list ul {
	width: 750px;
	float: left;
	margin: 0 0 0 60px
}

.download_list .list ul h2 {
	font-size: 24px;
	line-height: 26px
}

.download_list .list ul p {
	font-size: 14px;
	margin: 15px 0;
	line-height: 22px
}

.download_list .list ul span {
	margin-right: 10px
}

.download_list .list ul a {
	color: #0050b4;
	float: right
}

.download_list .list ul a:hover {
	text-decoration: underline
}

.download_list .list ul span {
	color: #727171;
	font-size: 12px;
}

.download_list .list dl {
	width: 190px;
	float: right;
	text-align: center;
	color: #595757;
	font-size: 16px;
	line-height: 47px
}

.download_list .list dl dt {
	position: relative
}

.download_list .list dl dt a {
	background: #003da8;
	color: #fff;
	display: block;
	border-radius: 0;
	margin-top: 8px;
	height: 40px;
	line-height: 40px;
	font-family: 'PingFang SC', 'Microsoft YaHei', Helvetica, sans-serif;
}

.download_list .list dl dt a:hover {
	background: #003085
}

.download_list .list dl dt.downloadbtn_freelicense.hover a {
	background: 0 0
}

.download_list .list dl dt .hide {
	position: absolute;
	width: 100%;
	background: #fff;
	overflow: hidden;
	top: 52px;
	left: 0;
	z-index: 111;
	display: none;
	box-sizing: border-box;
	transition: all .3s ease-in;
	border: 1px solid #ccc;
	border-left: 3px solid #007efe
}

.download_list .list dl dt .hide.active {
	display: block !important
}

.download_list .list dl dt .hide a {
	margin: 0 5px;
	background: 0 0;
	color: #003da8;
	font-size: 14px;
	line-height: 57px;
	border-bottom: 1px solid #ccc;
	display: block
}

.download_list .list dl dt .hide a:hover {
	color: #007efe
}

.download_list .list dl dt.downloadbtn.hover .hide a {
	background: 0 0
}

.download_list .list dl dt .hide a i {
	display: inline-block;
	width: 28px;
	height: 28px;
	margin-right: 20px;
	vertical-align: -8px
}

.download_list .list dl dt .hide a i.b1 {
	background: url(../../images/xzt_07.png) no-repeat
}

.download_list .list dl dt .hide a i.b2 {
	background: url(../../images/xzt_11.png) no-repeat
}

.download_list .list dl dt .hide a:hover i.b1 {
	background: url(../../images/xzth_07.png) no-repeat
}

.download_list .list dl dt .hide a:hover i.b2 {
	background: url(../../images/xzth_11.png) no-repeat
}

.download_list .list dl dt .hide a:nth-last-child(1) {
	border: 0
}

.download_list .list dl dd {
	margin-top: 10px;
}

.download_list .list dl span {
	color: #ec6721
}

.download_list .listmore {
	margin-left: 182px;
	clear: both
}

.download_list .listmore .bt {
	float: right;
	font-size: 24px;
	color: #ec6721;
	background: url(../../images/jian_18.jpg) no-repeat right center;
	padding-right: 20px;
	line-height: 30px
}

.download_list .listmore .bt.hover {
	background: url(../../images/jian_15.jpg) no-repeat right center;
	padding-right: 20px
}

.download_list .listmore .list-item {
	display: none;
	clear: both
}

.download_list .listmore .list-item.block {
	display: block
}

.download_list table .downloadbtn {
	position: relative
}

.download_list table .downloadbtn .hide {
	position: absolute;
	width: 122px;
	background: #fff;
	overflow: hidden;
	top: 38px;
	right: 1px;
	z-index: 111;
	display: none;
	box-sizing: border-box;
	transition: all .3s ease-in;
	border: 1px solid #ccc;
	border-left: 2px solid #007efe
}

.download_list table .downloadbtn .hide.active {
	display: block !important
}

.download_list table .downloadbtn .hide a {
	margin: 0 3px;
	background: 0 0;
	color: #003da8;
	font-size: 14px;
	line-height: 40px;
	border-bottom: 1px solid #ccc;
	display: block
}

.download_list table .downloadbtn .hide a:hover {
	color: #007efe
}

.download_list table .downloadbtn .hide a:nth-last-child(1) {
	border: 0
}

.download_list table .downloadbtn.hover .hide a {
	background: 0 0
}

.download_list table .downloadbtn .hide a i {
	display: inline-block;
	width: 22px;
	height: 22px;
	margin-right: 10px;
	vertical-align: -7px
}

.download_list table .downloadbtn .hide a i.b1 {
	background: url(../../images/xzt_07.png) no-repeat;
	background-size: 20px 20px
}

.download_list table .downloadbtn .hide a i.b2 {
	background: url(../../images/xzt_11.png) no-repeat;
	background-size: 20px 20px
}

.download_list table .downloadbtn .hide a:hover i.b1 {
	background: url(../../images/xzth_07.png) no-repeat;
	background-size: 20px 20px
}

.download_list table .downloadbtn .hide a:hover i.b2 {
	background: url(../../images/xzth_11.png) no-repeat;
	background-size: 20px 20px
}

.download_list table a.nt {
	width: 120px;
	line-height: 33px;
	background: #003da8;
	color: #fff;
	display: block;
	border-radius: 2px
}

.download_list table a.nt:hover {
	background: #003085
}

.download_list table {
	border-top: 1px solid #bcbcbc;
	padding-top: 10px;
	margin-top: 10px
}

.download_list table td {
	padding: 8px 3px;
	box-sizing: border-box;
	font-size: 14px;
	color: #595757
}


/* 首页 */
.swiper-banner .swiper-slide {
	display: flex;
	height: 822px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	align-items: center;
	justify-content: center
}

.swiper-banner .swiper-pagination-bullet {
	width: 35px;
	height: 5px;
	border: 1px solid #fff;
	border-radius: 0;
	background-color: #fff;
	background-color: transparent;
	opacity: 1
}

.swiper-banner .swiper-pagination-bullet-active {
	border: 1px solid #fff;
	background-color: #fff
}

.index-col {
	padding: 50px 0 40px
}

.index-col-hd {
	margin-bottom: 30px;
	text-align: center
}

.index-col-tt {
	color: #3a3a3a;
	font-size: 30px
}

.index-col-line {
	position: relative;
	margin: 10px auto;
	width: 144px;
	height: 4px;
	background-color: #b5b5b5
}

.index-col-line:before {
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -22px;
	width: 44px;
	height: 4px;
	background-color: #0c83e7;
	content: ''
}

.index-col-desc {
	color: rgba(58, 58, 58, .5);
	font-size: 20px
}

.index-panel {
	position: relative;
	margin-bottom: 20px
}

.index-panel-pic {
	overflow: hidden
}

.index-panel-pic img {
	width: 100%;
	cursor: pointer
}

.index-panel-name {
	position: absolute;
	bottom: 10px;
	left: 50%;
	margin-left: -36px;
	text-shadow: 1px 2px 3px #000;
	font-size: 18px
}

.index-panel-name a {
	color: #fff
}

.index-panel-col {
	display: flex;
	padding: 0 40px;
	min-height: 239px;
	background-color: #0a1f61;
	color: #fff;
	font-size: 17px;
	line-height: 34px;
	align-items: center
}

.index-col-bd .row {
	margin: 0 -10px
}

.index-col-bd .col-lg-3,
.index-col-bd .col-lg-6 {
	padding-right: 10px;
	padding-left: 10px
}

.index-col-indu {
	padding: 80px 0;
	height: 652px;
	background-image: url(../images/index-indu.jpg)
}

.index-inud-col {
	position: relative;
	overflow: hidden;
	margin-bottom: 9px;
	color: #fff;
	cursor: pointer
}

.index-indu-img {
	position: absolute;
	right: -20px;
	bottom: -10px
}

.index-indu-name {
	font-size: 40px
}

.index-indu-ru {
	margin: 20px 0 30px;
	font-size: 30px
}

.index-indu-line {
	width: 114px;
	height: 7px;
	background-color: #fff
}

.index-col-indu .row {
	margin: 0
}

.index-indu-from {
	margin-top: -50px;
	margin-bottom: 0;
	min-height: 213.63px
}

.index-news-bd {
	margin-left: 30px;
	flex: 1
}

.index-news-data {
	margin-left: 16px;
	flex: 1
}

.index-news-col {
	margin-bottom: 16px
}

.index-news-name {
	margin-bottom: 10px;
	color: #3a3a3a;
	font-weight: 700;
	font-size: 17px
}

.index-case-name a:hover,
.index-news-name a:hover,
.index-panel-name a:hover,
.index-right-tt a:hover,
.prd-col-tt a:hover {
	color: #00a0ff
}

.prd-body-ft .btn:hover {
	background-color: #00a0ff;
	color: #fff
}

.prd-body-ft .btn_fe:hover {
	background-color: #919191
}

.prd-left-nav .current a {
	color: #0028aa
}

.prd-left-nav .current a::after {
	box-shadow: 0 0 3px 1px #0028aa
}

/* 首页修改样式 */
.index-soft-col {
	display: flex;
	min-height: 163.63px;
	background-color: #0080ca;
	text-align: center;
	align-items: center;
	justify-content: center;
	flex-direction: column
}

.index-soft-icon img {
	display: block;
	margin: 0 auto;
	width: 42px;
	height: auto
}

.index-soft-name {
	color: #fff;
	text-shadow: 0 3px 4px #000;
	font-size: 17px
}

.index-col-indu .col-sm-8,
.index-col-indu .col-xs-4 {
	padding-right: 0;
	padding-left: 0
}

.index-soft-pic img {
	width: 100%
}

.index-soft-icon {
	margin-bottom: 10px
}

.index-case-pic,
.index-news-left,
.index-soft-pic,
.index-solv-img {
	overflow: hidden
}

.index-case-pic img,
.index-news-left img,
.index-soft-pic img,
.index-solv-img img {
	transition: all .6s
}

.index-case-pic img:hover,
.index-news-left img:hover,
.index-soft-pic img:hover,
.index-solv-c:hover .index-solv-img img {
	cursor: pointer;
	transform: scale(1.1)
}

.index-solv-c:hover .index-solv-tt {
	color: #00a0ff
}

.index-soft-purple {
	background-color: #4850e3
}

.index-soft-144 {
	background-color: #1440a8
}

.index-soft-0f {
	background-color: #0f5a9e
}

.index-solv-hd {
	padding-top: 24px;
	height: 400px;
	color: #fff;
	text-align: center
}

.index-solvhd-tt {
	margin-bottom: 10px;
	font-weight: 700;
	font-size: 40px
}

.index-solvhd-desc {
	font-size: 21px
}

.index-solv-bd .container {
	overflow: initial
}

.index-solv-c {
	background-color: #fff;
	box-shadow: 0 0 3px 1px rgba(0, 0, 0, .2)
}

.index-solv-data {
	padding: 60px;
	flex: 1
}

.index-solv-from {
	height: 370px
}

.index-solv-top {
	margin-top: -230px
}

.index-solv-tt {
	color: rgba(0, 0, 0, .8);
	font-size: 22px
}

.index-right-line,
.index-solv-line {
	margin: 20px 0;
	width: 44px;
	height: 3px;
	background-color: #1575c1
}

.index-right-desc,
.index-solv-desc {
	color: #000;
	font-size: 15px;
	line-height: 26px
}

.index-solv-flex {
	flex-direction: row-reverse
}

.index-solv-bgk {
	padding-top: 70px;
	height: 400px;
	background-size: cover !important;
	text-align: center
}

.index-case-hd {
	margin-bottom: 40px;
	text-align: center;
	font-weight: 700
}

.index-case-tt {
	margin-bottom: 5px;
	color: #333;
	font-size: 33px
}

.index-case-desc {
	color: #666;
	font-size: 16px
}

.index-case-pic img {
	width: 100%
}

.index-case-no {
	margin-bottom: 4px;
	padding: 20px 10px;
	background-color: #fff;
	box-shadow: 0 0 4px 1px rgba(0, 0, 0, .2)
}

.index-case-name {
	margin-bottom: 5px;
	color: #333;
	font-weight: 700;
	font-size: 16px
}

.index-case-ccc {
	display: -webkit-box;
	overflow: hidden;
	color: #666;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3
}

.index-case-list .row {
	margin: 0 -5px
}

.index-case-list .col-lg-3 {
	padding-right: 5px;
	padding-left: 5px
}

.index-news-hd {
	margin-bottom: 30px;
	padding: 0 20px 20px 0;
	background: url(../images/index19.png) right 70px top 30px no-repeat;
	background-color: #f7f7f7
}

.index-news-name {
	color: rgba(0, 0, 0, .8);
	font-size: 36px
}

.index-news-line {
	width: 88px;
	height: 7px;
	background-color: #1575c1
}

.index-news-r ul {
	margin-top: 55px
}

.index-news-r ul li {
	float: left;
	width: 96px;
	height: 34px;
	background: url(../images/index20.png) 50% no-repeat;
	text-align: center;
	line-height: 34px
}

.index-news-r ul li:hover {
	cursor: pointer
}

.index-news-r ul li a {
	color: #fff
}

/* .index-news-r ul li:first-child{margin-right:20px} */
.index-news-r ul li {
	margin-right: 10px
}

.index-news-r ul li.current {
	background: url(../images/index21.png) 50% no-repeat
}

.index-news-no {
	display: none
}

.index-news-right {
	padding: 30px;
	flex: 1
}

.index-news-left {
	position: relative;
	width: 600px;
}

.index-news-from .index-news-left {
	height: 360px;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.index-news-from .index-news-left a {
	display: block;
	width: 100%;
}

.index-news-left:before {
	position: absolute;
	top: 50%;
	right: -30px;
	z-index: 9999;
	margin-top: -24px;
	width: 56px;
	height: 48px;
	background-image: url(../images/jiantou.png);
	background-position: 50%;
	background-repeat: no-repeat;
	content: ""
}

.index-right-tt {
	font-weight: 700;
	font-size: 22px
}

.index-right-tt a {
	color: rgba(0, 0, 0, .8)
}

.index-news-flex {
	flex-direction: row-reverse
}

.index-news-flex .index-news-left:before {
	right: auto;
	left: -30px;
	transform: rotateY(-180deg)
}

.news-list .page {
	padding-bottom: 40px
}

.prd-bd-col .mb10 {
	margin-bottom: 22px
}

.hn_m {
	display: block;
}

/* 手机样式 */
@media (max-width:768px) {
	.news-panel-img {
		width: 100%;
		height: auto;
	}
  .pc-nav-menu{
    display: flex;
    justify-content: start;
  	color: #fff;
		margin-right: 34px;
		font-size: 13px;
    gap: 8px;
  }
  .pc-nav-menu a{
    color: #fff;
  }
	.pc_nav {
		padding: 1% 2% !important
	}

	.pc-nav-list {
		display: none
	}

	.moblie_nav {
		display: block
	}

	.hn_m {
		display: none
	}

	.logo img {
		margin: 9px 0;
		height: 20px
	}

  
  .logo .logo-img{
    display: none;
  }

  .logo .logo-home{
    display: inline-block;
  }

	.m-nav-icon {
		position: fixed;
		top: 8px;
		right: 15px;
		z-index: 99999999;
		color: #fff
	}

	.ma-infinitypush-button {
		top: 12px !important
	}

	#primary-navigation {
		display: none
	}

	footer .foot-top {
		margin-top: 15px;
		flex-wrap: wrap
	}

	footer .foot-l {
		display: flex;
		margin: 0;
		margin-bottom: 15px;
		padding: 0;
		width: 100%;
		border-right: 0;
		align-items: center;
		justify-content: space-evenly
	}

	footer .foot-l .foot-l-logo {
		text-align: center
	}

	footer .foot-l .foot-l-logo img {
		height: 29px
	}

	footer .foo-l-tel {
		margin-top: 10px;
		text-align: center;
		font-size: 16px
	}

	footer .foot-r dt {
		margin-bottom: 10px;
		font-size: 16px
	}

	footer .foot-bd {
		padding: 10px 0;
		flex-direction: column
	}

	footer .foot-r dl {
		margin: 0 0 15px 0;
		padding: 0;
		min-height: 130px
	}

	footer .foot-r {
		display: none
	}

	.obanner {
		height: 210px
	}

	.obanner>span {
		font-size: 30px
	}

	.news-nav-col {
		padding: 9px 0
	}

	.news-col-tt {
		font-size: 14px
	}

	.news-col-icon .iconfont {
		margin-right: 5px;
		font-size: 14px
	}

	.post,
	.post-bd a {
		color: #605f5f;
		font-size: 14px
	}

	.post {
		padding: 10px 0
	}

	.news-panel-img img {
		width: 100%
	}

	.news-panel {
		margin-bottom: 15px;
		flex-direction: column
	}

	.news-panel-data {
		padding: 15px;
		flex: auto
	}

	.news-panel-date {
		font-size: 14px
	}

	.news-panel-name {
		font-size: 16px
	}

	.news-panel-desc {
		height: 60px;
		font-size: 14px;
		-webkit-line-clamp: 3
	}

	.news-panel-more a {
		margin-top: 10px;
		padding: 4px 25px;
		font-size: 14px
	}

	.news-panel-more a .iconfont {
		font-weight: 700;
		font-size: 14px
	}

	.news-hd-name:before {
		bottom: -6px;
		margin-left: -20px;
		width: 40px;
		height: 3px;
		content: ''
	}

	.news-hd-name {
		margin-bottom: 25px;
		font-size: 18px
	}

	.about-pic {
		margin-bottom: 15px
	}

	.ahout-bd p {
		margin-bottom: 15px;
		text-indent: 28px;
		font-size: 14px;
		line-height: 24px
	}

	.honor-list .row,
	.solve-panel .row {
		margin: 0 -7.5px
	}

	.honor-list .col-xs-6,
	.solve-panel .col-xs-3 {
		padding-right: 7.5px;
		padding-left: 7.5px
	}

	.solve-col {
		margin-bottom: 15px
	}

	.sovle-col-name {
		padding: 10px
	}

	.solve-col-tt {
		margin-bottom: 5px;
		font-weight: initial;
		font-size: 16px
	}

	.solve-col-more a {
		font-size: 14px
	}

	.solve-col-more a .iconfont {
		font-size: 12px
	}

	.page {
		margin-top: 0;
		flex-wrap: wrap
	}

	.page li {
		margin-bottom: 5px
	}

	/* .page li a{width:36px;height:36px;font-size:14px;line-height:36px} */
	.honor-from-pic img {
		width: 100%
	}

	.honor-from-pic {
		margin-bottom: 10px;
		padding: 10px
	}

	.honor-from-date,
	.honor-from-name {
		margin-top: 0;
		font-size: 14px
	}

	.honor-from-name {
		overflow: hidden;
		height: 20px
	}

	.honor-from {
		margin-bottom: 15px
	}

	.honor-img img {
		width: 100%
	}

	.news-nav {
		justify-content: flex-start
	}

	.honor-list {
		margin-top: 10px
	}

	.prd_nav .news-nav-col {
		width: 172px
	}

	.post-bd1 a {
		margin: 4px 6px;
		font-size: 14px
	}

	.prd-left-nav {
		display: none
	}

	.prd-col {
		flex-direction: column;
		flex-direction: column-reverse
	}

	.prd-col-hd {
		padding: 15px 0;
		height: auto;
		flex: auto
	}

	.prd-col-ff {
		margin: 0 0 10px 0;
		padding: 0
	}

	.prd-col-f8 {
		margin: 0 -15px 10px -15px;
		padding: 0 15px
	}

	.prd-col-bd img {
		width: 100%
	}

	.prd-col-tt {
		margin-bottom: 10px;
		color: #5d5c5c;
		font-weight: 700;
		font-size: 16px
	}

	.prd-col-desc {
		color: #6f6f6f;
		font-weight: 500;
		font-size: 14px;
		line-height: 22px
	}

	.prd-col-more a {
		margin-top: 10px;
		padding: 4px 0;
		width: 152px;
		font-weight: 500;
		font-size: 14px
	}

	.prd-show-hd {
		flex-direction: column
	}

	.prd-show-pic,
	.prd-show-pic img {
		width: 100%
	}

	.prd-show-pic .btn-button .iconfont {
		font-size: 24px
	}

	.prd-show-pic_tt {
		margin-bottom: 10px;
		font-size: 16px
	}

	.prd-show .container {
		padding: 15px
	}

	.prd-show-body {
		margin-left: 0;
		flex: auto;
	}

	.prd-body-tt {
		font-size: 16px;
	}

	.prd-body-line {
		margin-top: 5px;
	}

	.prd-body-cnt span {
		margin-bottom: 10px;
		text-indent: 28px;
		font-size: 14px;
	}

	.prd-body-cnt {
		padding: 10px 0;
	}

	.prd-body-cnt p:before {
		top: 6px;
		width: 8px;
		height: 8px;
	}

	.prd-body-cnt p {
		padding-left: 10px;
		font-size: 14px;
	}

	.prd-body-ft .btn {
		margin-right: 0;
		padding: 8px 47px;
		font-size: 16px;
	}

	.prd-body-ft {
		margin-bottom: 20px;
		margin-left: 8px;
	}

	.prd-bd-t {
		padding: 6px 40px;
		font-size: 16px;
	}

	.prd-bd-name {
		margin: 0 -15px;
	}

	.prd-bd-tel {
		padding-right: 15px;
		font-size: 14px;
	}

	.prd-col-title {
		font-size: 16px;
	}

	.prd-col-span {
		text-indent: 28px;
		font-size: 14px;
	}

	.prd-bd-col .prd-img img {
		width: 100%;
	}

	.prd-bd-col {
		padding: 15px 0;
	}

	.prd-bd-col .mb10 {
		margin-bottom: 10px;
	}

	.obanner img {
		height: 49px;
	}

	.swiper-banner .swiper-slide img {
		height: 49px;
	}

	.swiper-banner .swiper-slide {
		height: 250px;
	}

	.index-col {
		padding: 15px 0;
	}

	.index-col-tt {
		font-size: 20px;
	}

	.index-col-line {
		margin: 5px auto;
		width: 80px;
		height: 2px;
	}

	.index-col-line:before {
		margin-left: -15px;
		width: 30px;
		height: 2px;
	}

	.index-col-desc {
		font-size: 14px;
	}

	.index-col-hd {
		margin-bottom: 10px;
	}

	.index-panel-name {
		bottom: 5px;
		left: 50%;
		margin-left: -28px;
		font-size: 14px;
	}

	.index-col-bd .row {
		margin: 0 -7.5px;
	}

	.index-col-bd .col-lg-3,
	.index-col-bd .col-lg-6 {
		padding-right: 7.5px;
		padding-left: 7.5px;
	}

	.index-panel {
		margin-bottom: 15px;
	}

	.index-col-prd .col-lg-6 .index-panel {
		margin-bottom: 0;
	}

	.index-panel-col {
		padding: 15px;
		min-height: auto;
		font-size: 14px;
		line-height: 22px;
	}

	.index-indu-name {
		font-size: 20px;
	}

	.index-indu-ru {
		margin: 5px 0 10px;
		font-size: 14px;
	}

	.index-indu-line {
		width: 56px;
		height: 3px;
	}

	.index-indu-img img {
		height: 75px;
	}

	.index-indu-from {
		margin-top: 0;
		margin-bottom: 0;
		padding-left: 0;
		min-height: 90px;
	}

	.index-col-indu {
		height: 500px;
	}

	.index-col-news {
		flex-direction: column;
	}

	.index-news-bd {
		margin-left: 0;
		flex: auto;
	}

	.index-news-pic {
		margin-bottom: 15px;
	}

	.index-news-col {
		margin-bottom: 10px;
	}

	.index-news-name {
		overflow: hidden;
		margin-top: -20px;
		margin-bottom: 5px;
		height: 24px;
		background-color: #f7f7f7;
		font-size: 18px;
	}

	.index-news-data {
		margin-left: 10px;
	}

	.solve-panel {
		padding: 15px 0;
	}

	.index-news-r ul li a {
		font-size: 12px;
	}

	.index-news-r ul li {
		width: 80px;
		height: 28px;
		background-size: 80px 28px;
		line-height: 28px;
	}

	.index-news-r ul li.current {
		width: 80px;
		height: 28px;
		background: url(../images/index21.png) center no-repeat;
		background-size: 80px 28px;
		line-height: 28px;
	}

	.index-news-hd {
		margin-bottom: 10px;
		padding: 0 10px 10px 0;
		background: url(../images/index19.png) right 40px top 20px no-repeat;
		background-color: #f7f7f7;
	}

	.index-news-r ul {
		margin-top: 40px;
	}

	.index-news-line {
		width: 78px;
		height: 3px;
	}

	.index-news-from {
		flex-direction: column;
	}

	.index-news-from .index-news-left {
		width: 100%;
		height: auto;
	}

	.index-news-left img,
	.index-solv-img img {
		width: 100%;
	}

	.index-news-left:before {
		display: none;
	}

	.index-news-right {
		padding: 15px 0;
		flex: auto;
	}

	.index-right-tt {
		font-size: 15px;
	}

	.index-right-line,
	.index-solv-line {
		margin: 5px 0;
	}

	.index-right-desc,
	.index-solv-desc {
		color: #000;
		font-size: 12px;
		line-height: 24px;
	}

	.index-soft-col {
		min-height: 94.08px;
	}

	.index-solvhd-tt {
		margin-bottom: 5px;
		font-size: 24px;
	}

	.index-solvhd-desc {
		font-size: 14px;
	}

	.index-solv-c {
		flex-direction: column;
	}

	.index-solv-data {
		padding: 15px;
		flex: 1;
	}

	.index-solv-tt {
		font-size: 15px;
	}

	.index-solv-from {
		margin-bottom: 15px;
		height: auto;
	}

	.index-solv-hd {
		margin-bottom: 15px;
		padding-top: 20px;
		height: 100px;
	}

	.index-solv-bgk {
		display: none;
		padding-top: 0;
		height: 300px;
	}

	.index-case-tt {
		font-size: 24px;
	}

	.index-case-desc {
		font-size: 14px;
	}

	.index-case-hd {
		margin-bottom: 20px;
	}

	.index-case-list .row {
		margin: 0 -10px;
	}

	.index-case-no {
		margin-bottom: 10px;
		padding: 10px;
	}

	.index-case-name {
		display: -webkit-box;
		overflow: hidden;
		font-size: 15px;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.index-soft-name {
		font-size: 14px;
	}

	.index-solv-top {
		margin-top: 0;
	}

	.index-solv-col:last-child .index-solv-from {
		margin-bottom: 0;
	}

	.index-case-ccc {
		font-size: 12px;
	}

	#primary-navigation .nav-meun .nav-item a {
		padding: 6px 0 6px 20px;
		background-color: #025b91;
		font-size: 14px;
	}

	.ma-infinitypush-wrapper .ma-infinitypush ul li {
		position: relative;
	}

	#primary-navigation li .arrow {
		position: absolute;
		top: 5px;
		right: 10px;
	}

	#primary-navigation li .arrow .iconfont {
		color: #fff;
		font-size: 10px;
	}

	#primary-navigation li .nav-meun {
		display: none;
	}

	.oper .arrow {
		transform: rotateX(180deg);
	}

	.pc-nav-tel {
		margin-right: 0px;
		font-size: 13px;
    /* display: none; */
	}

	.swiper-banner .swiper-pagination-bullet {
		width: 20px;
		height: 4px;
	}

	.ma-infinitypush-wrapper,
	.ma-infinitypush-wrapper .ma-infinitypush ul {
		width: 300px !important;
	}

	.ma-infinitypush-wrapper.ma-infinitypush-active-button.ma-infinitypush-button-right .ma-infinitypush-button {
		left: -34px !important;
	}

	#primary-navigation .nav-meun .nav-item-menu {
		padding: 6px 10px 6px 20px;
		background-color: #1e7bb3;
		font-size: 14px;
		display: flex;
		justify-content: space-between;
		color: #fff;
	}

	#primary-navigation .nav-meun .nav-item-menu .iconfont {
		font-size: 10px;
	}

	#primary-navigation .nav-item-menu.oper .iconfont {
		transform: rotateX(180deg);
	}

	/*软件下载*/
	.download_list .list {
		margin-top: 20px
	}

	.download_list .top {
		line-height: 50px;
		font-size: 30px
	}

	.download_list .list .pic {
		width: 20%
	}

	.download_list .list ul {
		width: 75%;
		margin: 0 0 0 5%
	}

	.download_list .list dl {
		width: 90%;
		margin: 0 auto;
		clear: both;
		padding-top: 20px;
		float: none;
		font-size: 14px;
	}

}

@media(max-width:1200px) {
	.prd-left-nav {
		display: none;
	}
}

@media(max-width:1440px) {
	.prd-left-nav {
		width: 102px;
		margin: 0px 0px 0 10px;
	}
}


/* 新增 */
@media screen and (max-width: 768px) {
	.joker-pc {
		display: none !important;
	}
}

@media screen and (min-width: 768px) {
	.joker-mobile {
		display: none !important;
	}
}

.joker-solution-show {
	background-color: #fff !important;
}

.joker-solution-show .product_main_overview_cont {
	width: 94%;
	max-width: 1300px;
	margin: 0 auto;
	padding: 64px 0;
	box-sizing: border-box;
}

.joker-solution-show .product_main_overview_cont .title {
	text-align: center;
}

.joker-solution-show .product_main_overview_cont .title>span:first-child {
	display: inline-block;
	width: 100%;
	font-family: Arial, Helvetica, Tahoma, Verdana, Sans-Serif;
	text-align: center;
	color: #000;
}

.joker-solution-show .product_main_overview_cont .title .enName {
	color: #333;
	display: inline-block;
	width: 100%;
	font-family: Arial, Helvetica, Tahoma, Verdana, Sans-Serif;
}

.joker-solution-show .product_main_overview_cont .title>i.line {
	display: inline-block;
	width: 58px;
	height: 2px;
	background-color: #000;
	margin: 14px 0;
}

.goods_box_1 .overview {
	background: none;
}

.goods_box_2,
.goods_box_5 {
	background: #f6f6f6;
}

.goods_box_4 {
	display: none;
}

@media only screen and (max-width: 1300px) {
	.joker-solution-show .product_main_area_cont_list {
		padding: 0 2%;
		box-sizing: border-box;
	}
}


.joker-solution-show .product_main_area_cont_list {
	margin: 42px 0 66px;
}

.joker-solution-show .product_main_area_cont_list>.double>div {
	display: flex;
	align-items: center;
	justify-content: center;
}

.joker-solution-show .product_main_area_cont_list>.double>.leftImg>.fadeInLeft {
	margin-right: 90px;
	width: 524px;
}

.joker-solution-show .product_main_area_cont_list>.double>.leftImg>.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.joker-solution-show .product_main_area_cont_list>.double>.leftImg>div {
	max-width: calc(100% - 706px);
}

.joker-solution-show .product_main_area_cont_list>.double>.leftImg>div>ul {
	max-width: 100%;
}

.joker-solution-show .product_main_area_cont_list>.double>.leftImg>div>ul>li:first-child {
	padding-top: 0;
	border-top: none;
}

.joker-solution-show .product_main_area_cont_list>.double>.leftImg>div>ul>li {
	padding: 26px 0 18px;
	border-top: 2px solid #c7c7c7;
}

.joker-solution-show .product_main_area_cont_list>.double>.leftImg>div>ul>li>h5 {
	font-family: "SourceHanSerifMedium";
	color: #000;
	font-size: 18px;
}

.joker-solution-show .product_main_area_cont_list>.double>.leftImg>div>ul>li>h5 i {
	display: inline-block;
	height: 17px;
	width: 2px;
	position: relative;
	top: 3px;
	background: #0A1F61;
	margin-right: 20px;
}

.joker-solution-show .product_main_area_cont_list>.double>.leftImg>div>ul>li>div {
	font-family: Arial, Helvetica, Tahoma, Verdana, Sans-Serif;
	color: #333;
	margin-top: 10px;
	padding-left: 22px;
	line-height: 1.8;
	background-color: #fff !important;
	font-size: 16px;
}

.joker-solution-show div:nth-child(2n) {
	/* background-color: #f6f6f6!important; */
}

@media only screen and (max-width: 1300px) {
	.joker-solution-show .product_main_architecture .product_main_architecture_cont {
		padding: 0 2%;
		box-sizing: border-box
	}
}

.joker-solution-show .home_main_public>div {
	width: 94%;
	max-width: 1300px;
	margin: 0 auto;
	padding: 40px 0 60px;
	box-sizing: border-box;
}

.joker-solution-show .home_main_public .product_main_architecture_cont .title {
	text-align: center;
}

.joker-solution-show .home_main_public .product_main_architecture_cont .title>i.line {
	display: inline-block;
	width: 58px;
	height: 2px;
	background-color: #000;
	margin: 14px 0;
}

.joker-solution-show .home_main_public>div .title>span:first-child {
	text-align: center;
	color: #000;
}

.joker-solution-show .home_main_public>div .title>span:first-child {
	display: inline-block;
	width: 100%;
	font-family: Arial, Helvetica, Tahoma, Verdana, Sans-Serif;
}

.joker-solution-show .home_main_public>div .title {
	text-align: center;
}

.joker-solution-show .home_main_public>div .title>i.line {
	display: inline-block;
	width: 58px;
	height: 2px;
	background-color: #000;
	margin: 14px 0;
}

.joker-solution-show .product_main_description_cont .product_main_area_cont_list>.only>ul:first-child {
	margin-top: 0;
}

.joker-solution-show .product_main_description_cont .product_main_area_cont_list>.only>ul {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

.joker-solution-show .product_main_description_cont .product_main_area_cont_list>.only>ul>li {
	width: calc(33.33333% - 26.66667px);
	margin-right: 40px;
	background-color: #fff;
	padding: 40px 46px 40px 40px;
	box-sizing: border-box;
	border: 2px solid #0A1F61;
}

.joker-solution-show .product_main_description_cont .product_main_area_cont_list>.only>ul>li>span {
	display: block;
	font-family: Arial, Helvetica, Tahoma, Verdana, Sans-Serif;
	margin-top: 20px;
	color: #333;
}

.joker-solution-show .product_main_description_cont .product_main_area_cont_list>.only>ul>li>p {
	font-family: Arial, Helvetica, Tahoma, Verdana, Sans-Serif;
	margin-top: 20px;
	line-height: 1.8;
	color: #333;
}




.joker-solution-show .product_main_features>.product_main_features_cont>.product_main_features_list_con {
	margin-top: 32px;
}

.joker-solution-show .product_main_features>.product_main_features_cont>.product_main_features_list_con>ul {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	align-content: center;
	padding: 44px 0;
	min-height: 200px;
	border-bottom: 1px solid #e7e7e7;
	box-sizing: border-box;
}

.joker-solution-show .product_main_features>.product_main_features_cont>.product_main_features_list_con>ul>li:first-child {
	padding-right: 84px;
}

.joker-solution-show .product_main_features>.product_main_features_cont>.product_main_features_list_con>ul>li:first-child {
	padding-right: 84px;
}

.joker-solution-show .product_main_features>.product_main_features_cont>.product_main_features_list_con>ul>li:nth-child(2) {
	padding-left: 68px;
}

.joker-solution-show .product_main_features>.product_main_features_cont>.product_main_features_list_con>ul>li {
	width: 50%;
	display: flex;
	position: relative;
	box-sizing: border-box;
}

.joker-solution-show .product_main_features>.product_main_features_cont>.product_main_features_list_con>ul>li>span {
	width: 64px;
	height: 64px;
	max-width: 64px;
	min-width: 64px;
	border-radius: 50%;
	margin-right: 20px;
	border: 1px solid #cdcdcd;
	text-align: center;
}

.joker-solution-show .product_main_features>.product_main_features_cont>.product_main_features_list_con>ul>li>span>img {
	width: 40px;
	height: 40px;
	margin-top: 10px;
}

.joker-solution-show .product_main_features>.product_main_features_cont>.product_main_features_list_con>ul>li>div {
	width: calc(100% - 94px);
}

.joker-solution-show .product_main_features>.product_main_features_cont>.product_main_features_list_con>ul>li:first-child :before {
	content: "";
	position: absolute;
	right: 0;
	top: 10px;
	width: 1px;
	min-height: 90px;
	height: 90%;
	background: #e7e7e7;
}

.joker-solution-show .product_main_features>.product_main_features_cont>.product_main_features_list_con>ul>li>div>span.features_title {
	color: #000;
	display: block;
	font-family: Arial, Helvetica, Tahoma, Verdana, Sans-Serif;
	font-size: 18px;
}

.joker-solution-show .product_main_features>.product_main_features_cont>.product_main_features_list_con>ul>li>div>.clearfix {
	/* background-color: #fff !important; */
}

.joker-solution-show .product_main_features>.product_main_features_cont>.product_main_features_list_con>ul>li>div>div>p {
	margin-top: 12px;
	color: #333;
	font-family: Arial, Helvetica, Tahoma, Verdana, Sans-Serif;
	padding-left: 10px;
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAABKSURBVChTY/j27dt/YjH5iq3c+v+LKFeDMYiNLAfCcMUgSWGlKhSMrgGuGGQaumKQGOWKSXIGCIMkQaaBMLpCEEZRTAjTSvG3/wArB5IhMA/otwAAAABJRU5ErkJggg==) left 3px no-repeat;
	background-position-x: -2px;
}

.joker-solution-show .product_main_features>.product_main_features_cont>.product_main_features_list_con>ul:last-child {
	border-bottom: none;
}

.joker-solution-show .product_main_architecture .product_main_architecture_cont .product_main_architecture_img {
	margin-top: 32px;
}

.joker-solution-show .product_main_architecture .product_main_architecture_cont .product_main_architecture_img>.only>ul:first-child {
	margin-top: 0;
}

.joker-solution-show .product_main_architecture .product_main_architecture_cont .product_main_architecture_img>.only>ul {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

.joker-solution-show .product_main_architecture .product_main_architecture_cont .product_main_architecture_img>.only>ul>li {
	width: calc(33.33333% - 26.66667px);
	margin-right: 40px;
	background-color: #fff;
	padding: 40px 46px 40px 40px;
	box-sizing: border-box;
	border: 2px solid #0A1F61;
	text-align: center;
}

.joker-solution-show .product_main_architecture .product_main_architecture_cont .product_main_architecture_img>.only>ul>li>span {
	display: block;
	font-family: Arial, Helvetica, Tahoma, Verdana, Sans-Serif;
	margin-top: 20px;
	font-size: 16px;
}

.joker-solution-show .product_main_architecture .product_main_architecture_cont .product_main_architecture_img>.only>ul>li>p {
	font-family: Arial, Helvetica, Tahoma, Verdana, Sans-Serif;
	margin-top: 20px;
	line-height: 1.8;
}

.fnt_14 {
	font-size: 14px
}

.fnt_16 {
	font-size: 16px
}

.fnt_24 {
	font-size: 24px
}

.fnt_30 {
	font-size: 30px
}

.fnt_32 {
	font-size: 32px
}

.fnt_36 {
	font-size: 36px
}

.fnt_39 {
	font-size: 39px
}

.fnt_48 {
	font-size: 48px
}

.fnt_60 {
	font-size: 60px
}

.fnt_72 {
	font-size: 72px
}

@media only screen and (max-width: 1599px) {
	.fnt_20 {
		font-size: 18px !important
	}

	.fnt_24 {
		font-size: 22px !important
	}

	.fnt_30 {
		font-size: 28px !important
	}

	.fnt_32 {
		font-size: 30px !important
	}

	.fnt_36 {
		font-size: 34px !important
	}

	.fnt_39 {
		font-size: 38px !important
	}

	.fnt_48 {
		font-size: 44px !important
	}

	.fnt_60 {
		font-size: 52px !important
	}

	.fnt_72 {
		font-size: 66px !important
	}
}

@media only screen and (max-width: 1399px) {
	.fnt_14 {
		font-size: 12px !important
	}

	.fnt_16 {
		font-size: 14px !important
	}

	.fnt_20 {
		font-size: 16px !important
	}

	.fnt_24 {
		font-size: 20px !important
	}

	.fnt_30 {
		font-size: 26px !important
	}

	.fnt_32 {
		font-size: 28px !important
	}

	.fnt_36 {
		font-size: 30px !important
	}

	.fnt_39 {
		font-size: 34px !important
	}

	.fnt_48 {
		font-size: 40px !important
	}

	.fnt_60 {
		font-size: 46px !important
	}

	.fnt_72 {
		font-size: 56px !important
	}
}

@media only screen and (max-width: 1279px) {
	.fnt_18 {
		font-size: 16px !important
	}

	.fnt_24 {
		font-size: 18px !important
	}

	.fnt_30 {
		font-size: 24px !important
	}

	.fnt_32 {
		font-size: 26px !important
	}

	.fnt_36 {
		font-size: 28px !important
	}

	.fnt_39 {
		font-size: 32px !important
	}

	.fnt_48 {
		font-size: 36px !important
	}

	.fnt_60 {
		font-size: 40px !important
	}

	.fnt_72 {
		font-size: 46px !important
	}

}

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

	.fnt_18,
	.fnt_20 {
		font-size: 14px
	}

	.fnt_24 {
		font-size: 16px !important
	}

	.fnt_30 {
		font-size: 20px !important
	}

	.fnt_32 {
		font-size: 22px !important
	}

	.fnt_36 {
		font-size: 24px !important
	}

	.fnt_39 {
		font-size: 26px !important
	}

	.fnt_48 {
		font-size: 28px !important
	}

	.fnt_60 {
		font-size: 30px !important
	}

	.fnt_72 {
		font-size: 36px !important
	}
}

@media only screen and (max-width: 767px) {
	.fnt_24 {
		font-size: 14px !important
	}

	.fnt_30 {
		font-size: 16px !important
	}

	.fnt_32,
	.fnt_36 {
		font-size: 18px !important
	}

	.fnt_39 {
		font-size: 20px !important
	}

	.fnt_48 {
		font-size: 22px !important
	}

	.fnt_60 {
		font-size: 24px !important
	}

	.fnt_72 {
		font-size: 30px !important
	}
}

.joker-solution-show .product_main_overview_cont .bounceIn {
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn;
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
}

.joker-solution-show .product_main_overview_cont .animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.joker-solution-show .product_main_overview_cont>pre {
	max-width: 1184px;
	margin-top: 50px;
	text-align: center;
	white-space: pre-wrap !important
}

.joker-solution-show .product_main_overview_cont .overview {
	margin: 0 auto;
	color: #000;
	line-height: 1.8;
	font-family: Arial, Helvetica, Tahoma, Verdana, Sans-Serif;
	font-size: 16px
}

.joker-solution-show .product_main_overview_cont .zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
}

.download_btn {
	color: #fff;
	width: 190px;
	height: 40px;
	font-family: 'PingFang SC', 'Microsoft YaHei', Helvetica, sans-serif;
	background: #003085;
	text-align: center
}

.download_btn:hover {
	color: #f1f1f1
}

.modal-footer {
	text-align: center !important
}

.modal-open {
	padding-right: 0 !important
}

/*index sidebar*/
.my-swiper-title {
	font-size: 54px;
	font-weight: 700;
	color: #333;
	line-height: 64px;
	letter-spacing: 2px;
	margin-top: 0;
	margin-bottom: 0
}

.my-swiper-sub-title {
	font-size: 18px;
	margin-top: 20px;
	max-width: 530px;
	font-weight: 400;
	color: #666;
	line-height: 24px;
	margin-bottom: 87px
}

.btns-flex {
	display: flex;
	gap: 12px
}

.my-swiper-btn {
	cursor: pointer;
	text-align: center;
	line-height: 44px;
	border-radius: 4px;
	margin-right: 12px
}

.my-swiper-btn-link {
	color: #fff;
	padding-left: 25px;
	padding-right: 20px;
	position: relative;
	overflow: hidden;
	border: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 20px;
	font-weight: 400
}

.left-btn {
	background: #0069ea;
	height: 56px
}

.left-btn img {
	width: 26px;
	height: 26px;
	margin-left: 20px
}

.right-btn {
	height: 56px;
	background: #fff;
	color: #0069ea
}

.right-btn img {
	width: 34px;
	height: 34px;
	margin-left: 10px
}

@media screen and (min-width: 768px) and (max-width: 992px) {
	.my-swiper-title {
		font-size: 27px;
		line-height: 32px;
	}

	.my-swiper-sub-title {
		font-size: 9px;
		margin-top: 10px;
		max-width: 265px;
		line-height: 12px;
		margin-bottom: 40px
	}

	.btns-flex {
		display: flex;
		gap: 6px
	}

	.my-swiper-btn {
		line-height: 22px;
		border-radius: 2px;
		margin-right: 6px
	}

	.my-swiper-btn-link {
		padding-left: 12px;
		padding-right: 10px;
		font-size: 10px
	}

	.left-btn {
		height: 28px
	}

	.my-swiper-btn .left-btn img {
		width: 13px;
		height: 13px;
		margin-left: 5px
	}

	.right-btn {
		height: 28px
	}

	.my-swiper-btn .right-btn img {
		width: 17px;
		height: 17px;
		margin-left: 5px
	}

}

@media screen and (min-width: 992px) and (max-width: 1200px) {
	.my-swiper-title {
		font-size: 32px;
		line-height: 36px
	}

	.my-swiper-sub-title {
		font-size: 12px;
		margin-top: 14px;
		max-width: 300px;
		line-height: 14px;
		margin-bottom: 50px
	}

	.btns-flex {
		display: flex;
		gap: 8px
	}

	.my-swiper-btn {
		line-height: 28px;
		border-radius: 4px;
		margin-right: 10px
	}

	.my-swiper-btn-link {
		padding-left: 14px;
		padding-right: 16px;
		font-size: 14px
	}

	.left-btn {
		height: 32px
	}

	.my-swiper-btn .left-btn img {
		width: 16px;
		height: 16px;
		margin-left: 8px
	}

	.right-btn {
		height: 32px
	}

	.my-swiper-btn .right-btn img {
		width: 20px;
		height: 20px;
		margin-left: 8px
	}
}

.right-fixed {
	position: fixed;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	background-color: transparent;
	/* border-radius: 5px 0 0 5px; */
	/* box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2); */
	z-index: 1000;
}

.right-fixed .item {
	display: flex;
	align-items: center;
	justify-content: end;
	padding: 10px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	color: #707070;
	background-color: #fff;
	box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
	margin-left: auto;
	width: 68px;
}

.right-fixed .item:first-child {
	border-radius: 5px 0 0 0 ;
}

.right-fixed .item:last-child {
	border-radius: 0 0 0 5px;
}

.right-fixed .item:hover {
	width: auto;
}

.right-fixed .item-name {
	text-align: center;
	font-size: 12px;
}

.right-fixed .item-name img {
	width: 24px;
	height: 24px;
	text-align: center;
	display: inline-block;
}

.right-fixed .item .item-value {
	display: none;
	margin-left: 21px;
}

.right-fixed .item .item-value img {
  width: 14px;
  vertical-align: middle;
}

.right-fixed .item:hover .item-value {
	display: inline-block;
}

.right-fixed .wechat {
	position: relative;
}

.right-fixed .wechat-qrcode {
	position: absolute;
	left: -120px;
	top: -20px;
	width: 120px;
	height: 120px;
	display: none;
}

.right-fixed .wechat:hover .wechat-qrcode {
	display: block;
}

.right-fixed .back-to-top{
  display: none;
}

/* .right-fixed .back-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: none;
	cursor: pointer;
}
.right-fixed .back-to-top img {
	width: 40px;
	height: 40px;
} */