/*display*/
.display_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.display_flex > * {
  display: block;
}
.display_inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
}
.display_inline-flex > * {
  display: block;
}
/*伸缩流方向*/
.flex-direction_column {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
/*主轴对齐*/
.justify-content_flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.justify-content_flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.justify-content_flex-justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
/*侧轴对齐*/
.align-items_flex-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.align-items_flex-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.align-items_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.align-items_baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
/*伸缩性*/
.flex_auto {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  -webkit-flex: auto;
  flex: auto;
}
.flex_1 {
  width: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
/*显示顺序*/
.order_2 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
.order_3 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 3;
  -webkit-order: 3;
  order: 3;
}
.text-ellipsis-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.line-colam-2 {
  -webkit-line-clamp: 2;
  -o-line-clamp: 2;
  -ms-line-clamp: 2;
  -moz-line-clamp: 2;
  line-clamp: 2;
}
.line-colam-3 {
  -webkit-line-clamp: 3;
  -o-line-clamp: 3;
  -ms-line-clamp: 3;
  -moz-line-clamp: 3;
  line-clamp: 3;
}
.line-colam-5 {
  -webkit-line-clamp: 5;
  -o-line-clamp: 5;
  -ms-line-clamp: 5;
  -moz-line-clamp: 5;
  line-clamp: 5;
}
.line-colam-4 {
  -webkit-line-clamp: 4;
  -o-line-clamp: 4;
  -ms-line-clamp: 4;
  -moz-line-clamp: 4;
  line-clamp: 4;
}
.line-colam-6 {
  -webkit-line-clamp: 6;
  -o-line-clamp: 6;
  -ms-line-clamp: 6;
  -moz-line-clamp: 6;
  line-clamp: 6;
}
.text-ellipsis {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -o-box-orient: vertical;
  -ms-box-orient: vertical;
  -moz-box-orient: vertical;
}
.flex-shrink {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
}
/* css 初始化 */
html,
body,
ul,
li,
ol,
dl,
dd,
dt,
p,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
legend,
img,
div {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: break-word;
}
div,
ul {
  scrollbar-width: none;
}
div::-webkit-scrollbar,
ul::-webkit-scrollbar {
  display: none;
}
fieldset,
img,
input,
button {
  border: 0;
  padding: 0;
  margin: 0;
  outline-style: none;
  outline: 0 !important;
}
button {
  outline: 0!important;
}
/*去掉input等聚焦时的蓝色边框*/
a {
  text-decoration: none;
  color: #333;
}
ul,
ol {
  list-style: none;
}
input {
  padding-top: 0;
  padding-bottom: 0;
  font-family: '微软雅黑', "Microsoft YaHei";
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}
select,
input {
  vertical-align: middle;
}
select,
input,
textarea {
  margin: 0;
}
select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
textarea {
  resize: none;
}
/*防止拖动*/
img {
  border: 0;
  vertical-align: middle;
}
/*  去掉图片低测默认的3像素空白缝隙，或者用display：block也可以*/
table {
  border-collapse: collapse;
}
html,
body {
  font-family: '微软雅黑', "Microsoft YaHei";
  font-size: 16px;
  color: #666;
  background: #fff;
  word-break: break-word;
}
.clearfix:before,
.clearfix:after {
  /*清楚浮动*/
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  *zoom: 1;
  /*IE/7/6*/
}
a {
  color: #666;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-decoration: none;
  font-weight: bold;
  font-size: 100%;
}
.bg-image-del {
  background-image: url('../images/solution-md-bg.jpg');
}
/*设置h标签的大小，设置跟父亲一样大的字体font-size:100%;*/
s,
i,
em {
  font-style: normal;
  text-decoration: none;
}
.bc-white {
  background: #fff;
}
.mr-18 {
  margin-right: 18px;
}
.section-max-width-1520 {
  max-width: 1560px;
  padding: 0 30px;
  margin: 0 auto;
  overflow: hidden;
}
.section-width-1520 {
  max-width: 1544px;
  padding: 0 12px;
  margin: 0 auto;
  overflow: hidden;
}
.section-width-1360 {
  max-width: 1384px;
  padding: 0 12px;
  margin: 0 auto;
  overflow: hidden;
}
.section-width-1200 {
  max-width: 1384px;
  padding: 0 12px;
  margin: 0 auto;
  overflow: hidden;
}
.section-width-1420 {
  max-width: 1444px;
  padding: 0 12px;
  margin: 0 auto;
}
.section-width-1200 {
  max-width: 1224px;
  padding: 0 12px;
  margin: 0 auto;
  overflow: hidden;
}
.section-width-1090 {
  max-width: 1114px;
  padding: 0 12px;
  margin: 0 auto;
  overflow: hidden;
}
.section-width-860 {
  max-width: 860px;
  padding: 0 12px;
  margin: 0 auto;
  overflow: hidden;
}
.text-center {
  text-align: center;
}
.main-bg-color {
  background: #004c97;
}
.main-color {
  color: #004c97 !important;
}
.main-color a {
  color: #004c97 !important;
}
.bg-F5F5F5 {
  background: #F5F5F5;
}
.bg-f6f6f6 {
  background: #f6f6f6;
}
.btn {
  border: 0;
  border-radius: 0;
}
.btn-main {
  background: #004C97;
  color: #fff !important;
  padding: 0!important;
}
.btn-main a {
  color: #fff;
}
.btn-main:hover {
  background: #00428d;
  color: #fff;
}
.btn-main:hover a {
  color: #fff;
}
.btn-main:active {
  background: #003883;
  color: #fff;
}
.btn-main:active a {
  color: #fff;
}
.mt-25 {
  margin-top: 25px;
}
.mt-27 {
  margin-top: 27px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-150 {
  margin-top: 150px;
}
.pt-40 {
  padding-top: 40px;
}
.pt-50 {
  padding-top: 50px;
}
.pt-55 {
  padding-top: 55px;
}
.pt-60 {
  padding-top: 60px;
}
.pb-60 {
  padding-bottom: 60px;
}
.ptb-60 {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .header-box {
    line-height: 35px;
  }
  .header-box .right {
    float: left;
    line-height: 54px;
  }
  .header-box .two {
    margin-right: 52px;
  }
  .icon-right {
    color: #fff;
    font-size: 24px!important;
    transition: all 0.2s ease-in;
    line-height: 66px!important;
  }
  .banner .swiper-container {
    overflow: hidden;
  }
  .banner .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  .banner img {
    height: 200px;
  }
  .banner .btn {
    width: 130px;
    height: 45px;
    font-size: 18px;
  }
  .page-banner img {
    height: 500px;
  }
  .page-banner .banner-info {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
  }
  .page-banner .banner-info .info {
    width: 100%;
  }
  .page-banner .banner-info h5 {
    width: 100%;
    font-size: 18px;
  }
  .page-banner .banner-info span {
    width: 100%;
  }
  .page-banner .banner-info .btn {
    width: 130px;
    height: 45px;
    margin-top: 4%;
  }
  .page-banner .product-banner-info h5 {
    font-size: 18px;
  }
  .page-banner .product-banner-info span {
    font-size: 16px;
  }
  .page-banner .product-banner-info .btn {
    display: block;
    width: 100px;
    height: 38px;
    margin: 10px auto 0;
  }
  .right-code {
    padding-bottom: 10px;
  }
  .right-code .code {
    padding: 10px 0;
  }
  .right-code span {
    display: block;
    padding: 10px 0;
    text-align: center;
  }
  .swiper-button-white {
    width: 20px;
    height: 20px;
    z-index: 39;
  }
  .suspension li .explain {
    display: none;
  }
  .suspension li.active .icon {
    background-color: #fff;
    border: 1px solid #e9e9e9;
  }
  .suspension li.active .explain {
    right: 60px;
    opacity: 1;
    display: block;
    z-index: 100;
  }
  .suspension li:nth-child(1).active i {
    background-position: 0 0!important;
  }
  .suspension li:nth-child(2).active i {
    background-position: -50px 0 !important;
  }
  .suspension li:nth-child(3).active i {
    background-position: -150px 0 !important;
  }
  .suspension li:nth-child(4).active i {
    background-position: -200px 0 !important;
  }
}
@media screen and (max-width: 992px) and (min-width: 768px) {
  .nav-bar .nav-list li {
    width: 100px;
    padding: 0;
  }
  .nav-bar .input-box {
    width: 160px;
  }
  .page-banner .banner-info {
    padding-top: 2%!important;
  }
  .footer-box .logo {
    width: 100%;
    margin: 0;
  }
  .footer-box .logo::after {
    display: none;
  }
  .footer-box .main-content {
    width: 100%;
  }
  .footer-box .main-content ul {
    display: block;
  }
  .footer-box .main-content ul li {
    display: block;
    width: 100%;
    float: none;
    max-height: 52px;
    overflow: hidden;
    transition: all 0.5s;
    padding: 0;
    cursor: pointer;
  }
  .footer-box .main-content ul li:last-child {
    width: 100%;
    display: block;
    padding: 0;
  }
  .footer-box .main-content ul li h5 {
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #535353;
    padding: 5px 0;
    color: #ddd !important;
  }
  .footer-box .main-content ul li h5 i {
    font-family: "微软雅黑";
    float: right;
    color: #ccc;
    font-size: 15px;
    vertical-align: middle;
  }
  .footer-box .main-content ul li span {
    padding: 5px 0;
  }
  .footer-box .main-content ul li span a {
    display: block;
  }
  .footer-box .main-content ul li.active {
    max-height: 1000px;
  }
  .footer-box .main-content ul li.active h5 {
    color: #fff !important;
  }
  .footer-box .main-content ul li.active h5 i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    color: #fff;
  }
}
@media screen and (min-width: 992px) {
  .nav-bar .nav-list li {
    width: 142px;
    padding: 0 5px;
  }
  .nav-bar .input-box {
    width: 220px;
  }
}
@media screen and (min-width: 768px) {
  .header-box {
    line-height: 54px;
  }
  .header-box .right {
    float: right;
  }
  .swiper-button-white {
    width: 41px;
    height: 41px;
    z-index: 39;
  }
  .display_flex,
  .right-code .main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .flex_1,
  .right-code .main .code {
    width: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
  }
  .banner img {
    min-height: 262px;
  }
  .banner .swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
  }
  .banner .btn {
    width: 140px;
    height: 48px;
    font-size: 18px;
  }
  .page-banner img {
    min-width: 1200px;
    min-height: 262px;
  }
  .page-banner .banner-info {
    padding-top: 6%;
	text-align:center;
  }
  .page-banner .banner-info h5 {
    font-size: 28px;
  }
  .page-banner .banner-info span {
    font-size: 25px;
    margin-top: 20px;
  }
  .page-banner .banner-info .btn {
    width: 140px;
    height: 48px;
    font-size: 18px;
    margin-top: 4%;float:center;
  }
  .page-banner .product-banner-info h5 {
    font-size: 28px;
  }
  .page-banner .product-banner-info span {
    font-size: 18px;
    margin-top: 30px;
  }
  .page-banner .product-banner-info .btn {
    display: block;
    width: 140px;
    height: 48px;
    font-size: 18px;
    margin: 50px auto 0;
  }
  .right-code {
    line-height: 35px;
  }
  .right-code .main {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .icon-right {
    color: #fff;
    font-size: 24px!important;
    transition: all 0.2s ease-in;
    line-height: 66px!important;
  }
  .bar-content {
    width: 100%;
    position: absolute;
    overflow: hidden;
    background: #c8c8c8;
    top: 66px;
    left: 0;
    z-index: 100;
    max-height: 0;
    transition: max-height 0.3s ease-out;
  }
  .bar-content.nav-active {
    max-height: 5000px;
    transition: max-height 0.3s ease-in;
  }
  .bar-content li {
    width: 100%;
    line-height: 50px;
    color: #2d2d2d;
    position: relative;
  }
  .bar-content li .header-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #979797;
    width: 100%;
    height: 100%;
  }
  .bar-content li .header-title span {
    display: block;
    padding: 0 12px;
  }
  .bar-content li .subtopic {
    max-height: 0;
    transition: max-height 0.3s ease-out;
    overflow: hidden;
  }
  .bar-content li .subtopic.subtopic-active {
    max-height: 500px;
    transition: max-height 0.3s ease-in;
  }
  .bar-content li .subtopic-list {
    padding: 0;
  }
  .bar-content li .subtopic-list li {
    background: #d4d4d4;
    border-bottom: 1px solid #979797;
    padding-left: 18px;
    opacity: 0.75;
  }
  .bar-content li .subtopic-list li a {
    position: relative;
    padding-left: 24px;
  }
  .bar-content li .subtopic-list li a img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  .bar-content li:last-child {
    border-bottom: 0;
  }
  .bar-content li a {
    color: #2d2d2d;
  }
  .bar-content li i {
    margin-right: 10px;
  }
  .bar-content .input-box {
    width: 200px;
    height: 66px;
    margin-left: 20px;
    line-height: 66px;
  }
  .bar-content .input-box > div {
    border: 1px solid #2d2d2d !important;
  }
  .bar-content .input-box input {
    width: 100%;
    height: 30px;
    color: #2d2d2d !important;
  }
  .bar-content .input-box input::-webkit-input-placeholder {
    color: #2d2d2d !important;
  }
  .bar-content .input-box i {
    color: #2d2d2d !important;
  }
  footer .footer-box {
    padding-bottom: 40px;
  }
  footer .logo {
    float: left;
    padding-top: 40px;
  }
  footer .main-content ul li {
    width: 100%;
    float: none;
    max-height: 52px;
    overflow: hidden;
    transition: all 0.5s;
    cursor: pointer;
  }
  footer .main-content ul li h5 {
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #535353;
    padding: 5px 0;
    color: #ddd !important;
  }
  footer .main-content ul li h5 i {
    font-family: "微软雅黑";
    float: right;
    color: #ccc;
    font-size: 15px;
    vertical-align: middle;
  }
  footer .main-content ul li span {
    padding: 5px 0;
  }
  footer .main-content ul li span a {
    display: block;
  }
  footer .main-content ul li.active {
    max-height: 1000px;
  }
  footer .main-content ul li.active h5 {
    color: #fff !important;
  }
  footer .main-content ul li.active h5 i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    color: #fff;
  }
  footer .info {
    padding-top: 40px;
  }
  footer .qr-code {
    padding-top: 80px;
  }
  .solution-intro ul li {
    margin-top: 30px;
  }
  .solution-intro ul li:first-child {
    margin-top: 0;
  }
}
@media screen and (min-width: 769px) {
  .nav-bar {
    height: 66px;
    line-height: 66px;
    position: relative;
  }
  .nav-bar .nav-list {
    flex: 1;
    float: left;
    text-align: center;
    display: flex;
    justify-content: center;
  }
  .nav-bar .nav-list > li {
    float: left;
    cursor: pointer;
    color: #fff;
  }
  .nav-bar .nav-list > li span,
  .nav-bar .nav-list > li a {
    font-size: 20px;
    transition: all 0.2s;
    display: block;
  }
  .nav-bar .nav-list > li.active span {
    background: #0c6bc9;
  }
  .nav-bar .nav-list > li:hover span {
    background: #0c6bc9;
  }
  .nav-bar .nav-list > li:hover .subtopic {
    max-height: 1000px;
    transition: max-height 0.3s ease-in;
    box-shadow: 0px 1px 5px 1px rgba(204, 204, 223, 0.5);
  }
  .nav-bar .nav-list > li a {
    font-size: 20px;
    color: #fff;
  }
  .nav-bar .nav-list > li .subtopic {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    position: absolute;
    left: 0;
    top: 66px;
    transition: max-height 0.5s ease-out;
    z-index: 100;
  }
  .nav-bar .nav-list > li .subtopic ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    padding: 20px 12px;
  }
  .nav-bar .nav-list > li .subtopic ul li {
    min-width: 16%;
    width: auto!important;
    height: auto;
    float: left;
    text-align: left;
  }
  .nav-bar .nav-list > li .subtopic ul li.active a {
    color: #004C97;
  }
  .nav-bar .nav-list > li .subtopic ul li a {
    font-size: 18px;
    color: #5C5C5C;
    padding-left: 28px;
    position: relative;
  }
  .nav-bar .nav-list > li .subtopic ul li a .icon {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
  }
  .nav-bar .nav-list > li .subtopic ul li:hover a {
    color: #004C97;
  }
  .nav-bar .bar-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
  }
  .nav-bar .input-box {
    height: 100%;
    float: right;
  }
  footer .footer-box {
    padding-bottom: 100px;
  }
  footer .logo {
    float: left;
    padding-top: 150px;
    position: relative;
  }
  footer .logo::after {
    content: "";
    display: block;
    width: 1px;
    height: 100px;
    background: url('../images/footer-bar.png');
    position: absolute;
    right: 0;
    bottom: -50px;
  }
  footer .main-content ul {
    display: flex;
  }
  footer .main-content ul li {
    padding-top: 90px;
  }
  footer .main-content ul li:last-child {
    padding-right: 74px;
    margin-right: 90px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 176px;
    align-content: space-between;
  }
  footer .main-content ul li:last-child::after {
    content: "";
    display: block;
    width: 1px;
    height: 100px;
    background: url('../images/footer-bar.png');
    position: absolute;
    right: 0;
    bottom: 20px;
  }
  footer .info {
    padding-top: 114px;
    position: relative;
    margin-right: 60px;
    padding-right: 80px;
  }
  footer .info::after {
    content: "";
    display: block;
    width: 1px;
    height: 100px;
    background: url('../images/footer-bar.png');
    position: absolute;
    right: 0;
    bottom: 20px;
  }
  footer .qr-code {
    padding-top: 132px;
  }
  .solution-intro ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 0 110px;
  }
  .solution-intro p {
    padding: 0 110px;
  }
  .justify-content-center {
    -webkit-box-pack: center!important;
    -ms-flex-pack: center!important;
    -webkit-justify-content: center!important;
    justify-content: center!important;
  }
  .suspension li:hover .icon {
    background-color: #fff;
    border: 1px solid #e9e9e9;
  }
  .suspension li:hover .explain {
    right: 60px;
    opacity: 1;
    display: block;
    z-index: 100;
  }
  .suspension li:nth-child(1) .icon i {
    background-position: 0 -50px;
  }
  .suspension li:nth-child(1):hover i {
    background-position: 0 0!important;
  }
  .suspension li:nth-child(2) .icon i {
    background-position: -50px -50px;
  }
  .suspension li:nth-child(2):hover i {
    background-position: -50px 0 !important;
  }
  .suspension li:nth-child(3) .icon i {
    background-position: -150px -50px;
  }
  .suspension li:nth-child(3):hover i {
    background-position: -150px 0 !important;
  }
  .suspension li:nth-child(4) .icon i {
    background-position: -200px -50px;
  }
  .suspension li:nth-child(4):hover i {
    background-position: -200px 0 !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .nav-bar {
    height: 66px;
    line-height: 66px;
    position: relative;
  }
  .nav-bar .nav-list {
    float: left;
    text-align: center;
  }
  .nav-bar .nav-list > li {
    float: left;
    cursor: pointer;
    color: #fff;
  }
  .nav-bar .nav-list > li span,
  .nav-bar .nav-list > li a {
    transition: all 0.2s;
    display: block;
  }
  .nav-bar .nav-list > li.active span {
    background: #0c6bc9;
  }
  .nav-bar .nav-list > li:hover span {
    background: #0c6bc9;
  }
  .nav-bar .nav-list > li:hover .subtopic {
    max-height: 1000px;
    transition: max-height 0.3s ease-in;
  }
  .nav-bar .nav-list > li a {
    font-size: 18px;
    color: #fff;
  }
  .nav-bar .nav-list > li .subtopic {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    position: absolute;
    left: 0;
    top: 66px;
    transition: max-height 0.5s ease-out;
    z-index: 100;
  }
  .nav-bar .nav-list > li .subtopic ul {
    padding: 20px 12px 40px;
  }
  .nav-bar .nav-list > li .subtopic ul li {
    width: auto!important;
    height: auto;
    float: left;
    margin-right: 106px;
  }
  .nav-bar .nav-list > li .subtopic ul li.active a {
    color: #004C97;
  }
  .nav-bar .nav-list > li .subtopic ul li a {
    font-size: 18px;
    color: #5C5C5C;
  }
  .nav-bar .nav-list > li .subtopic ul li:hover a {
    color: #004C97;
  }
  .nav-bar .nav-list > li .subtopic ul li i {
    margin-right: 10px;
  }
  .nav-bar .bar-content {
    width: 80%;
  }
  .nav-bar .input-box {
    height: 100%;
    float: right;
  }
  footer .footer-box {
    padding-bottom: 77px;
  }
  footer .logo {
    float: left;
    padding-top: 77px;
    position: relative;
    margin-bottom: 20px;
  }
  footer .logo::after {
    content: "";
    display: block;
    width: 1px;
    height: 100px;
    background: url('../images/footer-bar.png');
    position: absolute;
    right: 0;
    bottom: -50px;
  }
  footer .main-content ul {
    display: flex;
  }
  footer .main-content ul li {
    padding-top: 14px;
  }
  footer .main-content ul li:last-child {
    padding-right: 74px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 176px;
    align-content: space-between;
  }
  footer .main-content ul li:last-child::after {
    content: "";
    display: block;
    width: 1px;
    height: 100px;
    background: none;
    position: absolute;
    right: 0;
    bottom: 20px;
  }
  footer .info {
    padding-top: 32px;
    position: relative;
    margin-right: 60px;
    padding-right: 80px;
  }
  footer .info::after {
    content: "";
    display: block;
    width: 1px;
    height: 100px;
    background: url('../images/footer-bar.png');
    position: absolute;
    right: 0;
    bottom: 20px;
  }
  footer .qr-code {
    padding-top: 55px;
  }
  .solution-intro ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 0 40px;
  }
  .solution-intro p {
    padding: 0 40px;
  }
}
.header-box span {
  display: block;
  font-size: 14px;
  color: #666666;
  float: left;
}
.header-box span.one {
  margin-right: 52px;
}
.header-box .right {
  cursor: pointer;
}
.header-box .right .icon {
  display: inline-block;
  width: 18px;
  height: 54px;
  background-size: 18px 18px;
  margin-right: 6px;
  float: left;
}
.header-box .right .language {
  padding-right: 12px;
  position: relative;
  float: left;
}
.header-box .right .language::before {
  content: "";
  display: block;
  width: 1px;
  height: 21px;
  background: #737373;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.header-box .right .language .language-icon {
  background: url(../images/language-icon.png) no-repeat center center;
}
.header-box .right .login {
  float: left;
}
.header-box .right .login .login-icon {
  background: url(../images/login-icon.png) no-repeat center center;
}
.nav-bar {
  width: 100%;
  height: 66px;
}
.nav-bar .nav-box {
  height: 100%;
}
.nav-bar .web-logo {
  width: 187px;
  height: 100%;
  line-height: 66px;
}
.nav-bar .web-logo img {
  width: 100%;
  vertical-align: middle;
}
.nav-bar .input-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.nav-bar .input-box > div {
  display: block;
  width: 100%;
  height: 30px;
  position: relative;
  border: 1px solid #fff;
  border-radius: 8px;
  line-height: normal!important;
}
.nav-bar .input-box input {
  width: 100%;
  height: 100%;
  color: #fff;
  background: transparent;
  padding: 0 22px 0 10px;
  font-size: 14px;
}
.nav-bar .input-box input::-webkit-input-placeholder {
  color: #ffffff;
}
.nav-bar .input-box i {
  display: inline;
  height: 14px;
  color: #fff;
  font-size: 14px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  transition: all 0.2s;
  cursor: pointer;
}
.nav-bar .input-box i:hover {
  font-size: 16px;
  height: 16px;
}
.banner {
  width: 100%;
}
.banner .swiper-slide {
  width: 100%!important;
  position: relative;
}
.banner .swiper-slide img {
  width: 100%;
  max-height: 650px;
}
.banner .swiper-slide .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.banner .swiper-slide .btn {
  cursor: pointer;
  margin-top: 35px;
}
.banner .swiper-slide .btn.btn-right {
  margin-left: auto;
}
.swiper-pagination .swiper-pagination-bullet {
  background: #e9e9e9;
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #004c97;
}
.swiper-button-next {
  background-image: url('../images/next-icon.png') !important;
  background-size: 100% 100%!important;
}
.swiper-button-prev {
  background-image: url('../images/prev-icon.png') !important;
  background-size: 100% 100%!important;
}
footer {
  width: 100%;
}
footer .footer-box {
  width: 100%;
  background: #282820;
}
footer .footer-box .logo {
  float: left;
  padding-right: 48px;
  margin-right: 58px;
  position: relative;
}
footer .footer-box .logo img {
  width: 150px;
  height: 42px;
}
footer .footer-box .main-content {
  float: left;
}
footer .footer-box .main-content ul {
  padding-top: 10px;
}
footer .footer-box .main-content ul li {
  float: left;
  margin-right: 60px;
}
footer .footer-box .main-content ul li h5 {
  display: block;
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  line-height: 41px;
}
footer .footer-box .main-content ul li span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  line-height: 26px;
  margin-top: 5px;
}
footer .footer-box .main-content ul li span:hover a {
  color: #cccccc;
}
footer .footer-box .main-content ul li span a {
  color: #FFFFFF;
}
footer .footer-box .info {
  float: left;
  padding-right: 50px;
}
footer .footer-box .info span {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  line-height: 26px;
  margin-left: 13px;
}
footer .footer-box .info .iphone {
  margin-top: 27px;
  line-height: 30px;
}
footer .footer-box .info .web {
  line-height: 30px;
  max-width: 240px;
}
footer .footer-box .info .icons {
  margin-top: 24px;
}
footer .footer-box .info .icons li {
  float: left;
  margin-left: 20px;
}
footer .footer-box .info .icons li img {
  width: 30px;
  height: 30px;
}
footer .footer-box .info .icons li:first-child {
  margin-left: 0;
}
footer .footer-box .qr-code {
  float: left;
}
footer .right-code {
  width: 100%;
  min-height: 35px;
  background: #004C97;
}
footer .right-code .main {
  height: 100%;
}
footer .right-code span {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  text-align: center;
}
footer .right-code span a {
  color: #fff;
}
.page-banner {
  position: relative;
  overflow: hidden;
}
.page-banner img {
  width: 100%;
  max-height: 300px;
}
.page-banner .banner-info {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.page-banner .banner-info h5 {
  font-weight: bold;
  line-height: 55px;
  color: #ffffff;
}
.page-banner .banner-info span {
  display: block;
  font-weight: 500;
  color: #ffffff;
}
.page-banner .banner-info .btn {
  border-radius: 0;
  font-size: 18px;
  color: #fff;
}
.page-banner .product-banner-info {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.page-banner .product-banner-info .info {
  width: 100%;
  margin: 0 auto;
}
.page-banner .product-banner-info h5 {
  font-weight: bold;
  color: #ffffff;
  line-height: 55px;
  text-align: center;
}
.page-banner .product-banner-info span {
  display: block;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
}
.page-banner .product-banner-info .btn {
  display: block;
  border: 0;
  border-radius: 0;
  color: #fff;
}
.section-nav-bar {
  width: 100%;
  line-height: 37px;
}
.section-nav-bar span {
  font-size: 14px;
  font-weight: 500;
  color: #999999;
  line-height: 28px;
}
.section-nav-bar span a {
  color: #999999;
}
.section-nav-bar span:hover {
  color: #004c97;
}
.section-nav-bar span:hover a {
  color: #004c97;
}
.section-nav-bar i {
  font-size: 14px;
  color: #999999;
  font-weight: normal;
}
.border-bottom {
  border-bottom: 2px solid #F4F4F4;
}
.border-bottom-e5e5e5 {
  border-bottom: 1px solid #e5e5e5;
}
.floor-nav {
  height: 51px;
  background: #fff;
}
.floor-nav .floor-fixed {
  width: 100%;
  background: #fff;
}
.floor-nav .floor-fixed.floor-active {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.floor-nav ul {
  width: 100%;
  line-height: 48px;
}
.floor-nav ul li {
  float: left;
  font-size: 16px;
  height: 48px;
  font-weight: 500;
  color: #666666;
  margin-right: 30px;
  transition: all 0.1s;
  cursor: pointer;
}
.floor-nav ul li a {
  color: #666666;
  transition: all 0.1s;
}
.floor-nav ul li:hover {
  font-weight: bold;
  color: #333333;
  border-bottom: 3px solid #004C97;
}
.floor-nav ul li:hover a {
  color: #333333;
}
.floor-nav ul li.active {
  font-weight: bold;
  color: #333333;
  border-bottom: 3px solid #004C97;
}
.floor-nav ul li.active a {
  color: #333333;
}
.solution-intro {
  padding-top: 50px;
  padding-bottom: 50px;
}
.solution-intro h5.intro-title {
  margin-bottom: 50px;
}
.solution-intro ul li {
  text-align: center;
}
.solution-intro ul li img {
  display: block;
  margin: 0 auto;
}
.solution-intro ul li span {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  margin-top: 20px;
}
.solution-intro ul.territory {
  justify-content: flex-start !important;
  flex-wrap: wrap;
}
.solution-intro ul.territory li {
  margin-right: 10px;
  margin-top: 20px;
}
.solution-intro p {
  word-break: break-word;
  font-weight: 500;
  color: #666666;
  line-height: 30px;
  margin-top: 48px;
}
.solution-intro11 {
  padding-top: 10px;
  padding-bottom: 20px;
}
.solution-intro11 p {
  word-break: break-word;
  font-weight: 500;
  color: #666666;
  line-height: 30px;
  margin-top: 48px;
}
.pagination-box {
  text-align: center;
  padding: 20px 0 30px;
}
.pagination-box .pagination li {
  padding: 0;
}
.pagination-box .pagination li:nth-last-child(2) a,
.pagination-box .pagination li:first-child a {
  border: 1px solid #d1d1d1;
  border-radius: 2px 2px 1px 2px;
}
.pagination-box .pagination li.active a {
  background: transparent;
  color: #004c97;
}
.pagination-box .pagination li.active a:hover {
  background: transparent;
  color: #004c97;
}
.pagination-box .pagination li a {
  border: 0;
  font-size: 16px;
  color: #999999;
  background: transparent;
}
.pagination-box .pagination li a:hover {
  background: transparent;
  color: #004c97;
}
.pagination-box span {
  color: #999999;
}
.contact-us {
  padding: 50px 0;
  background-image: url('../images/solution-md-bg.jpg');
}
.contact-us .intro-title {
  font-size: 30px;
  text-align: center;
  font-weight: 500;
  color: #000000;
  line-height: 28px;
}
.contact-us span {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #666666;
  line-height: 28px;
  margin-top: 20px;
}
.contact-us .btn {
  display: block;
  width: 130px;
  height: 36px;
  border-radius: 0;
  margin: 30px auto 0;
  color: #ffffff;
  font-size: 16px;
}
.status-400 {
  padding: 100px 0;
  text-align: center;
}
.status-400.success {
  padding: 140px 0;
}
.status-400 img {
  max-width: 100%;
}
.status-400 span {
  display: block;
  margin-top: 70px;
  font-size: 24px;
  font-weight: 500;
  color: #999999;
  line-height: 28px;
}
.status-400 button {
  width: 132px;
  height: 38px;
  background: #004c97;
  border-radius: 500px;
  font-size: 16px;
  font-family: '微软雅黑', "Microsoft YaHei";
  font-weight: 500;
  color: #ffffff;
  margin-top: 24px;
  outline: 0!important;
}
.status-400 button:active {
  border-color: transparent!important;
}
.suspension {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 10000;
}
.suspension li {
  width: 52px;
  height: 52px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 7px;
  cursor: pointer;
}
.suspension li .icon {
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: #004c97;
  border: 1px solid #004c97;
  transition: 0.3s ease-in-out;
}
.suspension li .explain {
  min-width: 126px;
  padding: 0 12px;
  font-size: 14px;
  line-height: 52px;
  background: #fff;
  border: 1px solid #e9e9e9;
  text-align: center;
  color: #333;
  position: absolute;
  top: 0;
  right: 100px;
  transition: all 0.3s;
  opacity: 0;
  z-index: -1;
}
.suspension li i {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url('../images/nav-icons.png');
  background-size: 250px 100px;
}
.suspension li:nth-child(1) .icon i {
  background-position: 0 -50px;
}
.suspension li:nth-child(2) .icon i {
  background-position: -50px -50px;
}
.suspension li:nth-child(3) .icon i {
  background-position: -150px -50px;
}
.suspension li:nth-child(4) .icon i {
  background-position: -200px -50px;
}
.banner-index {
  padding-top: 0!important;
  display: flex;
  align-items: center;
}
.banner-index.banner-content-right {
  justify-content: flex-end;
}
.banner-index.banner-content-right button {
  float: right;
}
.banner-index .banner-content {
  max-width: 600px;
}
.padding-lr-20 {
  padding: 0 20px;
}
.text-white {
  color: #fff !important;
}
