﻿html {
  font-size: 625%;
}
body {
  font-size: 14px;
}
body, html, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, th, td, form, object, iframe, blockquote, pre, a, abbr, address, code, img, fieldset, form, label, figure {
  margin: 0;
  padding: 0;
  letter-spacing: 1px;
}
body, html, input, button, textarea {
  color: #333;
  font-family: "Microsoft YaHei UI", Arial, Helvetica, sans-serif;
  line-height: 1.5
}
article, aside, figcaption, figure, footer, header, main, nav, section {
  display: block;
}
h1 {
  font-size: 20px;
}
h2 {
  font-size: 18px;
}
h3 {
  font-size: 16px;
}
h4, h5 {
  font-size: 14px;
}
img {
  border: none;
  vertical-align: middle;
  max-width: 100%;
}
li {
  list-style: none;
}
i, em {
  font-style: normal;
}
a {
  color: #333;
  text-decoration: none;
}
a:focus {
  outline: none;
}
a:hover {
  color: #ff7f52;
  text-decoration: none;
}
input[type="text"]:focus {
  outline: none;
}
input[type="button"], input[type="reset"], input[type="submit"] {
  cursor: pointer;
}
input[type="reset"]::-moz-focus-inner, input[type="button"]::-moz-focus-inner, input[type="submit"]::-moz-focus-inner, input[type="file"] > input[type="button"]::-moz-focus-inner {
  border: none;
  padding: 0;
}
hr {
  height: 1px;
  border: none;
  border-top: 1px dashed #c1c1c1;
  margin: 15px 0 15px 0;
}
a:active, select, input, textarea {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  outline: 0 !important;
}
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0;
}
/* clear floating */
.clearfix:after, .layout:after, .sys_row:after, .flex_row:after, .web_main:after, .page_main:after, .items_list ul:after, .product_items:after, .cate_items ul:after, .web_head .logo:after, .product-intro:after, .detail-tabs:after, .foot_items:after, .news_cell:after, .foot_sns:after, .main_hd:after, .index_promote .promote_items:after, .foot_contact_list:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  height: 0;
}
.clearfix, .layout, .sys_row, .flex_row, .web_main, .page_main, .items_list ul, .product_items, .cate_items ul, .web_head .logo, .product-intro, .detail-tabs, .foot_items, .news_cell, .foot_sns, .main_hd, .index_promote .promote_items, .foot_contact_list {
  *zoom: 1;
}
.clear {
  clear: both;
}
/* layout */
body {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0; /*min-width:1400px;*/ overflow-x: hidden;
  background-repeat: no-repeat;
  -webkit-background-size: 100% auto;
  background-size: 100% auto;
}
.layout {
  width: 92.5%;
  max-width: 1400px;
  margin: 0 auto;
}
.web_footer .layout {}
.z9999 {
  z-index: 9999 !important;
}
.hide, .panel_hide {
  display: none;
}
/* gotop */
.gotop {
  position: fixed;
  text-align: center;
  right: 20px;
  bottom: 20px;
  color: #fff;
  background-color: rgba(0, 0, 0, .22);
  text-align: center;
  height: 52px;
  width: 52px;
  line-height: 52px;
  border-radius: 2px;
  background-clip: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  z-index: 99999;
  cursor: pointer;
  font-size: 24px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  -moz-transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}
.gotop em {
  display: none;
}
.gotop:hover, .gotop.active:hover {
  opacity: 1;
  color: #fff;
}
.gotop.active {
  opacity: 1;
  visibility: visible;
  -moz-transform: none;
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.gotop:before, .gotop:after {
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.gotop:after {
  display: block;
  content: 'TOP';
  font-size: 12px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
}
.gotop:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../image/ico_up.png);
  -webkit-animation: anmUp 1.8s ease infinite;
  animation: anmUp 1.8s ease infinite;
}
@-webkit-keyframes anmUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(8%);
    transform: translateY(8%);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-15%);
    transform: translateY(-15%);
  }
}
@keyframes anmUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(8%);
    transform: translateY(8%);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-15%);
    transform: translateY(-15%);
  }
}
/* transition */
.head_nav li a, .nav_wrap .head_nav li li a, .nav_wrap .head_nav > li > a > b, .nav_wrap .head_nav li ul, .nav_wrap .head_nav li li > a:before, .head_nav b:after, .web_head .btn--search, .web_head .btn--search:before, .product_item figure, .gotop, .product-item .item-img img, .product_item .item_img img, .product_item .item_img a, .product_item, .product_item .item_img a:before, .product_item .item_img a:after, .product_item .item_img:after, .product-btn-wrap a, .web_head, .change-language .change-language-title a:after, .newsletter .button, .mobile-head-item .middle-show-content-wrap, .product_item figure figcaption, .foot_item a, .pages a, .ad_item figure figcaption .item_more, .head_sns li img, .side_product_item .add-friend, .side_product_item .add-friend:after, .side-product-items .btn-prev, .side-product-items .btn-next, .foot_sns li img, .blog-item:after {
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.head_nav > li > a:before, .head_nav > li > a:after, .head-search .search-btn, .icon-cate, .items_list .product_item .item_img, .goods-may-like .product_item .item_img, .foot_txt_list li a:before, .more_btn i {
  -moz-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
/* grid */
.sys-layer {
  margin: 0 auto;
}
.sys-row {
  margin: 0 -8px;
}
.sys-col {
  float: left;
}
.sys-col-inner {
  margin: 0 8px;
}
.sys-col-md {
  float: left;
}
.sys-col-md-12 {
  width: 100%;
}
.sys-col-md-11 {
  width: 91.66666667%;
}
.sys-col-md-10 {
  width: 83.33333333%;
}
.sys-col-md-9 {
  width: 75%;
}
.sys-col-md-8 {
  width: 66.66666667%;
}
.sys-col-md-7 {
  width: 58.33333333%;
}
.sys-col-md-6 {
  width: 50%;
}
.sys-col-md-5 {
  width: 41.66666667%;
}
.sys-col-md-4 {
  width: 33.33333333%;
}
.sys-col-md-3 {
  width: 25%;
}
.sys-col-md-2 {
  width: 16.66666667%;
}
.sys-col-md-1 {
  width: 8.33333333%;
}
/* float */
.sys_fl {
  float: left !important;
}
.sys_fr {
  float: right !important;
}
/* flex */
.flex_row, .items_list > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex_row_nowrap {
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -o-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flex_row:after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  clear: both;
  order: 11;
}
/* button */
.sys_btn:before, .sys_btn em, .sys_btn em i {
  -moz-transition-duration: .3s;
  -webkit-transition-duration: .3s;
  -o-transition-duration: .3s;
  -ms-transition-duration: .3s;
  transition-duration: .3s;
}
.sys_btn {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 50px;
  padding: 0 60px;
  letter-spacing: 1px;
  background: rgb(0, 0, 0, .5) no-repeat center center;
  text-align: center;
  border-radius: 25px;
  overflow: hidden;
}
.sys_btn:hover:before {
  visibility: visible;
  opacity: 1;
}
.sys_btn em {
  position: relative;
  display: inline-block;
  color: #FFFFFF;
}
.sys_btn:hover em {
  -moz-transform: translateX(-15px);
  -webkit-transform: translateX(-15px);
  -o-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  transform: translateX(-15px);
}
.sys_btn em i {
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: -63px;
  width: 26px;
  height: 12px;
  background: url(../image/ico_sys.png) no-repeat center center;
  visibility: hidden;
  opacity: 0;
}
.sys_btn:hover em i {
  visibility: visible;
  opacity: 1;
  right: -40px;
}
.sys_btn_els {
  background-image: url(../image/sys_bg_hover.png)
}
.sys_btn_els:before {
  background-image: url(../image/sys_bg_hover_els.png)
}
/* placeholder */
input::-webkit-input-placeholder {
  color: #aaa;
}
input::-moz-placeholder {
  color: #aaa;
  opacity: 1;
}
input:-ms-input-placeholder {
  color: #aaa;
}
input:-moz-placeholder {
  color: #aaa;
}
textarea::-webkit-input-placeholder {
  color: #aaa;
}
textarea::-moz-placeholder {
  color: #aaa;
  opacity: 1;
}
textarea:-ms-input-placeholder {
  color: #aaa;
}
textarea:-moz-placeholder {
  color: #aaa;
}
.search-ipt::-webkit-input-placeholder {
  color: #aaa;
}
.search-ipt::-moz-placeholder {
  color: #aaa;
  opacity: 1;
}
.search-ipt:-ms-input-placeholder {
  color: #aaa;
}
.search-ipt:-moz-placeholder {
  color: #aaa;
}
/* box-sizing */
.company_subscribe .button, .nav_wrap, .product_item .item_img {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  -ms-box-sizing: content-box;
  -o-box-sizing: content-box;
  box-sizing: content-box;
}

.btn_more:after, .sys_btn:after, .head-search .search-btn:before, .web_head .btn--search:before, .swiper-button-next:before, .swiper-button-prev:before, .side-product-items .btn-prev:before, .side-product-items .btn-next:before, .product-btn-wrap .email:before, .product-btn-wrap .pdf:before, .fa:before, .fa-arrow:after, .company_subscribe .button:after, .items_list .product_item .item_img a:after, .goods-may-like .product_item .item_img a:after, .index_product .product_item .item_img a:before {
  font-family: 'fontawesome';
}

/*transition*/
a {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* web_head */
.web_head {
  width: 100%;
  position: relative;
  z-index: 9999;
}
.index_web_head {
  position: fixed;
  left: 0;
  top: 0; /* box-shadow:0 1px 0 rgba(0,0,0,.1); */
}
.web_head .head_layer {
  position: relative;
  padding: 22px 0; /* transition-duration:.3s; */
}
.els_web_head .head_layer {
  background-color: #3b70f9;
  padding: 22px 0;
}
.index_web_head .head_holder {
  display: none !important;
}
.web_head .head_top {
  background-color: #535353;
}
.web_head .layout {
  justify-content: space-between;
  align-items: center;
}
.head_top .top_left {
  float: left;
  font-size: 16px;
  line-height: 50px;
}
.head_top .top_left, .head_top .top_left a {
  color: #fff;
}
.head_top .top_left a {
  display: inline-block;
  position: relative;
  line-height: 1.5em;
}
.head_top .top_left a:before {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
.head_top .top_left a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.head_top .top_left li {
  display: inline;
  padding-right: 2em;
}
.head_top .top_right {
  float: right;
}
.web_head .ct-modal-search {
  display: inline-block;
  vertical-align: middle;
  letter-spacing: -10px;
  margin-left: 20px;
}
.head_top .search-field, .head_top .search-submit {
  letter-spacing: 0;
}
.head_top .search-field {
  width: 162px;
  height: 32px;
  line-height: 32px;
  padding: 0 10px;
  background-color: #fff;
  border: 0;
  outline: 0;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
.head_top .search-field:focus {
  width: 180px;
}
.head_top .search-submit {
  display: inline-block;
  height: 32px;
  line-height: 32px;
  padding: 0 1em;
  border: 0;
  outline: 0;
  background-color: #707070;
  color: #fff;
}
.web_head .top_language_list {
  display: inline-block;
  vertical-align: middle;
}
.web_head .top_language_item {
  display: inline-block;
  vertical-align: middle;
}
.web_head .top_language_ico {
  display: inline-block;
  width: 24px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: contain;
  background-size: contain;
  margin-left: 10px;
  vertical-align: middle;
}
.web_head .change-language {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
  white-space: normal;
  margin-left: 10px;
  position: relative;
}
.web_head .change-language-title a {
  color: #666;
  display: block;
  position: relative;
}
.web_head .change-language-title .language-flag .country-flag {
  display: none;
}
.web_head .change-language-title .language-flag span {
  padding-left: 0;
}
.web_head .change-language .change-language-cont {
  margin-top: 13px;
}
.web_head .head_layer {
  width: 100%; /* background-color:#fff; */
}
.web_head .head_layer .layout {
  justify-content: space-between;
  max-width: none;
}
.web_head .logo {
  float: left;
  position: relative;
}
.web_head .logo img {
  position: relative;
  max-height: 60px;
  -moz-transition-duration: .3s;
  -webkit-transition-duration: .3s;
  -o-transition-duration: .3s;
  -ms-transition-duration: .3s;
  transition-duration: .3s;
}
.web_head .logo img:nth-of-type(1) {}
.web_head .logo img:nth-of-type(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(-50px);
}
.web_head .nav_wrap {
  float: right;
}
.web_head .head_nav {}
.web_head .nav_wrap > ul > li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin-left: 54px;
}
.web_head .nav_wrap > ul > li > a {
  display: inline-block;
  padding: 17px 0;
  vertical-align: middle;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 3px;
  -webkit-transition: color .4s ease;
  -o-transition: color .4s ease;
  transition: color .4s ease;
}
.web_head .nav_wrap > ul > li > a > .menu_toggle {
  display: inline-block;
  width: 0;
  height: 0;
  overflow: hidden;
  border: 6px solid #fff;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-width: 0;
  vertical-align: middle;
  margin-left: 6px;
}
.web_head .nav_wrap > ul > li:hover > a > .menu_toggle {
  border-top-color: #ff7f52;
  border-bottom-color: #ff7f52;
}
.web_head .nav_wrap > ul > li:hover > a {
  color: #ff7f52;
}
.web_head .nav_wrap > ul > li:hover > a > .menu_toggle {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.web_head .nav_wrap > ul > li.nav-current > a, .web_head .nav_wrap > ul > li:hover > a {
  color: #ff7f52;
}
.web_head .nav_wrap > ul > li > a:after {
  content: "";
  width: 0;
  height: 4px;
  background-color: #ff7f52;
  position: absolute;
  left: 50%;
  bottom: 0;
}
.web_head .nav_wrap > ul > li:hover > a:after, .web_head .nav_wrap > ul > li.nav-current > a:after {
  width: 100%;
  left: 0;
}
.web_head .nav_wrap > ul > li.menu-left ul {
  left:0px;
  right: 0px;
}
.web_head .nav_wrap > ul > li.menu-left ul ul {
  right: 100%;
}
.web_head .nav_wrap > ul ul {
  width: 200px;
  padding: 20px 0;
  background-color: rgba(255, 255, 255, .95);
  background-color: rgba(255, 255, 255, .92);
  position: absolute;
  left: 0;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(.8);
  transform-origin: center;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  text-align: left;
  box-shadow: 5px 5px 0 0 rgba(0, 0, 0, .1);
}
.web_head .nav_wrap > ul ul:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
  border: 11px solid rgba(255, 255, 255, .92);
  border-left-color: transparent;
  border-right-color: transparent;
  border-top: 0;
  position: absolute;
  left: 20px;
  top: -11px;
}
.web_head .nav_wrap > ul ul ul:before {
  display: none;
}
.web_head .nav_wrap > ul ul li {
  line-height: 1.3em;
  margin: 0;
  position: relative;
	text-align: center;
	border-bottom: 1px solid #f2f2f2;
	padding: 10px;transition: .5s;
}
.web_head .nav_wrap > ul ul li:hover {
  line-height: 1.3em;
  margin: 0;
  position: relative;
	text-align: center;
	border-bottom: 1px solid #f2f2f2;
	padding: 10px;border-bottom-color: #ff7f52;background-color:  #ff7f52;
	color: white;
	font-weight: bold;
}
/* .web_head .nav_wrap>ul ul li a:before{content:'';display:block;width:0%;height:1px;background-color:#ff7f52;position:absolute;left:0;bottom:6px;} */
.web_head .nav_wrap > ul ul li.has-child > a:after {
  display: inline-block;
  content: "\f105";
  color: #666;
  font-size: 16px;
  font-family: 'fontawesome';
  line-height: 20px;
  right: 0;
  top: 50%;
  margin-top: -10px;
  position: absolute;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.web_head .nav_wrap > ul ul li a {
  display: block;
  color: #333;
  padding: 10px 0;
  margin: 0 20px;
  position: relative;
}
.web_head .nav_wrap > ul ul li:hover a {
  display: block;
  color: #fff;
  padding: 10px 0;
  margin: 0 20px;
  position: relative;
}
.web_head .nav_wrap > ul ul li:last-of-type > a {
  border-bottom: 0;
}
.web_head .nav_wrap > ul ul li:hover > a, .web_head .nav_wrap > ul ul li:hover > a:after {
  color: #fff!important;
}
.web_head .nav_wrap > ul ul li:hover > a:before {
  width: 100%;
}
.web_head .nav_wrap > ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.web_head .nav_wrap > ul ul ul {
  left: 100%;
  top: 0;
  margin-left: 5px;
  margin-top: -20px;
}
.web_head .nav_wrap > ul .menu_left > ul:before {
  left: auto;
  right: 20px;display: none;
}
.web_head .nav_wrap > ul .menu_left ul {
  left: auto;
  right: 0;
}
.web_head .nav_wrap > ul .menu_left ul ul {
  right: 100%;
  left: auto;
  margin-left: auto;
  margin-right: 5px;
}
.fixed-nav .head_layer {
  position: fixed;
  left: 0;
  top: 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .1), 0 0 20px rgba(0, 0, 0, .1);
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  background-color: rgba(255, 255, 255, .95);
  padding: 10px 0
}
.fixed-nav .nav_wrap > ul > li > a {
  color: #333;
  font-weight: normal;
  font-size: 16px;
  padding: 12px 0;
}
.fixed-nav .nav_wrap > ul > li > a:after {
  height: 2px;
}
.fixed-nav .nav_wrap > ul > li > a {}
.fixed-nav-active .head_layer {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  -webkit-transition: all .6s ease;
  -o-transition: all .6s ease;
  transition: all .6s ease;
  border-bottom-color: #ccc;
}
.fixed-nav .logo img:nth-of-type(1) {
  opacity: 0;
  visibility: hidden
}
.fixed-nav .logo img:nth-of-type(2) {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.fixed-nav .logo img {
  max-height: 50px;
}
.mob_btn, .mob_close {
  display: none;
}
/* ---------------------- web_footer ---------------------- */
.web_footer {
  position: relative;
  font-size: 14px;
  background: #343036;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  justify-content: center;
}
.web_footer .layout {
  max-width: 100%;
}
.web_footer .foot_layer {
  width: 100%;
  font-size: 1.125em;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex: 1;
}
.web_footer .foot_content {
  width: 100%;
  padding: 45px 0;
}
.foot_items {
  justify-content: center;
}
.foot_item {
  float: left;
  max-width: 280px;
  min-width: 180px;
  margin: 30px 85px;
}
.foot_item, .foot_item a {
  color: #FFFFFF;
}
.foot_item a:hover {
  color: #fff;
}
.web_footer .foot_item_hd {}
.web_footer .foot_item_hd .title {
  position: relative;
  font-size: 1.25em;
  color: #3b70f9;
  margin-bottom: 2.05em;
}
.web_footer .foot_item_hd .title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin: -32.5px 0 0 -50px;
  width: 65px;
  height: 65px;
  background-color: rgba(255, 255, 255, .04);
  border-radius: 100%;
}
.web_footer .foot_item_bd {}
.web_footer .foot_logo {
  margin-top: -15px;
}
.web_footer .foot_logo a {
  display: block;
}
.web_footer .foot_logo img {
  max-height: 60px;
}
.web_footer .foot_txt_list li {
  margin-bottom: 12px;
}
.web_footer .foot_txt_list a {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.web_footer .foot_txt_list a:hover {
  color: #ff7f52;
}
.web_footer .band_logo_items li {
  position: relative;
  width: 35px;
  margin: 28px 28px 0 0;
}
.web_footer .band_logo_items li img {
  width: 100%;
  max-width: 35px;
  opacity: .3;
  -moz-transition-duration: .5s;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  -ms-transition-duration: .5s;
  transition-duration: .5s;
}
.web_footer .band_logo_items li img:nth-of-type(1) {}
.web_footer .band_logo_items li img:nth-of-type(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.web_footer .band_logo_items li:hover img:nth-of-type(1) {
  opacity: 0;
  visibility: hidden;
}
.web_footer .band_logo_items li:hover img:nth-of-type(2) {
  opacity: 1;
  visibility: visible
}
.web_footer .foot_tel {
  font-size: 30px;
  font-family: 'AvertaPEBold';
  letter-spacing: 3px;
}
.web_footer .foot_bottom {
  width: 100%;
  text-align: center;
  font-size: 12px;
}
.web_footer .foot_bottom, .web_footer .foot_bottom a {
  color: rgba(255, 255, 255, .6);
}
.web_footer .foot_bottom .layout {
  border-top: 1px solid #423f44;
  padding: 35px 0;
  text-transform: uppercase;
}
.fp-enabled .web_footer {
  height: 100vh;
  padding-top: 132px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
/*-------------------------------------------------------- 
														page:index
																	------------------------------------------------------*/
.web_main {
  overflow: hidden;
  background-repeat: repeat;
  background-position: 0 0;
  clear: both;
}
.index_layer h2 {}
.index_main {
  overflow: visible;
}
/* layer */
.flex_nowrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -o-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flex_wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -o-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.index-section {
  height: 100vh; /* padding-top:132px; */ display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.index_layer {
  width: 100%;
  font-size: 16px;
  background-repeat: no-repeat;
}
.index_layer .layout {
  position: relative;
}
/* swiper */
.index_layer .swiper-button-prev, .index_layer .swiper-button-next {
  display: inline-block;
  letter-spacing: 0;
  width: 58px;
  height: 58px;
  line-height: 58px;
  font-size: 22px;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  color: #1c4f9a;
  border: 2px solid #d2d2d2;
  border-radius: 50%;
  vertical-align: middle;
  opacity: 1;
  top: 50%;
  bottom: 0;
  margin-top: -29px;
}
.index_layer .swiper-button-prev {
  left: 65px;
}
.index_layer .swiper-button-next {
  right: 65px;
}
.index_layer .swiper-button-prev:before, .index_layer .swiper-button-next:before {
  font-family: 'fontawesome';
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
}
.index_layer .swiper-button-prev:before {
  background-image: url(../image/slider_btn_prev.png);
}
.index_layer .swiper-button-next:before {
  background-image: url(../image/slider_btn_next.png);
}
.index_layer .swiper-button-next.swiper-button-disabled, .index_layer .swiper-button-prev.swiper-button-disabled {
  color: #eee;
  border-color: #ddd;
  cursor: default;
  opacity: 1;
}
.index_layer .swiper-button-next.swiper-button-disabled:before, .index_layer .swiper-button-prev.swiper-button-disabled:before {
  opacity: .6;
}
.index_layer .swiper-button-prev:not(.swiper-button-disabled):hover, .index_layer .swiper-button-next:not(.swiper-button-disabled):hover {
  background-color: #2b2c30;
  border-color: #2b2c30;
}
.index_layer .swiper-button-prev:not(.swiper-button-disabled):hover:before {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAOBAMAAADUAYG5AAAAMFBMVEUAAADS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tK6XSBNAAAAD3RSTlMAL+v68d5ONn5CJQ2+vAJr6OcGAAAAP0lEQVQI12NgYGDXYYCAki8PwDSjviVEQOhzAlTADCKw6H+jIBBIM8T/B4OvcAZcCqwYoR1mINwKKINdF0QCACTAHB7+Of9kAAAAAElFTkSuQmCC);
}
.index_layer .swiper-button-next:not(.swiper-button-disabled):hover:before {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAOBAMAAADUAYG5AAAAMFBMVEUAAADS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tK6XSBNAAAAD3RSTlMAL+v68d5ONn5CJQ2+vAJr6OcGAAAAPUlEQVQI12MAgUMFDGDA5+/OAAGTPwlAGGz2ilChZKDQRkEgkPivxRD/Hwy+whlwKbhimHY0A+FWXAJaCgAsLx13DPzczAAAAABJRU5ErkJggg==);
}
.index_layer .swiper-pagination {
  position: static;
  text-align: center;
  padding: 15px 0;
  display: none;
}
.index_main .swiper-pagination-bullet {
  background: none;
  width: auto;
  height: auto;
  border-radius: 50%;
  margin: 0 15px;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
.index_main .swiper-pagination-bullet:before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background-color: #aaa;
  border-radius: 50%;
}
.index_main .swiper-pagination-bullet-active:before {
  background-color: #000;
}
/* index_layer_hd */
.index_layer_hd {
  text-align: center;
  font-size: 36px;
  line-height: 1.9em;
}
.index_layer_hd.white {
  color: #FFFFFF
}
/* .index_layer_hd,
.index_layer_hd a{color:#343036;} */
.index_layer_hd .layer_title {
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: .15em;
}
.index_layer_hd strong {
  font-size: 2.5em;
  font-family: "AvertaPEBold";
  opacity: .07;
  font-weight: normal;
  letter-spacing: .1em;
  display: block;
}
.index_layer_hd.white strong {
  opacity: .15
}
.index_layer_hd strong em {
  font-size: 0.7777777777777778em;
}
.index_layer_hd .desc {
  font-size: 16px;
}
.index_layer_tabs {
  background-color: #535353;
  justify-content: space-between;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.index_layer_tabs:after {
  display: none;
}
.index_layer_tabs .layer_tab_item {
  height: 60px;
  float: left;
  font-size: 1.125em;
  line-height: 1.1em;
  padding: 0 1.5em;
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-tap-highlight-color: transparent;
}
.index_layer_tabs .layer_tab_item:before {
  content: '';
  display: block;
  width: 0%;
  height: 100%;
  background-color: #2b2c30;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
.index_layer_tabs .layer_tab_item.active:before {
  width: 100%;
  left: 0;
  right: auto;
}
.index_layer_tabs .layer_tab_item, .index_layer_tabs .layer_tab_item a {
  color: #fff;
}
.index_layer_tabs .layer_tab_item:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
  border: 10px solid #fff;
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-width: 0;
  border-bottom-width: 12px;
  position: absolute;
  left: 50%;
  margin-left: -12px;
  bottom: -1px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.index_layer_tabs .layer_tab_item.active:after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
/* index_layer_ft */
.index_layer_ft {
  text-align: center;
  padding-top: 35px;
}
/* swiper */
.slider_banner, .slider_banner .swiper-wrapper, .slider_banner .swiper-slide {
  width: 100vw;
  height: 100vh;
}
.slider_banner .swiper-button-prev, .slider_banner .swiper-button-next {
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 24px;
  border-radius: 0;
  opacity: 1;
  background-color: rgba(255, 255, 255, .8);
  box-sizing: content-box;
  background-clip: content-box;
  margin-top: -28px;
  border: 8px solid rgba(255, 255, 255, .15);
  padding: 0;
  -webkit-background-clip: content-box;
  -moz-background-clip: content-box;
  background-clip: content-box;
  display: none;
}
.slider_banner .swiper-pagination {
  position: static;
  text-align: center;
}
.slider_banner .swiper-button-prev, .slider_banner .swiper-button-next {
  opacity: 0;
  visibility: hidden;
  color: #000;
}
.slider_banner .swiper-button-prev {
  left: 90px;
  -webkit-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  transform: rotate(20deg);
}
.slider_banner .swiper-button-prev:before {
  content: '\f177';
}
.slider_banner .swiper-button-next {
  right: 90px;
  -webkit-transform: rotate(-20deg);
  -ms-transform: rotate(-20deg);
  -o-transform: rotate(-20deg);
  transform: rotate(-20deg);
}
.slider_banner .swiper-button-next:before {
  content: '\f178';
}
.slider_banner .swiper-button-disabled {
  opacity: .3;
  filter: alpha(opacity=30);
}
.slider_banner .swiper-button-white:not(.swiper-button-disabled):hover {
  color: #fff;
}
.slider_banner .swiper-button-prev:hover, .slider_banner .swiper-button-next:hover {
  background-color: rgba(255, 255, 255, .8);
}
.slider_banner .swiper-slide {
  height: auto;
}
.slider_banner .swiper-slide img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
}
.slider_banner .swiper-slide img + img {
  position: absolute;
  left: 0;
  top: 0;
}
.slider_banner .swiper-slide img {
  width: 100%;
  transition: 3s linear; /* transform:scale(1.08); */
}
.slider_banner .swiper-slide.swiper-slide-active img {
  transform: scale(1);
}
.slider_banner .banner_item_img, .slider_banner .banner_item_img a, .slider_banner .banner_item_img img {
  display: block;
  height: 100%;
}
.slider_banner .video_banner_mobile {
  position: relative;
}
.slider_banner .banner_item_inner {
  background-color: rgb(1 23 89 / 80%);
  width: 100%;
  height: 100%;
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.slider_banner .banner_info, .slider_banner .banner_info a {
  color: #fff;
}
.slider_banner .banner_info {
  font-size: 20px;
  text-align: center;
  font-family: "AvertaPEBold";
}
.slider_banner .banner_hd {
  display: inline-block;
  position: relative;
  line-height: 1.2;
  vertical-align: middle;
  margin-bottom: 25px;
}
.slider_banner .banner_subtit {
  width: 100%;
  position: absolute;
  right: 0;
  bottom: 100%;
  font-size: 4.5em;
  font-weight: normal;
  text-align: right;
}
.slider_banner .banner_title {
  font-size: 2em;
  line-height: 3em;
  font-weight: normal;
  letter-spacing: .15em;
}
.slider_banner .banner_desc {
  font-size: 2.5em;
  color: #ff7f52;
  letter-spacing: .15em;
  font-weight: bold;
  margin-top: 8px;
}
.slider_banner .banner_ft {
  padding-top: 40px;
}
.slider_banner .sys_btn {
  font-size: 1em;
  padding: .75em 1.5em;
  color: #ff7f52;
}
.slider_banner .sys_btn_arrow {
  display: inline-block;
  width: 21px;
  height: 13px;
  vertical-align: middle;
  margin-left: 15px;
  position: relative;
}
.slider_banner .sys_btn_arrow:before, .slider_banner .sys_btn_arrow:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: contain;
  background-size: contain;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAANBAMAAAC0vDhTAAAAMFBMVEUAAAD///////////////////////////////////////////////////////////87TQQwAAAAD3RSTlMAQGBpHOTc9nQk+XlbXCuBlqgOAAAARElEQVQI12OAAMYaBjhgiVdAcKZ+RrA58w0QHLcfDAwPBSFAtr6BYf1/GFjAIKQEAdr/GxDqfyMsyDdANh9hL1gY4R4AQ3wYT9D5qzcAAAAASUVORK5CYII=);
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
.slider_banner .sys_btn_arrow:before {
  opacity: 0;
  left: -80%;
  -webkit-transform: scale(.5);
  -ms-transform: scale(.5);
  -o-transform: scale(.5);
  transform: scale(.5);
}
.slider_banner .sys_btn:hover .sys_btn_arrow:before {
  left: 0;
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.slider_banner .sys_btn:hover .sys_btn_arrow:after {
  left: 100%;
  opacity: 0;
  -webkit-transform: scale(.5);
  -ms-transform: scale(.5);
  -o-transform: scale(.5);
  transform: scale(.5);
}
.slider_banner .sys_btn_arrow:hover {
  background-position: 21px 0;
}
.slider_banner .banner-item-video {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  min-height: 20vh;
}
.slider_banner .video_banner_mobile {
  opacity: 0;
}
.slider_banner .banner_video_box {
  height: 100%;
}
.slider_banner .video_obj_box {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.slider_banner .video-obj {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.slider_banner .swiper-pagination {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 35px;
  text-align: center;
}
.slider_banner .swiper-pagination-bullet {
  margin: 0 15px;
}
.slider_banner .swiper-pagination-bullet {
  background-color: rgba(0, 0, 0, .6);
}
.slider_banner .swiper-pagination-bullet-active {
  background-color: rgba(255, 255, 255, .6);
}
.slider_banner:hover .swiper-button-prev, .slider_banner:hover .swiper-button-next {
  opacity: 1;
  visibility: visible;
  border-radius: 50%;
}
.slider_banner:hover .swiper-button-prev {
  left: 50px;
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.slider_banner:hover .swiper-button-next {
  right: 50px;
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.slider_banner:hover .swiper-button-next:hover, .slider_banner:hover .swiper-button-prev:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
.slider_banner.slider_video_hide .video_obj_box {
  opacity: 0;
}
.slider_banner.slider_video_hide .video_banner_mobile {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.slider_banner.slider_video_hide .video_banner_mobile img {
  height: 100%;
}
.slider_banner .banner_title {
  opacity: 0;
  -webkit-transform: translateX(-30%);
  transform: translateX(-30%);
  transition: all 1.2s ease;
}
.slider_banner .banner_desc {
  opacity: 0;
  -webkit-transform: translateX(30%);
  transform: translateX(30%);
  transition: all 1.2s ease;
}
.slider_banner .banner_ft {
  opacity: 0;
  -webkit-transform: translateX(30%);
  transform: translateX(30%);
  transition: all 1.2s ease;
}
.fp-section-active .slider_banner .swiper-slide-active .banner_title, .slider_banner .swiper-slide-active .banner_title {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}
.fp-section-active .slider_banner .swiper-slide-active .banner_desc, .slider_banner .swiper-slide-active .banner_desc {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}
.fp-section-active .slider_banner .swiper-slide-active .banner_ft, .slider_banner .swiper-slide-active .banner_ft {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}
.slider_banner .slide_down {
  position: absolute;
  left: 50%;
  bottom: 60px;
  margin-left: -20px;
  width: 40px;
  height: 40px;
  z-index: 99;
  cursor: pointer;
}
.slider_banner .slide_down:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: url(../image/ico_down.png) no-repeat center center;
  background-size: contain;
  -webkit-animation: anmDown 1.8s ease infinite;
  animation: anmDown 1.8s ease infinite;
}
.slider_banner .banner_video_box_mob {
  display: none;
}
.slider_banner .banner_video_box_mob video {
  height: 100vh; /*width: 100%;min-height: 50vh;*/ width: 100%;
  object-fit: cover;
}
@-webkit-keyframes anmDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(25%);
    transform: translateY(25%);
  }
}
@keyframes anmDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(25%);
    transform: translateY(25%);
  }
}
.index_slider_layer {
  position: relative;
}
.circle {
  z-index: 1;
  width: 185px;
  height: 185px;
  animation: 10s ease-in-out forwards 1s;
  position: absolute;
  right: 90px;
  bottom: -55px;
}
.circle.circle01 {
  width: 115px;
  height: 115px;
  right: 10%;
  bottom: auto;
  top: -70px;
}
.circle.circle02 {
  width: 67px;
  height: 67px;
  right: auto;
  left: 13.4375%;
  bottom: auto;
  top: 75px;
}
.circle.circle03 {
  width: 115px;
  height: 115px;
  right: auto;
  left: 5.5%;
  bottom: auto;
  top: -70px;
}
.circle.circle04 {
  width: 115px;
  height: 115px;
  right: auto;
  left: 45%;
  bottom: auto;
  top: 15px;
}
.circle.circle04 i::before {
  background: #f7f7f7;
  box-shadow: none;
}
.circle, .circle i, .circle i::before {
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle i, .circle i::before {
  width: 100%;
  height: 100%;
}
.circle i {
  animation: translate-3D linear infinite;
  color: #61bdf6;
  --time-sort: 10s;
  --t-y: -5;
  --time-bubble: 10s;
}
.circle.circle02 i {
  --time-sort: 9s;
  --t-y: -4;
  --time-bubble: 9s;
}
.circle i::before {
  content: '';
  animation: ease-in-out infinite, linear infinite;
  background: url(../image/circle.png) no-repeat center center;
  background-size: cover;
  box-shadow: 16px 16px 65px rgba(49, 106, 252, .6);
  animation-name: radius-1, scale-1;
}
.circle.circle02 i::before {
  background-image: url(../image/circle02.png);
}
.circle i, .circle i::before {
  animation-duration: var(--time-bubble);
  border-radius: 100%;
  position: absolute;
}
@keyframes translate-3D {
  25% {
    transform: translate3d(0, calc(var(--t-y) * 1%), 0);
  }
  75% {
    transform: translate3d(0, calc(var(--t-y) * -1%), 0);
  }
}
@keyframes radius-1 {
  20% {
    border-radius: 50% 45% 50% 50%;
  }
  40% {
    border-radius: 50% 50% 50% 45%;
  }
  60% {
    border-radius: 50% 50% 45% 50%;
  }
  80% {
    border-radius: 45% 50% 50% 50%;
  }
}
@keyframes scale-1 {
  20% {
    transform: scale3d(0.91, 1, 1);
  }
  40% {
    transform: scale3d(1, 0.92, 1);
  }
  60% {
    transform: scale3d(0.9, 1, 1);
  }
  80% {
    transform: scale3d(1, 0.93, 1);
  }
}
/* index_about */
.index_about {
  font-size: 16px;
  padding: 94px 0;
}
.index_about .about_content {
  justify-content: space-between;
  align-items: flex-start;
}
.index_about .about_main {
  width: 47.5%;
  float: left;
  position: relative;
  margin-top: -8px;
}
.index_about .index_layer_hd {
  text-align: left;
}
.index_about .about_desc {
  line-height: 2.2;
  padding: 25px 0 43px;
}
.index_about .about_desc p {
  padding: 10px 0;
}
.index_about .learn_more {}
.index_about .about_thumbs {
  width: 47.5%;
  float: left;
  border-radius: 15px;
  overflow: hidden;
}
.index_about .thumbs_item {
  position: relative;
  overflow: hidden;
}
.index_about .thumbs_item img {
  -webkit-transition: all .9s ease;
  -o-transition: all .9s ease;
  transition: all .9s ease;
}
.index_about .thumbs_item:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.index_about .count_items {
  position: relative;
  overflow: hidden;
  margin-top: 55px;
}
.index_about .count_items ul {}
.index_about .count_item {
  position: relative;
  float: left;
  width: 23%;
  padding: 45px 1%;
  margin: 0 1%;
}
.index_about .count_item:before, .index_about .count_item:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #21e571;
  -moz-transition-duration: .8s;
  -webkit-transition-duration: .8s;
  -o-transition-duration: .8s;
  -ms-transition-duration: .8s;
  transition-duration: .8s;
}
.index_about .count_item:after {
  background-color: #3b70f9;
}
.index_about .count_item:before {
  width: 100%;
}
.index_about .count_item:nth-child(2n):before {
  background-color: #3b70f9;
}
.index_about .count_item:nth-child(2n):after {
  background-color: #21e571;
}
.index_about .count_item:hover:after {
  width: 100%;
}
.index_about .count_item:hover:before {
  width: 0%;
}
.count_item .count_item_inner {
  text-align: center;
}
.count_item .count_item_hd {
  align-items: flex-end;
  justify-content: center;
  font-weight: bold;
}
.count_item .count_item_num {
  font-family: 'AvertaPEBold';
  font-size: 50px;
  color: #fff;
  line-height: 1.3;
  margin-right: 8px;
}
.count_item .count_item_strong {
  font-size: 36px;
  color: #fff;
  line-height: 1.3;
  margin-right: 8px
}
.count_item .count_item_unit {
  font-size: 36px;color: white;
}
.count_item .count_item_unit_els {
  font-size: 24px;color: white;
}
.count_item .count_item_bd {
  letter-spacing: 3px;
  line-height: 2.2;
  padding-top: 4px;color: white;
}
/*index_brands*/
.index_brands {
  position: relative;
  background-position: center center;
  background-size: cover;
}
.index_brands:after {
  display: none;
}
.index_brands .index_layer_lf {
  position: relative;
  width: 34.79166666666667%;
  background-color: rgba(255, 255, 255, .9);
  text-align: right;
  padding: 125px 0 146px;
}
.index_brands .index_layer_hd {
  display: inline-block;
  text-align: left;
  padding: 0 92px;
  text-align: left;
  line-height: .8;
}
.index_brands .index_layer_hd .hd_logo {
  width: 355px;
  max-width: 100%;
  margin-bottom: 83px;
}
.index_brands .index_layer_hd strong {
  color: #FFFFFF;
  opacity: .55;
  margin-bottom: 17px;
  padding-left: 37px;
}
.index_brands .index_layer_hd .layer_title {
  padding-left: 37px;
}
.index_brands .index_layer_hd .desc {
  line-height: 1.5;
  margin-top: 40px;
  padding-left: 37px;
}
.index_brands .index_layer_hd .desc p {
  padding: 5px 0;
}
.index_brands .index_layer_rt {
  position: relative;
  width: 65.20833333333333%;
  background-color: rgba(56, 107, 245, .93);
  padding: 6.5% 5.5% 5.6% /* padding: 129px 104px 120px; */
}
.index_brands .index_layer_rt .brands_wrap {}
.index_brands .brands_nav_items {
  width: 64%;
}
.index_brands .brands_nav_items .brands_nav_item {
  position: relative;
  color: #FFFFFF;
  width: calc(33.333% - 29px);
  margin: 0;
  margin-right: 29px;
  height: auto;
  border-radius: 0;
  background: none;
  opacity: .3
}
.index_brands .brands_nav_items .brands_nav_item.swiper-pagination-bullet-active {
  opacity: 1;
}
.index_brands .brands_nav_items .brands_nav_item:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 6px;
  height: 6px;
  background-color: #FFFFFF;
  border-radius: 100%;
}
.index_brands .brands_nav_items .brands_nav_item:after {
  content: "";
  position: absolute;
  left: 8px;
  bottom: 2.5px;
  width: 100%;
  height: 1px;
  background-color: #FFFFFF;
}
.index_brands .brands_nav_items .brands_nav_item .item_num {
  font-family: "AvertaPEBold";
}
.index_brands .brands_nav_items .brands_nav_item .item_title {
  font-size: 24px;
  font-weight: normal;
  padding: 3px 0 19px;
}
.brands_content_items {
  width: 86%;
}
.brands_content_items .brands_content_item {}
.brands_content_items .brands_content_item.swiper-slide-active {}
.brands_content_item .content_intro {
  justify-content: space-between;
  align-items: flex-end;
  margin: 44px 0;
}
.brands_content_item .content_intro .intro_lt {}
.brands_content_item .content_intro .intro_lt .intro_logo {
  max-height: 91px;
}
.brands_content_item .content_intro .intro_lt strong {
  display: block;
  color: #FFFFFF;
  font-weight: normal;
  padding: 15px 0 0;
}
.brands_content_item .content_intro .more {
  position: relative;
  display: block;
  overflow: hidden;
}
.char_func_items {
  justify-content: space-between;
  margin-top: 10px;
}
.char_func_item {
  position: relative;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, .6);
  color: #FFFFFF;
  padding: 37px 26px 40px;
  width: 30.8333%;
  margin: 16px 0;
  overflow: hidden;
}
.char_func_item:before {
  opacity: 0;
  visibility: hidden;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-color: transparent;
  filter: progid:DXImageTransform.Microsoft.Gradient(startColorStr='#2ad772', endColorStr='#3b70f9', gradientType='1');
  background: -moz-linear-gradient(left, #2ad772, #3b70f9);
  background: -o-linear-gradient(left, #2ad772, #3b70f9);
  background: -webkit-gradient(linear, 0% 0%, 100% 0%, from(#2ad772), to(#3b70f9));
  -moz-transition-duration: .8s;
  -webkit-transition-duration: .8s;
  -o-transition-duration: .8s;
  -ms-transition-duration: .8s;
  transition-duration: .8s;
}
.char_func_item:hover:before {
  opacity: 1;
  visibility: visible;
}
.char_func_item .item_wrap {
  position: relative;
}
.char_func_item .item_wrap .item_title {
  font-size: 20px;
  margin-bottom: 11px;
}
.char_func_item .item_wrap .item_desc {}
.char_func_items, .brands_content_item .content_intro .intro_lt, .brands_content_item .content_intro .more {
  opacity: 0;
  visibility: hidden;
  -moz-transition-duration: .8s;
  -webkit-transition-duration: .8s;
  -o-transition-duration: .8s;
  -ms-transition-duration: .8s;
  transition-duration: .8s;
}
.char_func_items {
  transform: translateY(100px);
}
.brands_content_item .content_intro .intro_lt {
  transform: translateX(-100px);
}
.brands_content_item .content_intro .more {
  transform: translateX(100px);
}
.brands_content_items .brands_content_item.swiper-slide-active .char_func_items, .brands_content_items .brands_content_item.swiper-slide-active .content_intro .intro_lt, .brands_content_items .brands_content_item.swiper-slide-active .content_intro .more {
  transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}
/*index_adg*/
.index_adg {
  position: relative;
  overflow: hidden;
  padding: 68px 0 94px;
}
.index_adg .adg_more {
  text-align: center;
}
.adg_items {
  position: relative;
  margin: 60px 0 80px;
}
.index_adg_slider {}
.adg_item {
  text-align: center;
}
.adg_item .item_inner {
  padding: 69px 15% 85px;
  line-height: 2;
  letter-spacing: 1px;
  overflow: hidden;
}
.adg_item .item_inner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  opacity: 0;
  visibility: hidden;
  filter: progid:DXImageTransform.Microsoft.Gradient(startColorStr='#2ad772', endColorStr='#3b70f9', gradientType='0');
  background: -moz-linear-gradient(top, #2ad772, #3b70f9);
  background: -o-linear-gradient(top, #2ad772, #3b70f9);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#2ad772), to(#3b70f9));
  transform: scale(.8);
  -moz-transition-duration: .5s;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  -ms-transition-duration: .5s;
  transition-duration: .5s;
}
.adg_item.swiper-slide.swiper-slide-active .item_inner:before {
  opacity: 1;
  visibility: visible;
  transform: scale(1)
}
.adg_item.swiper-slide.swiper-slide-active .item_inner {
  color: #FFFFFF;
}
.adg_item .item_inner .item_img {
  position: relative;
  display: inline-block;
  width: 126px;
  height: 126px;
  margin-bottom: 40px;
  overflow: hidden;
}
.adg_item .item_inner .item_img img {
  position: relative;
  width: 100%;
  -moz-transition-duration: .8s;
  -webkit-transition-duration: .8s;
  -o-transition-duration: .8s;
  -ms-transition-duration: .8s;
  transition-duration: .8s;
}
.adg_item .item_inner .item_img img:last-child {
  transform-origin: top center;
  transform: scale(1)
}
.adg_item .item_inner .item_img img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transform-origin: bottom center;
  transform: scale(.5)
}
.adg_item.swiper-slide.swiper-slide-active .item_inner .item_img img:last-child {
  opacity: 0;
  visibility: hidden;
  transform: scale(.5)
}
.adg_item.swiper-slide.swiper-slide-active .item_inner .item_img img:first-child {
  opacity: 1;
  visibility: visible;
  transform: scale(1)
}
.adg_item .item_inner .item_info {
  position: relative;
}
.adg_item .item_inner .item_info .item_title {
  font-size: 20px;
  letter-spacing: 2px;
  ;
}
.adg_item .item_inner .item_info .item_desc {
  margin-top: 10px;
}
.adg_item .item_inner .item_link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.adg-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  margin: -22px 0 0 0;
  cursor: pointer;
  z-index: 99;
}
.adg-button-prev {
  left: 6%;
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.adg-button-next {
  right: 6%;
}
.adg-button:before {
  content: "";
  display: inline-block;
  width: 37px;
  height: 44px;
  background: url(../image/slide_btn.png) no-repeat 0 4px;
  -moz-transition-duration: .3s;
  -webkit-transition-duration: .3s;
  -o-transition-duration: .3s;
  -ms-transition-duration: .3s;
  transition-duration: .3s;
}
.adg-button:hover:before {
  background-position: -48px 4px;
}
/*index_client*/
.index_client {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 90px 0 44px;
}
.index_client .count_items {
  color: #FFFFFF;
  padding: 77px 0;
}
.index_client .flex_row {
  justify-content: center;
}
.index_client .count_item {
  width: 21%;
  margin: 0 2%;
}
.index_client .count_item:after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  width: 1px;
  height: 75%;
  background-color: #ff7f52;
}
.index_client .count_item:last-child:after {
  display: none;
}
.index_client .count_item .count_item_num {
  color: #FFFFFF;
  font-family: "AvertaPEBold";
  font-weight: normal;
}
.client_items_wrap {
  margin-top: 48px;
}
.client_items {
  position: relative;
  width: 100%;
  margin: 28px 0 0;
  overflow: hidden;
}
.client_items_right {
  transform: rotate(-180deg);
}
.client_items_right .client_item {
  transform: rotate(-180deg);
}
.client_items .str_move {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}
.client_item {
  position: relative;
  display: inline-block;
  width: 286px;
  height: 148px;
  line-height: 148px;
  text-align: center;
  border-radius: 15px;
  background-color: #4264f7;
  margin: 0 26px;
  overflow: hidden;
}
.client_item::before {
  opacity: 0;
  visibility: hidden;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-color: transparent;
  filter: progid:DXImageTransform.Microsoft.Gradient(startColorStr='#2ad772', endColorStr='#3b70f9', gradientType='1');
  background: -moz-linear-gradient(left, #2ad772, #3b70f9);
  background: -o-linear-gradient(left, #2ad772, #3b70f9);
  background: -webkit-gradient(linear, 0% 0%, 100% 0%, from(#2ad772), to(#3b70f9));
  -moz-transition-duration: .8s;
  -webkit-transition-duration: .8s;
  -o-transition-duration: .8s;
  -ms-transition-duration: .8s;
  transition-duration: .8s;
}
.client_item:hover:before {
  opacity: 1;
  visibility: visible;
}
.client_item img {
  position: relative;
}
/* index_news */
.index_news {
  padding: 0px 0 0px;
	padding-bottom: 60px;
  width: 100%;
  overflow: hidden;
}
.index_news .news_slider {
  position: relative;
  width: 144%;
  margin: 77px 0 0 -22%;
}
.new-button {
  position: absolute;
  top: 50%;
  margin-top: -29px;
  width: 58px;
  height: 58px;
  border-radius: 100%;
  overflow: hidden;
  background: url(../image/ico01.png) no-repeat center center;
  z-index: 1;
  cursor: pointer;
  z-index: 99;
}
.new-button:before, .new-button:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../image/new_slide_btn.png) no-repeat center center;
}
.new-button:before {
  background-image: url(../image/ico01_hover.png);
  opacity: 0;
  visibility: hidden;
  -moz-transition-duration: .3s;
  -webkit-transition-duration: .3s;
  -o-transition-duration: .3s;
  -ms-transition-duration: .3s;
  transition-duration: .3s;
}
.new-button:hover:before {
  opacity: 1;
  visibility: visible
}
.new-button:after {
  z-index: 1;
}
.new-button-next:after {
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.new-button-prev {
  left: 31%
}
.new-button-next {
  right: 31%;
}
.index_news .news_item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  padding: 0 35px;
  overflow: visible !important;
}
.index_news .news_item .item_inner {
  position: relative;
  width: 100%
}
/* .index_news .news_item.swiper-slide-prev{margin-right:160px !important} */
.index_news .news_item .item_img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.index_news .news_item .item_img img {
  display: block;
  margin-left: 20%;
  width: 80%;
  border-radius: 15px;
  overflow: hidden;
  -webkit-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.index_news .news_item.swiper-slide-next .item_img img {
  margin-left: 0;
}
.index_news .news_item.swiper-slide-active .item_img img {}
.index_news .news_item .item_info {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  -moz-transition-duration: .8s;
  -webkit-transition-duration: .8s;
  -o-transition-duration: .8s;
  -ms-transition-duration: .8s;
  transition-duration: .8s;
}
.index_news .news_item:hover .item_info {
  transform: translateX(20px);
}
.index_news .news_item .item_info .item_wrap {
  position: relative;
  width: 328px; /* margin-left: -264px; */ padding: 49px 20px;
  font-size: 14px;
  text-align: left;
  background-color: rgba(246, 249, 255, .95);
  border-radius: 15px;
  opacity: 0;
  visibility: hidden;
  -moz-transition-duration: .8s;
  -webkit-transition-duration: .8s;
  -o-transition-duration: .8s;
  -ms-transition-duration: .8s;
  transition-duration: .8s;
}
.index_news .news_item.swiper-slide-active .item_info .item_wrap {
  opacity: 1;
  visibility: visible; /* margin-left: -140px; */ -moz-transition-delay: .5s;
  -webkit-transition-delay: .5s;
  -o-transition-delay: .5s;
  transition-delay: .5s;
}
/*.index_news .news_item .item_info .item_wrap:before{content: "";opacity:0; visibility:hidden; position: absolute;width: 100%;height: 100%;left: 0;top: 0;border-radius: 15px;
	filter: progid:DXImageTransform.Microsoft.Gradient(startColorStr='#2ad772',endColorStr='#3b70f9',gradientType='0');
	background: -moz-linear-gradient(top, #2ad772, #3b70f9);
	background: -o-linear-gradient(top,#2ad772, #3b70f9);
	background: -webkit-gradient(linear,0% 0%, 0% 100%, from(#2ad772), to(#3b70f9));
	-moz-transition-duration:.5s;-webkit-transition-duration:.5s; -o-transition-duration:.5s; -ms-transition-duration:.5s;transition-duration:.5s;}*/
.index_news .news_item:hover .item_info .item_wrap:before {
  opacity: 1;
  visibility: visible;
}
.index_news .news_item .item_info .item_title, .index_news .news_item .item_info .item_time, .index_news .news_item .item_info .item_desc {
  -moz-transition-duration: .3s;
  -webkit-transition-duration: .3s;
  -o-transition-duration: .3s;
  -ms-transition-duration: .3s;
  transition-duration: .3s;
}
/*.index_news .news_item:hover .item_info .item_title,
.index_news .news_item:hover .item_info .item_time,
.index_news .news_item:hover .item_info .item_desc
{color: #fff;}*/
.index_news .news_item .item_title {
  position: relative;
  font-size: 16px;
  line-height: 1.7;
}
.index_news .news_item .item_time {
  position: relative;
  color: #a6a6a6;
  margin: 20px 0 15px;
}
.index_news .news_item .item_desc {
  position: relative;
  line-height: 2;
  margin-bottom: 24px;
}
.index_news .news_item .item_more .sys_btn {
  position: relative;
  line-height: 44px;
  padding: 0 50px;
}
.index_news .news_item .item_img:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, .6);
  border-radius: 15px;
  -moz-transition-duration: .8s;
  -webkit-transition-duration: .8s;
  -o-transition-duration: .8s;
  -ms-transition-duration: .8s;
  transition-duration: .8s;
}
.index_news .news_item.swiper-slide-active .item_img:after {
  background-color: transparent
}
/* index_application */
.index_application {}
.index_application .index_layer_hd {
  margin-bottom: 60px;
}
.index_application .application_slider {
  margin: -10px;
}
.index_application .application_item {
  width: 25%;
  float: left;
  padding: 10px;
}
.index_application .app_item_inner {
  display: block;
  border: 1px solid #eee;
  position: relative;
}
.index_application .app_item_img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
.index_application .app_item_img img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: all .6s ease;
  -o-transition: all .6s ease;
  transition: all .6s ease;
}
.index_application .app_item_info {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, .6);
  padding: .9em .3em;
  text-align: center;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.index_application .app_item_info:before {
  content: '';
  display: block;
  width: 0%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  -webkit-transition: all .6s ease;
  -o-transition: all .6s ease;
  transition: all .6s ease;
}
.index_application .app_item_info, .index_application .app_item_info a {
  color: #fff;
}
.index_application .app_item_title {
  font-size: 1em;
  line-height: 1.3em;
  width: 100%;
  font-weight: normal;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
.index_application .index_layer_ft {
  padding-top: 55px;
}
.index_application .app_item_inner:hover .app_item_img img {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  -o-transform: scale(1.08);
  transform: scale(1.08);
}
.index_application .app_item_inner:hover .app_item_info:before {
  width: 100%;
  left: 0;
  right: auto;
  background-color: rgba(0, 0, 0, .3);
}
/* index_service */
.index_service {
  align-items: stretch;
  overflow: hidden;
}
.index_service .index_layer {
  padding: 0;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}
.index_service .flex_row {
  align-items: stretch;
  height: 100%;
}
.index_service .service_items {
  width: 100%;
}
.index_service .service_item {
  position: relative;
  width: 25%;
  height: 100%;
  overflow: hidden;
}
.index_service .service_item, .index_service .service_item a {
  color: #fff;
}
.index_service .service_item:before {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.index_service .service_item:first-of-type:before {
  display: none;
}
.index_service .service_item .item_img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  opacity: 0;
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  -o-transform: scale(1.08);
  transform: scale(1.08);
  -webkit-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.index_service .service_item .item_inner {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8% 8% 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}
.index_service .service_item .item_info {
  -webkit-transition: all .6s ease;
  -o-transition: all .6s ease;
  transition: all .6s ease;
}
.index_service .service_item .item_ico {
  display: block;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 8%;
  top: 10%;
  -webkit-transition: all .9s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -o-transition: all .9s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: all .9s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.index_service .service_item .item_ico_1 {
  background-image: url(../image/index_service_ico_01.png);
}
.index_service .service_item .item_ico_2 {
  background-image: url(../image/index_service_ico_02.png);
}
.index_service .service_item .item_ico_3 {
  background-image: url(../image/index_service_ico_03.png);
}
.index_service .service_item .item_ico_4 {
  background-image: url(../image/index_service_ico_04.png);
}
.index_service .service_item .item_title {
  font-size: 1.875em;
  line-height: 1.2em;
  -webkit-transition: all .6s ease;
  -o-transition: all .6s ease;
  transition: all .6s ease;
}
.index_service .service_item .item_title:after {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  background-color: #fff;
  margin-top: 20px;
  margin-bottom: 25px;
}
.index_service .service_item .item_desc {
  font-size: 1.125em;
  line-height: 1.3em;
  opacity: 0;
  -webkit-transform: translateY(30%);
  -ms-transform: translateY(30%);
  -o-transform: translateY(30%);
  transform: translateY(30%);
  margin-bottom: -90px;
  -webkit-transition: all .6s ease;
  -o-transition: all .6s ease;
  transition: all .6s ease;
}
.index_service .service_item:hover .item_img {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.index_service .service_item:hover .item_ico {
  top: 6%;
}
.index_service .service_item:hover .item_desc {
  max-height: 5.2em;
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  margin-bottom: 0 !important;
}
.service_slider {
  width: 100%;
  height: 100%;
}
/* product_items */
.product_items {
  position: relative;
  margin: 0 -15px;
}
.product_item {
  width: 33.33333333%;
  height: auto;
  float: left;
  text-align: center;
  display: flex;
  box-sizing: border-box;
  padding: 0 15px 20px;
}
.product_item > figure {
  display: block;
  width: 100%;
  position: relative;
  border: 1px solid #eee;
  background-color: #fff;
  min-height: 100%;
}
.product_item .item_img, .product_item .item_img a, .product_item .item_img img {
  display: block;
  width: 100%;
  height: auto;
}
.product_item .item_img {
  position: relative;
  overflow: hidden;
}
.product_item .item_img a {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}
.product_item .item_img img {
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
.product_item figcaption {
  padding: 15px 5% 25px;
  text-align: center;
}
.product_item .item_num, .product_item .item_title {
  width: 100%;
  height: 1.3em;
  line-height: 1.3em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.product_item .item_title {
  width: 100%;
  font-size: 1em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: normal;
}
.product_item .item_num .label {
  font-weight: bold;
}
.product_item .item_desc {
  font-size: 14px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product_item .item_title a {
  display: block;
}
.product_item > figure:hover .item_img img {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  -o-transform: scale(1.08);
  transform: scale(1.08);
}
.product_item .item_brand {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: 55px;
  margin-bottom: 10px;
  text-align: left;
}
.product_item .item_brand .brand_img {
  width: auto;
  max-height: 50px;
}
.product_item .item_brand .brand_label {
  display: inline-block;
  padding: 0 .8em;
  border-radius: 2em;
  border: 2px solid #ed3002;
  line-height: 1.2em;
  color: #ed3002;
  font-size: 1.11em;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
}
/* index_prodcuct */
.index_product {
  align-items: flex-start;
}
.index_product .index_layer {
  padding-top: 60px;
}
.index_product .index_layer_hd {
  margin-bottom: 20px;
}
.index_product .index_layer_bd .layout {
  position: relative;
}
.index_product .layer_tab_panel {
  display: none;
}
.index_product .product_slider {
  margin: 0 -15px;
  padding-bottom: 5px;
}
.index_product .panel_active {
  display: block;
}
.index_product .panel_active .product_slider {
  -webkit-animation: .8s fadeInUpA ease;
  -o-animation: .8s fadeInUpA ease;
  animation: .8s fadeInUpA ease;
}
.index_product .product_items {
  margin: 0;
}
.index_product .product_item {
  width: 25%;
  height: auto;
  padding-bottom: 0;
  overflow: visible;
}
.index_product .product_item figcaption {
  text-align: left;
  padding: 0 20px 25px
}
.index_product .product_item .item_hd {
  background-color: #e6e6e6;
  padding: 10px 20px 25px;
  margin: 0 -20px 20px;
}
.index_product .product_item .item_inner:hover {
  border-color: #ccc;
  box-shadow: 0 1px 8px rgba(0, 0, 0, .12);
}
/* index_review */
.index_review {
  background-position: center bottom;
  background-repeat: no-repeat;
  -webkit-background-size: 100% auto;
  background-size: 100% auto;
}
.index_review .index_layer_bd .layout {
  position: relative;
}
.index_review .index_layer_bd .layout:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #2b2c30;
  position: absolute;
  left: 0;
  top: 115px;
  margin-top: 11px;
}
.index_review .reviews_left, .index_review .reviews_thumbs, .index_review .reviews_right {
  position: relative;
  z-index: 2;
}
.index_review .reviews_left {
  width: 25.5%;
  float: left;
  padding: 115px 25px 0;
}
.index_review .reviews_thumbs {
  width: 31%;
  float: left;
  position: relative;
  overflow: hidden;
}
.index_review .reviews_brief_slider {
  padding-bottom: 80px;
}
.index_review .reviews_brief_item {
  padding-top: 35px;
  position: relative;
  overflow: visible;
}
.index_review .reviews_brief_item, .index_review .reviews_brief_item a {
  color: #666;
}
.index_review .reviews_brief_item .review_title {
  font-size: 1.125em;
  color: #666;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.index_review .reviews_brief_item .item_dot {
  border-color: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
}
.index_review .reviews_brief_item .item_dot_prev {
  display: none;
}
.index_review .item_dot {
  content: '';
  display: block;
  width: 21px;
  height: 21px;
  border: 1px solid #2b2c30;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 1px;
}
.index_review .item_dot:before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  background-color: #2b2c30;
  border-radius: 50%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.index_review .review_main {
  width: 74.5%;
  float: left;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.index_review .review_slider {
  padding-bottom: 35px;
  margin-bottom: -35px;
}
.index_review .review_cell {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  overflow: visible;
}
.index_review .review_thumbs {
  width: 38.5%;
  float: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.index_review .review_thumbs img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.index_review .swiper-slide-active .review_thumbs img {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.index_review .review_cont {
  width: 61.5%;
  float: left;
  padding: 115px 4.7% 0;
}
.index_review .review_cont .cont_inner {
  position: relative;
  padding-top: 35px;
}
.index_review .review_cont .review_title {
  font-size: 1.4375em;
  line-height: 1.2em;
  font-weight: normal;
  margin-bottom: .6em;
}
.index_review .review_cont .review_desc {
  color: #666;
}
.index_review .review_cont .review_more {
  padding-top: 60px;
}
.index_review .review_cont .item_dot {
  visibility: hidden;
}
.index_review .swiper-slide-active .item_dot {
  visibility: visible;
}
.index_review .item_dot_prev {
  opacity: 1;
}
.index_review .swiper-slide-active .item_dot_prev {
  opacity: 0;
  left: -40%;
  -webkit-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.index_review .reviews_brief_item .review_title {
  opacity: 0;
  -webkit-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all .6s ease;
  -o-transition: all .6s ease;
  transition: all .6s ease;
}
.index_review .swiper-slide-active .reviews_brief_item .review_title {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.index_review .item_dot_cur {
  opacity: 0;
  left: 100%;
}
.index_review .swiper-slide-active .item_dot_cur {
  opacity: 1;
  left: 0;
  -webkit-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.index_review .review_title, .index_review .review_desc {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
}
.index_review .review_more {
  opacity: 0;
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
}
.index_review .swiper-slide-active .review_title, .index_review .swiper-slide-active .review_desc, .index_review .swiper-slide-active .review_more {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  -webkit-transition: all .9s ease;
  -o-transition: all .9s ease;
  transition: all .9s ease;
}
.index_review .swiper-control {
  width: 38.5%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.index_review .swiper-buttons {
  width: 160px;
  height: 60px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  background-color: #fff;
  letter-spacing: -10px;
  vertical-align: middle;
}
.index_review .swiper-buttons .swiper-button-prev, .index_review .swiper-buttons .swiper-button-next {
  position: relative;
  margin: auto;
  width: 50%;
  height: 60px;
  border: 0;
  border-radius: 0;
  left: auto;
  right: auto;
  text-indent: -9999px;
  overflow: hidden;
  top: auto;
}
.index_review .swiper-button-prev:before, .index_review .swiper-button-next:before {
  display: none;
}
.index_review .swiper-button-prev:not(.swiper-button-disabled):hover, .index_review .swiper-button-next:not(.swiper-button-disabled):hover {
  background-color: #f6f6f6;
  border-color: #f6f6f6;
}
.index_review .swiper-button-prev {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAARCAMAAAA4ynbUAAAAOVBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8dlA9AAAAE3RSTlMAnA+Wdl5cA46CaFeQcWxKHRgJ7EqzKQAAAEBJREFUCNdlyDsWgCAMBdHESESU7/4XS8FLKJjqniGUEhC4LShfOIbPoMepAhB3QhofY2HnLc4stO/m73zjcIYJWHsBGEBhqwYAAAAASUVORK5CYII=);
}
.index_review .swiper-button-next {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAARCAMAAAA4ynbUAAAAPFBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQLyYwAAAAFHRSTlMAnJZ0D3xeXFcRkI6NhGxpW0oYDhBos3kAAAA9SURBVAjXdcy5EQAhEAPBFcfx/+SfKw4CC1ldY0iqcDCUhj28dcKRHu3wVq06OUBFXqFsqO+J8G8kQjKxAFm7AP0zECpnAAAAAElFTkSuQmCC);
}
.index_review .swiper-button-next:after {
  content: '';
  display: block;
  width: 1px;
  height: 20px;
  background-color: #acacac;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -10px;
}
/* fullpage */
#fp-nav {
  position: fixed;
  right: 30px;
  top: 50%;
  z-index: 9;
}
#fp-nav li {
  height: 32px;
  padding: 8px 0;
  line-height: 6px;
  text-align: center;
  position: relative;
}
#fp-nav li a, #fp-nav li a:before {
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
#fp-nav li a {
  display: inline-block;
  width: 15px;
  height: 15px;
  line-height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0);
}
#fp-nav li a span {
  display: none;
}
#fp-nav li a:before {
  content: '';
  display: inline-block;
  background-color: #333;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  vertical-align: middle;
}
#fp-nav li a.fp-section-active {
  border-color: #333;
}
#fp-nav li a.fp-section-active:before {
  background-color: rgba(255, 255, 255, 0) !important;
}
.fp-viewing-0 #fp-nav li a:before, .fp-viewing-3 #fp-nav li a:before, .fp-viewing-6 #fp-nav li a:before {
  background-color: #fff;
}
.fp-viewing-0 #fp-nav li a.fp-section-active, .fp-viewing-3 #fp-nav li a.fp-section-active, .fp-viewing-6 #fp-nav li a.fp-section-active {
  border-color: #fff;
}
.fp-enabled .index_service .service_item {
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  transition: all .6s ease;
}
.fp-enabled .fp-section-active .service_item {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}
.fp-enabled .fp-section-active .service_item:nth-of-type(1) {
  transition-delay: .6s;
}
.fp-enabled .fp-section-active .service_item:nth-of-type(2) {
  transition-delay: .8s;
}
.fp-enabled .fp-section-active .service_item:nth-of-type(3) {
  transition-delay: 1.0s;
}
.fp-enabled .fp-section-active .service_item:nth-of-type(4) {
  transition-delay: 1.2s;
}
.fp-enabled .index_service .service_item:before {
  opacity: .3;
  transition: all 1.2s ease;
}
.fp-enabled .fp-section-active .service_item:before {
  opacity: 1;
}
.fp-enabled .fp-section-active .service_item:nth-of-type(1):before {
  transition-delay: .9s;
}
.fp-enabled .fp-section-active .service_item:nth-of-type(2):before {
  transition-delay: 1.1s;
}
.fp-enabled .fp-section-active .service_item:nth-of-type(3):before {
  transition-delay: 1.2s;
}
.fp-enabled .fp-section-active .service_item:nth-of-type(4):before {
  transition-delay: 1.4s;
}
.fp-enabled .foot_item {
  opacity: 0;
  -webkit-transform: translateY(20%);
  transform: translateY(20%);
  transition: all .6s ease;
}
.fp-enabled .fp-section-active .foot_item {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}
.fp-enabled .fp-section-active .foot_item:nth-of-type(1) {
  transition-delay: .6s;
}
.fp-enabled .fp-section-active .foot_item:nth-of-type(2) {
  transition-delay: .8s;
}
.fp-enabled .fp-section-active .foot_item:nth-of-type(3) {
  transition-delay: 1.0s;
}
.fp-enabled .fp-section-active .foot_item:nth-of-type(4) {
  transition-delay: 1.2s;
}
.fp-enabled .foot_bottom {
  opacity: 0;
  transition: all .9s ease;
}
.fp-enabled .fp-section-active .foot_bottom {
  opacity: 1;
  transition-delay: .9s;
}
.fp-enabled .index_layer_hd {
  opacity: 0;
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
  transition: all .9s ease;
}
.fp-enabled .fp-section-active .index_layer_hd {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  transition-delay: .6s;
}
.fp-enabled .index_layer_bd {
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  transition: all .9s ease;
}
.fp-enabled .fp-section-active .index_layer_bd {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  transition-delay: .6s;
}
.fp-enabled .index_layer_ft {
  opacity: 0;
  -webkit-transform: scale(.6) translateY(150px);
  transform: scale(.6) translateY(150px);
  transition: all .9s ease;
}
.fp-enabled .fp-section-active .index_layer_ft {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  transition-delay: .6s;
}
.fp-enabled .reviews_left {
  opacity: 0;
  -webkit-transform: scale(.6) translateX(150px);
  transform: scale(.6) translateX(150px);
  transition: all .9s ease;
}
.fp-enabled .fp-section-active .reviews_left {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  transition-delay: .6s;
}
.fp-enabled .review_thumbs {
  opacity: 0;
  -webkit-transform: scale(.6) translateY(150px);
  transform: scale(.6) translateY(150px);
  transition: all .9s ease;
}
.fp-enabled .fp-section-active .review_thumbs {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  transition-delay: .6s;
}
/*----------------------------------page head---------------------------------*/
/*public*/
.web_main {
  position: relative;
}
.page_main {
  -moz-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/*sys_sub_head*/
.sys_sub_head {
  position: relative;
  text-align: left;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  position: relative;
}
.sys_sub_head:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 56px;
  bottom: -28px;
  left: 50%;
  margin-left: -2px;
  background-color: #21e571;
  z-index: 1;
}
.sys_sub_head .head_bn_item {
  width: 100%;
}
.sys_sub_head .head_bn_item img {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
}
.sys_sub_head .swiper-pagination {
  width: 100%;
  bottom: 10px;
  ;
  z-index: 3;
}
.sys_sub_head .head_title, .sys_sub_head .head_title a {
  color: #fff;
}
.sys_sub_head .head_title {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 78px;
  z-index: 2;
  padding-top: 70px;
}
.sys_sub_head .head_title h1 {
  font-size: 36px;
  text-transform: uppercase;
}
.path_bar {
  font-size: 20px;
  text-transform: uppercase;
  padding: 15px 0 0;
}
.path_bar li {
  display: inline;
  padding-right: 8px;
}
.path_bar li + li:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 2px;
  background-color: #333;
  vertical-align: middle;
  margin-right: 8px;
}
.path_bar li:last-child {
  color: #a84cbf;
  text-decoration: underline;
  text-transform: none;
}
.mobile-head-items {
  display: none;
}
/*----------------------------------aside---------------------------------*/
.aside {
  float: left;
  width: 320px;
  padding-bottom: 50px;
}
.aside-wrap {}
.side-tit-bar {
  position: relative;
}
.side-tit-bar .side-tit {
  position: relative;
  font-size: 22px;
  font-family: 'Minion Pro';
  line-height: 1.3em;
  color: #fff;
  background: #333;
  border-left: 2px solid #1c4f9a;
  font-weight: normal;
  padding: .8em 15px .5em;
  border-radius: 0 20px 0 0;
}
.side-widget {
  position: relative;
  margin: 0 0 35px;
}
.side-cate {
  font-size: 16px;
  border-radius: 0 0 0 20px;
  overflow: hidden;
  position: relative;
  background-color: #f6f6f6;
  padding: 0 0 30px;
}
.side-cate .icon-cate {
  display: inline-block;
  width: 2.2em;
  height: 1.8em;
  line-height: 1.8em;
  text-align: center;
  font-size: 1.2em;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 3px;
  position: absolute;
  right: 0;
  top: .1em;
  cursor: pointer;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.side-cate .icon-cate:before {
  content: '\f107';
  font-family: 'fontawesome';
}
.side-cate li {
  position: relative;
}
.side-cate > li {
  margin-bottom: 8px;
}
.side-cate > li a {
  display: block;
  line-height: 1.2em;
  padding: .6em 35px .6em 15px;
}
.side-cate > li.li_active > a {
  background-color: #1c4f9a;
  color: #fff;
}
.side-cate > li.li_active > a:hover {
  color: #fff;
}
.side-cate > li.li_active > .icon-cate {
  top: .1em;
  color: #fff;
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.side-cate > li > a {
  font-weight: bold;
  text-transform: uppercase;
}
.side-cate > li ul {
  display: none;
  padding: .5em 0 0;
}
.side-cate > li li a {
  padding: .5em 35px .5em 15px;
  color: #666;
  font-size: 16px;
}
.side-cate > li li a:hover {
  color: #1c4f9a;
}
.side-cate > li li.nav-current > a {
  color: #1c4f9a;
}
.side_contact .contact_item + .contact_item {
  margin-top: 15px;
}
.side_contact .contact_item {
  padding-left: 35px;
  position: relative;
  font-size: 16px;
}
.side_contact .contact_ico {
  display: inline-block;
  width: 21px;
  height: 21px;
  vertical-align: middle;
  margin-right: 5px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}
/*.side_contact .contact_ico_email{background-image:url(img/top_ico_email.png);}
.side_contact .contact_ico_tel{background-image:url(img/top_ico_tel.png);}
.side_contact .contact_ico_addr{background-image:url(img/top_ico_addr.png);}*/
.side_contact .contact_txt {
  vertical-align: middle;
}
.side-product-items {
  position: relative;
}
.side-product-items .items_content {
  position: relative;
}
.side-product-items .items_content ul:after {
  content: '';
  display: block;
  width: 100%;
  height: 0;
  clear: both;
  visibility: hidden;
}
.side_product_item {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  margin: 0 0 6px;
}
.side_product_item figure {
  position: relative;
  display: block;
  border: 1px solid #eee;
  overflow: hidden;
  padding: 10px;
  background: #FFF;
  position: relative;
}
.side_product_item .item-img {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 40%;
}
.side_product_item .item-img img {
  position: relative;
  width: 100%;
}
.side_product_item figcaption {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 58%;
  padding: 10px 0 10px 15px;
}
.side_product_item figcaption .item_title {
  line-height: 1.3;
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: normal;
}
.side_product_item figcaption .item_text {
  color: #949494;
  line-height: 1.3;
  font-size: 14px;
}
.side_product_item .add-friend {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 37px;
  height: 39px;
}
.side_product_item .add-friend:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: dashed dashed solid;
  border-color: transparent transparent #c1c1c1;
  border-width: 0 0 39px 39px;
  overflow: hidden;
  position: absolute;
  right: 0;
  bottom: 0;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  -ms-box-sizing: content-box;
  -o-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.side_product_item .add-friend:hover:before {
  border-bottom-color: #1c4f9a;
}
.side_product_item .add-friend:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  bottom: 6px;
  right: 6px;
  background: url(../image/add01.png) no-repeat center center;
  z-index: 1;
}
.side-product-items .btn-prev, .side-product-items .btn-next {
  position: absolute;
  left: 0;
  width: 100%;
  height: 15px;
  display: block;
  cursor: pointer;
  opacity: .25;
}
.aside .side-bn {
  width: 100%;
  margin: 0 0 40px;
}
.aside .side-bn img {
  width: 100%
}
/*----------------------------------main---------------------------------*/
.main {
  position: relative;
  width: calc(100% - 380px);
  float: right;
  padding-bottom: 70px;
}
.main .banner_section {
  margin-bottom: 25px;
}
/*title*/
.page_title {
  position: relative;
  font-size: 22px;
  line-height: 1.3em;
  padding: 5px 0 10px;
  font-weight: normal;
}
.main_hd {
  border-bottom: 1px solid #ddd;
  margin: 0 0 25px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.main_hd:after {
  width: 100%;
  clear: both;
}
.main_hd .page_title {
  display: inline-block;
  color: #000;
  font-size: 28px;
  vertical-align: middle;
  position: relative;
  float: left;
}
.main_hd .page_title:before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #4e4e4e;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.main_hd .share_this {
  max-width: 50%;
  text-align: right;
  float: right;
}
.items_list .page_title {
  font-size: 20px;
  padding: .7em 0;
  font-weight: normal;
  color: #333;
  line-height: 1.2em;
  border-bottom: 0;
  margin-bottom: 10px;
}
.items_list .share_this {
  float: right;
  position: absolute;
  right: 0;
  top: 5px;
}
/*main_banner*/
.main_banner {
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}
.main_banner img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 160px;
}
.main_banner .swiper-wrapper li a {
  display: block;
  position: relative;
}
.main_banner .swiper-wrapper li a:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, .4));
  background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, .4));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, .4));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, .4));
  position: absolute;
  left: 0;
  top: 0;
}
.main_banner .swiper-pagination {
  width: 100%;
  text-align: center;
  padding-bottom: 15px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.main_banner .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-color: #fff;
  margin: 0 3px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  opacity: .6;
  filter: alpha(opacity=60);
}
.main_banner .swiper-pagination-bullet-active {
  background: none;
  border: 1px solid #fff;
  opacity: 1;
  filter: alpha(opacity=100);
}
.main_intro {
  line-height: 1.6;
}
.banner_section .main_banner_slider ul {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  margin: 0 !important
}
/*page*/
.page_bar {
  position: relative;
  margin: 65px 0 136px;
  text-align: center;
  font-size: 16px;
}
.page_bar span.current2 {
  display: none;
}
.page_bar .pages {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.page_bar a, .page_bar span {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding: 0 14px;
  line-height: 44px;
  min-width: 62px;
  text-align: center;
  color: #737373;
  font-family: "AvertaPERegular";
  border: 1px solid #e7e7e7;
  margin: 4px;
  text-align: center;
  border-radius: 4px;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  transition: all .3s ease;
}
.page_bar a.current, .page_bar a:hover {
  color: #FFF;
  background: #1c4f9a;
  border-color: transparent;
  filter: progid:DXImageTransform.Microsoft.Gradient(startColorStr='#ff7f52', endColorStr='#13be59', gradientType='0');
  background: -moz-linear-gradient(top, #ff7f52, #13be59);
  background: -o-linear-gradient(top, #ff7f52, #13be59);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ff7f52), to(#13be59));
}
.page_bar a:not(.current):hover {
  border-color: #1c4f9a;
  background-color: #1c4f9a;
  color: #fff;
}
.page_bar span.current2 {}
.pages .extend1 {
  display: none;
}
/*-------------------------------------------------------- 
													page:product list
																	------------------------------------------------------*/
.items_list {
  width: 100%;
  position: relative;
}
.items_list > ul {
  margin: 0 -15px;
}
.items_list .product_item {
  overflow: visible;
}
.items_list .product_item .item_img {
  position: static;
}
.items_list .product_item .item_img a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
}
.items_list .product_item .item_title {
  font-size: 16px;
}
.items_list .product_item figcaption {
  position: relative;
  z-index: 2;
  background-color: #f5f5f5;
}
.items_list .product_item figure {
  border: 0;
  background-color: #f5f5f5;
  padding: 5px;
  overflow: hidden;
}
.items_list .product_item figure:hover .item_img img {
  -webkit-transition: all .6s ease;
  -o-transition: all .6s ease;
  transition: all .6s ease;
}
.items_list .product_item figure:before {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  position: absolute;
  right: 0%;
  bottom: 0;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
.items_list .product_item > figure:hover:before {
  width: 100%;
  left: 0;
  right: auto;
  background-color: #1874c1;
}
/*-------------------------------------------------------- 
													page:single Product
																	------------------------------------------------------*/
/*product photos*/
.product-intro {
  position: relative;
  overflow: hidden;
  padding-bottom: 35px;
}
.cloud-zoom-lens {
  border: 1px solid #eee;
  cursor: move;
}
.cloud-zoom-title {
  position: absolute !important;
  background-color: #000;
  color: #fff;
  padding: 3px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 10px;
  top: 0px;
}
.cloud-zoom-big {
  overflow: hidden;
  padding: 0px;
}
.cloud-zoom-loading {
  color: white;
  background: #222;
  padding: 3px;
  border: 1px solid #000;
}
.product-view .swiper-slide {
  padding-bottom: 1px;
}
.product-view .product-image.zoom_remove:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: 999;
}
.product-view {
  position: relative;
  width: 45%;
  float: left;
}
.product-view .product-image {
  position: relative;
  border: 1px solid #ddd;
}
.product-view .product-image img {
  position: relative;
  width: 100%;
}
.product-view .image-additional {
  position: relative;
  margin: 20px 35px;
  overflow: hidden;
}
.product-view .image-additional li {
  position: relative;
  width: 100%;
  width: 33.3333%;
  float: left;
  overflow: visible;
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.product-view .image-additional li.single {
  display: none;
}
.product-view .image-additional li img {
  display: block;
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.product-view .image-additional li a {
  display: block;
  position: relative;
  border: 1px solid #ddd;
  padding: 1px;
  overflow: hidden;
  margin: 0 10%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.product-view .image-additional li.current > a {
  border: 2px solid #333;
  padding: 0;
}
.product-view .image-additional img.popup {
  display: none;
}
.ad_prompt {
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  width: 100%;
  line-height: 40px;
  margin: -20px 0 0;
  text-align: center;
  color: #ff6f00;
  font-size: 20px;
  -webkit-animation: twinkling 1s infinite ease-in-out;
  animation: twinkling 1s infinite ease-in-out;
  display: none;
}
.product-view .image-additional.swiper-container-horizontal > .swiper-pagination-bullets {
  display: none;
}
.product-view .swiper-button-next, .product-view .swiper-button-prev {
  width: 30px;
  height: 30px;
  margin-top: -15px;
  opacity: 1;
  line-height: 30px;
  font-size: 28px;
  background: none;
  -webkit-transform: scale(.6, 1);
  -ms-transform: scale(.6, 1);
  -o-transform: scale(.6, 1);
  transform: scale(.6, 1);
  font-weight: bold;
}
.product-view .swiper-button-prev, .product-view .swiper-container-rtl .swiper-button-next {
  left: 0;
}
.product-view .swiper-button-next, .product-view .swiper-container-rtl .swiper-button-prev {
  right: 0;
}
/*product summary*/
.product-summary {
  position: relative;
  width: 51%;
  float: right;
  padding: 0 0 10px;
  color: #333;
  font-size: 16px;
}
.product-summary .product-meta {
  line-height: 1.8;
}
.product-summary .product-meta h3 {
  margin: 0 0 5px;
  font-size: 1.125em;
}
.product-summary .product-meta li {
  width: 100%;
  display: table;
  padding: 2px 0;
}
.product-summary .product-meta li em {
  display: table-cell;
  width: 40%;
  color: #666;
}
.product-summary .product-meta li .item-val {
  display: table-cell;
  -ms-word-break: break-all;
  word-break: break-all;
  word-wrap: break-word;
}
.product-btn-wrap {
  position: relative;
  padding-top: 30px;
}
.product-btn-wrap .email, .product-btn-wrap .pdf, .product-btn-wrap .buy {
  position: relative;
  display: inline-block;
  vertical-align: top;
  line-height: 28px;
  padding: .25em 1.5em;
  font-size: 16px;
  border-radius: 2em;
  margin: 0 15px 10px 0;
  background-color: #fff;
  border: 2px solid #ff7f52;
  color: #ff7f52;
}
.product-btn-wrap .email:before, .product-btn-wrap .pdf:before {
  padding-right: 8px;
}
.product-btn-wrap .email:before {
  content: '\f0e0';
}
.product-btn-wrap .pdf:before {
  content: '\f1c1';
}
.product-btn-wrap a:hover {
  background: #1c4f9a !important;
  border-color: #1c4f9a !important;
  color: #fff !important;
}
.product-btn-wrap a.email {
  background-color: #1c4f9a;
  border-color: #1c4f9a;
  color: #fff;
}
.product-summary .share-this {
  margin: 30px 0 0;
  text-align: right;
}
/* product detail */
.product-detail {
  position: relative;
  overflow: visible;
  margin: 30px 0 0;
}
.detail-tabs {
  position: relative;
  padding-right: 30%;
  border-bottom: 2px solid #333;
}
.detail-tabs .title {
  position: relative;
  display: inline-block;
  font-weight: normal;
  vertical-align: top;
  line-height: 26px;
  padding: 6px 28px;
  cursor: pointer;
  margin: 0 5px 0 0;
  font-size: 16px;
  border: 2px solid #f6f6f6;
  border-radius: .5em .5em 0 0;
  border-bottom-width: 0;
  background-color: #f6f6f6;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
}
.detail-tabs .title.current {
  border-color: #333;
  background-color: #fff;
  color: #333;
  padding-bottom: 8px;
  margin-bottom: -2px;
}
.product-detail .tab-panel-wrap {}
.product-detail .share-this {
  position: absolute;
  right: 0;
  top: 2px;
}
.product-detail .tab-panel-content {
  padding: 20px 0;
  display: block;
  overflow: hidden
}
.product-detail .disabled {
  display: none;
}
/*like product*/
.goods-may-like {
  position: relative;
  overflow: hidden;
}
.goods-may-like .title {
  line-height: 35px;
  font-size: 16px;
  margin: 50px 0 20px;
  padding: 0 15px;
  text-transform: uppercase;
  font-weight: bold;
  background-color: #333;
  color: #fff;
}
.goods-may-like .product_item {
  width: 33.33333333%;
  margin: 0;
  padding: 0;
}
.goods-may-like .product_item figure {
  margin: 0;
}
.goods-may-like .swiper-slide {
  width: 33.33333333%;
  overflow: visible;
}
.goods-may-like .swiper-control {
  position: absolute;
  right: 10px;
  top: 55px;
}
.goods-may-like .swiper-button-prev, .goods-may-like .swiper-button-next {
  display: inline-block;
  width: 20px;
  height: 25px;
  line-height: 25px;
  font-size: 24px;
  margin-left: 5px;
  background: none;
  color: #fff;
  margin-left: 5px;
  position: static;
  margin: 0;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(.8, 1);
  -ms-transform: scale(.8, 1);
  -o-transform: scale(.8, 1);
  transform: scale(.8, 1);
}
.goods-may-like .swiper-button-next.swiper-button-disabled, .goods-may-like .swiper-button-prev.swiper-button-disabled {
  opacity: .5;
  filter: alpha(opacity=50);
}
/*-------------------------------------------------------- 
													page:blog list
																	------------------------------------------------------*/
.main_blog {
  background-color: #f7f9ff;
  overflow: hidden;
  padding: 55px 0 120px;
}
.main_blog .layout:after {
  display: none;
}
.main_blog .title_bar {
  position: relative;
  text-align: center;
}
.main_blog .title_bar .title {
  position: relative;
  display: inline-block;
  font-size: 36px;
  padding: 27px 0;
  margin: 0 0 65px;
}
.main_blog .title_bar .title:after {
  content: "";
  position: absolute;
  margin-left: -40px;
  left: 50%;
  bottom: 0;
  width: 80px;
  height: 1px;
  background-color: #ff7f52;
}
.main_blog .blog_content {
  width: 100%;
}
.main_blog .blog_content .img_items {
  position: relative;
  width: 50%;
  background-color: #FFFFFF;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main_blog .blog_content .img_items ul {
  position: relative;
}
.main_blog .blog_content .img_items .img_item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  border-radius: 15px;
  overflow: hidden;
}
.main_blog .blog_content .img_items .img_item.active {
  position: relative;
  z-index: 1;
  opacity: 1;
  visibility: visible;
}
.main_blog .blog_content .img_items .img_item img {
  width: 100%;
}
.main_blog .blog_content .blog_items {
  position: relative;
  width: 50%;
  border-radius: 15px;
  background-color: #FFFFFF;
  padding: 0 3.8%;
}
.main_blog .blog_content .blog_items .blog_item {
  border-bottom: 1px dashed #ededed;
  padding: 23px 0 20px;
}
.main_blog .blog_content .blog_items .blog_item:last-of-type {
  border-bottom: none;
}
.main_blog .blog_content .blog_items .blog_item .item-title {
  font-size: 16px;
}
.main_blog .blog_content .blog_items .blog_item.active .item-title a {
  color: #ff7f52;
}
.main_blog .blog_content .blog_items .blog_item time {
  display: block;
  color: #a6a6a6;
  margin: 7px 0 5px;
}
.main_blog .blog_content .blog_items .blog_item .item-detail {
  line-height: 1.8;
}
.main_blog .blog_content .img_items .img_item, .main_blog .blog_content .blog_items .blog_item {
  -moz-transition-duration: .5s;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  -ms-transition-duration: .5s;
  transition-duration: .5s;
}
.blog_list {
  position: relative;
  width: 100%;
}
.blog_list .circle {
  bottom: auto;
  top: -68px;
}
.blog-item .item-wrap {
  width: 100%;
  padding: 48px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ededed;
}
.blog-item .item-img {
  width: 266px;
  border-right: 1px solid #ddd;
}
.blog-item .item-img img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.blog-item .item-info {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  min-width: 1px;
  padding-left: 3.5%;
  font-size: 14px;
}
.blog-item .item-title {
  font-size: 16px;
}
.blog-item time {
  display: block;
  color: #a6a6a6;
  margin: 7px 0 5px;
}
.blog-item .item-detail {
  line-height: 1.8;
}
.blog-item .item-more {
  display: inline-block;
  color: #194679;
  font-size: 14px;
  text-transform: capitalize;
}
.blog-item .item-more:after {
  content: '\f105';
  font-family: 'fontawesome';
  font-size: 1.125em;
  display: inline-block;
  width: 23px;
  height: 23px;
  line-height: 23px;
  text-align: center;
  border: 2px solid;
  border-radius: 50%;
  margin-left: .8em;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.blog-item .item-more:hover {
  letter-spacing: 1px;
  color: #1c4f9a;
}
.blog-item .item-more:hover:after {
  background-color: #1c4f9a;
  border-color: #1c4f9a;
  color: #fff;
}
.blog-item, .blog-item .item-img, .blog-item .item-info {
  -moz-transition-duration: .5s;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  -ms-transition-duration: .5s;
  transition-duration: .5s;
}
.blog-item:hover {
  background-color: #f8f8f8;
}
.blog-item:hover .item-img {
  transform: translateX(10px);
}
.blog-item:hover .item-info {
  transform: translateX(-10px);
}
.return_bar {
  position: relative;
  border-bottom: 1px solid #ededed;
  padding: 20px 0;
  margin: 27px 0;
}
.return_bar a {
  padding: 0 0 0 33px;
  background: url(../image/ico_arrow01.png) no-repeat left center;
  font-size: 16px;
}
.main_container {
  padding: 30px 0 105px;
}
.blog_article_wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  padding-right: 83px;
}
.blog_article_wrap .titile_bar {
  text-align: center;
  margin-bottom: 37px;
}
.blog_article_wrap .titile_bar .title {
  font-size: 30px;
  color: #3b70f9;
  margin-bottom: 17px;
}
.blog_article_wrap .titile_bar time {
  position: relative;
  color: #a6a6a6;
}
.blog_article {
  line-height: 1.7;
}
.blog_article p {
  padding: 18px 0 12px;
}
.blog_article img {}
.blog_aside {
  position: relative;
  width: 390px;
}
.blog_aside .titile_bar {
  margin-bottom: 5px;
}
.blog_aside .titile_bar .title {
  font-size: 20px;
}
.re_blog_list {}
.re_blog_list .re_blog {
  position: relative;
  border-bottom: 1px solid #ededed;
  padding: 24px 0 20px;
}
.re_blog_list .re_blog:last-of-type {
  border-bottom: none;
}
.re_blog_list .re_blog .item_title {
  font-weight: normal;
  font-size: 14px;
  margin-bottom: 6px;
}
.re_blog_list .re_blog time {
  color: #a6a6a6;
}
.turn_pages {
  justify-content: space-between;
  border-top: 1px solid #ededed;
  padding: 21px 0;
  margin-top: 45px;
}
.turn_pages li {
  max-width: 40%;
}
.page_brands_container {
  padding: 134px 0 0;
  height: 100vh;
  overflow: hidden;
  background: url(../image/c_bg.png) no-repeat left bottom;
}
.page_brands_container .brands_nav {
  position: relative;
}
.page_brands_container .brands_nav .swiper-wrapper {
  justify-content: flex-end;
}
.page_brands_container .brands_nav .nav_item {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 100%;
  padding: 12px;
  margin-left: -40px !important;
  cursor: pointer;
}
.page_brands_container .brands_nav .nav_item.swiper-slide-thumb-active {}
.page_brands_container .brands_nav .nav_item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100%;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: 1px solid #2949c7;
  opacity: 0;
  -moz-transform: scale(.5);
  -webkit-transform: scale(.5);
  -ms-transform: scale(.5);
  -o-transform: scale(.5);
  transform: scale(.5) -moz-transition-duration:.3s;
  -webkit-transition-duration: .3s;
  -o-transition-duration: .3s;
  -ms-transition-duration: .3s;
  transition-duration: .3s;
}
.page_brands_container .brands_nav .nav_item.swiper-slide-thumb-active:before {
  opacity: .2;
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1)
}
.page_brands_container .brands_nav .nav_item .item_img {
  position: relative;
}
.page_brands_container .brands_nav .nav_item .item_img img {
  width: 100%;
}
.page_brands_container .brands_nav .nav_item .item_img:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100%;
  opacity: .8;
  -moz-transition-duration: .5s;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  -ms-transition-duration: .5s;
  transition-duration: .5s;
}
.page_brands_container .brands_nav .nav_item.swiper-slide-thumb-active .item_img:after {
  opacity: 0;
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(.9)
}
.page_brands_container .brands_pannels_layout {
  position: relative;
  margin-top: 30px;
}
.page_brands_container .brands_pannels_layout .bg_layout {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  min-height: 631px;
}
.page_brands_container .brands_pannels_layout .bg_layout .layout {
  position: relative;
  height: 100%;
}
.page_brands_container .brands_pannels_layout .bg_layout .layout:before {
  content: "";
  position: absolute;
  right: -6.7%;
  top: 0;
  width: 68%;
  height: 100%;
  background: url(../image/pc_bg.jpg) no-repeat top right;
  background-size: 100% auto;
}
.page_brands_container .brands_pannels {
  position: relative;
  overflow: visible !important;
}
.page_brands_container .brands_pannel {
  overflow: visible !important;
}
.page_brands_container .brands_pannel .layout {
  position: relative;
}
.page_brands_container .brands_pannel .item_title {
  position: absolute;
  width: 46.5%;
  top: -145px;
  background-color: #fff;
  font-size: 28px;
}
.page_brands_container .brands_pannel .item_inner {
  align-items: center;
}
.page_brands_container .brands_pannel .item_inner .item_info {
  position: relative;
  width: 46.5%;
  color: #FFFFFF;
  border-radius: 15px 0 0 15px;
  padding: 47px 4.5% 55px;
  opacity: 0;
  visibility: hidden;
  -moz-transform: translateX(-100px);
  -webkit-transform: translateX(-100px);
  -o-transform: translateX(-100px);
  -ms-transform: translateX(-100px);
  transform: translateX(-100px);
  -moz-transition-duration: .8s;
  -webkit-transition-duration: .8s;
  -o-transition-duration: .8s;
  -ms-transition-duration: .8s;
  transition-duration: .8s;
}
.page_brands_container .brands_pannel.swiper-slide-active .item_inner .item_info {
  opacity: 1;
  visibility: visible;
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  -o-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.page_brands_container .brands_pannel.brands_pannel_quanqiusou .item_inner .item_info {
  background-color: #3b70f9;
}
.page_brands_container .brands_pannel.brands_pannel_hagro .item_inner .item_info {
  background-image: linear-gradient(-110deg, #2e2e2e, #8c8c8c);
}
.page_brands_container .brands_pannel.brands_pannel_crm .item_inner .item_info {
  background-image: linear-gradient(-110deg, #0cb14f, #31cd71);
}
.page_brands_container .brands_pannel .item_inner .item_info .item_wrap {}
.page_brands_container .brands_pannel .item_inner .item_info .item_wrap .item_desc {
  line-height: 2;
}
.page_brands_container .brands_pannel .item_inner .item_info .item_wrap .item_desc p {
  padding: 10px 0;
}
.page_brands_container .brands_pannel .item_inner .item_info .item_wrap .item_more {
  margin-top: 34px;
}
.page_brands_container .brands_pannel .item_inner .item_img {
  position: relative;
  width: 53.5%; /* position: absolute;right: -6%;top: 0;  width:68%;height: 100%; */
}
.page_brands_container .brands_pannel .item_inner .item_img img {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition-duration: .8s;
}
.page_brands_container .brands_pannel.swiper-slide-active .item_inner .item_img img {
  opacity: 1;
  visibility: visible;
}
.page_brands_container .brands_pannel .item_inner .item_img .video_btn {
  position: absolute;
  left: -38px;
  top: 50%;
  margin-top: -38px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  background: url(../image/video_btn_bg.png) no-repeat center center;
  border-radius: 100%;
  overflow: hidden;
  cursor: pointer;
}
.page_brands_container .brands_pannel .item_inner .item_img .video_btn:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(../image/video_btn_bg_hover.png) no-repeat center center;
  opacity: 0;
  visibility: hidden;
  -moz-transition-duration: .5s;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  -ms-transition-duration: .5s;
  transition-duration: .5s;
}
.page_brands_container .brands_pannel .item_inner .item_img .video_btn:hover {
  background-color: transparent;
}
.page_brands_container .brands_pannel .item_inner .item_img .video_btn:hover:before {
  opacity: 1;
  visibility: visible;
}
.page_brands_container .brands_pannel .item_inner .item_img .video_btn i {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 21px;
  background: url(../image/video_btn.png) no-repeat center center;
}
.fade_box {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, .6);
  z-index: 9999;
  display: none;
}
.fade_box .box_wrap {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.fade_box .box_wrap .box_body {
  position: relative;
  width: 52.08333333333333%;
  padding: 15px;
  background-color: #EAEAEA;
}
.fade_box .box_wrap .box_body video {
  width: 100%;
}
.fade_box .box_wrap .close_btn {
  position: absolute;
  right: -45px;
  top: 0;
  width: 45px;
  height: 37px;
  border: none;
  background-color: #EAEAEA;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 5px 5px 0;
  z-index: 9;
  cursor: pointer;
}
.solution_wrap01 {
  padding: 87px 0 96px;
}
.solution_wrap01 .tip {
  text-align: center;
  font-size: 16px;
  padding: 0 0 48px;
}
.solution_items01 {
  justify-content: space-between;
}
.solution_items01.margin_style01 {
  margin-top: 47px
}
.solution_wrap01 .solution_item01 {
  cursor: pointer;
}
.solution_item01 {
  position: relative;
  width: 31.2%;
  margin: 20px 0;
  border-radius: 15px;
  overflow: hidden;
}
.solution_item01 .item_img {}
.solution_item01 .item_img img {}
.solution_item01 .item_info {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
  padding: 68px 0 148px;
}
.solution_item01:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  filter: progid:DXImageTransform.Microsoft.Gradient(startColorStr='#2ad772', endColorStr='#3b70f9', gradientType='0');
  background: -moz-linear-gradient(top, #2ad772, #3b70f9);
  background: -o-linear-gradient(top, #2ad772, #3b70f9);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#2ad772), to(#3b70f9));
  -moz-transition-duration: .5s;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  -ms-transition-duration: .5s;
  transition-duration: .5s;
}
.solution_item01:hover:before {
  opacity: 1;
  visibility: visible;
}
.solution_item01 .item_info, .solution_item01 .item_info a {
  color: #FFFFFF;
}
.solution_item01 .item_info strong {
  position: relative;
  display: block;
  font-size: 90px;
  font-family: "AvertaPEBold";
  width: 100%;
}
.solution_item01 .item_info .item_desc {
  position: relative;
  display: block;
  font-size: 28px;
  width: 100%;
  font-weight: bold;
}
.solution_item01 .item_info.item_inner {
  padding: 0;
  align-content: center
}
.solution_item01 .item_info .item_title {
  position: relative;
  display: block;
  font-size: 28px;
  width: 100%;
  margin-bottom: 22px;
}
.solution_item01 .item_info .item_text {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 100%;
  font-weight: bold;
  line-height: 2.3;
  min-height: 80px;
}
/*solution_wrap02*/
.solution_wrap02 {
  position: relative;
  background-color: #f7f9ff;
  padding: 57px 0 30px;
}
.solution_wrap02 .circle {
  bottom: auto;
  top: -68px;
}
.solution_wrap02 .layout {
  max-width: 1440px;
}
.index_layer_hd01 {
  position: relative;
  text-align: center;
}
.index_layer_hd01 .layer_title {
  position: relative;
  font-size: 36px;
  padding: 28px 0;
}
.index_layer_hd01 .layer_title:after {
  content: "";
  width: 80px;
  height: 1px;
  position: absolute;
  left: 50%;
  bottom: 0;
  margin: 0 0 0 -40px;
  background-color: #ff7f52;
}
.solution_items02_wrap, .solution_items02 {
  position: relative;
}
.solution_item02 {
  padding: 85px 20px;
}
.solution_item02 .item_inner {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 15px;
  text-align: center;
  padding: 0 15%;
  box-shadow: 0 9px 27px rgba(44, 103, 255, .1);
  min-height: 530px;
}
.solution_item02 .item_inner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  opacity: 0;
  visibility: hidden;
  filter: progid:DXImageTransform.Microsoft.Gradient(startColorStr='#2ad772', endColorStr='#3b70f9', gradientType='0');
  background: -moz-linear-gradient(top, #2ad772, #3b70f9);
  background: -o-linear-gradient(top, #2ad772, #3b70f9);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#2ad772), to(#3b70f9));
  -moz-transition-duration: .8s;
  -webkit-transition-duration: .8s;
  -o-transition-duration: .8s;
  -ms-transition-duration: .8s;
  transition-duration: .8s;
}
.solution_item02 .item_inner:hover:before {
  opacity: 1;
  visibility: visible;
}
.solution_item02 .item_inner .item_img {
  position: relative;
  width: 129px;
  display: inline-block;
}
.solution_item02 .item_inner .item_img img {
  width: 100%;
  margin-top: -65px;
  -moz-transition-duration: .3s;
  -webkit-transition-duration: .3s;
  -o-transition-duration: .3s;
  -ms-transition-duration: .3s;
  transition-duration: .3s;
}
.solution_item02 .item_inner:hover .item_img img {
  margin-top: -90px;
  opacity: 0;
  visibility: hidden;
  -moz-transform: scale(.8);
  -webkit-transform: scale(.8);
  -ms-transform: scale(.8);
  -o-transform: scale(.8);
  transform: scale(.8)
}
.solution_item02 .item_inner .item_info {
  position: relative;
}
.solution_item02 .item_inner .item_info .item_title {
  font-size: 20px;
  padding: 35px 0 15px;
}
.solution_item02 .item_inner:hover .item_info .item_title {
  color: #fff;
}
.solution_item02 .item_inner .item_info .item_desc {
  font-size: 16px;
}
.solution_item02 .item_inner .item_info .item_desc p {
  border-bottom: 1px solid #ededed;
  padding: 15px 0;
}
.solution_item02 .item_inner:hover .item_info .item_desc p {
  border-color: rgba(255, 255, 255, .2);
  color: #fff;
}
.solution_item02 .item_inner:hover .item_info .item_desc p:hover {
  color: #21e571;
}
.solution_item02 .item_inner .item_info .item_desc p:last-of-type {
  border-bottom: none;
}
.solution_item02 .item_inner .item_info .item_title, .solution_item02 .item_inner .item_info .item_desc p {
  -moz-transition-duration: .3s;
  -webkit-transition-duration: .3s;
  -o-transition-duration: .3s;
  -ms-transition-duration: .3s;
  transition-duration: .3s;
}
.solution_items02_wrap .adg-button-prev {
  left: -7%;
}
.solution_items02_wrap .adg-button-next {
  right: -7%;
}
/*solution_wrap03*/
.solution_wrap03 {
  position: relative;
  padding: 57px 0 30px;
}
.solution_items03 {
  position: relative;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 50px;
}
.solution_item03 {
  position: relative;
  width: 23%;
  text-align: center;
  margin: 39px 0;
  border-radius: 15px;
  -moz-transition-duration: .3s;
  -webkit-transition-duration: .3s;
  -o-transition-duration: .3s;
  -ms-transition-duration: .3s;
  transition-duration: .3s;
}
.solution_item03:hover {
  box-shadow: 0 9px 27px rgba(44, 103, 255, .05);
  transform: translateY(-3px);
}
.solution_item03 .item_inner {
  position: relative;
}
.solution_item03 .item_inner .item_img {
  position: relative;
  width: 112px;
  height: 112px;
  line-height: 112px;
  display: inline-block;
  margin-top: -56px;
}
.solution_item03 .item_inner .item_img:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #fff;
  background: url(../image/circle_bg.png) no-repeat center;
  background-size: cover;
  animation: rotate_clockwise 15s infinite linear;
  -webkit-animation: rotate_clockwise 10s infinite linear;
}
.solution_item03 .item_inner .item_img img {
  width: 100%;
  position: relative;
}
.solution_item03 .item_inner:hover .item_img img {
  -webkit-animation: swing .9s ease;
  -o-animation: swing .9s ease;
  animation: swing .9s ease;
}
.solution_item03 .item_inner .item_info {
  position: relative;
  padding: 0 22px 30px;
}
.solution_item03 .item_inner .item_info .item_title {
  font-size: 20px;
  padding: 21px 0 12px;
}
.solution_item03 .item_inner .item_info .item_desc {
  line-height: 2;
}
@keyframes rotate_clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*solution_wrap04*/
.solution_wrap04 {
  position: relative;
  background-color: #f7f9ff;
  padding: 0px 0 118px;
}
.solution_wrap04 .layer_title:after {
  display: none;
}
.solution_pannel_wrap04 {}
.solution_pannel_wrap04 .pannel_nav {
  border-bottom: 1px solid #e6e8eb;
}
.solution_pannel_wrap04 .pannel_nav .nav_item {
  position: relative;
  width: 33.33333%;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 32px 0;
  cursor: pointer;
}
.solution_pannel_wrap04 .pannel_nav .nav_item:after {
  content: "";
  width: 0;
  height: 3px;
  background-color: #ff7f52;
  position: absolute;
  right: 0;
  bottom: 0;
  -moz-transition-duration: .8s;
  -webkit-transition-duration: .8s;
  -o-transition-duration: .8s;
  -ms-transition-duration: .8s;
  transition-duration: .8s;
}
.solution_pannel_wrap04 .pannel_nav .nav_item.active:after {
  width: 100%;
  right: auto;
  left: 0;
}
.solution_pannel04 {
  position: relative;
  margin-top: 70px;
}
.solution_pannel04 .pannel {
  position: relative;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  ;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}
.solution_pannel04 .pannel.active {
  position: relative;
  z-index: 1;
  align-items: flex-start;
}
.solution_pannel04 .pannel .pannel_container {
  position: relative;
  width: 46%;
  margin-top: 30px;
}
.solution_pannel04 .pannel .pannel_container .title {
  font-size: 30px;
  display: block;
  font-weight: normal;
  color: #3b70f9;
}
.solution_pannel04 .pannel .pannel_container .desc {
  line-height: 2;
  padding: 40px 0 41px;
}
.solution_pannel04 .pannel .pannel_container .nav_list {
  justify-content: space-between;
}
.solution_pannel04 .pannel .pannel_container .nav_list li {
  position: relative;
  width: 30%;
}
.solution_pannel04 .pannel .pannel_container .nav_list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  width: 100%;
  background-color: #FFFFFF;
  background-color: #FFFFFF;
  border-radius: 20px;
  margin: 13px 0;
  font-size: 16px;
}
.solution_pannel04 .pannel .pannel_container .nav_list li a:hover {
  background-color: #ff7f52;
  color: #FFFFFF;
}
.solution_pannel04 .pannel .pannel_img {
  position: relative;
  width: 50%;
  border-radius: 15px;
  overflow: hidden;
}
.solution_pannel04 .pannel .pannel_img img {
  width: 100%;
  -moz-transition-duration: 1.2s;
  -webkit-transition-duration: 1.2s;
  -o-transition-duration: 1.2s;
  -ms-transition-duration: 1.2s;
  transition-duration: 1.2s;
}
.solution_pannel04 .pannel .pannel_img:hover img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1)
}
.solution_pannel04 .pannel .pannel_container, .solution_pannel04 .pannel .pannel_img {
  opacity: 0;
  visibility: hidden;
  -moz-transition-duration: .8s;
  -webkit-transition-duration: .8s;
  -o-transition-duration: .8s;
  -ms-transition-duration: .8s;
  transition-duration: .8s;
}
.solution_pannel04 .pannel .pannel_container {
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  -o-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(-100px);
}
.solution_pannel04 .pannel .pannel_img {
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  -o-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(100px);
}
.solution_pannel04 .pannel.active .pannel_container, .solution_pannel04 .pannel.active .pannel_img {
  opacity: 1;
  visibility: visible;
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  -o-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.contact_wrap {
  position: relative;
  text-align: center;
  height: 392px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.contact_wrap:after {
  display: none;
}
.contact_wrap .title {
  font-size: 36px;
}
.contact_wrap strong {
  font-size: 30px;
  display: block;
  font-weight: normal;
  margin: 6px 0 48px;
}
.company_wrap {
  position: relative;
  padding: 92px 0 0;
}
.company_picture {
  position: relative;
  float: left;
  width: 42.85714285714286%;
  margin-right: 100px;
  z-index: 1;
}
.company_slider {
  position: relative;
  border-radius: 100%;
  overflow: hidden;
}
.company_slider li {}
.company_slider li img {
  width: 100%;
  -moz-transition-duration: 1.2s;
  -webkit-transition-duration: 1.2s;
  -o-transition-duration: 1.2s;
  -ms-transition-duration: 1.2s;
  transition-duration: 1.2s;
}
.company_slider li:hover img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1)
}
.company_picture .new-button {}
.company_picture .new-button-prev {
  left: -20px;
  margin: 0;
  top: 56%;
}
.company_picture .new-button-next {
  right: -30px;
  top: auto;
  margin: 0;
  bottom: 0;
}
.company_wrap .company_info {
  position: relative;
}
.company_wrap .company_info .company_title {
  position: relative;
  font-size: 50px;
  color: #3b70f9;
  padding: 46px 0 30px;
  z-index: 9;
}
.company_wrap .company_info .company_article {
  font-size: 16px;
  line-height: 2.2;
}
.company_wrap .company_info .company_article p {
  padding: 10px 0;
}
.history_wrap {
  width: 91.5%;
  margin: 0 auto;
}
.slider_items {
  position: relative;
  align-items: center;
  margin-top: 36px;
}
.slider_items .pre {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: #ededed;
}
.time_slider_single {
  position: relative;
  width: 405px;
}
.slider_items .time_item {
  position: relative;
  text-align: center;
  padding: 30px 0;
  cursor: pointer;
}
.slider_items .time_item .item_time {
  position: relative;
  display: block;
  font-family: "AvertaPEBold";
  font-size: 20px;
}
.slider_items .time_item .item_time:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -2px 0 0 -3px;
  width: 5px;
  height: 5px;
  background-color: #3b70f9;
  border-radius: 100%;
}
.slider_items .time_item .item_time em {
  display: block;
  transform: translateY(-30px);
}
.time_slider {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 40.8%;
  margin-top: -45px;
}
.history_items {
  position: relative;
  width: 46%;
}
.history_slider {}
.history_item {
  padding: 30px 0;
}
.history_item.swiper-slide-active {}
.history_item .item_time {}
.history_item .item_inner {}
.history_item .item_inner .item_img {
  width: 59%;
  border-radius: 15px;
  overflow: hidden;
  transform: translateY(-30px);
}
.history_item .item_inner .item_img img {
  width: 100%;
  -moz-transition-duration: 1.2s;
  -webkit-transition-duration: 1.2s;
  -o-transition-duration: 1.2s;
  -ms-transition-duration: 1.2s;
  transition-duration: 1.2s;
}
.history_item .item_inner:hover .item_img img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1)
}
.history_item .item_inner .item_info {
  background-color: #FFFFFF;
  margin-top: 50px;
  transform: translateY(30px);
}
.history_item .item_inner .item_info .item_title {
  font-family: "AvertaPEBold";
  font-size: 62px;
  color: #3b70f9;
  padding-right: 50px;
  line-height: 1.2;
}
.history_item .item_inner .item_info .item_desc {
  font-size: 15px;
  line-height: 2.8;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.history_item .item_inner .item_img, .history_item .item_inner .item_info {
  opacity: 0;
  visibility: hidden;
  -moz-transition-duration: .8s;
  -webkit-transition-duration: .8s;
  -o-transition-duration: .8s;
  -ms-transition-duration: .8s;
  transition-duration: .8s;
}
.history_item.swiper-slide-active .item_inner .item_img, .history_item.swiper-slide-active .item_inner .item_info {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.certificate_wrap {
  background: none;
  padding-bottom: 0;
  z-index: 9;
}
.certificate_slider {
  position: relative;
}
.certificate_item {
  padding: 10px;
}
.certificate_item .item_inner {}
.certificate_item .item_inner .item_img {
  position: relative;
  overflow: hidden;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  -moz-transition-duration: .5s;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  -ms-transition-duration: .5s;
  transition-duration: .5s;
}
.certificate_item .item_inner .item_img img {
  width: 100%;
}
.certificate_item .item_inner .item_img:hover {
  transform: translateY(-10px);
}
.certificate_item .item_inner .item_info {
  text-align: center;
  padding: 26px 0;
}
.certificate_wrap .solution_pannel04 {
  margin-top: 38px;
}
.certificate_wrap .pannel {
  opacity: 0;
  visibility: hidden;
  top: 100px;
  -moz-transition-duration: .8s;
  -webkit-transition-duration: .8s;
  -o-transition-duration: .8s;
  -ms-transition-duration: .8s;
  transition-duration: .8s;
}
.certificate_wrap .pannel.active {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.certificate_wrap .pannel .adg-button-prev {
  left: -5.5%
}
.certificate_wrap .pannel .adg-button-next {
  right: -5.5%
}
.company_branch_wrap {
  position: relative;
  margin-top: -60px;
}
.location_wrap {
  position: relative;
  width: 100%;
}
.location_wrap .index_layer_hd01 {
  z-index: 9;
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  text-align: center;
}
.location_slider {
  position: relative;
  width: 100%;
  ;
}
.location_slider .location_item {
  background: url(../image/map.jpg) no-repeat center center;
  background-size: contain;
}
.location_slider .location_item.swiper-slide-active {}
.location_slider .location_item .item_spot {
  position: absolute;
}
.location_slider .location_item .item_inner {
  position: absolute;
  width: 325px;
  height: 250px;
  border-radius: 15px;
  color: #FFFFFF;
  padding: 22px 33px;
  filter: progid:DXImageTransform.Microsoft.Gradient(startColorStr='#2ad772', endColorStr='#3b70f9', gradientType='0');
  background: -moz-linear-gradient(top, #2ad772, #3b70f9);
  background: -o-linear-gradient(top, #2ad772, #3b70f9);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#2ad772), to(#3b70f9));
  -moz-transition-duration: .5s;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  -ms-transition-duration: .5s;
  transition-duration: .5s;
}
.location_slider .location_item .item_inner .item_title {
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  padding: 0 0 13px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.location_slider .location_item .item_inner .item_title .item_video_btn {
  width: 43px;
  height: 43px;
  position: relative;
  display: block;
  margin: 0 0 0 20px;
  background: url(../image/video_btn01.png) no-repeat center center;
  cursor: pointer;
}
.location_slider .location_item .item_inner .item_info {
  margin-top: 10px;
  line-height: 2;
}
.location_slider .location_item .item_inner .item_info .item_tel {
  padding: 0 0 0 25px;
  background: url(../image/ico_tel.png) no-repeat left center;
}
.location_slider .location_item .item_inner .item_info .item_addr {
  padding: 0 0 0 25px;
  background: url(../image/ico_addr.png) no-repeat left 5px;
}
.location_slider .location_item .item_inner .item_info .website {
  padding: 0 0 0 20px;
  background: url(../image/website.png) no-repeat left 5px;
}
.location_slider .location_item .item_inner .item_info .website a {
  color: #FFFFFF;
}
.location_slider .location_item.shenzhen .item_inner {
  right: 5%;
  bottom: 25.5%;
  transform: translateX(50px);
}
.location_slider .location_item.chengdu .item_inner {
  right: 25.4%;
  bottom: 33.5%;
  transform: translateX(50px);
}
.location_slider .location_item.shanghai .item_inner {
  right: 24.2%;
  bottom: 34.3%;
  transform: translateX(-50px);
}
.location_slider .location_item.ningbo .item_inner {
  right: 23.8%;
  bottom: 31%;
  transform: translateX(-50px);
}
.location_slider .location_item.jinan .item_inner {
  right: 3.2%;
  top: 36%;
  transform: translateX(50px);
}
.location_slider .location_item.hangzhou .item_inner {
  right: 28.8%;
  bottom: 43%;
  transform: translateX(-50px);
}
.location_slider .location_item.xian .item_inner {
  right: 23.8%;
  bottom: 31%;
  transform: translateX(-50px);
}
.location_slider .location_item.swiper-slide-active.shenzhen .item_inner, .location_slider .location_item.swiper-slide-active.chengdu .item_inner, .location_slider .location_item.swiper-slide-active.shanghai .item_inner, .location_slider .location_item.swiper-slide-active.ningbo .item_inner, .location_slider .location_item.swiper-slide-active.jinan .item_inner, .location_slider .location_item.hangzhou .item_inner, .location_slider .location_item.xian .item_inner {
  transform: translateX(0);
}
.location_slider .location_nav {
  position: absolute;
  left: 0;
  top: 25%;
  width: 100%;
  height: 50px !important;
  text-align: center;
  z-index: 8;
}
.location_slider .location_nav .swiper-pagination-bullet {
  width: auto;
  height: auto;
  background: none;
  border: none;
  border-radius: 0;
  font-size: 18px;
  font-weight: bold;
  margin: 5px 32px !important;
}
.location_slider .location_nav .swiper-pagination-bullet-active {
  color: #ff7f52;
}
.location_wrap .company_picture {
  position: absolute;
  left: 0;
  bottom: 25.5%;
  z-index: 9;
  width: 33%;
}
.location_wrap .company_picture .new-button-prev {
  top: 50%;
  margin-top: -29px;
  left: -40px;
}
.service_centre_wrap {
  position: relative;
  margin-top: -250px;
  z-index: 9;
}
.service_centre_wrap .titile_bar {
  text-align: center;
  border-bottom: 1px solid #e6e8eb;
}
.service_centre_wrap .titile_bar .title {
  position: relative;
  font-size: 20px;
  padding: 35px 0;
}
.service_centre_wrap .titile_bar .title:after {
  content: "";
  width: 80px;
  height: 4px;
  background-color: #21e571;
  position: absolute;
  left: 50%;
  bottom: 0;
  margin: 0 0 0 -40px;
}
.service_centre_wrap ul {
  justify-content: center;
  padding: 54px 0;
}
.service_centre_wrap ul li {
  margin: 10px 26px;
}
.service_centre_wrap .contact_us {
  position: relative;
  text-align: center;
  margin: 0 0 100px
}
.service_centre_wrap .contact_us a {
  position: relative;
  font-size: 18px;
  color: #3b70f9;
  font-weight: bold;
  z-index: 1;
}
.service_centre_wrap .contact_us .circle.circle04 {
  left: 50%;
  margin: -57.5px 0 0 -57.5px;
  top: 50%;
}
@media only screen and (max-width:1680px) {
  .brands_content_items {
    width: 95.3%;
  }
  .brands_content_item .content_intro .intro_lt .intro_logo {
    max-height: 85px;
  }
  .index_brands .index_layer_hd .hd_logo {
    width: 320px;
  }
  .web_footer .foot_tel {
    font-size: 28px;
  }
  .web_footer .foot_logo img {
    max-height: 56px;
  }
  .circle {
    width: 170px;
    height: 170px;
  }
  .client_item {
    width: 260px;
    height: 140px;
    line-height: 140px;
  }
  .foot_item {
    max-width: 25%;
    min-width: 130px;
    margin: 30px 3%;
  }
  .char_func_item {
    padding: 30px 23px 37px;
  }
  .index_brands .index_layer_lf {
    padding: 110px 0 125px;
  }
  .adg_item .item_inner .item_img {
    width: 120px;
    height: 120px;
  }
  .page_brands_container .brands_nav .nav_item {
    width: 160px;
    height: 160px;
  }
  .time_slider {
    right: 0;
  }
  /*字体大小*/
  .solution_item01 .item_info strong {
    font-size: 86px;
  }
  .history_item .item_inner .item_info .item_title {
    font-size: 56px;
    padding-right: 20px;
  }
  .count_item .count_item_num, .company_wrap .company_info .company_title {
    font-size: 46px;
  }
  .index_layer_hd, .index_layer_hd01 .layer_title, .contact_wrap .title, .main_blog .title_bar .title {
    font-size: 34px;
  }
  .contact_wrap strong {
    font-size: 28px;
  }
  .solution_item01 .item_info .item_desc, .page_brands_container .brands_pannel .item_title {
    font-size: 26px;
  }
  .index_brands .brands_nav_items .brands_nav_item .item_title {
    font-size: 22px;
  }
  .slider_banner .banner_info {
    font-size: 18px;
  }
}
@media only screen and (max-width:1440px) {
  .web_head .logo img {
    max-height: 55px;
  }
  .fixed-nav .logo img {
    max-height: 45px;
  }
  .index_brands .index_layer_hd .hd_logo {
    width: 300px;
  }
  .brands_content_item .content_intro .intro_lt .intro_logo {
    max-height: 70px;
  }
  .web_footer .foot_logo img {
    max-height: 54px;
  }
  .circle {
    width: 160px;
    height: 160px;
  }
  .sys_btn {
    padding: 0 50px;
    line-height: 45px;
  }
  .brands_content_items {
    width: 100%;
  }
  .client_item {
    width: 220px;
    height: 135px;
    line-height: 135px;
  }
  .web_footer {
    font-size: 13px;
  }
  .foot_item {
    margin: 30px 3%;
  }
  .index_news .news_item .item_img img {
    margin-left: 0;
    width: 100%;
  }
  .index_news .news_item .item_info {
    justify-content: center;
  }
  .index_news .news_item .item_info .item_wrap {
    width: 80%;
  }
  .char_func_item {
    padding: 25px 16px 33px;
  }
  .index_brands .index_layer_lf {
    padding: 100px 0 105px;
  }
  .adg_item .item_inner .item_img {
    width: 110px;
    height: 110px;
  }
  .page_brands_container .brands_nav .nav_item {
    width: 140px;
    height: 140px;
  }
  .time_slider_single {
    width: 220px;
  }
  .history_item .item_inner .item_info {
    margin-top: 15px;
  }
  .history_item .item_inner .item_info .item_title {
    width: 100%;
    padding: 0;
  }
  .history_item .item_inner .item_info .item_desc {
    width: 100%;
  }
  /*字体大小*/
  .solution_item01 .item_info strong {
    font-size: 80px;
  }
  .history_item .item_inner .item_info .item_title {
    font-size: 50px;
  }
  .count_item .count_item_num, .company_wrap .company_info .company_title {
    font-size: 44px;
  }
  .index_layer_hd, .contact_wrap .title, .main_blog .title_bar .title {
    font-size: 32px;
  }
  .solution_pannel04 .pannel .pannel_container .title, .web_footer .foot_tel, .contact_wrap strong, .blog_article_wrap .titile_bar .title, .solution_item01 .item_info .item_title {
    font-size: 26px;
  }
  .solution_item01 .item_info .item_desc, .page_brands_container .brands_pannel .item_title {
    font-size: 24px;
  }
  .index_brands .brands_nav_items .brands_nav_item .item_title {
    font-size: 20px;
  }
  .char_func_item .item_wrap .item_title, .adg_item .item_inner .item_info .item_title, .solution_item02 .item_inner .item_info .item_title, .solution_item03 .item_inner .item_info .item_title, .solution_pannel_wrap04 .pannel_nav .nav_item {
    font-size: 18px;
  }
  .web_head .nav_wrap > ul > li > a, .slider_banner .banner_info, .solution_item01 .item_info .item_text {
    font-size: 16px;
  }
  .index_about, .sys_btn, .index_layer, .solution_wrap01 .tip, .index_brands .index_layer_hd .desc, .solution_pannel04 .pannel .pannel_container .nav_list li a, .solution_item02 .item_inner .item_info .item_desc, .company_wrap .company_info .company_article, .history_item .item_inner .item_info .item_desc {
    font-size: 14px;
  }
}
@media only screen and (max-width:1366px) {
  .web_footer .band_logo_items li img {
    max-width: 30px;
  }
  .solution_item03 .item_inner .item_img {
    width: 100px;
    margin-top: -50px;
  }
  .solution_item03 .item_inner .item_img img {}
  .solution_item02 .item_inner .item_img {
    width: 120px;
  }
  .solution_item02 .item_inner .item_img img {
    margin-top: -60px;
  }
  .els_web_head .head_layer {
    padding: 10px 0;
  }
  .page_brands_container {
    padding: 100px 0 0;
  }
  .page_brands_container .brands_nav .nav_item {
    width: 120px;
    height: 120px;
    padding: 8px;
  }
  .page_brands_container .brands_pannel .item_title {
    top: -100px;
  }
  .blog_aside {
    width: 330px;
  }
  /*字体大小*/
  .solution_item01 .item_info strong {
    font-size: 74px;
  }
  .history_item .item_inner .item_info .item_title {
    font-size: 46px;
  }
  .page_brands_container .brands_pannel .item_title {
    font-size: 22px;
  }
}
@media only screen and (max-width:1280px) {
  .web_head .nav_wrap > ul > li {
    margin-left: 30px;
  }
  .web_head .nav_wrap > ul > li > a:after {
    height: 2px;
  }
  .web_head .logo img {
    max-height: 46px;
  }
  .fixed-nav .logo img {
    max-height: 46px;
  }
  .circle {
    width: 140px;
    height: 140px;
  }
  .index_about {
    padding: 60px 0;
  }
  .index_about .count_items {
    margin-top: 0;
  }
  .index_brands .index_layer_hd .hd_logo {
    width: 230px;
    margin-bottom: 20px;
  }
  .brands_content_item .content_intro .intro_lt .intro_logo {
    max-height: 65px;
  }
  .char_func_item {
    padding: 25px 16px 33px;
  }
  .index_brands .index_layer_lf {
    padding: 80px 0 95px;
  }
  .index_adg {
    padding: 60px 0;
  }
  .adg_items {
    margin: 60px 0;
  }
  .adg_item .item_inner .item_img {
    width: 100px;
    height: 100px;
  }
  .adg_item .item_inner {
    padding: 60px 10% 78px;
  }
  .index_news {
    padding: 0px 0 0px;
  }
  .index_news .news_slider {
    width: 120%;
    margin: 50px -10% 0;
  }
  .index_news .news_item {
    padding: 0 15px;
  }
  .index_news .news_item .item_info {
    background-color: rgba(246, 249, 255, .95);
    opacity: 0;
    visibility: hidden;
    -moz-transition-delay: .5s;
    -webkit-transition-delay: .5s;
    -o-transition-delay: .5s;
    transition-delay: .5s;
    -moz-transition-duration: .8s;
    -webkit-transition-duration: .8s;
    -o-transition-duration: .8s;
    -ms-transition-duration: .8s;
    transition-duration: .8s;
  }
  .index_news .news_item:hover .item_info {
    transform: translateX(0);
  }
  .index_news .news_item .item_info .item_wrap {
    width: 100%;
    background-color: transparent;
    padding: 10px;
  }
  .index_news .news_item .item_info .item_wrap:hover {
    background-color: transparent;
  }
  .index_news .news_item.swiper-slide-active .item_info {
    opacity: 1;
    visibility: visible;
  }
  .index_news .news_item .item_time {
    margin: 10px 0 5px;
  }
  .web_footer .foot_tel {
    font-size: 22px;
  }
  .web_footer .foot_logo img {
    min-height: 50px;
  }
  .adg-button-prev {
    left: 1%;
  }
  .adg-button-next {
    right: 1%;
  }
  .new-button-prev {
    left: 10%;
  }
  .new-button-next {
    right: 10%;
  }
  .index_brands .index_layer_lf {
    padding: 60px 1%;
    text-align: center;
    width: 30%;
  }
  .index_brands .index_layer_hd {
    padding: 0;
    text-align: center;
  }
  .index_brands .index_layer_hd .hd_logo {
    width: 150px;
  }
  .index_brands .index_layer_hd .desc, .index_brands .index_layer_hd strong, .index_brands .index_layer_hd .layer_title {
    padding-left: 0;
  }
  .index_brands .index_layer_rt {
    width: 70%;
  }
  .index_brands .brands_nav_items {
    width: 100%;
  }
  .main_blog .blog_content .img_items {
    width: 35%;
  }
  .main_blog .blog_content .blog_items {
    width: 65%;
  }
  /*字体大小*/
  .solution_item01 .item_info strong {
    font-size: 70px;
  }
  .count_item .count_item_num, .company_wrap .company_info .company_title {
    font-size: 40px;
  }
  .index_about, .sys_btn, .index_layer, .web_head .nav_wrap > ul > li > a, .slider_banner .banner_info, .web_footer {
    font-size: 12px;
  }
  .index_brands .brands_nav_items .brands_nav_item .item_title {
    font-size: 18px;
  }
  .char_func_item .item_wrap .item_title, .adg_item .item_inner .item_info .item_title {
    font-size: 16px;
  }
  .contact_wrap strong, .solution_item01 .item_info .item_title {
    font-size: 24px;
  }
  .index_layer_hd, .contact_wrap .title, .main_blog .title_bar .title {
    font-size: 28px;
  }
  .solution_item01 .item_info .item_desc {
    font-size: 22px;
  }
  .page_brands_container .brands_pannel .item_inner .item_info {
    padding: 3%;
  }
  .page_brands_container .brands_pannel .item_inner .item_info .item_wrap .item_desc {
    font-size: 12px;
  }
  .page_brands_container .brands_pannel .item_inner .item_info .item_wrap .item_more {
    margin-top: 20px;
  }
}
@media only screen and (max-width:1200px) {
  .page_brands_container {
    height: auto;
    min-height: 100vh;
  }
}
@media only screen and (max-width:1080px) {
  .index_brands .index_layer_hd .desc {
    margin-top: 30px;
  }
  .brands_content_item .content_intro .intro_lt .intro_logo {
    max-height: 60px;
  }
  .solution_items03 {
    justify-content: flex-start;
  }
  .solution_item03 {
    width: 31.3333%;
    margin: 30px 1%;
  }
  .solution_item01 .item_info {
    padding: 50px 0 100px;
  }
  .solution_item02 .item_inner {
    min-height: auto;
    padding-bottom: 30px;
  }
  .solution_item02 .item_inner .item_img {
    width: 100px;
  }
  .solution_item02 .item_inner .item_img img {
    margin-top: -50px;
  }
  .solution_item02 .item_inner .item_info .item_desc p {
    padding: 10px 0;
  }
  .solution_pannel04 .pannel .pannel_container .nav_list li a {
    line-height: 40px;
    height: 40px;
    border-radius: 15px;
  }
  .main_blog {
    padding: 35px 0 60px;
  }
  .main_blog .title_bar .title {
    margin-bottom: 30px;
  }
  .blog-item .item-img {
    width: 200px;
  }
  .blog_aside {
    width: 280px;
  }
  .blog_article_wrap {
    padding-right: 50px;
  }
  .time_slider_single {
    display: none;
  }
  .history_item .item_inner .item_img, .history_item .item_inner .item_info {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .mob_btn {
    display: block;
    color: #fff;
    margin-right: 15px;
  }
  .fixed-nav .mob_btn {
    color: #333
  }
  .mob_close {
    display: block;
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: #FFFFFF;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    z-index: 99;
  }
  .web_head .nav_wrap {
    position: fixed;
    right: -280px;
    top: 0;
    width: 280px;
    height: 100vh;
    background-color: #FFFFFF;
    padding: 20px 0;
    z-index: 9999;
    -moz-transition-duration: .3s;
    -webkit-transition-duration: .3s;
    -o-transition-duration: .3s;
    -ms-transition-duration: .3s;
    transition-duration: .3s;
  }
  .web_head .nav_wrap ul li {
    position: relative;
    display: block;
  }
  .web_head .nav_wrap ul li a {
    position: relative;
    display: inline-block;
    color: #333333;
  }
  body.mob .web_head .nav_wrap {
    right: 0;
  }
  .mob_tasking {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    z-index: 9998;
  }
  /*字体大小*/
  .solution_item01 .item_info strong {
    font-size: 60px;
  }
  .company_wrap .company_info .company_title, .index_layer_hd01 .layer_title {
    font-size: 30px;
  }
  .contact_wrap .title, .main_blog .title_bar .title {
    font-size: 26px;
  }
  .solution_pannel04 .pannel .pannel_container .title, .contact_wrap strong, .blog_article_wrap .titile_bar .title {
    font-size: 22px;
  }
  .solution_item01 .item_info .item_desc, .solution_item01 .item_info .item_title {
    font-size: 20px;
  }
  .blog_aside .titile_bar .title {
    font-size: 18px;
  }
  .index_brands .brands_nav_items .brands_nav_item .item_title, .solution_item02 .item_inner .item_info .item_title, .solution_pannel_wrap04 .pannel_nav .nav_item {
    font-size: 16px;
  }
  .index_news .news_item .item_title, .blog-item .item-title, .solution_item01 .item_info .item_text {
    font-size: 14px;
  }
  body, .solution_item02 .item_inner .item_info .item_desc, .solution_pannel04 .pannel .pannel_container .nav_list li a, .index_news .news_item .item_desc, .index_news .news_item .item_time, .solution_wrap01 .tip, .index_brands .index_layer_hd .desc, .blog-item .item-detail, .re_blog_list .re_blog .item_title, .company_wrap .company_info .company_article {
    font-size: 12px;
  }
}
@media only screen and (max-width:1024px) {
  .index_brands .index_layer_lf {
    width: 25%;
  }
  .index_brands .index_layer_hd .hd_logo {
    width: 120px;
  }
  .index_brands .index_layer_rt {
    width: 75%;
  }
  .foot_items {
    justify-content: space-between;
  }
  .foot_item {
    margin: 30px 2%;
    min-width: auto;
  }
  .web_footer .foot_logo img {
    max-height: 45px;
  }
  .index_news .news_item .item_more .sys_btn {
    line-height: 38px;
    padding: 0 38px;
  }
  /*字体大小*/
  .index_layer_hd {
    font-size: 24px;
  }
}
@media only screen and (max-width:950px) {
  .page_brands_container .brands_pannels_layout .bg_layout {
    display: none;
  }
  .page_brands_container .brands_pannel .item_inner .item_img {
    width: 100%;
  }
  .page_brands_container .brands_pannel .item_inner .item_info {
    width: 100%;
    border-radius: 15px;
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .page_brands_container .brands_pannel .item_inner .item_img .video_btn {
    top: 0;
    left: 50%;
    margin-left: -38px;
  }
  .fade_box .box_wrap .box_body {
    width: 85%;
  }
  .main_blog .blog_content .img_items {
    display: none;
  }
  .main_blog .blog_content .blog_items {
    width: 100%;
  }
}
@media only screen and (max-width:820px) {
  .layout {
    width: 98%;
  }
  .index_brands .index_layer_rt {
    padding: 5% 3%;
  }
  .index_news .news_item {
    padding: 0 8px;
  }
  .index_news .news_item .item_desc {
    margin-bottom: 15px;
    max-height: 50px;
    overflow: hidden;
  }
  .index_about .about_desc {
    line-height: 2;
    padding: 0 0 20px;
  }
  .client_item {
    width: 200px;
    height: 120px;
    line-height: 120px;
  }
  .solution_wrap01 {
    padding: 55px 0;
  }
  .solution_wrap01 .tip {
    padding: 0 0 25px;
  }
  .solution_item01 .item_info {
    padding: 30px 0 65px;
  }
  .solution_item01 .item_info .item_desc {
    margin: 20px 0 0;
  }
  .solution_wrap02 {
    padding: 30px 0;
  }
  .contact_wrap {
    height: 300px;
  }
  .solution_wrap04 {
    padding: 50px 0;
  }
  .gotop {
    display: none !important;
  }
  .blog_aside {
    width: 230px;
  }
  .blog_article_wrap {
    padding-right: 30px;
  }
  .company_picture .new-button-prev {
    left: 0;
    margin-top: -29px;
    top: 50%;
  }
  .location_wrap .company_picture {
    position: relative;
    left: auto;
    bottom: auto;
    width: 50%;
    margin: 0 25%;
  }
  .location_wrap .company_picture .new-button-prev {
    left: -100px;
  }
  .location_wrap .company_picture .new-button-next {
    bottom: auto;
    top: 50%;
    margin-top: -29px;
    right: -100px;
  }
  .service_centre_wrap {
    margin: 0;
  }
  .location_wrap .index_layer_hd01 {
    position: relative;
    top: auto;
  }
  .location_slider .location_nav {
    position: relative;
    top: auto;
    margin: 30px 0;
  }
  .location_slider .location_item {
    background: none;
  }
  .location_slider .location_item img {
    display: none;
  }
  .location_slider .location_item .item_inner, .location_slider .location_item.shenzhen .item_inner, .location_slider .location_item.chengdu .item_inner, .location_slider .location_item.shanghai .item_inner, .location_slider .location_item.ningbo .item_inner, .location_slider .location_item.jinan .item_inner {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 0 auto 50px;
    transform: translateX(0);
  }
  /*字体大小*/
  .solution_item01 .item_info strong {
    font-size: 50px;
  }
  .count_item .count_item_num, .count_item .count_item_strong, .company_wrap .company_info .company_title {
    font-size: 32px;
  }
  .count_item .count_item_unit, .index_layer_hd01 .layer_title {
    font-size: 28px;
  }
  .index_layer_hd01 .layer_title {
    font-size: 24px;
  }
  .count_item .count_item_unit_els, .solution_pannel04 .pannel .pannel_container .title, .contact_wrap strong {
    font-size: 20px;
  }
  .solution_item01 .item_info .item_desc {
    font-size: 16px;
  }
  .char_func_item .item_wrap .item_title, .adg_item .item_inner .item_info .item_title, .solution_pannel_wrap04 .pannel_nav .nav_item {
    font-size: 14px;
  }
}
@media only screen and (max-width:768px) {
  .circle {
    right: 10px;
  }
  .index_about .about_thumbs {
    width: 50%;
    float: none;
    margin: 0 auto;
  }
  .index_about .about_main {
    width: 100%;
    text-align: center;
    margin: 20px 0 0;
  }
  .index_layer_hd, .index_layer_hd strong, .index_layer_hd .layer_title {
    text-align: center;
  }
  .index_brands .index_layer_lf, .index_brands .index_layer_rt {
    padding: 5% 3%;
    width: 100%;
    background-color: rgba(56, 107, 245, .93);
    margin: 0;
    color: #FFFFFF;
  }
  .index_brands .index_layer_hd .hd_logo {
    display: none;
  }
  .index_brands .index_layer_hd strong {
    opacity: .1;
  }
  .index_brands .index_layer_rt {
    padding: 1% 3% 5%;
  }
  .solution_pannel04_els .pannel {
    flex-direction: row-reverse;
    flex-direction: column-reverse;
  }
  .solution_pannel04_els .pannel .pannel_img {
    width: 50%;
    margin: 0 auto;
  }
  .solution_pannel04_els .pannel .pannel_container {
    width: 100%;
    text-align: center;
  }
  .company_picture {
    float: none;
    width: 50%;
    margin: 0 auto;
  }
  .company_wrap .company_info {
    width: 100%;
    text-align: center;
  }
  .company_picture .new-button-prev {
    left: -100px;
  }
  .company_picture .new-button-next {
    right: -100px;
    bottom: auto;
    top: 50%;
    margin-top: -29px;
  }
  .company_wrap .company_info .company_title {
    font-size: 28px;
  }
  .ft-video-btn {
    bottom: 75px;
  }
  .ft-video-btn .vd-btn-ico {
    -webkit-transform: scale(.7);
    transform: scale(.7);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  .banner-video-pop {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .common-video-active .banner-video-pop {
    margin-top: 10% !important;
  }
}
@media only screen and (max-width:600px) {
  .circle {
    display: none;
  }
  .slider_banner .banner_title {
    font-size: 2em;
  }
  .slider_banner .banner_desc {
    font-size: 3em;
  }
  .index_about .about_thumbs, .solution_pannel04 .pannel .pannel_img {
    width: 70%;
  }
  .index_about .count_item {
    padding: 20px 1%;
    width: 46%;
  }
  .char_func_item, .index_client .count_item {
    width: 48%;
  }
  .index_client .count_item {
    margin: 20px 1%;
  }
  .index_client .count_item:after {
    display: none;
  }
  .index_news .news_slider {
    width: 100%;
    margin: 35px 0 0;
  }
  .new-button, .adg-button {
    display: none;
  }
  .foot_item {
    width: 100%;
    margin: 20px 0;
    max-width: none;
  }
  .web_footer .foot_txt_list li {
    display: inline-block;
    margin: 0 15px 10px 0;
  }
  .solution_items01 {
    justify-content: flex-start;
  }
  .solution_item01, .solution_item03 {
    width: 48%;
    margin: 20px 1%;
  }
  .fade_box .box_wrap .box_body {
    width: 98%;
  }
  .fade_box .box_wrap .close_btn {
    right: 0;
    background: #eee;
  }
  .page_brands_container .brands_pannel .item_title {
    position: relative;
    top: auto;
    width: 100%;
    font-size: 18px;
    margin: 0 0 20px;
  }
  .blog-item .item-img {
    width: 150px;
  }
  .page_bar {
    margin: 40px 0 70px;
  }
  .blog_aside {
    display: none;
  }
  .blog_article_wrap {
    padding-right: 0;
  }
  .certificate_item {
    padding: 20px;
  }
  .time_slider {
    display: none;
  }
  .history_items {
    width: 100%;
  }
  .history_item .item_inner .item_img {
    margin: 0 auto;
  }
  .history_item .item_inner .item_info {
    text-align: center;
  }
  .slider_banner .banner_video_box_mob {
    display: block;
  }
  .slider_banner .banner_video_box {
    display: none;
  }
  /*.slider_banner, .slider_banner .swiper-wrapper, .slider_banner .swiper-slide{height: auto !important;min-height:50vh}*/
  /*字体大小*/
}
@media only screen and (max-width:480px) {
  .blog-item .item-img {
    display: none;
  }
  .page_bar a, .page_bar span {
    font-size: 12px;
    line-height: 40px;
    padding: 0 10px;
  }
  .certificate_item {
    padding: 15px;
  }
  .history_item .item_inner .item_img {
    width: 80%;
  }
  /* .slider_banner .slide_down{width: 25px; height: 25px;bottom:10px}
 .slider_banner .banner_desc {
     font-size: 2.5em;
 }*/
}
@media only screen and (max-width:414px) {
  .index_about .about_thumbs, .solution_pannel04 .pannel .pannel_img, .company_picture, .location_wrap .company_picture {
    width: 90%;
  }
  .location_wrap .company_picture {
    margin: 0 5%;
  }
  .index_adg_slider {
    width: 280px;
  }
  .index_client .count_items {
    padding: 30px 0;
  }
  .solution_item01 {
    width: 300px;
    margin: 20px auto;
  }
  .solution_items02 {
    width: 300px;
    margin: 0 auto;
  }
  .solution_item03 {
    width: 300px;
    margin: 20px auto;
  }
  .certificate_item {
    padding: 10px;
  }
  .certificate_wrap .solution_pannel04 {
    width: 300px;
    margin: 30px auto 0;
  }
  .index_layer_hd01 .layer_title {
    font-size: 20px;
  }
}
@media only screen and (max-width:320px) {}
/*-------------------------------
			font start
			----------------------------------*/


/*-------------------------------------------------------- 

/*-------------------------------
			font end
			----------------------------------*/
/*-------------------------------
			swiper-slide start
			----------------------------------*/
.slider_banner {
  position: relative;
  overflow: hidden;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box
}
.swiper-container-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform
}
.swiper-invisible-blank-slide {
  visibility: hidden
}
.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform
}
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px
}
.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d
}
.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}
.swiper-container-wp8-horizontal, .swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y
}
.swiper-container-wp8-vertical, .swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x
}
.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin-top: -25px;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 30px;
  background-color: rgba(0, 0, 0, .4);
  background-color: #ccc;
  border-radius: 2px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.swiper-button-next:before, .swiper-button-prev:before {
  display: inline-block;
  vertical-align: top;
}
.swiper-container:hover .swiper-button-next, .swiper-container:hover .swiper-button-prev {}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  cursor: auto; /*pointer-events:none;*/ opacity: 0.3;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto
}
.swiper-button-prev:before, .swiper-container-rtl .swiper-button-next:before {
  content: '\f104';
}
.swiper-button-next:before, .swiper-container-rtl .swiper-button-prev:before {
  content: '\f105';
}
.swiper-button-lock {
  display: none
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: .3s opacity;
  -o-transition: .3s opacity;
  transition: .3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 2
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0
}
.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%
}
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(.33);
  -ms-transform: scale(.33);
  transform: scale(.33);
  position: relative
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(.66);
  -ms-transform: scale(.66);
  transform: scale(.66)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(.33);
  -ms-transform: scale(.33);
  transform: scale(.33)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(.66);
  -ms-transform: scale(.66);
  transform: scale(.66)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(.33);
  -ms-transform: scale(.33);
  transform: scale(.33)
}
.swiper-pagination-bullet, .swiper-pagination-bullet:before, .swiper-pagination-bullet:after {
  display: inline-block;
  vertical-align: top;
}
.swiper-pagination-bullet {
  margin: 0 4px;
  position: relative;
  overflow: hidden;
  width: 8px;
  height: 8px;
  background-color: #ccc;
  border-radius: 5px;
  vertical-align: middle;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
.swiper-pagination-bullet-active {
  background-color: #000;
  width: 22px;
  height: 6px;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0)
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: .2s top, .3s -webkit-transform;
  transition: .2s top, .3s -webkit-transform;
  -o-transition: .2s transform, .3s top;
  transition: .2s transform, .3s top;
  transition: .2s transform, .3s top, .3s -webkit-transform
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: .2s left, .3s -webkit-transform;
  transition: .2s left, .3s -webkit-transform;
  -o-transition: .2s transform, .3s left;
  transition: .2s transform, .3s left;
  transition: .2s transform, .3s left, .3s -webkit-transform
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: .2s right, .3s -webkit-transform;
  transition: .2s right, .3s -webkit-transform;
  -o-transition: .2s transform, .3s right;
  transition: .2s transform, .3s right;
  transition: .2s transform, .3s right, .3s -webkit-transform
}
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, .25);
  position: absolute
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top
}
.swiper-container-horizontal {
  overflow: hidden;
}
.swiper-container-horizontal > .swiper-pagination-progressbar {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0
}
.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, .25)
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #fff
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, .25)
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000
}
.swiper-pagination-lock {
  display: none
}
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, .1)
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, .5);
  border-radius: 10px;
  left: 0;
  top: 0
}
.swiper-scrollbar-cursor-drag {
  cursor: move
}
.swiper-scrollbar-lock {
  display: none
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center
}
.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain
}
.swiper-slide-zoomed {
  cursor: move
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat
}
.swiper-lazy-preloader-white:after {}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none
}
.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto
}
.swiper-container-cube {
  overflow: visible
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0
}
.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto
}
.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible
}
.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0
}
.swiper-container-flip {
  overflow: visible
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none
}
.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto
}
.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden
}
.swiper-container-coverflow .swiper-wrapper {
  -ms-perspective: 1200px
}
/*ie*/
.swiper-container {
  overflow: hidden\9;
}
.swiper-container .swiper-wrapper {
  width: 20000%\9;
}
.swiper-slide {
  float: left\9;
}
.product_slider .product_item {
  width: 25%\9;
}
/*-------------------------------
			swiper-slide end
			----------------------------------*/
/*-------------------------------
			entry-table start
			----------------------------------*/
.entry {
  padding: 15px 0;
}
.entry {
  color: #666;
}
.entry a {
  color: #0030FF;
}
.entry p {
  margin: 0;
  padding: 8px 0;
  font-size: 13px;
  line-height: 1.8;
}
.entry table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 20px;
}
.entry th, .entry td {
  height: 30px;
  border: 1px solid #ccc;
  text-align: left;
  line-height: 1.5;
  font-size: 12px;
  color: #666;
  background: #fbfbfb;
  padding: 0 15px;
}
.entry th {
  font-size: 12px;
  background: #eee;
}
.entry td p, .entry th p, .pd-panel .entry td p, .pd-panel .entry th p {
  margin: 0;
  padding: 5px;
  color: #666;
  font-size: 12px;
  line-height: 1.3;
}
.entry td.amts {
  color: #cb2027;
}
.entry th#cartDelete {
  text-align: center;
}
.entry .button {
  margin: 15px 10px 0 0;
  background: #dfdfdf;
  padding: 8px 15px;
  border: 0;
  cursor: pointer;
  line-height: 1.2;
  color: #777;
  font-weight: bold;
  text-transform: Capitalize;
}
.entry .button:hover {
  background: #cb2027;
  color: #fff;
}
.entry .deletecartitem {
  width: 50px;
  text-align: center;
}
.entry .deletecartitem label {
  display: none;
}
.entry .stotal td.amts {
  font-size: 18px;
  font-weight: bold;
}
.entry img.alignleft {
  float: left;
  margin: 20px 15px 0 0;
}
.entry img.alignright {
  float: right;
  margin: 20px 0 0 15px;
}
.entry img.alignleftnopad {
  float: left;
  margin-left: 0;
}
.entry img.alignrightnopad {
  float: right;
  margin-right: 0;
}
.entry img.aligncenter {
  text-align: center;
  display: block;
  margin: 20px auto 0 auto;
}
.entry img {
  max-width: 100%;
}
.cartitem a {
  color: #292929;
  font-weight: bold;
}
.inquiry-form ul li {
  background: none;
}
.entry .inquiry-form-wrap {
  margin: 20px 0 0;
}
.table_wrap {
  position: relative;
  display: block;
  margin-bottom: 15px;
}
.main table {
  position: relative;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 0 !important;
}
.main table th, .main table td {
  height: 30px;
  border: 1px solid #ccc;
  text-align: left;
  line-height: 1.5;
  font-size: 12px;
  color: #666;
  background: #fbfbfb;
  padding: 0 15px;
}
.main table th {
  font-size: 13px;
  background: #eee;
  font-weight: normal;
}
.main table td p, .main table th p, table td p, table th p {
  margin: 0;
  padding: 5px;
  color: #666;
  font-size: 12px;
  line-height: 1.3;
}
.main table td.amts {
  color: #cb2027;
}
.main table th#cartDelete {
  text-align: center;
}
/*-------------------------------
			entry-table end
			----------------------------------*/
/*-------------------------------
			scrollsidebar start
			----------------------------------*/
.scrollsidebar, .scrollsidebar a {
  font-size: 12px;
  color: #999;
  font-family: Arial, Helvetica, sans-serif;
}
.scrollsidebar {
  position: absolute;
  z-index: 30;
  top: 150px;
  right: 0;
}
.show_btn {
  width: 38px;
  height: 192px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  overflow: hidden;
  background: url(../image/show_btn.png) no-repeat center center;
  position: absolute;
  right: 0;
  top: 0;
}
.side_content {
  width: 0;
  height: auto;
  overflow: hidden;
  float: left;
}
.side_content .side_list {
  width: 140px;
  overflow: hidden;
  border: 1px solid #dadada;
  border-radius: 8px;
  position: relative;
  background: #FFF;
}
.side_content .side_list .hd img {
  width: 100%;
  border-bottom: 1px solid #dadada;
}
.side_content .side_list .cont li {
  height: 40px;
  line-height: 40px;
  border-bottom: 1px solid #dadada;
  list-style: none;
  position: relative;
}
.side_content .side_list .cont li a {
  position: relative;
  display: block;
  padding: 0 0 0 43px;
  text-decoration: none;
}
.side_content .side_list .cont li a:before {
  content: "";
  position: absolute;
  display: block;
  overflow: hidden;
  top: 0;
  left: 10px;
  width: 25px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center center;
}
.side_content .side_list .cont li .email:before {
  background-image: url(../image/icons01.png);
}
.side_content .side_list .cont li .skype:before {
  background-image: url(../image/icons02.png);
}
.side_content .side_list .cont li .inquiry:before {
  background-image: url(../image/icons03.png);
}
.side_content .side_list .cont li .qq:before {
  background-image: url(../image/icons04.png);
}
.ww {
  margin-left: -30px;
}
.side_content .side_list .t-code {
  padding: 10px 10px 7px;
  border-bottom: 1px solid #dadada;
}
.side_content .side_list .t-code img {
  width: 100%;
}
.side_content .side_list .side_title {
  height: 30px;
  line-height: 30px;
  padding: 0 12px;
}
.side_content .side_list .side_title .close_btn {
  background: url(../image/close.png) no-repeat center center;
  width: 12px;
  height: 30px;
  position: absolute;
  bottom: 0;
  right: 10px;
  cursor: pointer;
}
.side_content .side_list .side_title .close_btn span {
  display: none;
}
/*-------------------------------
			scrollsidebar end
			----------------------------------*/
/*-------------------------------
			language  end
			----------------------------------*/
/*-------------------------------
			animation  start
			----------------------------------*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s
}
@-webkit-keyframes fadeInLeftA {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-60px, 0, 0);
    transform: translate3d(-60px, 0, 0)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}
@keyframes fadeInLeftA {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-60px, 0, 0);
    -ms-transform: translate3d(-60px, 0, 0);
    transform: translate3d(-60px, 0, 0)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
  }
}
.fadeInLeftA {
  -webkit-animation-name: fadeInLeftA;
  animation-name: fadeInLeftA;
  -webkit-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeInUpA {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}
@keyframes fadeInUpA {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    -ms-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
  }
}
.fadeInUpA {
  -webkit-animation-name: fadeInUpA;
  animation-name: fadeInUpA;
  -webkit-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeInRightA {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(60px, 0, 0);
    transform: translate3d(60px, 0, 0)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}
@keyframes fadeInRightA {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(60px, 0, 0);
    -ms-transform: translate3d(60px, 0, 0);
    transform: translate3d(60px, 0, 0)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
  }
}
.fadeInRightA {
  -webkit-animation-name: fadeInRightA;
  animation-name: fadeInRightA;
  -webkit-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes twinkling {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes OrangePulse {
  from {
    background-color: rgba(210, 174, 109, .2);
    -webkit-box-shadow: 0 0 10px rgba(210, 174, 109, 1);
  }
  50% {
    background-color: rgba(210, 174, 109, 1);
    -webkit-box-shadow: 0 0 10px rgba(210, 174, 109, 1);
  }
  to {
    background-color: rgba(210, 174, 109, .2);
    -webkit-box-shadow: 0 0 10px rgba(210, 174, 109, 1);
  }
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg)
  }
  40% {
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg)
  }
  60% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg)
  }
  80% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg)
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg)
  }
  40% {
    -webkit-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    transform: rotate(-20deg)
  }
  60% {
    -webkit-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    transform: rotate(10deg)
  }
  80% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg)
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg)
  }
}
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing
}
@-webkit-keyframes jump {
  0% {
    -webkit-transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(-16px);
  }
  50% {
    -webkit-transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(-8px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@keyframes jump {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-16px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes bounceInA {
  0%, 100%, 20%, 40%, 60%, 80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
    transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1)
  }
  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9)
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03)
  }
  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97)
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}
@keyframes bounceInA {
  0%, 100%, 20%, 40%, 60%, 80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
    transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    -ms-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    -ms-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1)
  }
  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    -ms-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9)
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    -ms-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03)
  }
  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    -ms-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97)
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}
.bounceInA {
  -webkit-animation-name: bounceInA;
  animation-name: bounceInA;
  -webkit-animation-duration: .75s;
  animation-duration: .75s
}
@-webkit-keyframes fadeInDownA {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -200px, 0);
    transform: translate3d(0, -200px, 0)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}
@keyframes fadeInDownA {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -200px, 0);
    -ms-transform: translate3d(0, -200px, 0);
    transform: translate3d(0, -200px, 0)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
  }
}
.fadeInDownA {
  -webkit-animation-name: fadeInDownA;
  animation-name: fadeInDownA
}
@keyframes fadeInA {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeInA {
  -webkit-animation-name: fadeInA;
  animation-name: fadeInA
}
@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0
  }
  0%, 40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg)
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg)
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0
  }
  0%, 40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg)
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg)
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY
}
/* animate.css */
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}
@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0)
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0)
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0)
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0)
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0)
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0)
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0)
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0)
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp
}
@-webkit-keyframes zoomInA {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  33% {
    opacity: 1;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  66% {
    opacity: 0;
    -webkit-transform: scale(2.2);
    transform: scale(2.2);
  }
}
@keyframes zoomInA {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  33% {
    opacity: 1;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  66% {
    opacity: 0;
    -webkit-transform: scale(2.2);
    transform: scale(2.2);
  }
}
.zoomInA {
  -webkit-animation-name: zoomInA;
  animation-name: zoomInA
}
@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px)
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px)
  }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px)
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px)
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px)
  }
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px)
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight
}
/* --------------------------
   视频弹窗
   -------------------------- */
/* 轮播视频 */
/*.slide-item-video:after{content: '';display: block;width: 100%;height: 100%;background-color: rgba(0,0,0,0);position: absolute;left: 0;top: 0;z-index: 1;}
.slide-banner-wrapper .video-btn {width: 170px;height: 170px;text-align: center;position: absolute;left: 50%;top: 65%;margin-left: -85px;margin-top: -90px;text-align: center;cursor: pointer;z-index: 2;}
.slide-banner-wrapper .video-btn-ico{display: inline-block;-webkit-transition: all .2s ease;-o-transition: all .2s ease;transition: all .2s ease;width: 101px;height: 101px;line-height: 101px;text-align: center;border-radius: 50%;border: 5px solid #fff;color: #fff;background-color: rgba(0,0,0,0.7);box-sizing: content-box;opacity: 0.6;font-size: 42px;overflow: hidden;}
.slide-banner-wrapper .video-btn-ico:after{font-family: 'iconfont';content: '\e669';}
.slide-banner-wrapper .video-btn-txt{display: block;padding-top: 8px;color: #fff;font-size: 18px;text-shadow: 0 0 3px rgba(0,0,0,.5);letter-spacing: 2px;opacity: .7;filter: alpha(opacity=70);-webkit-transition: all .3s ease;-o-transition: all .3s ease;transition: all .3s ease;}
.slide-banner-wrapper .video-btn .video-btn-ico,.slide-banner-wrapper .video-btn .video-btn-ico:before{-webkit-transition: all .3s ease-in-out;-o-transition: all .3s ease-in-out;transition: all .3s ease-in-out;}
.slide-banner-wrapper .video-btn:hover .video-btn-ico{opacity: 0.9;background-color: rgba(23,80,180,.6);border-radius: 35px 85px 85px 35px / 60px 60px 60px 60px;border-color: #d8f1ff;box-shadow: 0 0 20px rgba(0,0,0,0.15);-webkit-transform: scale(0.9);-ms-transform: scale(0.9);-o-transform: scale(0.9);transform: scale(0.9);}
.slide-banner-wrapper .video-btn .video-btn-ico:before {content: '';display: block;width: 100%;height: 60%;border-radius: 0 0 80% 0;background-color: rgba(255,255,255,.08);position: absolute;left: 0;top: -2px;opacity: 0;filter: alpha(opacity=0);}
.slide-banner-wrapper .video-btn:hover .video-btn-ico:before{opacity: 1;filter: alpha(opacity=100);}*/
.banner-video-pop {
  background-color: #fff;
  background-color: rgba(255, 255, 255, .85);
  position: absolute;
  left: 50%;
  z-index: 4;
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: hidden;
  width: 1000px;
  margin-left: -500px;
  top: 119px;
}
.banner-video-pop video {
  width: 100%;
}
.banner-video-pop .banner-video-box {
  padding: 15px;
  position: relative;
  z-index: 1;
}
.banner-video-pop .video-box-close {
  display: block;
  width: 45px;
  height: 36px;
  background-image: url(../image/banner-video-close.png);
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  position: absolute;
  right: -45px;
  top: 0;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  opacity: .85;
  filter: alpha(opacity=85);
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.show-video-pop .banner-video-pop {
  opacity: 1;
  filter: alpha(opacity=100);
  visibility: visible;
  -webkit-animation: .4s videoIn ease;
  -o-animation: .4s videoIn ease;
  animation: .4s videoIn ease;
}
.video-box-mask {
  display: none;
  width: 100%;
  height: 831px;
  background-color: rgba(0, 0, 0, .5); /*background-color:#000\9;*/ position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
}
@media screen and (max-width:1024px) {
  .banner-video-pop {
    width: 100%;
    left: 0;
    margin-left: 0;
    top: 52px;
  }
  .banner-video-pop .banner-video-box {
    padding: 5px;
  }
  .banner-video-pop .video-box-close {
    left: auto;
    right: 0;
    z-index: 9;
    border-radius: 0 0 5px 5px;
    width: 35px;
    height: 26px;
    -webkit-background-size: 12px 12px;
    background-size: 12px 12px;
    top: auto;
    bottom: -26px;
  }
}
.slide-banner-wrapper {
  position: static;
}
.slide-banner-layer .owl-carousel .owl-stage {
  position: static;
}
.slide-banner-layer .slide-banner-wrapper .owl-item {
  position: static;
}
.slide-banner-wrapper .slide-item-img {
  position: relative;
  z-index: 0;
}
/* 右下角视频按钮 */
.gotop {
  visibility: hidden;
}
.ft-video-btn {
  display: inline-block;
  position: absolute;
  position: fixed;
  right: 10px;
  bottom: 80px;
  text-align: center;
  z-index: 3;
  cursor: pointer;
}
.ft-video-btn .vd-btn-ico {
  display: block;
  width: 59px;
  height: 50px;
  line-height: 50px;
  margin: 0 auto;
  background-color: #257dff;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, .1);
  border-radius: 3px;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  overflow: hidden;
  position: relative;
}
.ft-video-btn .vd-btn-ico:before {
  font-family: 'iconfont';
  content: '\e669';
  font-size: 26px;
}
.ft-video-btn .vd-btn-ico:after {
  content: '';
  display: block;
  width: 100%;
  height: 70%;
  border-radius: 0 0 80% 0;
  background-color: rgba(255, 255, 255, .1);
  position: absolute;
  left: 0;
  top: -2px;
}
.ft-video-btn:hover .vd-btn-ico {
  background-color: #f4a800;
  -webkit-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}
.ft-video-btn .vd-btn-txt {
  display: block;
  padding-top: 6px;
  font-size: 12px;
  color: #333;
  color: #ff7f52;
  text-shadow: 1px 1px 0px rgba(255, 255, 255, .2);
  line-height: 1.3;
  font-family: "微软雅黑", "Microsoft YaHei";
  letter-spacing: 2px;
}
.common-video-active .video-box-mask {
  position: fixed;
  height: 100%;
  z-index: 100001;
}
.common-video-active .banner-video-pop {
  position: fixed;
  z-index: 100002;
  margin-top: -288px;
  top: 50%;
}
.ft-video-btn {
  -webkit-animation: jump 3.5s ease-in infinite;
  ;
  animation: jump 3.5s ease-in infinite;
}
.ft-video-btn:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.common-video-active .video-box-mask {
  position: fixed;
  height: 100%;
  z-index: 100001;
}
.common-video-active .banner-video-pop {
  position: fixed;
  z-index: 100002;
  margin-top: -288px;
  top: 50%;
}
.index_about .about_content {
  justify-content: space-between;
  align-items: center;
}
/*-------------------------------
			animation  end
			----------------------------------*/
/*.sys_sub_head1 */
.sys_sub_head1 {
  padding: 10.5625em 0 0.8125em;
  font-size: 16px;
}
.sys_sub_head1:after {
  height: 3.5em;
}
.index_layer_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
.index_layer_bg .circle {
  right: auto;
  left: 13.5%;
  bottom: -3.5625em;
}
.index_layer_bg .circle i::before {
  box-shadow: 1.125em 1.875em 2.0625em rgba(8, 64, 208, .67);
}
.circle.sm {
  width: 7.125em;
  height: 7.125em;
}
.index_layer_hd {
  font-size: 1em;
  line-height: 1.5;
}
.index_layer_hd .layer_title_wrap {
  position: relative;
  display: inline-block;
  font-size: 3.5em;
  font-weight: 700;
  line-height: 1;
}
.index_layer_hd .layer_title {
  color: #2bd576;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  display: inline-block;
  letter-spacing: 0px;
}
.index_layer_hd .layer_title_bg {
  background-repeat: no-repeat;
  background-size: auto;
  background-position: -.4464em;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0px;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  pointer-events: none;
}
.index_layer_hd strong {
  font-size: 2.25em;
  font-weight: 700;
  margin: .333em 0 .611em;
}
.index_layer_hd p {
  font-size: 1.125em;
}
.index_layer_hd .btn_group {
  padding: 0.625em 0;
  margin: 1.0625em 0 .5em;
}
.index_layer_hd .btn_group .btn {
  font-size: 1em;
  color: #fff;
  line-height: 1;
  padding: 1.0625em 3.625em;
  border-radius: 1.875em;
  background: linear-gradient(90deg, rgba(242, 242, 242, .2) 0%, rgba(242, 242, 242, .2) 50%, #ff7f52 50%, #ff7f52 70%, #3b70f9 100%);
  background-size: 200% 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
  letter-spacing: 0.125em;
  display: inline-block;
  margin: 0.3125em 1.875em;
  transition: all .35s ease;
}
.index_layer_hd .btn_group .btn:hover {
  background-position: 100% 0;
}
.index_layer_hd .layer_img img {
  max-width: 55%;
}
/* main */
.web_main.page_main {
  font-size: 16px;
}
/* our_advantage */
.our_advantage {
  position: relative;
  padding: 3.5625em 0 5em;
  font-size: 1em;
}
.our_advantage .circle {
  right: 13.5%;
  bottom: -3.5625em;
}
.our_advantage .circle i::before {
  box-shadow: 1.125em 1.875em 3.125em rgba(46, 101, 243, .35);
}
.our_advantage .number-items {
  padding: 4.875em 0 4.4375em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #f6f9ff;
  border-radius: 0.9375em;
}
.our_advantage .number-item {
  width: 25%;
  padding: 0.375em 2% 0.625em;
  position: relative;
  text-align: center;
}
.our_advantage .number-item::after {
  content: '';
  width: 1px;
  height: calc(100% - 0.75em);
  background-color: #d3d3d3;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
}
.our_advantage .number-item + .number-item::after {
  opacity: 1;
}
.our_advantage .number-item .item-icon {
  height: 2.375em;
  display: flex;
  align-items: center;
  justify-content: center
}
.our_advantage .number-item .item-icon img {
  max-height: 100%;
}
.our_advantage .number-item:hover .item-icon img {
  animation: shake 0.6s ease-in-out forwards;
}
.our_advantage .number-item .item-number {
  margin: 1.9375em 0 0.6875em;
}
.our_advantage .number-item .item-number .item-num {
  color: #3b70f9;
  font-size: 3.125em;
  font-weight: 700;
  line-height: .8;
}
.our_advantage .number-item .item-number .item-text {
  font-size: 1.625em;
  color: #343036;
  display: inline-block;
  margin-left: .23em;
  transform: translateY(-.1538em);
}
.our_advantage .number-item .item-title {
  color: #242424;
  font-size: 1.25em;
  font-weight: 700;
}
.our_advantage .advantage_info {
  text-align: center;
  padding: 5.75em 5% 0;
}
.our_advantage .advantage_info .advantage_title {
  color: #343036;
  font-size: 2.25em;
  font-weight: 700;
}
.our_advantage .advantage_info .advantage_desc {
  color: #242424;
  font-size: 1em;
  line-height: 2.25;
  margin-top: 0.875em;
}
@keyframes shake {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(20deg);
  }
  50% {
    transform: rotate(-20deg);
  }
  75% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
/* our_services */
.our_services {
  position: relative;
  padding: 6.1875em 0 6.4375em;
  background-color: #f6f9ff;
  font-size: 1em;
}
.our_services .title_bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.our_services .title_bar .title {
  color: #343036;
  font-weight: 700;
  font-size: 2.25em;
  line-height: 1;
  padding-bottom: .611em;
  position: relative;
  margin-top: .25em;
}
.our_services .title_bar .title::after {
  content: '';
  width: 2.833em;
  height: 1px;
  background-color: #21e571;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all .35s ease;
}
.our_services .title_bar .title:hover::after {
  width: 100%;
}
.our_services .title_bar p {
  width: 50%;
  color: #343036;
  font-size: 1em;
  line-height: 2.25;
}
.our_services .services_wrap {
  padding: 5em 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.our_services .services_wrap .tab_nav {
  width: 36.785%;
}
.our_services .tab_nav .nav_item {
  cursor: pointer;
  color: #343036;
  padding: 0.5625em 1.5625em 0.5em;
  border-radius: 0.9375em;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 50%, #ff7f52 50%, #ff7f52 70%, #3b70f9 100%);
  background-size: 200% 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
  transition: all .35s ease;
}
.our_services .tab_nav .nav_item + .nav_item {
  margin-top: 0.8125em;
}
.our_services .tab_nav .nav_item .item_title {
  font-size: 1.25em;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.our_services .tab_nav .nav_item .item_title span {
  transition: all .35s ease;
  flex: 1;
  margin-left: 0.9em;
}
.our_services .tab_nav .nav_item .item_icon {
  position: relative;
  overflow: hidden;
  font-size: 0.8em;
}
.our_services .tab_nav .nav_item .item_icon img {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  transition: all .35s ease;
}
.our_services .tab_nav .nav_item .item_icon img.before {
  top: 50%;
  transform: translate(-50%, -50%);
}
.our_services .tab_nav .nav_item .item_icon_bg {
  display: block;
  width: 3.875em;
  height: 3.875em;
  transition: all .35s ease;
}
.our_services .tab_nav .nav_item .item_desc {
  height: 0;
  color: inherit;
  font-size: 1em;
  line-height: 1.625;
  padding-left: 0.75em;
  transition: all .35s ease;
  overflow: hidden;
}
.our_services .tab_nav .nav_item.active {
  color: #ffffff;
  background-position: 100% 0;
  padding: 0.875em 1.25em 1.8125em;
}
.our_services .tab_nav .nav_item.active .item_title span {
  margin-left: .4em;
}
.our_services .tab_nav .nav_item.active .item_desc {
  height: auto;
}
.our_services .tab_nav .nav_item.active .item_icon_bg {
  opacity: .25;
}
.our_services .tab_nav .nav_item.active .item_icon img.before {
  top: 100%;
  transform: translateX(-50%);
}
.our_services .tab_nav .nav_item.active .item_icon img.after {
  top: 50%;
  transform: translate(-50%, -50%);
}
.our_services .services_wrap .tab_pannel {
  position: relative;
  width: 50%;
}
.our_services .services_wrap .pannel_item {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  -webkit-transition: all ease-in-out .5s;
  transition: all ease-in-out .5s;
  height: 0;
  overflow: hidden;
  border-radius: 0.9375em;
}
.our_services .services_wrap .pannel_item.active {
  position: relative;
  top: unset;
  left: unset;
  width: 100%;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  height: auto;
}
.our_services .services_wrap .pannel_item img {
  width: 100%;
}
/* middle_banner */
.middle_banner {
  padding: 7.5625em 0;
  text-align: center;
  font-size: 1em;
}
.middle_banner .banner_info {
  color: #ffffff;
}
.middle_banner .banner_info h2 {
  font-size: 2.25em;
  font-weight: 700;
}
.middle_banner .banner_info p {
  font-size: 1.625em;
  margin-top: .923em;
}
/* media_interview */
.media_interview {
  padding: 8.375em 0 8.9375em;
  background-color: #f7f9ff;
  font-size: 1em;
}
.media_interview .title {
  color: #343036;
  font-weight: 700;
  font-size: 2.25em;
  line-height: 1;
  padding-bottom: .611em;
  position: relative;
  text-align: center;
}
.media_interview .title::after {
  content: '';
  width: 2.83em;
  height: 1px;
  background-color: #21e571;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all .35s ease;
}
.media_interview .media_wrap {
  margin: 3.125em 0 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 1em;
  row-gap: 0.875em;
}
.media_interview .media_item {
  width: calc(25% - 0.75em);
  padding: 0.75em .875em;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 50%, #ff7f52 50%, rgba(42, 216, 113, .8) 70%, rgba(59, 112, 249, .6) 100%);
  background-size: 200% 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
  transition: all .35s ease;
  border-radius: .3125em;
  height: 5.4375em;
  display: flex;
  align-items: center;
}
.media_interview .media_item:hover {
  background-position: 100% 0;
}
.media_interview .media_item .item_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.media_interview .media_item .item_title {
  color: #343036;
  font-size: 1em;
  line-height: 1.375;
  flex: 1;
  margin-right: 0.625em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all .35s ease;
}
.media_interview .media_item:hover .item_title {
  color: #ffffff;
}
.media_interview .media_item .item_img {
  max-width: 7.3125em;
}
.media_interview .media_item .item_img img {
  max-height: 3.5em;
}
@media screen and (max-width:1900px) {
  .sys_sub_head, .web_main.page_main {
    font-size: .842vw;
  }
}
@media screen and (max-width:1080px) {
  .sys_sub_head, .web_main.page_main {
    font-size: 10px;
  }
  .index_layer_bg {
    height: 80%;
  }
  .index_layer_bg img {
    height: 100%;
    object-fit: cover;
  }
  .index_layer_bg .circle {
    left: 5%;
  }
  .our_services .title_bar .title {
    font-size: 1.8em;
  }
  .our_services .services_wrap .tab_nav {
    width: 45%;
  }
  .our_advantage {
    padding-bottom: 3.5em;
  }
  .our_advantage .circle {
    right: 5%;
  }
  .our_advantage .advantage_info {
    padding-top: 3.5em;
  }
  .our_advantage .advantage_info .advantage_title {
    font-size: 1.8em;
  }
  .media_interview {
    padding: 5em 0;
  }
  .media_interview .title {
    font-size: 1.8em;
  }
  .media_interview .media_item {
    width: calc(33.3% - .67em);
  }
  .middle_banner {
    font-size: .8em;
  }
}
@media screen and (max-width:768px) {
  .our_advantage .number-item {
    width: 50%;
    margin: 1em 0;
  }
  .our_advantage .number-items {
    padding: 2em 0;
  }
  .our_advantage .number-item + .number-item::after {
    opacity: 0;
  }
  .our_advantage .number-item:nth-child(2n)::after {
    opacity: 1;
  }
  .media_interview .media_item {
    width: calc(50% - .5em);
  }
}
@media screen and (max-width:640px) {
  .our_services {
    padding: 4em 1em;
  }
  .our_services .title_bar p {
    width: 100%;
    margin: 1em 0;
  }
  .our_services .services_wrap {
    padding: 1em 0 0;
  }
  .our_services .services_wrap .tab_nav {
    width: 100%;
  }
  .our_services .services_wrap .tab_pannel {
    width: 100%;
    margin: 2em 0 0;
  }
  .middle_banner {
    padding: 5em 0;
  }
}
@media screen and (max-width:480px) {
  .index_layer_hd .btn_group .btn {
    margin: 0.3125em .6em;
    padding: .8em 2.5em;
  }
  .index_layer_hd .layer_img img {
    max-width: 80%;
  }
  .index_layer_hd .layer_title_wrap {
    font-size: 2.5em;
  }
  .index_layer_hd strong {
    font-size: 1.6em;
  }
  .our_advantage .number-item .item-number .item-num {
    font-size: 2.8em;
  }
}
@media screen and (max-width:420px) {
  .media_interview .media_item {
    width: 100%;
  }
}
@media screen and (max-width:360px) {
  .our_advantage .number-item {
    width: 100%;
  }
  .our_advantage .number-item:nth-child(2n)::after {
    opacity: 0;
  }
}
/* --------------------------
   客服浮层
   -------------------------- */
.ol-sv-pop {
  position: fixed;
  right: 0;
  top: 10%;
  z-index: 3;
}
.ol-sv-pop .sv-pop-hd {
  display: block;
  width: 40px;
  padding: 20px 10px;
  background-color: #0070ca;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
  border-radius: 8px 0 0 8px;
  float: left;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
.ol-sv-pop .sv-pop-hd:hover .pop-hd-ico {
  -webkit-animation: swing .4s ease;
  -o-animation: swing .4s ease;
  animation: swing .4s ease;
}
.ol-sv-pop .sv-pop-hd .pop-hd-ico {
  display: block;
}
.ol-sv-pop .sv-pop-hd .pop-hd-ico:before {
  font-family: 'iconfont';
  content: '\e602';
}
.ol-sv-pop .sv-pop-hd .pop-hd-tit {
  font-family: 'Microsoft YaHei', '微软雅黑';
  font-size: 16px;
  font-weight: normal;
  padding-top: 3px;
  padding-left: 1px;
}
.ol-sv-pop .sv-pop-hd .pop-hd-arrow {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAABIElEQVQoU23RMajPYRjF8c+RhEhKFlkMymRhcEMMl8EgKd1JWZRMVupeJYMsymiwmAgLG1JKNpOFMhiVxaAUjn631z+Xe6ZnON/nOed9YxW1PYbLOJ7ke9v1eIKb+dffdg7PcSPJ1bZr8RR7sG8F0HYvXuFhknNt1+A+DuFAko8zoO1uvMZLnEnyq+1dnB7md1OaZaDtTrzBe8wn+dH2Fi7gaJJp0bLSdvswf8Vckm9tl7CIk0mmsjNNwHTyAZaSXGu7AW+xDvuTfFkBjEhnMeVdTHK97bbRZYIOJvk8i/RnaLuAe7id5FLbrXiBLTiS5NOs9F/QqfGMd3ARm/EMOwb0YbWPO4HHA5yibhyXduHwf8DoNI/zWEjys+0mPMKV3627cb3VmsoUAAAAAElFTkSuQmCC) center no-repeat;
}
.ol-sv-pop .sv-pop-bd {
  width: 150px;
  padding: 10px;
  float: left;
  background-color: #0070ca;
  border-radius: 0 0 0 8px;
  position: absolute;
  right: -160px;
  top: 0;
}
.ol-sv-pop .sv-pop-bd .pop-bd-inner {
  background-color: #fff;
  border-radius: 8px;

  overflow: hidden;
}
.ol-sv-pop .pop-bd-tit {
  text-align: center;
  font-size: 12px;
  color: #333;
  font-weight: bold;
  background-color: #f2fbff;
  padding: 8px 0 3px;
}
.ol-sv-pop .pop-sv-item {
  line-height: 24px;
  padding: 7px 0 7px 8px;
  border-bottom: 1px solid #e6e6e6;
}
.ol-sv-pop .pop-sv-item .item-label {
  display: inline-block;
  min-width: 4em;
  padding-right: 5px;
  text-align-last: justify;
}
.ol-sv-pop .pop-sv-item .item-img {
  vertical-align: middle;
}
.ol-sv-pop .pop-sv-item .item-ico:before {
  font-family: 'iconfont';
  color: #09ba07;
  font-size: 17px;
  padding-right: 10px;
}
.ol-sv-pop .pop-sv-item .item-txt {
  font-size: 10px;
}
.ol-sv-pop .pop-sv-item .ico-tel:before {
  content: '\e655';
}
.ol-sv-pop .pop-sv-item .ico-weixin:before {
  content: '\e624';
}
.ol-sv-pop .sv-qrcode {
  text-align: center;
  text-align: center;
  padding: 8px 0;
}
.ol-sv-pop .sv-qrcode .qrcode-img {
  display: block;
}
.ol-sv-pop .sv-qrcode .qrcode-img img {
  width: 100px;
  height: 100px;
}
.ol-sv-pop .sv-qrcode .qrcode-txt {
  display: block;
}
.ol-sv-pop-active .sv-pop-hd {
  right: 152px;
}
.ol-sv-pop-active .sv-pop-bd {
  right: 0;
}
.ol-sv-pop-active .sv-pop-hd .pop-hd-arrow {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  .ol-sv-pop .sv-pop-hd {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .ol-sv-pop .sv-pop-hd .pop-hd-tit {
    padding-top: 2px;
    font-size: 14px;
    padding-left: 1px;
  }
  .ol-sv-pop .sv-pop-hd .for-pc-tit {
    display: none;
  }
  .ol-sv-pop .sv-pop-hd .pop-hd-arrow {
    font-size: 12px;
    padding-left: 1px;
    padding-top: 3px;
  }
}
/*******************************************首页问题*****************************************/
.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden;}
.box {
	padding: 100px 0px;
}

@media (max-width: 767px) {
.box {
	padding: 60px 0;
}
}
.box-about03 {
	position: relative;
	background:url("/public/static/modules/cms/images/bg01.png")no-repeat center fixed;
}
.box-about03 img {
	max-width: 100%;
}
.box-about02 {
	position: relative;
	background:url("/public/static/modules/cms/images/bg02.png")no-repeat center fixed;
}
.box-about03 img {
	max-width: 100%;
}
.box-about01 {
	position: relative;
	background:url("/public/static/modules/cms/images/bg03.png")no-repeat center fixed;
}
.nav{
	width: 1200px;
	margin: 0px auto;
	position: relative;
	
}
.title h2{font-size: 36px;
	margin-top: 60px;
font-weight: bold; text-align: center;color: #0a62d0;}
.title p{
	width: 80px;
	height: 4px;
	background-color: #f88860;
	margin: 0px auto;
	margin-top: 20px;
	margin-bottom: 60px;
}
.wt_bg{
	background: url("/public/static/modules/cms/images/faq.png") no-repeat;
	background-position: center;
	
	padding: 80px 0px;
	height: 543px;
}
.wt_nav{
	width: 25%;
	
	
	   transition: .5s;
}
.wt_nav img{
	margin: 0px auto;
	justify-content: center; 
	transition: 1s;
	float: left;
}
.wt_nav:hover img{
	transform: rotateY(180deg);
}
.wt_nav h4{
	font-size: 30px;
	font-weight: bold;
	color: #ff6852;
	
}
.wt_nav p{
	font-weight: bold;
}
.wt_nav:nth-child(1){
	position: absolute;
	top: 40px;
}
.wt_nav:nth-child(2){
	position: absolute;
	top: 260px;
}
.wt_nav:nth-child(3){
	position: absolute;
	top: 40px;
	right: 0px;
}
.wt_nav:nth-child(4){
	position: absolute;
	right: 0px;
	top: 260px;
}
@media (max-width:1200px){
	.nav{
	width: 1000px;
	margin: 0px auto;
	position: relative;
	
}
.title h2{font-size: 36px;
	margin-top: 60px;
font-weight: bold; text-align: center;color: #0a62d0;}
.title p{
	width: 80px;
	height: 4px;
	background-color: #f88860;
	margin: 0px auto;
	margin-top: 20px;
	margin-bottom: 60px;
}
.wt_bg{
	background: url("../image/faq.png") no-repeat;
	background-position: center;
	
	padding: 80px 0px;
	height: 543px;
}
.wt_nav{
	width: 25%;
	
	
	   transition: .5s;
}
.wt_nav img{
	margin: 0px auto;
	justify-content: center; 
	transition: 1s;
	float: left;
}
.wt_nav:hover img{
	transform: rotateY(180deg);
}
.wt_nav h4{
	font-size: 30px;
	font-weight: bold;
	color: #ff6852;
	
}
.wt_nav p{
	font-weight: bold;
}
.wt_nav:nth-child(1){
	position: absolute;
	top: 40px;
}
.wt_nav:nth-child(2){
	position: absolute;
	top: 260px;
}
.wt_nav:nth-child(3){
	position: absolute;
	top: 40px;
	right: 0px;
}
.wt_nav:nth-child(4){
	position: absolute;
	right: 0px;
	top: 260px;
}
}
@media (max-width:1000px){
	.nav{
	width: 800px;
	margin: 0px auto;
	position: relative;
	
}
.title h2{font-size: 36px;
	margin-top: 60px;
font-weight: bold; text-align: center;color: #0a62d0;}
.title p{
	width: 80px;
	height: 4px;
	background-color: #f88860;
	margin: 0px auto;
	margin-top: 20px;
	margin-bottom: 60px;
}
.wt_bg{
	background: url("../image/faq.png") no-repeat;
	background-position: center;
	
	padding: 80px 0px;
	height: 543px;
}
.wt_nav{
	width: 25%;
	
	
	   transition: .5s;
}
.wt_nav img{
	margin: 0px auto;
	justify-content: center; 
	transition: 1s;
	float: none;;
}
.wt_nav:hover img{
	transform: rotateY(180deg);
}
.wt_nav h4{
	font-size: 30px;
	font-weight: bold;
	color: #ff6852;
	
}
.wt_nav p{
	font-weight: bold;
}
.wt_nav:nth-child(1){
	position: absolute;
	top: 40px;
}
.wt_nav:nth-child(2){
	position: absolute;
	top: 260px;
}
.wt_nav:nth-child(3){
	position: absolute;
	top: 40px;
	right: 0px;
}
.wt_nav:nth-child(4){
	position: absolute;
	right: 0px;
	top: 260px;
}
}
@media (max-width:800px){
	.nav{
	width: 100%;
		padding: 0px 1%;
	margin: 0px auto;
	position: relative;
	
}
.title h2{font-size: 28px;
	margin-top: 60px;
font-weight: bold; text-align: center;color: #0a62d0;}
.title p{
	width: 80px;
	height: 4px;
	background-color: #f88860;
	margin: 0px auto;
	margin-top: 20px;
	margin-bottom: 60px;
}
.wt_bg{
	background: none;
	background-position: center;
	
	padding: 0px 0px;
	height:auto;
}
.wt_nav{
	width: 46%;
	float: left;
	box-shadow: 0 14px 20px -5px rgba(0, 0, 0, 0.1);
	   transition: .5s;
	margin: 0px 2%;
	padding: 20px 0px;
}
.wt_nav img{
	margin: 0px auto;
	justify-content: center; 
	transition: 1s;
	float: none;;
}
.wt_nav:hover img{
	transform: rotateY(180deg);
}
.wt_nav h4{
	font-size: 30px;
	font-weight: bold;
	color: #ff6852;
	
}
.wt_nav p{
	font-weight: bold;
}
.wt_nav:nth-child(1){
	position: relative;
	top: 0px;
}
.wt_nav:nth-child(2){
	position: relative;
	top:0px;
}
.wt_nav:nth-child(3){
	position: relative;
	top: 0px;
	right: 0px;
}
.wt_nav:nth-child(4){
	position: relative;
	right: 0px;
	top:0px;
}
}
/*******************************************首页产品*****************************************/
.cp{
	margin-top: 60px;
}
.cp_nav{
	margin: 0px 1%;
	float: left;
	width: 31.3%;
	 box-shadow: 0 14px 60px -5px rgba(10, 98, 208, 0.1);
	 border-radius: 10px;
	margin-bottom: 40px;
	padding-bottom: 50px;
}
.cp_nav h4{
	max-width: 100%;
	line-height: 3em;
	border-radius: 10px 10px 0px 0px;
	background-image: linear-gradient(180.0deg, #4e94ff 0.0, #0667ff 100.0%);
	font-size: 30px;
	font-weight: bold;
	color: white;
}
.cp_nav img{
	margin: 20px 0px;
}
.cp_nav p{
	padding: 0px 40px;
	font-size: 16px;
	font-weight: bold;
}
.cp_nav span{
	display: block;
	width: 140px;
	color: white;
	background-image: linear-gradient(180.0deg, #4e94ff 0.0, #0667ff 100.0%);
	 border-radius: 20px;
	padding: 10px 0px;
	margin-top: 20px;
}
@media (max-width:800px){
	.cp{
	margin-top: 30px;
}
.cp_nav{
	margin: 0px 1%;
	float: left;
	width: 48%;
	 box-shadow: 0 14px 60px -5px rgba(10, 98, 208, 0.1);
	 border-radius: 10px;
	margin-bottom: 40px;
	padding-bottom: 50px;
}
.cp_nav h4{
	max-width: 100%;
	line-height: 3em;
	border-radius: 10px 10px 0px 0px;
	background-image: linear-gradient(180.0deg, #4e94ff 0.0, #0667ff 100.0%);
	font-size: 30px;
	font-weight: bold;
	color: white;
}
.cp_nav img{
	margin: 20px 0px;
}
.cp_nav p{
	padding: 0px 40px;
	font-size: 16px;
	font-weight: bold;
}
.cp_nav a{
	display: block;
	width: 140px;
	color: white;
	background-image: linear-gradient(180.0deg, #4e94ff 0.0, #0667ff 100.0%);
	 border-radius: 20px;
	padding: 10px 0px;
	margin-top: 20px;
}
}
@media (max-width:530px){
	.box-about03{
		display: none;
	}
	.cp{
	margin-top: 30px;
}
.cp_nav{
	margin: 0px 1%;
	float: left;
	width: 98%;
	 box-shadow: 0 14px 60px -5px rgba(10, 98, 208, 0.1);
	 border-radius: 10px;
	margin-bottom: 40px;
	padding-bottom: 50px;
}
.cp_nav h4{
	max-width: 100%;
	line-height: 3em;
	border-radius: 10px 10px 0px 0px;
	background-image: linear-gradient(180.0deg, #4e94ff 0.0, #0667ff 100.0%);
	font-size: 30px;
	font-weight: bold;
	color: white;
}
.cp_nav img{
	margin: 20px 0px;
}
.cp_nav p{
	padding: 0px 40px;
	font-size: 16px;
	font-weight: bold;
}
.cp_nav a{
	display: block;
	width: 140px;
	color: white;
	background-image: linear-gradient(180.0deg, #4e94ff 0.0, #0667ff 100.0%);
	 border-radius: 20px;
	padding: 10px 0px;
	margin-top: 20px;
}
}
.yx{}
.yx h2{
	font-size: 40px;
	font-weight: bold;
	color: #0a62d0;
	text-align: left;
	
}
.yx p{
	font-size: 20px;
	font-weight: bold;
	
	color: #fff;
	margin-top: 30px;
	
}
.yx a{
	
	display: block;
	padding: 10px 30px;
	background-color: #0a62d0;
	color: white;
	width: 140px;
	margin-top: 30px;
	
}

/*******************************************关于我们*****************************************/
.csr{
	margin-top: 60px;margin-bottom: 60px;
}
.csr01{
	float: left;
	width:100%;
	

}
.csr01 h4{
	font-size: 22px!important;
	color: #ff6852;
}
.csr01 h2{
	font-size: 26px!important;
	color: #ff6852!important;
}
.csr01 p{
	font-size: 18px!important;
	line-height: 30px!important;
	color: #000!important;
	margin-top: 20px!important;
	text-align: justify!important;
}
.csr02{
	width: 500px;
	float: right;
}
.zb{
	margin-bottom: 60px;
}
.zb .count_item {
  position: relative;
  float: left;
  width: 29.3%;
  padding: 45px 1%;
  margin: 0 1%;
	border-bottom: 2px solid  #ff6852;
}
.jss h2{
	font-size: 36px;
	color: white;
}
.jss p{
	color: white;
	text-align: justify;
	
	line-height: 30px;
	margin-top: 20px;
	font-size: 16px;
}
.zb01{
	float: left;
	width: calc(100% - 530px);
}
.zb01 h4{
	font-size: 22px;color:  #0a62d0;
	margin-top: 30px;
}
.zb01 h2{
	font-size: 26px;color:  #0a62d0;
}
.zb01 p{
	font-size: 17px;
	line-height: 30px;
	margin-top: 30px;
}
.zb02{
	float: right;
	width: 500px;
}
.csr .count_item {
  position: relative;
  float: left;
  width: 23%;
  padding: 45px 1%;
  margin: 0 1%;
background-image: linear-gradient(180.0deg, #4e94ff 0.0, #0667ff 100.0%);
	margin-top: 30px;
	border-radius: 20px;
}
.fl{
	border-bottom: 1px solid #d6d8db;
    line-height: 70px;
	width: 100%;
	margin-bottom: 60px;
	
}
@media (max-width:1000px){
	.csr{
	margin-top: 60px;margin-bottom: 60px;
}
.csr01{
	float: left;
	width:100%;
	

}
.csr01 h4{
	font-size: 22px!important;
	color: #ff6852;
}
.csr01 h2{
	font-size: 26px!important;
	color: #ff6852!important;
}
.csr01 p{
	font-size: 18px!important;
	line-height: 30px!important;
	color: #000!important;
	margin-top: 20px!important;
	text-align: justify!important;
}
.csr02{
	width: 500px;
	float: right;
}
.zb{
	margin-bottom: 60px;
}
.zb .count_item {
  position: relative;
  float: left;
  width: 29.3%;
  padding: 45px 1%;
  margin: 0 1%;
	border-bottom: 2px solid  #ff6852;
}
.jss h2{
	font-size: 36px;
	color: white;
}
.jss p{
	color: white;
	text-align: justify;
	
	line-height: 30px;
	margin-top: 20px;
	font-size: 16px;
}
.zb01{
	float: left;
	width: 98%;
	margin: 0px 1%;
}
.zb01 h4{
	font-size: 22px;color:  #0a62d0;
	margin-top: 30px;text-align: center;
}
.zb01 h2{
	font-size: 26px;color:  #0a62d0;text-align: center;
}
.zb01 p{
	font-size: 17px;
	line-height: 30px;
	margin-top: 30px;
}
.zb02{
	float: right;
	width: 98%;
	margin: 0px 1%;
	margin-top: 30px;
}
	
.csr .count_item {
  position: relative;
  float: left;
  width: 23%;
  padding: 45px 1%;
  margin: 0 1%;
background-image: linear-gradient(180.0deg, #4e94ff 0.0, #0667ff 100.0%);
	margin-top: 30px;
	border-radius: 20px;
}
.fl{
	border-bottom: 1px solid #d6d8db;
    line-height: 70px;
	width: 100%;
	margin-bottom: 60px;
	
}
}
@media (max-width:600px){
		.csr{
	margin-top: 30px;margin-bottom: 30px;
}
.csr01{
	float: left;
	width:100%;
	

}
.csr01 h4{
	font-size: 16px!important;
	color: #ff6852;
}
.csr01 h2{
	font-size: 20px!important;
	color: #ff6852!important;
}
.csr01 p{
	font-size: 16px!important;
	line-height: 24px!important;
	color: #000!important;
	margin-top: 20px!important;
	text-align: justify!important;
}
.csr02{
	width: 500px;
	float: right;
}
.zb{
	margin-bottom: 60px;
}
.zb .count_item {
  position: relative;
  float: left;
  width: 29.3%;
  padding: 45px 1%;
  margin: 0 1%;
	border-bottom: 2px solid  #ff6852;
}
.jss h2{
	font-size: 26px;
	color: white;
}
.jss p{
	color: white;
	text-align: justify;
	
	line-height: 24px;
	margin-top: 20px;
	font-size: 16px;
}
.zb01{
	float: left;
	width: 98%;
	margin: 0px 1%;
}
.zb01 h4{
	font-size: 22px;color:  #0a62d0;
	margin-top: 30px;text-align: center;
}
.zb01 h2{
	font-size: 26px;color:  #0a62d0;text-align: center;
}
.zb01 p{
	font-size: 16px;
	line-height: 24px;
	margin-top: 10px;
}
.zb02{
	float: right;
	width: 98%;
	margin: 0px 1%;
	margin-top: 30px;
}
	
.csr .count_item {
  position: relative;
  float: left;
  width: 48%;
  padding: 45px 1%;
  margin: 0 1%;
background-image: linear-gradient(180.0deg, #4e94ff 0.0, #0667ff 100.0%);
	margin-top: 30px;
	border-radius: 20px;
}
	
	.fl{
	border-bottom: 1px solid #d6d8db;
    line-height: 70px;
	width: 100%;
	margin-bottom: 60px;
		display: none;
	
}
}
.fl a{
	font-size: 16px;
	padding: 0 25px;
	font-weight: bold;
	color: #666;
    line-height: 70px;
display: inline-block;
}
.fl a:hover{color: #ff8400!important;}
.cur{
	padding: 0 25px;
	border-bottom: 4px solid #ff8400;
	color: #ff8400!important;;
    line-height: 70px;
display: inline-block;
}


/*88888888888888888888888888888**手机端导航*******/
.header
{
    z-index: 99;

    width: 100%;
    height: 85px;

    background-color: none;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}
@media (max-width: 991px)
{
    .header
    {
        height: 75px;
		background-color: rgba(0,0,0,1);
		display: block;
		
    }
	.web_head{display: none;}
}
.header .logo
{
    float: left;

    height: 75px;
	overflow: hidden;
    margin-top: 0px;
}
@media (max-width: 991px)
{
    .header .logo
    {
        margin-top: 0px;
	}.banner{margin-top: 75px;}
}
.header .logo img
{
width: 140px;
margin-top: 20px;margin-left: 10px;
    height: auto;
}
.header .search
{
    line-height: 85px;

    float: right;

    padding-left: 40px;

    color: #999;
    border-left: 1px solid #e5e5e5;
}
@media (max-width: 991px)
{
    .header .search
    {
        line-height: 75px;

        position: absolute;
        top: 0;
        right: 60px;

        padding: 0;

        border: none;
    }
    .header .search span
    {
        display: none;
    }
}
.header .search a
{
    display: block;
}
.header .search a::before
{
    font-family: 'iconfont';
    font-size: 18px;

    float: left;

    margin-top: -1px;
    margin-right: 8px;

    content: '\e660';

    color: #c0c0c0;
}
@media (max-width: 991px)
{
    .header .search a::before
    {
        font-size: 20px;

        margin-top: 0;
    }
}
.header .search:hover
{
    color: #c2d96e;
}
.header .search:hover a::before
{
    color: #c2d96e;
}
.header .searchbox
{
    line-height: 48px;

    position: absolute;
    z-index: 99;
    top: 0;
    right: 0;
    left: 0;

    display: none;
    overflow: hidden;

    width: 100%;
    max-width: 1320px;
    height: 85px;
    margin: auto;
    padding: 0 15px;

    vertical-align: middle;

    background: #fff;
}
@media (max-width: 991px)
{
    .header .searchbox
    {
        height: 75px;
    }
}
.header .searchbox input:focus
{
    border-color: #ccc;
    outline: none;
}
.header .searchbox .logo
{
    margin-top: 17px;
}
@media (max-width: 991px)
{
    .header .searchbox .logo
    {
        margin-top: 12px;
    }
}
@media (max-width: 767px)
{
    .header .searchbox .logo
    {
        display: none;
    }
}
.header .searchbox .search-pc
{
    position: relative;

    overflow: hidden;

    height: 85px;
}
@media (max-width: 991px)
{
    .header .searchbox .search-pc
    {
        height: 75px;
    }
}
.header .searchbox .search-pc form
{
    position: relative;

    float: left;

    width: 71%;
    padding-top: 14px;
    padding-left: 10%;
}
@media (max-width: 991px)
{
    .header .searchbox .search-pc form
    {
        padding-top: 9px;
    }
}
@media (max-width: 767px)
{
    .header .searchbox .search-pc form
    {
        width: 90%;
        padding-left: 50px;
    }
}
@media (max-width: 480px)
{
    .header .searchbox .search-pc form
    {
        width: 92%;
    }
}
.header .searchbox .sclose
{
    line-height: 40px;

    position: absolute;
    top: 22px;
    right: 15px;

    float: right;

    width: 40px;
    padding-left: 10px;

    cursor: pointer;
}
@media (max-width: 991px)
{
    .header .searchbox .sclose
    {
        top: 17px;
    }
}
@media (max-width: 480px)
{
    .header .searchbox .sclose
    {
        float: right;
    }
}
.header .searchbox .sclose::after
{
    font-family: 'iconfont';
    font-size: 18px;

    content: '\e697';
}
.header .searchbox .sclose:hover::after
{
    color: #c2d96e;
}
.header .searchbox input
{
    font-size: 15px;

    width: 90%;
    margin: 4px 0 0 0;

    color: #999;
    border: none;
    border-radius: 3px;
    background: none;
}
.header .searchbox ::-webkit-input-placeholder
{
    color: #999;
}
.header .searchbox a.sbtn
{
    position: absolute;
    top: 20px;
    left: 10%;

    display: inline-block;
}
@media (max-width: 767px)
{
    .header .searchbox a.sbtn
    {
        top: 15px;
        left: 15px;
    }
}
.header .searchbox a.sbtn::before
{
    font-family: 'iconfont';
    font-size: 18px;

    margin-top: -2px;
    margin-right: 8px;

    content: '\e660';

    color: #c0c0c0;
}
.header .nav
{
    float: right;

    margin-right: 20px;
}
@media (max-width: 1440px)
{
    .header .nav
    {
        margin-right: 10px;
    }
}
@media (max-width: 991px)
{
    .header .nav
    {
        display: none;
    }
}
.header .nav > .item
{
    font-size: 16px;
    font-weight: normal;
    line-height: 85px;

    float: left;

    margin: 0 2px;
}
@media (max-width: 991px)
{
    .header .nav > .item
    {
        line-height: 70px;
    }
}
.header .nav > .item:hover > a,
.header .nav > .item.active > a
{
    color: #ff8400;;
    background: none;
}
.header .nav > .item > a
{
    position: relative;

    display: block;

    padding: 0 20px;
	color: white;
	font-family: "Microsoft YaHei","微软雅黑","微軟雅黑"!important;
}
@media (max-width: 1199px)
{
    .header .nav > .item > a
    {
        padding: 0 5px;
    }
}
.header .nav .level-2,
.header .nav .level-3
{
    position: absolute;
    z-index: 10;

    display: none;

    background-color: #fff;
}
.header .nav .level-2 a,
.header .nav .level-3 a
{
    display: block;
    overflow: hidden;

    padding: 0 30px;

    white-space: nowrap;
    text-overflow: ellipsis;

    border-bottom: none;
	
}
.header .nav .level-2
{
    line-height: 2.4;

    z-index: 99;
    top: 85px;

    min-width: 430px;
    padding: 0;
    padding: 30px 0;

    background-color: #fff;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, .1);
}
.header .nav .level-2 a
{
    font-family: 'AvenirNextMedium';
	
}
.header .nav .level-2 a::after
{
    font-family: 'iconfont';

    position: absolute;
    top: 1px;
    right: 10px;

    content: '\e605';

    color: #006ae0;
	display: none;
}
.header .nav .level-2 > li
{
    position: relative;
	width: 200px;
	float: left;
	list-style-type: none;
}
.header .nav .level-2 > li img{
	width: 100%;
}
.header .nav .level-2 > li:hover
{
   /* background-color: #006ae0;*/
}
.header .nav .level-2 > li > a:hover
{
    color: #006ae0;
}
.header .nav .level-2 > li:hover > a::after
{
    color: #fff;
}
.header .nav .level-3
{
    line-height: 2.14285714;

    z-index: 99;
    top: 0;
    left: 100%;

    overflow: hidden;

    min-width: 280px;
    padding: 20px 0;

    background-color: rgba(194, 217, 110, .85);
}
.header .nav .level-3 > li:last-child
{
    border: none;
}
.header .nav .level-3 > li a
{
    font-family: 'avenirnext';
    font-size: 14px;

    color: #fff;
}
.header .nav .level-3 > li a::after
{
    display: none;
}
.header .nav .level-3 > li:hover a
{
    text-decoration: underline;
}
.header .navigation
{
    line-height: 48px;

    position: absolute;
    z-index: 99;
    top: 75px;
    left: 0;

    display: none;
    overflow: visible;

    width: 100%;

    border-top: solid 2px #ff8400;
    background-color:rgba(0,0,0,.8);
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .23);
}
.header .navigation .level-1 > li.more::after,
.header .navigation .level-2 > li::before,
.header .navigation .level-2 > li.more::after
{
    position: absolute;
    top: 18px;
    right: 15px;

    width: 12px;
    height: 12px;

    content: '';

    background: url(/public/static/modules/cms/images/menu.png) no-repeat;
    background-size: cover;
}
.header .navigation .level-1
{
    padding: 0;

    color: #fff;
}
.header .navigation .level-1 a
{
    display: block;
    overflow: hidden;

    white-space: nowrap;
    text-decoration: none;
    text-overflow: ellipsis;

    color: inherit;
}
.header .navigation .level-1 li
{
    position: relative;
}
.header .navigation .level-1 > li > a
{
    padding: 0 2em 0 1em;
}
.header .navigation .level-1 > li::after
{
    background-position: -36px 0;
}
.header .navigation .level-1 > li.active::after,
.header .navigation .level-1 > li:hover::after
{
    background-position: -96px 0;
}
.header .navigation .level-1 > li.more::after
{
    background-position: -12px 0;
}
.header .navigation .level-1 > li.more:hover::after
{
    background-position: -72px 0;
}
.header .navigation .level-1 > li.more.active::after
{
    background-position: -84px 0;
}
.header .navigation .level-1 > li.active > a,
.header .navigation .level-1 > li:hover > a
{
    background-color:rgba(100,100,100,.2);
}
.header .navigation .level-2
{
    display: none;

    padding: 0;
}
.header .navigation .level-2 a
{
    padding: 0 2em 0 3em;
}
.header .navigation .level-2 li:last-child
{
    border-bottom: none;
}
.header .navigation .level-2 > li::before
{
    right: auto;
    left: 1.5em;

    background-position: 0 0;
}
.header .navigation .level-2 > li::after
{
    background-position: -48px 0;
}
.header .navigation .level-2 > li.more.active::after
{
    background-position: -84px 0;
}
.header .navigation .level-2 > li.more::after
{
    background-position: -12px 0;
}
.header .navigation .level-3
{
    line-height: 40px;

    display: none;

    padding: 0;
}
.header .navigation .level-3 a
{
    font-size: .8em;

    padding-left: 4em;
}
.header .navigation .level-3 > li::before
{
    right: auto;
    left: 2em;

    background-position: 0 0;
}
.header .navigation .level-3 > li::after
{
    background-position: -48px 0;
}
.header .navigation .level-3 > li.more.active::after
{
    background-position: -84px 0;
}
.header .navigation .level-3 > li.more::after
{
    background-position: -12px 0;
}
.header .toggle
{
    position: absolute;
    top: 17px;
    right: 15px;

    display: none;

    width: 40px;
    height: 40px;

    cursor: pointer;

    border-radius: 50%;
}
@media (max-width: 991px)
{
    .header .toggle
    {
        top: 14px;

        display: block;
    }
}
.header .toggle .icon,
.header .toggle .icon::before,
.header .toggle .icon::after
{
    position: absolute;

    width: 25px;
    height: 2px;

    -webkit-transition-duration: .5s;
            transition-duration: .5s;

    background: #ff8400;;
}
.header .toggle .icon
{
    top: 21.75px;
    left: 9px;
}
.header .toggle .icon::before,
.header .toggle .icon::after
{
    left: 0;

    content: '';

    background: inherit;
}
.header .toggle .icon::before
{
    top: -7px;
}
.header .toggle .icon::after
{
    top: 7px;
}
.header.nav-open .toggle .icon
{
    width: 0;
}
.header.nav-open .toggle .icon::before
{
    -webkit-transform: translateY(7px) rotate(45deg);
        -ms-transform: translateY(7px) rotate(45deg);
            transform: translateY(7px) rotate(45deg);
}
.header.nav-open .toggle .icon::after
{
    -webkit-transform: translateY(-7px) rotate(-45deg);
        -ms-transform: translateY(-7px) rotate(-45deg);
            transform: translateY(-7px) rotate(-45deg);
}
.online
{
    position: fixed;
    z-index: 99;
    right: 15px;

    width: 46px;

    -webkit-transition: all .6s ease;
            transition: all .6s ease;
}
/**********************************独立站*********************************/
.cp_t{
	width: 700px;
	margin: 0px auto;
	margin-top: 60px;margin-bottom: 30px;
}
.cp_t h2{
	font-size: 34px;
	font-weight: bold;
	color:black;
}
.cp_bg{
	background-color: #edf2ff;margin-top: 60px;padding-bottom: 60px;
}
.cp01{
	width: 40%;
	float: left;
}
.cp01 img{
	max-width: 100%;
}
.cp01 img:nth-child(2){
	display: none;
}
.cp02{
	float: right;
	width: 54%;
	margin-top: 120px;
}
.dtbz {
	padding-top: 60px;
}
.dtbz h2{
	font-size: 36px;
	color: black;
	text-align: center;
}
.dtbz p{
	font-size: 16px;
	text-align: center;
	font-weight: bold;
}
.bz{
	width: 31.3%;
	margin: 0px 1%;
	float: left;
		background-image: linear-gradient(180.0deg, #4e94ff 0.0, #0667ff 100.0%);
	margin-top: 30px;
	border-radius: 10px;
	padding: 30px;
	transition: .5s;
}
.bz img{
	width: 120px;
}
.bz:hover{
	background-image: linear-gradient(180.0deg, #f5634a 0.0, #f58a4a 100.0%);
}
.bz h4{
	font-size: 24px;
	color: white;
	margin-top: 30px;
}
.fa{
	margin-top: 60px;
}
.fa h2{
	font-size: 36px;
	color: black;
	text-align: center;
}
.fa p{
	font-size: 16px;
	text-align: center;
	font-weight: bold;
	width: 80%;
}
.fa01{
	float: left;
	width: 31.3%;
	margin: 0px 1%;
	background-image: linear-gradient(180.0deg, #edf7fa 0.0, #f1f6fd 100.0%);
	padding: 20px;
	margin-top: 30px;
	position: relative;
	
}
.fa02{
	width: 60px;
	background-color: #3777fa;
	float: left;
	padding: 1%;
	border-radius: 2px;
	position: absolute;
	top: 26px;
}
.fa02 img{max-width: 100%;
}
.fa03{
	float: right;
	width: calc(100% - 70px);
}
.fa03 h4{
	font-size: 20px;
}
.fa03 p{
	color: black;
}
.yd_bg{
	margin-top: 60px;
	border-bottom-color: #f2f2f2;
	margin-bottom: 60px;
}
.yd h2{
	font-size: 36px;
	color: black;
	text-align: center;
}
.yd_n{
	width: 31.3%;
	margin: 0px 1%;
	float: left;
	margin-top: 30px;
}
.yd_n div h4{
	color: white;
	font-size: 30px;
	padding-top: 15px;
	
}
.yd_n div h2{
	font-size: 22px;
}
.yd_n div:nth-child(1){
	width: 80px;
	height: 80px;
	border-radius: 50px;
	background-color: #3777fa;
	margin: 0px auto;
}
.yd_n div:nth-child(2){
	border-bottom-color: #f8fbfe;
	padding: 60px 30px 30px;;
	box-shadow: 0 14px 60px -5px rgba(10, 98, 208, 0.3);
	border-radius: 10px;
	margin-top: -40px;
	
}
.box-about01 {
	position: relative;
	background:url("/public/static/modules/cms/images/bg02.png")no-repeat center fixed;
}
.tl h2{
	font-size: 36px;
	color: white;
}
.tl a{
	color: white;
	background-image: linear-gradient(180.0deg, #4e94ff 0.0, #0667ff 100.0%);
	font-size: 20px;
	font-weight: bold;
	padding: 10px 30px;
	border-radius: 20px;
	margin-top: 30px;
	display: block;
	width: 400px;
}
@media (max-width: 1000px){
	.cp_t{
	width: 700px;
	margin: 0px auto;
	margin-top: 60px;margin-bottom: 30px;
}
.cp_t h2{
	font-size: 34px;
	font-weight: bold;
	color:black;
}
.cp_bg{
	background-color: #edf2ff;margin-top: 60px;padding-bottom: 60px;
}
.cp01{
	width: 40%;
	float: left;
}
.cp01 img{
	max-width: 100%;
}
.cp01 img:nth-child(2){
	display: none;
}
.cp02{
	float: right;
	width: 54%;
	margin-top: 120px;
}
.dtbz {
	padding-top: 60px;
}
.dtbz h2{
	font-size: 36px;
	color: black;
	text-align: center;
}
.dtbz p{
	font-size: 16px;
	text-align: center;
	font-weight: bold;
}
.bz{
	width: 31.3%;
	margin: 0px 1%;
	float: left;
		background-image: linear-gradient(180.0deg, #4e94ff 0.0, #0667ff 100.0%);
	margin-top: 30px;
	border-radius: 10px;
	padding: 30px;
	transition: .5s;
}
.bz img{
	width: 120px;
}
.bz:hover{
	background-image: linear-gradient(180.0deg, #f5634a 0.0, #f58a4a 100.0%);
}
.bz h4{
	font-size: 24px;
	color: white;
	margin-top: 30px;
}
.fa{
	margin-top: 60px;
}
.fa h2{
	font-size: 36px;
	color: black;
	text-align: center;
}
.fa p{
	font-size: 16px;
	text-align: center;
	font-weight: bold;
	width: 80%;
}
.fa01{
	float: left;
	width: 31.3%;
	margin: 0px 1%;
	background-image: linear-gradient(180.0deg, #edf7fa 0.0, #f1f6fd 100.0%);
	padding: 30px 20px;
	margin-top: 30px;
	position: relative;
	
}
.fa02{
	width: 60px;
	background-color: #3777fa;
	float: none;
	padding: 1%;
	border-radius: 2px;
	position:relative;
	top: 0px;
	left: calc((100% - 60px) / 2);
	padding: 10px;
}
.fa02 img{max-width: 100%;
}
.fa03{
	float: none;
	width:100%;

}
.fa03 h4{
	font-size: 20px;
	text-align: center;
	margin-top: 20px;
}
.fa03 p{
	color: black;
	margin-top: 10px;
}
.yd_bg{
	margin-top: 60px;
	border-bottom-color: #f2f2f2;
	margin-bottom: 60px;
}
.yd h2{
	font-size: 36px;
	color: black;
	text-align: center;
}
.yd_n{
	width: 31.3%;
	margin: 0px 1%;
	float: left;
	margin-top: 30px;
}
.yd_n div h4{
	color: white;
	font-size: 30px;
	padding-top: 15px;
	
}
.yd_n div h2{
	font-size: 22px;
}
.yd_n div:nth-child(1){
	width: 80px;
	height: 80px;
	border-radius: 50px;
	background-color: #3777fa;
	margin: 0px auto;
}
.yd_n div:nth-child(2){
	border-bottom-color: #f8fbfe;
	padding: 60px 30px 30px;;
	box-shadow: 0 14px 60px -5px rgba(10, 98, 208, 0.3);
	border-radius: 10px;
	margin-top: -40px;
	
}
.box-about01 {
	position: relative;
	background:url("/public/static/modules/cms/images/bg02.png")no-repeat center fixed;
}
.tl h2{
	font-size: 36px;
	color: white;
}
.tl a{
	color: white;
	background-image: linear-gradient(180.0deg, #4e94ff 0.0, #0667ff 100.0%);
	font-size: 20px;
	font-weight: bold;
	padding: 10px 30px;
	border-radius: 20px;
	margin-top: 30px;
	display: block;
	width: 400px;
}
}
@media (max-width: 800px){
	.cp_t{
	width: 100%;
	margin: 0px auto;
	margin-top: 60px;margin-bottom: 30px;
}
.cp_t h2{
	font-size: 34px;
	font-weight: bold;
	color:black;
}
.cp_bg{
	background-color: #edf2ff;margin-top: 60px;padding-bottom: 60px;
}
.cp01{
	width: 40%;
	float: left;
}
.cp01 img{
	max-width: 100%;
}
.cp01 img:nth-child(2){
	display: none;
}
.cp02{
	float: right;
	width: 54%;
	margin-top: 60px;
}
.dtbz {
	padding-top: 60px;
}
.dtbz h2{
	font-size: 36px;
	color: black;
	text-align: center;
}
.dtbz p{
	font-size: 16px;
	text-align: center;
	font-weight: bold;
}
.bz{
	width: 31.3%;
	margin: 0px 1%;
	float: left;
		background-image: linear-gradient(180.0deg, #4e94ff 0.0, #0667ff 100.0%);
	margin-top: 30px;
	border-radius: 10px;
	padding: 30px;
	transition: .5s;
}
.bz img{
	width: 120px;
}
.bz:hover{
	background-image: linear-gradient(180.0deg, #f5634a 0.0, #f58a4a 100.0%);
}
.bz h4{
	font-size: 24px;
	color: white;
	margin-top: 30px;
}
.fa{
	margin-top: 60px;
}
.fa h2{
	font-size: 36px;
	color: black;
	text-align: center;
}
.fa p{
	font-size: 16px;
	text-align: center;
	font-weight: bold;
	width: 80%;
}
.fa01{
	float: left;
	width: 31.3%;
	margin: 0px 1%;
	background-image: linear-gradient(180.0deg, #edf7fa 0.0, #f1f6fd 100.0%);
	padding: 30px 20px;
	margin-top: 30px;
	position: relative;
	
}
.fa02{
	width: 60px;
	background-color: #3777fa;
	float: none;
	padding: 1%;
	border-radius: 2px;
	position:relative;
	top: 0px;
	left: calc((100% - 60px) / 2);
	padding: 10px;
}
.fa02 img{max-width: 100%;
}
.fa03{
	float: none;
	width:100%;

}
.fa03 h4{
	font-size: 20px;
	text-align: center;
	margin-top: 20px;
}
.fa03 p{
	color: black;
	margin-top: 10px;
}
.yd_bg{
	margin-top: 60px;
	border-bottom-color: #f2f2f2;
	margin-bottom: 60px;
}
.yd h2{
	font-size: 36px;
	color: black;
	text-align: center;
}
.yd_n{
	width: 31.3%;
	margin: 0px 1%;
	float: left;
	margin-top: 30px;
}
.yd_n div h4{
	color: white;
	font-size: 30px;
	padding-top: 15px;
	
}
.yd_n div h2{
	font-size: 22px;
}
.yd_n div:nth-child(1){
	width: 80px;
	height: 80px;
	border-radius: 50px;
	background-color: #3777fa;
	margin: 0px auto;
}
.yd_n div:nth-child(2){
	border-bottom-color: #f8fbfe;
	padding: 60px 30px 30px;;
	box-shadow: 0 14px 60px -5px rgba(10, 98, 208, 0.3);
	border-radius: 10px;
	margin-top: -40px;
	
}
.box-about01 {
	position: relative;
	background:url("/public/static/modules/cms/images/bg02.png")no-repeat center fixed;
}
.tl h2{
	font-size: 36px;
	color: white;
}
.tl a{
	color: white;
	background-image: linear-gradient(180.0deg, #4e94ff 0.0, #0667ff 100.0%);
	font-size: 20px;
	font-weight: bold;
	padding: 10px 30px;
	border-radius: 20px;
	margin-top: 30px;
	display: block;
	width: 400px;
}
}
@media (max-width: 600px){
	.cp_t{
	width: 100%;
	margin: 0px auto;
	margin-top: 30px;margin-bottom: 30px;
}
.cp_t h2{
	font-size: 26px;
	font-weight: bold;
	color:black;
	padding: 0px 10px;
}
.cp_bg{
	background-color: #edf2ff;margin-top: 60px;padding-bottom: 60px;
}
.cp01{
	width: 100%;
	float: left;
}
.cp01 img{
	max-width: 100%;
}
	.cp01 img:nth-child(1){
		display: none
	}
.cp01 img:nth-child(2){
	display: block;
}
.cp02{
	float: right;
	width: 100%;
	margin-top: 20px;
}
.dtbz {
	padding-top: 30px;
}
.dtbz h2{
	font-size: 26px;
	color: black;
	text-align: center;
}
.dtbz p{
	font-size: 16px;
	text-align: center;
	font-weight: bold;
}
.bz{
	width: 98%;
	margin: 0px 1%;
	float: left;
		background-image: linear-gradient(180.0deg, #4e94ff 0.0, #0667ff 100.0%);
	margin-top: 30px;
	border-radius: 10px;
	padding: 30px;
	transition: .5s;
}
.bz img{
	width: 120px;
}
.bz:hover{
	background-image: linear-gradient(180.0deg, #f5634a 0.0, #f58a4a 100.0%);
}
.bz h4{
	font-size: 24px;
	color: white;
	margin-top: 30px;
}
.fa{
	margin-top: 30px;
}
.fa h2{
	font-size: 26px;
	color: black;
	text-align: center;
}
.fa p{
	font-size: 14px;
	text-align: center;
	font-weight: bold;
	width: 98%;
}
.fa01{
	float: left;
	width: 98%;
	margin: 0px 1%;
	background-image: linear-gradient(180.0deg, #edf7fa 0.0, #f1f6fd 100.0%);
	padding: 30px 20px;
	margin-top: 30px;
	position: relative;
	
}
.fa02{
	width: 60px;
	background-color: #3777fa;
	float: none;
	padding: 1%;
	border-radius: 2px;
	position:relative;
	top: 0px;
	left: calc((100% - 60px) / 2);
	padding: 10px;
}
.fa02 img{max-width: 100%;
}
.fa03{
	float: none;
	width:100%;

}
.fa03 h4{
	font-size: 20px;
	text-align: center;
	margin-top: 20px;
}
.fa03 p{
	color: black;
	margin-top: 10px;text-align: center;
}
.yd_bg{
	margin-top: 30px;
	border-bottom-color: #f2f2f2;
	margin-bottom: 30px;
}
.yd h2{
	font-size: 26px;
	color: black;
	text-align: center;
}
.yd_n{
	width: 98%;
	margin: 0px 1%;
	float: left;
	margin-top: 30px;
}
.yd_n div h4{
	color: white;
	font-size: 30px;
	padding-top: 15px;
	
}
.yd_n div h2{
	font-size: 20px;margin-bottom: 10px;
}
.yd_n div:nth-child(1){
	width: 80px;
	height: 80px;
	border-radius: 50px;
	background-color: #3777fa;
	margin: 0px auto;
}
.yd_n div:nth-child(2){
	border-bottom-color: #f8fbfe;
	padding: 60px 30px 30px;;
	box-shadow: 0 14px 60px -5px rgba(10, 98, 208, 0.3);
	border-radius: 10px;
	margin-top: -40px;
	
}
.box-about01 {
	position: relative;
	background:url("/public/static/modules/cms/images/bg02.png")no-repeat center fixed;
}
.tl h2{
	font-size: 26px;
	color: white;
}
.tl a{
	color: white;
	background-image: linear-gradient(180.0deg, #4e94ff 0.0, #0667ff 100.0%);
	font-size: 16px;
	font-weight: bold;
	padding: 10px 10px;
	border-radius: 20px;
	margin-top: 30px;
	display: block;
	width: auto;
}
}