/* 多级导航
=================================*/
*{
    transition: .6s;
}
a:hover{
    text-decoration: none;
}
#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu #menu-button {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#cssmenu:after,
#cssmenu > ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
#cssmenu #menu-button {
  display: none;
}
#cssmenu {
  width: auto;
  display: flex;
  justify-content: center;
  line-height: 1;
  background: #ffffff;
}
#cssmenu > ul > li {
  float: left;
}
#cssmenu.align-center > ul {
  font-size: 0;
  text-align: center;
}
#cssmenu.align-center > ul > li {
  display: inline-block;
  float: none;
}
#cssmenu.align-center ul ul {
  text-align: left;
}
#cssmenu.align-right > ul > li {
  float: right;
}
#cssmenu.align-right ul ul {
  text-align: right;
}
#cssmenu > ul > li > a {
  padding: 20px 15px 20px 15px;
  text-decoration: none;
  text-transform: uppercase;
  color: #000000;
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -ms-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}
#cssmenu > ul > li:hover > a,
#cssmenu > ul > li.active > a {
  color: #009ae1;
}
#cssmenu > ul > li.has-sub:hover > a::after {
  border-color: #009ae1;
}
#cssmenu ul ul {
  position: absolute;
  left: -9999px;
}
#cssmenu li:hover > ul {
  left: auto;
}
#cssmenu.align-right li:hover > ul {
  right: 0;
}
#cssmenu ul ul ul {
  margin-left: 100%;
  top: 0;
}
#cssmenu.align-right ul ul ul {
  margin-left: 0;
  margin-right: 100%;
}
#cssmenu ul ul li {
  height: 0;
  -webkit-transition: height .2s ease;
  -moz-transition: height .2s ease;
  -ms-transition: height .2s ease;
  -o-transition: height .2s ease;
  transition: height .2s ease;
}
#cssmenu ul li:hover > ul > li {
  height: 32px;
}
#cssmenu ul ul li a {
  padding: 10px 20px;
  width: 270px;
  background: #333333;
  text-decoration: none;
  color: #dddddd;
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -ms-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}
#cssmenu ul ul li:hover > a,
#cssmenu ul ul li a:hover {
  color: #ffffff;
}
#cssmenu ul ul li.has-sub > a::after {
  position: absolute;
  top: 13px;
  right: 10px;
  width: 4px;
  height: 4px;
  border-bottom: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  content: "";
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: border-color 0.2s ease;
  -moz-transition: border-color 0.2s ease;
  -ms-transition: border-color 0.2s ease;
  -o-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
#cssmenu.align-right ul ul li.has-sub > a::after {
  right: auto;
  left: 10px;
  border-bottom: 0;
  border-right: 0;
  border-top: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
}
#cssmenu ul ul li.has-sub:hover > a::after {
  border-color: #ffffff;
}
@media all and (max-width: 768px), 
only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), 
only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), 
only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), 
only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), 
only screen and (min-resolution: 192dpi) and (max-width: 1024px), 
only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
  #cssmenu {
    width: 100%;
  }
  #cssmenu ul {
    width: 100%;
    display: none;
  }
  #cssmenu.align-center > ul,
  #cssmenu.align-right ul ul {
    text-align: left;
  }
  #cssmenu ul li,
  #cssmenu ul ul li,
  #cssmenu ul li:hover > ul > li {
    width: 100%;
    height: auto;
    border-top: 1px solid rgba(120, 120, 120, 0.15);
  }
  #cssmenu ul li a,
  #cssmenu ul ul li a {
    width: 100%;
  }
  #cssmenu > ul > li,
  #cssmenu.align-center > ul > li,
  #cssmenu.align-right > ul > li {
    float: none;
    display: block;
  }
  #cssmenu ul ul li a {
    padding: 20px 20px 20px 30px;
    font-size: 12px;
    color: #000000;
    background: none;
  }
  #cssmenu ul ul li:hover > a,
  #cssmenu ul ul li a:hover {
    color: #000000;
  }
  #cssmenu ul ul ul li a {
    padding-left: 40px;
  }
  #cssmenu ul ul,
  #cssmenu ul ul ul {
    position: relative;
    left: 0;
    right: auto;
    width: 100%;
    margin: 0;
  }
  #cssmenu > ul > li.has-sub > a::after,
  #cssmenu ul ul li.has-sub > a::after {
    display: none;
  }
  #menu-line {
    display: none;
  }
  #cssmenu #menu-button {
    display: block;
    padding: 20px;
    color: #000000;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
  }
  #cssmenu #menu-button::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    display: block;
    width: 15px;
    height: 2px;
    background: #000000;
  }
  #cssmenu #menu-button::before {
    content: '';
    position: absolute;
    top: 25px;
    right: 20px;
    display: block;
    width: 15px;
    height: 3px;
    border-top: 2px solid #000000;
    border-bottom: 2px solid #000000;
  }
  #cssmenu .submenu-button {
    position: absolute;
    z-index: 999;
    right: 0;
    top: 0;
    display: block;
    border-left: 1px solid rgba(120, 120, 120, 0.15);
    height: 52px;
    width: 52px;
    cursor: pointer;
  }
  #cssmenu .submenu-button::after {
    content: '';
    position: absolute;
    top: 21px;
    left: 26px;
    display: block;
    width: 1px;
    height: 11px;
    background: #000000;
    z-index: 999;
  }
  #cssmenu .submenu-button::before {
    content: '';
    position: absolute;
    left: 21px;
    top: 26px;
    display: block;
    width: 11px;
    height: 1px;
    background: #000000;
    z-index: 999;
  }
  #cssmenu .submenu-button.submenu-opened:after {
    display: none;
  }
}
/* 多级导航
=================================*/

.logo img {
    max-height: 45px;
}
.contactus {
  display: inline-block;
  min-height: 20px;
  font-size: 1em;
}
.contactus::after {
  /* content: "|"; */
  display: inline-block;
  margin-left: 0.4em;
  margin-right: 0.4em;
  color: #dbd9dd;
}
.util-icon img {
  height: 22px;
  width: 22px;
  display: inline-block;
  vertical-align: middle;
}
.util-icon div img {
  height: auto;
  margin: 5px;
}
.util-icon {
  display: inline-block;
  padding: 4px;
  white-space: normal;
}
.ft-color {
    color: #016ba2;
}
.container {
    max-width: 1200px;
}
.banner {
    min-height: 500px;
    background-image: url("../images/banner.jpg");
}
.productbanner {
    min-height: 500px;
    background-image: url("../images/products_products-services_banner.jpg");
    
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.ft-customer-bg {
    background-image: url("../images/trusted-leader-bg-2000x800.jpg");
}
.card .ft-image {
  display: -ms-flexbox;
  display: flex;
  align-items:center;
  justify-content:center;
  background-color: #fff;
  background-clip: border-box;
  height:200px;
}
.ft-image img{
    width:auto;
    max-width:100%;
    height:auto;
    max-height:100%;
}
.ft-productdetailimg {
    display: -ms-flexbox;
    display: flex;
    align-items:center;
    justify-content:center;
    background-color: #fff;
    background-clip: border-box;
}
.ft-productdetailimg a img{
    width:auto;
    max-width:100%;
    height:auto;
    max-height:100%;
}






.r-4 {
    border-bottom: 1px solid #d0d0d0;
    font-family: "微软雅黑";
    font-size: 16px;
    height: auto;
    line-height: 28px;
    margin: 0 auto;
    width: 95%;
}
.r-4 span {
    background: #b2e5ff none repeat scroll 0 0;
    border-radius: 6px;
    display: block;
    float: left;
    height: 84px;
    margin-right: 24px;
    position: relative;
    top: 24px;
    width: 68px;
}
.r-4 span em {
    border-bottom: 2px solid #fff;
    border-radius: 6px;
    color: #0098e5;
    display: inline-block;
    font: bold 38px/60px Terminal;
    height: 58px;
    position: relative;
    text-align: center;
    width: 68px;
}
.r-4 span i {
    color: #0098e5;
    display: inline-block;
    font: 13px/26px Terminal;
    height: 24px;
    text-align: center;
    width: 68px;
}
.r-4 dl {
    display: inline-block;
    float: left;
    height: 134px;
    width: 782px;
}
.r-4 dl dt, .r-4 dl dt a {
    display: inline-block;
    font: 20px/75px "微软雅黑";
    height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}
.r-4 dl dd, .r-4 dl dd a {
    color: #666666;
    cursor: pointer;
    display: inline-block;
    font: 16px/20px "微软雅黑";
    height: 74px;
    overflow: hidden;
    width: 100%;
}

/* 20210828 野草修改
=================================*/
.sub-nav {
	box-shadow: 0 0 16px 0 rgb(0 0 0 / 10%);
}
@media (min-width: 768px) {
.sub-nav .nav-link {
	padding: 1rem 1rem;
}
}
.line-bottom {
    content: "";
    display: inline-block;
    height: 1px;
    width: 30px;
    background: #dc1010;
    border-radius: 6px;
    vertical-align: middle;
    margin-top: -8px;
}
.container-fluid.slideshow {
    padding-right:0;
    padding-left:0;
}
.slideshow .carousel-caption {
    bottom: 25%;
}

a.logo-img {
	color:#0078BF;
}
.qcdz {
    position: relative;
    padding: 6em 0 3em;
    background-color: #375ee3;
    background-image: url(../images/splash.svg),linear-gradient(145deg, #375ee3 0%, #375ee3 80%);
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
}
.qcdz h1{
	font-weight:bold;
}
.qcdz h2 {
    font-size:16px;
	font-weight:bold;
}
a.artItem {
	color: #d79a09;
	display: block;
	padding:16px;
    background:rgba(12,52,96,0.4);
	border-radius:8px;
	box-shadow: 0 5px 15px rgb(0,0,0,.08);
	cursor: pointer;
}
a.artItem:hover {
    background:rgba(12,52,96,0.7);
	transition: background .5s;
	text-decoration:none;
	color: #fff;
}
.cc-desc {
	text-align:left;
}

#cssmenu li:hover > ul {
    z-index: 999;
}
.sub-nav .nav-link {
    color: #0078BF;
	font-weight:bold;
}
.sub-nav .nav-link:focus, .nav-link:hover {
    background:#EDEDED;
}
.qcdzpage h3.pt-4 {
	color: #0078BF;
	font-weight:bold;
}


.qcdzbody h2{
	color:#0b485a;
}
.qcdzbody .navbar-brand img {
	max-width:110px;
}
.top-banner {
	text-align:center;
}
.top-banner img {
	width:100%;
}


.mr-auto-left {
    margin-left: auto!important;
}
/* 优势区域 */
.advantage {
    background: #032D41 url(../images/advantage-bg.jpg) no-repeat scroll center 0;
	background-size:cover;
	padding-top:40px;
	padding-bottom:20px;
}

.advantage .card-img-yc {
	width:60px;
}
.advantage .card-title {
	margin-bottom:0;
	margin-top:10px;
}
.advantage .card-text {
	font-size:14px;
	margin-top:6px;
}
/* 车图区域 */
.qcdz-car {
	padding-top:60px;
	padding-bottom:40px;
}
.qcdz-car h2{
	font-size:22px;
	color:#0b485a;
	text-align:center;
}
.qcdz-car-main {
	position:relative;
	width:1170px;
}
.qcdz-car-main img {
	width:1170px;
}
.qcdz-car .botton-left {
    position: absolute;
    top: 140px;
    left: 0;
}
.qcdz-car .botton-right {
    position: absolute;
    top: 140px;
    right: 0;
}
.qcdz-car .qcdz-link {
	background: url(../images/botton01.png) no-repeat scroll center 0;
	display:block;
	width:168px;
	height:40px;
	line-height:40px;
	color:#fff;
	padding-right:40px;
	text-align:center;
	margin-bottom:24px;
	font-size:22px;
}
.qcdz-car .qcdz-link:hover {
	background: url(../images/botton02.png) no-repeat scroll center 0;
	text-decoration:none;
}
/* 客户区域 */
.qcdz-client .client-title-img {
	max-width:100%;
}
.qcdz-client .qcdz-client-logo {
	padding-top:40px;
	padding-bottom:30px;
}
.qcdz-client .client-img {
	width:100%;
	margin-bottom:16px;
}
/* 紧跟企业需求区域 */
.qcdz-scenari {
	padding-bottom:30px;
}
.qcdz-scenari h2 {
	margin-bottom:40px;
}
.qcdz-scenari .qcdz-scenari-img {
	width:100%;
}
.qcdz-scenari-main {
	background: url(../images/scenari-bg.jpg) no-repeat scroll center 0;
	background-size:cover;
	padding-top:100px;
	padding-bottom:100px;
}
.qcdz-scenari-caption {
	display:block;
	max-width:800px;
	margin-left:auto;
	margin-right:auto;
	background:rgb(2 41 64 / 77%);
	color:#fff;
	padding:60px 100px;
}
.qcdz-scenari-caption:hover {
	background:rgb(8 9 9 / 77%);
	color:#fff;
	text-decoration:none;
}
.qcdz-scenari-caption h3 {
	font-size:36px;
}
.qcdz-scenari-caption .text1 {
	font-size:24px;
}
/* 页脚区域 */
.qcdz-footer {
    position: relative;
    padding: 40px 0;
    color: #fff;
    text-align: center;
	background: url(../images/footer-bg.jpg) no-repeat scroll center 0;
	background-size:cover;
}
.qcdz-footer-logo {
	width:100px;
}
.qcdz-footer h3 {
	margin-top:16px;
}
.qcdz-footer .text2 {
	font-size:26px;
}
.phone-botton img {
    border-radius: 6px;
    box-shadow: rgb(255 255 255 / 8%) 0px 0.0625rem 0.375rem 0px;
	width:400px;
	max-width:100%;
}
.yc-phone {
	padding:0 20px;
}
.phone-fixed {
	box-shadow: rgb(255 255 255 / 8%) 0px 0.0625rem 0.375rem 0px;
    bottom: 50%;
    height: auto;
    position: fixed;
    left: 10px;
    width: 240px;
}
.phone-fixed a {
    display:block;
}
.phone-fixed img {
    width: 240px;
}

/* 小屏修正 */
@media (max-width: 768px) {
.qcdz-scenari-main {
	padding-top:30px;
	padding-bottom:30px;
}
.qcdz-scenari-caption {
	padding:60px 20px;
}
}