@charset "UTF-8";
.zoomPad {
  position: relative;
  float: left;
  z-index: 99;
  cursor: crosshair;
}

.zoomPreload {
  -moz-opacity: 0.8;
  opacity: 0.8;
  filter: alpha(opacity=80);
  color: #333;
  font-size: 12px;
  font-family: Tahoma;
  text-decoration: none;
  border: 1px solid #f0f0f0;
  background-color: white;
  padding: 8px;
  text-align: center;
  background-image: url(../images/zoomloader.gif);
  background-repeat: no-repeat;
  background-position: 43px 30px;
  z-index: 110;
  width: 90px;
  height: 43px;
  position: absolute;
  top: 0px;
  left: 0px;
}

.zoomPup {
  overflow: hidden;
  background-color: #FFF;
  -moz-opacity: 0.6;
  opacity: 0.6;
  filter: alpha(opacity=60);
  z-index: 120;
  position: absolute;
  border: 1px solid #CCC;
  z-index: 101;
  cursor: crosshair;
  border-radius: 20px;
}

.zoomOverlay {
  position: absolute;
  left: 0px;
  top: 0px;
  background: #FFF;
  /*opacity:0.5;*/
  z-index: 5000;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 101;
}

.zoomWindow {
  position: absolute;
  left: 110%;
  top: 40px;
  background: #FFF;
  z-index: 6000;
  height: auto;
  z-index: 10000;
  z-index: 110;
  border-radius: 20px;
  overflow: hidden;
}

.zoomWrapper {
  position: relative;
  border: 1px solid #C6C6C6;
  z-index: 110;
}

.zoomWrapperTitle {
  display: block;
  background: #C6C6C6;
  color: #FFF;
  height: 18px;
  line-height: 18px;
  width: 100%;
  overflow: hidden;
  text-align: center;
  font-size: 10px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 120;
  -moz-opacity: 0.6;
  opacity: 0.6;
  filter: alpha(opacity=60);
}

.zoomWrapperImage {
  display: block;
  position: relative;
  overflow: hidden;
  z-index: 110;
}

.zoomWrapperImage img {
  border: 0px;
  display: block;
  position: absolute;
  z-index: 101;
}

.zoomIframe {
  z-index: -1;
  filter: alpha(opacity=0);
  -moz-opacity: 0.8;
  opacity: 0.8;
  position: absolute;
  display: block;
}

#baguetteBox-overlay {
  display: none;
  opacity: 0;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #222;
  background-color: rgba(0, 0, 0, 0.8);
  transition: opacity 0.5s ease;
  z-index: 100000000000000000000000000000000000000;
}

#baguetteBox-overlay.visible {
  opacity: 1;
}

#baguetteBox-overlay .full-image {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
}

#baguetteBox-overlay .full-image figure {
  display: inline;
  margin: 0;
  height: 100%;
}

#baguetteBox-overlay .full-image img {
  display: inline-block;
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

#baguetteBox-overlay .full-image figcaption {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  line-height: 1.8;
  color: #ccc;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.6);
  font-family: Verdana, Geneva, sans-serif;
}

#baguetteBox-overlay .full-image:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}

#baguetteBox-slider {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  white-space: nowrap;
  transition: left 0.4s ease, transform 0.4s ease;
}

#baguetteBox-slider.bounce-from-right {
  animation: bounceFromRight 0.4s ease-out;
}

#baguetteBox-slider.bounce-from-left {
  animation: bounceFromLeft 0.4s ease-out;
}

.baguetteBox-button#next-button, .baguetteBox-button#previous-button {
  top: 50%;
  top: calc(50% - 30px);
  width: 44px;
  height: 60px;
}

.baguetteBox-button {
  position: absolute;
  cursor: pointer;
  outline: 0;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 15%;
  background-color: #323232;
  background-color: rgba(50, 50, 50, 0.5);
  color: #ddd;
  font: 1.6em sans-serif;
  transition: background-color 0.4s ease;
}

.baguetteBox-button:hover {
  background-color: rgba(50, 50, 50, 0.9);
}

.baguetteBox-button#next-button {
  right: 2%;
  display: block !important;
}

.baguetteBox-button#previous-button {
  left: 2%;
  display: block !important;
}

.baguetteBox-button#close-button {
  top: 20px;
  right: 2%;
  right: calc(2% + 6px);
  width: 30px;
  height: 30px;
}

.baguetteBox-button svg {
  position: absolute;
  left: 0;
  top: 0;
}


/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  color: #333;
  font-family: arial, helvetica, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
}

@media screen and (max-device-width: 320px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}
@media screen and (max-device-width: 480px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}
img {
  border: none;
}

ul li {
  list-style-type: none;
}

ul, form, p, a, img, table, tr, td, li, dd, dt, dl, span {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 28px;
}

a {
  text-decoration: none;
  color: #333;
  outline: none;
  transition: 0.3s;
}

h1, h2 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

img {
  max-width: 100%;
  border: 0px solid #ccc;
}

embed, video, iframe {
  max-width: 100%;
}

input[type=submit], textarea[type=submit] {
  cursor: pointer;
}

input[type=checkbox], textarea[type=checkbox] {
  cursor: pointer;
}

input[type=radio], textarea[type=radio] {
  cursor: pointer;
}

input, textarea, select {
  font-family: arial, helvetica, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  border: none;
  outline: none;
  background: none;
}

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

textarea {
  resize: none;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.clear {
  clear: both;
}

.fix {
  *zoom: 1;
}

.fix:after, .fix:before {
  display: block;
  content: "clear";
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}

/* html5 */
article, aside, dialog, footer, header, section, footer, nav, figure, menu {
  display: block;
}

::-webkit-input-placeholder {
  color: #666;
  opacity: 1;
} /* WebKit browsers */
:-o-placeholder {
  color: #666;
  opacity: 1;
} /* Mozilla Firefox 4 to 18 */
::-moz-placeholder {
  color: #666;
  opacity: 1;
} /* Mozilla Firefox 19+ */
:-ms-input-placeholder {
  color: #666;
  opacity: 1;
} /* Internet Explorer 10+ */
::selection {
  color: #fff;
  background: #094d3c;
}

.self-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.self-ellipsis-2 {
  display: -webkit-box !important;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.self-ellipsis-3 {
  display: -webkit-box !important;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.self-ellipsis-4 {
  display: -webkit-box !important;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.self-ellipsis-5 {
  display: -webkit-box !important;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.common-vc {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.common-hc {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.common-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.nlazy {
  min-width: 20%;
}

/**/
.email {
  word-break: break-all;
}

.scale-big img {
  transition: all 350ms;
}

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

.scale-small img {
  transition: all 350ms;
  transform: scale(1.1);
}

.scale-small:hover img {
  transform: scale(1);
}

[class*=-item] .item-pic, [class*=-item] .item-pics {
  position: relative;
  display: block;
  text-align: center;
  overflow: hidden;
}

[class*=-item] .item-pic img, [class*=-item] .item-pics img {
  display: block !important;
  width: 100%;
}

[class*=-item] .item-title {
  overflow: hidden;
  color: #333;
}

[class*=-item] .item-title a {
  display: block;
  color: #333;
}

[class*=-item] .item-title a:hover {
  color: #094d3c !important;
}

[class*=-item] .item-subt {
  overflow: hidden;
  color: #333;
}

[class*=-item] .item-subt a {
  display: block;
  color: #333;
}

[class*=-item] .item-subt a:hover {
  color: #094d3c !important;
}

[class*=-item] .item-desc {
  overflow: hidden;
  color: #666;
}

[class*=-item] .item-desc a {
  display: block;
  color: #666;
}

[class*=-item] .item-desc a:hover {
  color: #094d3c !important;
}

.wp {
  width: 1400px;
  margin: auto;
}

@media screen and (max-width: 1419px) {
  .wp {
    width: 1200px;
  }
}
@media screen and (max-width: 1219px) {
  .wp {
    width: 960px;
  }
}
@media screen and (max-width: 991px) {
  .wp {
    width: 720px;
  }
}
@media screen and (max-width: 767px) {
  .wp {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.wp1 {
  width: 1200px;
  margin: auto;
}

@media screen and (max-width: 1219px) {
  .wp1 {
    width: 960px;
  }
}
@media screen and (max-width: 991px) {
  .wp1 {
    width: 720px;
  }
}
@media screen and (max-width: 767px) {
  .wp1 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.no_margin {
  margin-left: auto !important;
}

.no_marginr {
  margin-right: auto !important;
}

.no_marginl {
  margin-left: auto !important;
}

.at-resp-share-element .at4-share-count-container {
  text-decoration: none;
  float: right;
  padding-right: 15px;
  line-height: 25px !important;
}

.at-resp-share-element .at-icon {
  width: 24px !important;
  height: 24px !important;
}

.at-style-responsive .at-share-btn {
  padding: 0 !important;
  border-radius: 2px !important;
}

.at-resp-share-element .at-share-btn .at-icon-wrapper {
  width: 24px !important;
  height: 24px !important;
}

.at-resp-share-element .at-share-btn {
  margin-bottom: 0 !important;
  margin-right: 3px !important;
}

.at-resp-share-element .at-icon {
  width: 24px !important;
  height: 24px !important;
}

.at-style-responsive .at-share-btn {
  padding: 0 !important;
  border-radius: 2px !important;
}

.at-resp-share-element .at-share-btn .at-icon-wrapper {
  width: 24px !important;
  height: 24px !important;
}

.at-resp-share-element .at-share-btn {
  margin-bottom: 0 !important;
  margin-right: 3px !important;
}

.item-table {
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%;
}

.item-cell {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

/* .an-btn1 start */
.an-btn1 {
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: background 0.4s linear, color 0.3s linear;
}

.an-btn1:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 50%;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  z-index: -1;
  content: "";
  background: #094d3c;
  transition: all 0.4s linear 0s;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.an-btn1 .iconfont {
  transition: all 0.5s;
}

.an-btn1:hover {
  border-color: #094d3c !important;
  background-color: #094d3c \9 ;
  color: #fff !important;
}

.an-btn1:hover .iconfont {
  color: #fff !important;
}

.an-btn1:hover:before {
  height: 600%;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/* .an-btn1 end */
/* .an-btn1_1 start */
.an-btn1_1 {
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: background 0.4s linear, color 0.3s linear;
}

.an-btn1_1:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 50%;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  z-index: -1;
  content: "";
  background: #000;
  transition: all 0.4s linear 0s;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.an-btn1_1 .iconfont {
  transition: all 0.5s;
}

.an-btn1_1:hover {
  border-color: #000 !important;
  background-color: #000 \9 ;
  color: #fff !important;
}

.an-btn1_1:hover .iconfont {
  color: #fff !important;
}

.an-btn1_1:hover:before {
  height: 600%;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/* .an-btn1_1 end */
/* .an-btn2 start */
.an-btn2 {
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: background 0.4s linear, color 0.3s linear;
}

.an-btn2:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 50%;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  z-index: -1;
  content: "";
  background: #fff;
  transition: all 0.4s linear 0s;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.an-btn2 .iconfont {
  transition: all 0.5s;
}

.an-btn2:hover {
  border-color: #094d3c !important;
  background-color: #fff \9 ;
  color: #094d3c !important;
}

.an-btn2:hover .iconfont {
  color: #094d3c !important;
}

.an-btn2:hover:before {
  height: 600%;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/* .an-btn2 end */
/* .an-btn2_1 start */
.an-btn2_1 {
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: background 0.4s linear, color 0.3s linear;
}

.an-btn2_1:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 50%;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  z-index: -1;
  content: "";
  background: #fff;
  transition: all 0.4s linear 0s;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.an-btn2_1 .iconfont {
  transition: all 0.5s;
}

.an-btn2_1:hover {
  border-color: #094d3c !important;
  background-color: #fff \9 ;
  color: #094d3c !important;
}

.an-btn2_1:hover .iconfont {
  color: #094d3c !important;
}

.an-btn2_1:hover:before {
  height: 600%;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/* .an-btn2_1 end */
@media screen and (min-width: 992px) {
  .an-bd1 .item-backdrop {
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0;
    right: 0;
    transition: all 900ms ease;
    transition: transform 0.4s ease;
    transform: scale(0, 1);
    transform-origin: right center;
  }
  .an-bd1 .item-backdrop:before {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0.5;
    filter: alpha(opacity=50);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    background-color: #000;
  }
}
@media screen and (min-width: 992px) {
  .an-bd1:hover .item-backdrop {
    transform: scale(1, 1);
    transform-origin: left center;
  }
}
/*-------------table start-------------------------------------------------------------------*/
.table table {
  width: 100%;
  border-collapse: collapse;
}

@media screen and (max-width: 991px) {
  .table {
    width: 100%;
    overflow: scroll;
  }
  .table div {
    width: 900px;
    max-width: 900px;
  }
}
/*-------------table end---------------------------------------------------------------------*/
/*-------------page-start--------------------------------------------------------------------*/
.page {
  text-align: center;
  overflow: hidden;
  font-size: 0;
  letter-spacing: 0;
}

.page a {
  display: inline-block;
  vertical-align: top;
  border: solid 1px #a7a7a7;
  background-color: transparent;
  color: #666;
  min-width: 36px;
  padding: 0 2px;
  height: 30px;
  line-height: 28px;
  margin: 0 4px 10px;
  font-size: 14px;
  font-size: 1.4rem;
}

.page a.prev {
  padding: 0 15px;
}

.page a.prev:hover {
  border-color: #fff;
  background-color: #fff;
  color: #666;
  border: solid 1px #a7a7a7;
}

.page .big {
  padding: 0 15px;
}

.page a.next {
  min-width: 61px;
}

.page a.next:hover {
  border-color: #094d3c;
  background-color: #094d3c;
  color: #fff;
}

.page a:hover, .page a.page-active {
  border-color: #094d3c;
  background-color: #094d3c;
  color: #fff;
}

@media only screen and (max-width: 1219px) {
  .page a {
    min-width: 28px;
    height: 28px;
    line-height: 26px;
    margin: 0 3px 10px !important;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .page a.prev, .page a.next {
    min-width: auto;
    padding: 0 10px;
  }
}
.page .add-form {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  padding-right: 22px;
  background: url(../images/af-bg.png) no-repeat right center;
}

.page .add-form .add-btn {
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  line-height: 28px;
  padding: 0 18px;
  border: solid 1px #094d3c;
  background-color: #094d3c;
  color: #fff;
  cursor: pointer;
  transition: all 0.35s;
}

.page .add-form .add-btn:hover {
  background-color: #fff;
  color: #094d3c;
}

@media only screen and (max-width: 1219px) {
  .page .add-form .add-btn {
    padding: 0 10px;
    line-height: 26px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
/*-------------page-end--------------------------------------------------------------------*/
/*-------------contact start---------------------------------------------------------------*/
.contact-pc {
  position: fixed;
  z-index: 999;
  right: 0;
  width: 50px;
}

.contact-pc li {
  position: relative;
  width: 100%;
  height: 50px;
  margin-bottom: 3px;
  border-radius: 50%;
  background-color: #919699;
  transition: all 0.35s;
}

.contact-pc li:hover {
  background-color: #094d3c;
}

.contact-pc li:hover .iconfont {
  color: #fff !important;
}

.contact-pc li a {
  display: block;
  height: 100%;
  width: 100%;
  text-align: center;
  line-height: 48px;
  cursor: pointer;
}

.contact-pc li img {
  vertical-align: middle;
}

.contact-pc li .iconfont {
  color: #fff;
  font-size: 24px;
  font-size: 2.4rem;
  transition: all 0.35s;
}

.contact-pc li .ewm {
  position: absolute;
  top: 0;
  left: 125px;
  max-width: 120px;
  width: 120px;
  height: 120px;
}

.contact-pc li.ewm-box:hover .ewm {
  left: -125px;
}

.contact-pc .backup {
  margin-top: 10px;
  background-color: #333;
}

.contact-pc .backup .iconfont {
  font-size: 22px;
  font-size: 2.2rem;
}

.contact-phone {
  position: fixed;
  bottom: 0;
  height: 40px;
  left: 0;
  right: 0;
  display: none;
  z-index: 999;
}

.contact-phone li {
  width: 20%;
  height: 100%;
  float: left;
  position: relative;
  background: #919699;
}

.contact-phone li:hover {
  background-color: #094d3c;
}

.contact-phone li:hover .iconfont {
  color: #fff !important;
}

.contact-phone li a {
  display: block;
  height: 100%;
  width: 100%;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
}

.contact-phone li img {
  vertical-align: middle;
}

.contact-phone li .iconfont {
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
}

.contact-phone li .ewm {
  position: absolute;
  bottom: 40px;
  right: 50%;
  margin-right: -50px;
  display: none;
  max-width: 100px;
  width: 100px;
  height: 100px;
}

.contact-phone .backup {
  background-color: #333;
}

.contact-phone .backup .iconfont {
  font-size: 22px;
  font-size: 2.2rem;
}

@media only screen and (max-width: 767px) {
  .contact-pc {
    display: none;
  }
  .contact-phone {
    display: block;
  }
  body {
    padding-bottom: 40px;
  }
}
/*-------------contact end-----------------------------------------------------------------*/
/*-------------pro-share start-------------------------------------------------------------*/
.pro-share {
  font-size: 0;
  letter-spacing: 0;
}

.pro-share .share-title {
  margin-right: 10px;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  line-height: 24px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #666;
}

@media only screen and (max-width: 1219px) {
  .pro-share .share-title {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .pro-share .share-title {
    font-size: 12px;
    font-size: 1.2rem;
    margin-right: 5px;
  }
}
.pro-share .share-pic {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: top;
  height: 24px;
}

.pro-share .share-pic img {
  max-height: 100%;
}

/*-------------pro-share end---------------------------------------------------------------*/
/*-------------m-oths----------------------------------------------------------------------*/
.m-oths {
  border-top: solid 1px rgba(0, 0, 0, 0.1);
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  padding: 45px 0 52px;
}

@media screen and (max-width: 1419px) {
  .m-oths {
    padding: 30px 0;
  }
}
@media screen and (max-width: 1219px) {
  .m-oths {
    padding: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .m-oths {
    padding: 15px 0;
  }
}
.m-oths .oths-item {
  position: relative;
  padding-left: 58px;
  padding-top: 8px;
  min-height: 38px;
}

@media screen and (max-width: 1419px) {
  .m-oths .oths-item {
    padding-left: 50px;
  }
}
@media screen and (max-width: 1219px) {
  .m-oths .oths-item {
    padding-left: 45px;
    min-height: 34px;
    padding-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .m-oths .oths-item {
    padding-left: 33px;
    min-height: 26px;
    padding-top: 3px;
  }
}
.m-oths .oths-item-1 {
  margin-bottom: 13px;
}

@media screen and (max-width: 1219px) {
  .m-oths .oths-item-1 {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .m-oths .oths-item-1 {
    margin-bottom: 5px;
  }
}
.m-oths .item-icon {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 38px;
  height: 38px;
  line-height: 38px;
  font-size: 17px;
  font-size: 1.7rem;
  background-color: #e5e5e5;
  border-radius: 10px;
  color: #666;
}

@media screen and (max-width: 1219px) {
  .m-oths .item-icon {
    width: 34px;
    height: 34px;
    line-height: 32px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .m-oths .item-icon {
    border-radius: 5px;
    width: 26px;
    height: 26px;
    line-height: 24px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.m-oths .item-a {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
}

.m-oths .item-a, .m-oths .item-a * {
  color: #333;
}

.m-oths .item-a a:hover {
  color: #094d3c;
}

@media screen and (max-width: 1219px) {
  .m-oths .item-a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .m-oths .item-a {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}
.m-oths .none, .m-oths .none *, .m-oths .none a:hover {
  color: #999;
}

.m-oths .none a {
  cursor: pointer;
}

/*-------------bread start-----------------------------------------------------------------*/
.bread2 {
  background-position: center;
  background-size: cover;
  height: 668px;
  padding: 153px 0 30px;
}

@media screen and (max-width: 1419px) {
  .bread2 {
    height: 600px;
  }
}
@media screen and (max-width: 1219px) {
  .bread2 {
    height: 500px;
  }
}
@media screen and (max-width: 991px) {
  .bread2 {
    padding: 30px 0;
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .bread2 {
    height: auto;
  }
}
.bread2 .item-title {
  text-align: center;
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  text-transform: uppercase;
  font-size: 46px;
  font-size: 4.6rem;
  line-height: 1.2;
}

.bread2 .item-title, .bread2 .item-title a {
  color: #fff;
}

.bread2 .item-title a:hover, .bread2 .item-title .bread-active {
  color: #094d3c;
}

@media screen and (max-width: 1419px) {
  .bread2 .item-title {
    font-size: 40px;
    font-size: 4rem;
  }
}
@media screen and (max-width: 1219px) {
  .bread2 .item-title {
    font-size: 34px;
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 991px) {
  .bread2 .item-title {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .bread2 .item-title {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 640px) {
  .bread2 .item-title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.bread2 .item-subt {
  margin-top: 11px;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  text-transform: capitalize;
}

.bread2 .item-subt, .bread2 .item-subt a {
  color: #fff;
}

.bread2 .item-subt a:hover, .bread2 .item-subt .bread-active {
  color: #094d3c;
}

@media screen and (max-width: 1219px) {
  .bread2 .item-subt {
    font-size: 14px;
    font-size: 1.4rem;
    margin-top: 5px;
  }
}
@media screen and (max-width: 991px) {
  .bread2 .item-subt {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .bread2 .item-subt {
    font-size: 12px;
    font-size: 1.2rem;
    margin-top: 0;
  }
}
.bread {
  background-position: center;
  background-size: cover;
  height: 522px;
  padding: 153px 0 30px;
}

@media screen and (max-width: 1419px) {
  .bread {
    height: 500px;
  }
}
@media screen and (max-width: 1219px) {
  .bread {
    height: 400px;
  }
}
@media screen and (max-width: 991px) {
  .bread {
    padding: 30px 0;
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .bread {
    height: auto;
  }
}
.bread .item-title {
  text-align: center;
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  text-transform: uppercase;
  font-size: 46px;
  font-size: 4.6rem;
  line-height: 1.2;
}

.bread .item-title, .bread .item-title a {
  color: #fff;
}

.bread .item-title a:hover, .bread .item-title .bread-active {
  color: #094d3c;
}

@media screen and (max-width: 1419px) {
  .bread .item-title {
    font-size: 40px;
    font-size: 4rem;
  }
}
@media screen and (max-width: 1219px) {
  .bread .item-title {
    font-size: 34px;
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 991px) {
  .bread .item-title {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .bread .item-title {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 640px) {
  .bread .item-title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.bread1 {
  margin-top: 21px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  text-transform: capitalize;
}

.bread1, .bread1 a {
  color: #999;
}

.bread1 a:hover, .bread1 .bread-active {
  color: #094d3c;
}

@media screen and (max-width: 1219px) {
  .bread1 {
    font-size: 14px;
    font-size: 1.4rem;
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .bread1 {
    font-size: 12px;
    font-size: 1.2rem;
    margin-top: 10px;
  }
}
/*-------------bread end-------------------------------------------------------------------*/
.search-box ::-webkit-input-placeholder {
  color: #666;
  opacity: 1;
} /* WebKit browsers */
.search-box :-o-placeholder {
  color: #666;
  opacity: 1;
} /* Mozilla Firefox 4 to 18 */
.search-box ::-moz-placeholder {
  color: #666;
  opacity: 1;
} /* Mozilla Firefox 19+ */
.search-box :-ms-input-placeholder {
  color: #666;
  opacity: 1;
} /* Internet Explorer 10+ */
.search {
  position: relative;
  margin-top: 40px;
  margin-left: 22px;
}

@media screen and (max-width: 1619px) {
  .search {
    margin-top: 38px;
  }
}
@media screen and (max-width: 1419px) {
  .search {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1219px) {
  .search {
    margin-top: 29px;
    margin-left: 15px;
  }
}
@media screen and (max-width: 991px) {
  .search {
    display: none;
  }
}
.search .search-icon {
  cursor: pointer;
  display: block;
}

.search .search-icon .iconfont {
  display: block;
  color: #fff;
  line-height: 22px;
  font-size: 17px;
  font-size: 1.7rem;
}

@media screen and (max-width: 1219px) {
  .search .search-icon .iconfont {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.search .search-box {
  display: none;
  overflow: hidden;
  position: absolute;
  top: 38px;
  right: 0;
  z-index: 999;
  width: 260px;
  height: 50px;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.22);
  padding: 10px 10px;
  cursor: pointer;
}

.search .search-box .iconfont {
  border-radius: 5px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #fff;
  background-color: #094d3c;
  position: absolute;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  right: 10px;
  top: 50%;
  margin-top: -15px;
  z-index: -1;
}

.search .search-box .item-input {
  position: absolute;
  height: 30px;
  line-height: 30px;
  top: 50%;
  margin-top: -15px;
  width: 100%;
  left: 0;
  padding: 0 45px 0 10px;
}

.search .search-box .item-submit {
  position: absolute;
  width: 35px;
  height: 100%;
  top: 0px;
  right: 0px;
  cursor: pointer;
  z-index: 1;
}

/*-------------header start----------------------------------------------------------------*/
.fixed.header {
  position: fixed;
  top: 0;
  background-color: #094d3c;
}

@media screen and (max-width: 991px) {
  .fixed.header {
    position: relative;
  }
}
.header {
  position: fixed;
  top: 19px;
  left: 0;
  z-index: 999;
  width: 100%;
  transition: all 0.35s;
}

.header.index-header {
  top: 40px;
}

@media screen and (max-width: 1419px) {
  .header.index-header {
    top: 30px;
  }
}
@media screen and (max-width: 991px) {
  .header {
    top: 0;
    position: relative;
    background-color: #094d3c;
  }
  .header.index-header {
    top: 0;
  }
}
.header > .wp {
  background-color: #094d3c;
  width: 1600px;
  border-radius: 50px;
  padding: 0 40px 0 0;
}

@media screen and (max-width: 1619px) {
  .header > .wp {
    width: 1400px;
  }
}
@media screen and (max-width: 1419px) {
  .header > .wp {
    width: 1200px;
  }
}
@media screen and (max-width: 1219px) {
  .header > .wp {
    width: 960px;
    padding: 0 25px 0 0;
    border-radius: 40px;
  }
}
@media screen and (max-width: 991px) {
  .header > .wp {
    border-radius: 0;
    width: 720px;
    padding: 10px 0;
  }
}
@media screen and (max-width: 767px) {
  .header > .wp {
    width: 100%;
    padding: 10px 15px;
  }
}
.header .logo {
  float: left;
  display: block;
  width: 265px;
  height: 100px;
  margin-top: 0;
  margin-right: 123px;
  background: #fff;
  border-radius: 50px;
  padding: 11px 31px;
}

.header .logo img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 1619px) {
  .header .logo {
    margin-right: 50px;
  }
}
@media screen and (max-width: 1419px) {
  .header .logo {
    margin-right: 30px;
  }
}
@media screen and (max-width: 1219px) {
  .header .logo {
    margin-right: 20px;
    width: 200px;
    height: 80px;
    padding: 14px 20px;
    border-radius: 40px;
  }
}
@media screen and (max-width: 991px) {
  .header .logo {
    margin-top: 0;
    margin-right: 0;
    width: 150px;
    height: auto;
    padding: 10px 20px;
    border-radius: 28px;
  }
}
@media screen and (max-width: 767px) {
  .header .logo {
    width: 120px;
    padding: 6px 15px 8px;
  }
}
.header .lang-box {
  float: right;
  position: relative;
  margin-top: 37px;
  margin-left: 135px;
}

@media screen and (max-width: 1619px) {
  .header .lang-box {
    margin-left: 50px;
  }
}
@media screen and (max-width: 1419px) {
  .header .lang-box {
    margin-left: 30px;
  }
}
@media screen and (max-width: 1219px) {
  .header .lang-box {
    margin-left: 20px;
    margin-top: 28px;
  }
}
@media screen and (max-width: 991px) {
  .header .lang-box {
    position: absolute;
    margin-left: 0;
    margin-top: 0;
    right: 40px;
    top: 10px;
  }
}
.header .lang-box .item-title {
  color: #fff;
  cursor: pointer;
  font-size: 0;
  letter-spacing: 0;
  line-height: 24px;
}

.header .lang-box .item-title > * {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  font-size: 1.6rem;
}

.header .lang-box .item-title .iconfont {
  font-size: 10px;
  font-size: 1rem;
  margin-left: 5px;
}

.header .lang-box .item-title img {
  width: 21px;
  margin-right: 10px;
}

@media screen and (max-width: 1219px) {
  .header .lang-box .item-title > * {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .header .lang-box .item-title img {
    margin-right: 5px;
  }
}
@media screen and (max-width: 767px) {
  .header .lang-box .item-title > * {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .header .lang-box .item-title img {
    margin-right: 5px;
    width: 16px;
  }
}
.header .lang-box .box-list {
  position: absolute;
  top: 100%;
  padding: 9px 5px;
  background-color: #f5f5f5;
  z-index: 999;
  width: 100px;
  right: -5px;
  display: none;
}

.header .lang-box .box-list a {
  display: block;
  color: #333;
  line-height: 30px;
  font-size: 14px;
  font-size: 1.4rem;
}

.header .lang-box .box-list a img {
  vertical-align: middle;
  width: 21px;
}

.header .lang-box .box-list a:hover {
  color: #094d3c;
}

@media screen and (max-width: 767px) {
  .header .lang-box .box-list a {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
  .header .lang-box .box-list a img {
    width: 15px;
  }
}
.header .navlist {
  padding-top: 36px;
  font-size: 0;
  letter-spacing: 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 1219px) {
  .header .navlist {
    padding-top: 28px;
  }
}
@media screen and (max-width: 991px) {
  .header .navlist {
    display: none;
  }
}
.header .navlist > li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 30px;
}

@media screen and (max-width: 1219px) {
  .header .navlist > li {
    padding-bottom: 18px;
  }
}
.header .navlist > li > a {
  display: block;
  text-align: center;
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 20px;
  font-size: 2rem;
  line-height: 24px;
  padding-bottom: 10px;
  color: #fff;
  position: relative;
}

.header .navlist > li > a:before {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  bottom: 0;
  transition: all 0.35s;
}

@media screen and (max-width: 1419px) {
  .header .navlist > li > a {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1219px) {
  .header .navlist > li > a {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.header .navlist > li.nav-active > a:before, .header .navlist > li:hover > a:before {
  width: 53px;
}

.header .navlist li:hover .yiji {
  transform: translateY(0px);
  visibility: visible;
  opacity: 1;
}

.header .yiji {
  z-index: 99;
  position: absolute;
  top: 100%;
  width: 230px;
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(30px);
  transform-origin: top;
  transition: all 400ms ease;
  background-color: #fff;
  border-bottom: solid 5px #094d3c;
  border-radius: 10px;
  margin-top: 5px;
  padding: 21px 0 14px;
}

@media screen and (max-width: 1419px) {
  .header .yiji {
    padding: 14px 0 10px;
    margin-top: 2px;
  }
}
@media screen and (max-width: 1219px) {
  .header .yiji {
    width: 200px;
    padding: 10px 0 6px;
  }
}
.header .yiji li {
  position: relative;
  text-align: left;
}

.header .yiji li > a {
  display: block;
  line-height: 24px;
  padding: 8px 26px;
  font-size: 18px;
  font-size: 1.8rem;
  color: #666;
}

.header .yiji li:hover > a {
  color: #094d3c;
}

.header .yiji li:hover .erji {
  transform: translateY(0px);
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 1419px) {
  .header .yiji li > a {
    padding: 6px 20px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1219px) {
  .header .yiji li > a {
    padding: 5px 15px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 20px;
  }
}
@media screen and (max-width: 991px) {
  .header .yiji {
    display: none;
  }
}
.header .erji li:hover .sanji, .header .sanji li:hover .siji {
  transform: translateY(0px);
  visibility: visible;
  opacity: 1;
}

.header .erji, .header .sanji {
  position: absolute;
  left: 100%;
  top: 0;
  width: 230px;
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(30px);
  transform-origin: top;
  transition: all 400ms ease;
  background-color: #fff;
  border-bottom: solid 5px #094d3c;
  border-radius: 10px;
  padding: 21px 0 14px;
  margin-left: 1px;
  padding: 21px 0 14px;
}

@media screen and (max-width: 1419px) {
  .header .erji, .header .sanji {
    padding: 14px 0 10px;
  }
}
@media screen and (max-width: 1219px) {
  .header .erji, .header .sanji {
    width: 200px;
    padding: 10px 0 6px;
  }
}
/*-------------header end------------------------------------------------------------------*/
/*-------------footer start----------------------------------------------------------------*/
.footer {
  position: relative;
  z-index: 2;
  background-color: #111;
}

.footer, .footer * {
  color: #fff;
}

.footer a:hover {
  color: #094d3c;
}

.footer .f-top {
  font-size: 0;
  letter-spacing: 0;
  padding: 97px 3.2291666667% 69px;
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.footer .f-top .footer-title {
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 29px;
}

.footer .f-top .footer-title, .footer .f-top .footer-title a {
  color: #fff;
}

.footer .f-top .footer-title a:hover {
  color: #094d3c;
}

@media screen and (max-width: 1419px) {
  .footer .f-top .footer-title {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1219px) {
  .footer .f-top .footer-title {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}
.footer .f-top .flist {
  padding-right: 20px;
}

.footer .f-top .flist .box-list {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 36px;
}

.footer .f-top .flist .box-list, .footer .f-top .flist .box-list * {
  color: #e1e1e1;
  line-height: 35px;
}

.footer .f-top .flist .box-list a:hover {
  color: #094d3c;
}

@media screen and (max-width: 1619px) {
  .footer .f-top .flist .box-list {
    line-height: 30px;
  }
  .footer .f-top .flist .box-list li {
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 1419px) {
  .footer .f-top .flist .box-list {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .footer .f-top .flist .box-list {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}
.footer .f-top .flist1 {
  width: 14.305%;
}

.footer .f-top .flist2 {
  width: 18.5924276169%;
}

.footer .f-top .flist3 {
  width: 14.4766146993%;
}

.footer .f-top .flist4 {
  width: 11.027%;
}

.footer .f-top .flist5 {
  width: 14.5233853007%;
}

.footer .f-top .flist6 {
  width: 37.376%;
  padding-right: 60px;
}

@media screen and (max-width: 1619px) {
  .footer .f-top .flist6 {
    padding-right: 20px;
  }
}
.footer .f-top .flist7 {
  width: 16.699%;
  padding-right: 0 !important;
}

.footer .f-top .flist8 {
  width: 342px;
  max-width: 100%;
  margin-top: 30px;
  font-size: 0;
  letter-spacing: 0;
  /*position: absolute;*/
  /*bottom: 41px;*/
  /*right: 40.5729166667%;*/
}

@media screen and (max-width: 1419px) {
  .footer .f-top .flist8 {
    /*bottom: 30px;*/
    /*right: 38.0208333333%;*/
  }
}
@media screen and (max-width: 1219px) {
  .footer .f-top .flist8 {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    text-align: center;
    max-width: 342px;
    /*margin: 0 auto;*/
  }
}
.footer .f-top .flist8 .list-item {
  display: inline-block;
  vertical-align: top;
  width: 26.9005847953%;
  margin-left: 9.649122807%;
}

.footer .f-top .flist8 .list-item:first-child {
  margin-left: 0;
}

.footer .f-top .flist8 .item-title {
  color: #e1e1e1;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.2;
  margin-top: 12px;
}

@media screen and (max-width: 1419px) {
  .footer .f-top .flist8 .item-title {
    font-size: 14px;
    font-size: 1.4rem;
    margin-top: 8px;
  }
}
@media screen and (max-width: 767px) {
  .footer .f-top .flist8 .item-title {
    font-size: 12px;
    font-size: 1.2rem;
    margin-top: 5px;
  }
}
@media screen and (max-width: 1419px) {
  .footer .f-top {
    padding: 70px 2.6041666667% 90px;
  }
}
@media screen and (max-width: 1219px) {
  .footer .f-top {
    padding: 50px 30px;
  }
  .footer .f-top .flist {
    width: 33.33% !important;
    margin-bottom: 30px;
  }
  .footer .f-top .flist6, .footer .f-top .flist7 {
    width: 37.5% !important;
  }
}
@media screen and (max-width: 767px) {
  .footer .f-top {
    padding: 30px 15px;
  }
}
@media screen and (max-width: 640px) {
  .footer .f-top .flist1, .footer .f-top .flist2, .footer .f-top .flist3 {
    width: 33.333% !important;
  }
  .footer .f-top .flist4, .footer .f-top .flist5, .footer .f-top .flist6, .footer .f-top .flist7 {
    width: 50% !important;
  }
  .footer .f-top .flist3, .footer .f-top .flist5, .footer .f-top .flist7 {
    padding-right: 0;
  }
  .footer .f-top .flist {
    width: 50% !important;
  }
}
@media screen and (max-width: 480px) {
  .footer .f-top .flist {
    width: 100% !important;
    padding-right: 15px;
    margin-bottom: 20px;
  }
  .footer .f-top .flist5, .footer .f-top .flist6, .footer .f-top .flist7 {
    width: 100% !important;
    padding-right: 0;
  }
  .footer .f-top .flist2, .footer .f-top .flist4 {
    padding-right: 0;
  }
}
.footer .f-follow {
  float: right;
  font-size: 0;
  letter-spacing: 0;
  margin-left: 30px;
}

.footer .f-follow > a {
  display: inline-block;
  vertical-align: top;
  width: 44px;
  height: 44px;
  line-height: 42px;
  border-radius: 50%;
  border: solid 1px #8c8989;
  color: #8c8989;
  font-size: 18px;
  font-size: 1.8rem;
  margin-right: 15px;
  margin-bottom: 5px;
  text-align: center;
  transition: all 0.5s;
}

.footer .f-follow > a:last-child {
  margin-right: 0;
}

.footer .f-follow > a:hover {
  transform: rotate(360deg);
  color: #094d3c;
  border-color: #094d3c;
}

@media screen and (max-width: 1419px) {
  .footer .f-follow > a {
    margin-right: 10px;
  }
}
@media screen and (max-width: 1219px) {
  .footer .f-follow > a {
    width: 36px;
    height: 36px;
    line-height: 34px;
    margin-right: 10px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 991px) {
  .footer .f-follow {
    float: none;
    margin: 0 auto;
    text-align: center;
  }
  .footer .f-follow > a {
    width: 30px;
    height: 30px;
    line-height: 28px;
    margin-right: 10px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 640px) {
  .footer .f-follow > a {
    margin-right: 5px;
  }
}
@media screen and (min-width: 1620px) {
  .footer .wp {
    width: 1600px;
  }
}
.footer .f-bot {
  border-top: solid 1px rgba(255, 255, 255, 0.1);
  padding-top: 34px;
  padding-bottom: 15px;
}

@media screen and (max-width: 1219px) {
  .footer .f-bot {
    padding-top: 30px;
  }
}
@media screen and (max-width: 991px) {
  .footer .f-bot {
    padding-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer .f-bot {
    padding-top: 15px;
  }
}
.footer .f-bot .item-body {
  overflow: hidden;
  padding-top: 7px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
}

.footer .f-bot .item-body, .footer .f-bot .item-body * {
  color: rgba(255, 255, 255, 0.6);
}

.footer .f-bot .item-body a:hover {
  color: #094d3c;
}

@media screen and (max-width: 1219px) {
  .footer .f-bot .item-body {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .footer .f-bot .item-body {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}
.footer .f-bot .copyright {
  margin-bottom: 33px;
}

@media screen and (max-width: 1419px) {
  .footer .f-bot .copyright {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1219px) {
  .footer .f-bot .copyright {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .footer .f-bot .copyright {
    margin-bottom: 5px;
  }
}
.footer .f-bot .links a {
  display: inline-block;
  margin-right: 30px;
}

/*-------------footer end------------------------------------------------------------------*/
/*-------------index start-----------------------------------------------------------------*/
.index-banner {
  background: url(../images/banner-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 257px 0 54px;
}

@media screen and (max-width: 1219px) {
  .index-banner {
    padding: 200px 0 80px;
  }
}
@media screen and (max-width: 991px) {
  .index-banner {
    padding: 80px 0 80px;
  }
}
@media screen and (max-width: 767px) {
  .index-banner {
    padding: 50px 0;
  }
}
.index-banner .left-item {
  float: left;
  margin-left: 8.3333333333%;
  width: 41.6666666667%;
  font-size: 0;
  letter-spacing: 0;
}

@media screen and (max-width: 1219px) {
  .index-banner .left-item {
    margin-left: 5.2083333333%;
    width: 44.7916666667%;
  }
}
@media screen and (max-width: 480px) {
  .index-banner .left-item {
    margin-left: 15px;
    width: 44.7916666667%;
  }
}
.index-banner .left-item .item-subt {
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.index-banner .left-item .item-subt, .index-banner .left-item .item-subt a {
  color: #fff;
  line-height: 32px;
}

.index-banner .left-item .item-subt a:hover {
  color: #ff5500 !important;
}

@media screen and (max-width: 1419px) {
  .index-banner .left-item .item-subt {
    font-size: 24px;
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1219px) {
  .index-banner .left-item .item-subt {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 991px) {
  .index-banner .left-item .item-subt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .index-banner .left-item .item-subt {
    font-size: 12px;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
}
.index-banner .left-item .item-title {
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 56px;
  font-size: 5.6rem;
  line-height: 82px;
  height: 246px;
  margin-bottom: 76px;
}

.index-banner .left-item .item-title a {
  line-height: 82px;
}

.index-banner .left-item .item-title, .index-banner .left-item .item-title a {
  color: #fff;
}

.index-banner .left-item .item-title a:hover {
  color: #ff5500 !important;
}

@media screen and (max-width: 1519px) {
  .index-banner .left-item .item-title {
    font-size: 50px;
    font-size: 5rem;
    line-height: 66px;
    height: 198px;
  }
}
@media screen and (max-width: 1419px) {
  .index-banner .left-item .item-title {
    font-size: 40px;
    font-size: 4rem;
    line-height: 56px;
    height: 168px;
  }
}
@media screen and (max-width: 1219px) {
  .index-banner .left-item .item-title {
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 44px;
    height: 132px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 991px) {
  .index-banner .left-item .item-title {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 30px;
    height: 90px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .index-banner .left-item .item-title {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 26px;
    height: 78px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 640px) {
  .index-banner .left-item .item-title {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 24px;
    height: 72px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .index-banner .left-item .item-title {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 20px;
    height: 60px;
    margin-bottom: 20px;
  }
}
.index-banner .left-item .item-btn {
  display: inline-block;
  min-width: 172px;
  line-height: 48px;
  line-height: 48px;
  padding-left: 18px;
  background: url(../images/btn.png) no-repeat center;
  background-size: 100% 100%;
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 1219px) {
  .index-banner .left-item .item-btn {
    font-size: 14px;
    font-size: 1.4rem;
    min-width: 160px;
    line-height: 42px;
    line-height: 42px;
  }
}
@media screen and (max-width: 767px) {
  .index-banner .left-item .item-btn {
    font-size: 12px;
    font-size: 1.2rem;
    min-width: 130px;
    line-height: 32px;
    line-height: 32px;
    padding-left: 14px;
  }
}
@media screen and (max-width: 480px) {
  .index-banner .left-item .item-btn {
    background-color: #ff5500;
    border-radius: 5px;
    background-image: none;
    height: 26px;
    line-height: 24px;
    min-width: auto;
    padding: 0 10px;
  }
}
.bannerpro-owl {
  float: right;
  width: 46.4583333333%;
  margin-right: 1.1979166667%;
  margin-top: 55px;
}

@media screen and (max-width: 1219px) {
  .bannerpro-owl {
    margin-top: 30px;
  }
}
@media screen and (max-width: 991px) {
  .bannerpro-owl {
    margin-top: 0;
  }
}
.bannerpro-owl .owl-theme .owl-controls .owl-pagination {
  margin-top: 80px;
  text-align: right;
  margin-right: 15.3587443946%;
}

@media screen and (max-width: 1419px) {
  .bannerpro-owl .owl-theme .owl-controls .owl-pagination {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1219px) {
  .bannerpro-owl .owl-theme .owl-controls .owl-pagination {
    margin-top: 50px;
  }
}
@media screen and (max-width: 991px) {
  .bannerpro-owl .owl-theme .owl-controls .owl-pagination {
    margin-top: 40px;
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .bannerpro-owl .owl-theme .owl-controls .owl-pagination {
    margin-top: 15px;
  }
}
.bannerpro-owl .owl-theme .owl-controls .owl-page {
  width: 50px;
  height: 4px;
  background-color: #fff;
  border-radius: 0;
  margin: 0 3px;
}

@media screen and (max-width: 1219px) {
  .bannerpro-owl .owl-theme .owl-controls .owl-page {
    width: 40px;
  }
}
@media screen and (max-width: 991px) {
  .bannerpro-owl .owl-theme .owl-controls .owl-page {
    width: 30px;
  }
}
@media screen and (max-width: 767px) {
  .bannerpro-owl .owl-theme .owl-controls .owl-page {
    width: 20px;
  }
}
@media screen and (max-width: 480px) {
  .bannerpro-owl .owl-theme .owl-controls .owl-page {
    width: 10px;
    height: 3px;
    margin: 0 2px;
  }
}
.bannerpro-owl .owl-theme .owl-controls .owl-page.active,
.bannerpro-owl .owl-theme .owl-controls.clickable .owl-page:hover {
  width: 50px;
  background-color: #ff5500;
}

@media screen and (max-width: 1219px) {
  .bannerpro-owl .owl-theme .owl-controls .owl-page.active,
  .bannerpro-owl .owl-theme .owl-controls.clickable .owl-page:hover {
    width: 40px;
  }
}
@media screen and (max-width: 991px) {
  .bannerpro-owl .owl-theme .owl-controls .owl-page.active,
  .bannerpro-owl .owl-theme .owl-controls.clickable .owl-page:hover {
    width: 30px;
  }
}
@media screen and (max-width: 767px) {
  .bannerpro-owl .owl-theme .owl-controls .owl-page.active,
  .bannerpro-owl .owl-theme .owl-controls.clickable .owl-page:hover {
    width: 20px;
  }
}
@media screen and (max-width: 480px) {
  .bannerpro-owl .owl-theme .owl-controls .owl-page.active,
  .bannerpro-owl .owl-theme .owl-controls.clickable .owl-page:hover {
    width: 10px;
  }
}
.bannerpro-owl .list-item {
  margin: 0 5.1569506726%;
}

@media screen and (max-width: 480px) {
  .bannerpro-owl .item-pic {
    max-width: 140px;
    margin: 0 auto;
  }
}
.index-item {
  text-align: center;
  margin-bottom: 36px;
}

@media screen and (max-width: 1219px) {
  .index-item {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .index-item {
    margin-bottom: 20px;
  }
}
.index-item .item-title {
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 46px;
  font-size: 4.6rem;
  letter-spacing: 1.6px;
  line-height: 1.2;
}

.index-item .item-title a {
  display: inline-block;
}

@media screen and (max-width: 1419px) {
  .index-item .item-title {
    font-size: 40px;
    font-size: 4rem;
  }
}
@media screen and (max-width: 1219px) {
  .index-item .item-title {
    font-size: 34px;
    font-size: 3.4rem;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 991px) {
  .index-item .item-title {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .index-item .item-title {
    font-size: 22px;
    font-size: 2.2rem;
    letter-spacing: 0.5px;
  }
}
.index-item .item-desc {
  margin-top: 13px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
}

.index-item .item-desc a {
  display: inline-block;
}

@media screen and (max-width: 1219px) {
  .index-item .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .index-item .item-desc {
    margin-top: 10px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.page-btn {
  text-align: center;
  display: inline-block;
  line-height: 48px;
  min-width: 129px;
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  margin-left: 15px;
  margin-right: 15px;
  position: relative;
  transition: none;
}

.page-btn:before, .page-btn:after {
  position: absolute;
  content: "";
  width: 15px;
  top: 0;
  bottom: 0;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
}

.page-btn:before {
  right: 100%;
}

.page-btn:after {
  left: 100%;
}

@media screen and (max-width: 1219px) {
  .page-btn {
    min-width: 120px;
    line-height: 42px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 991px) {
  .page-btn {
    min-width: 110px;
    line-height: 36px;
  }
}
@media screen and (max-width: 767px) {
  .page-btn {
    min-width: 90px;
    line-height: 30px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.page-btn1 {
  background-color: #094d3c;
}

.page-btn1:before {
  background-image: url(../images/btn1.png);
}

.page-btn1:after {
  background-image: url(../images/btn2.png);
}

.page-btn1:hover {
  background-color: #ff5500;
}

.page-btn1:hover:before {
  background-image: url(../images/btn1_1.png);
}

.page-btn1:hover:after {
  background-image: url(../images/btn2_1.png);
}

.page-btn2 {
  background-color: #ff5500;
}

.page-btn2:before {
  background-image: url(../images/btn1_1.png);
}

.page-btn2:after {
  background-image: url(../images/btn2_1.png);
}

.page-btn2:hover {
  background-color: #094d3c;
}

.page-btn2:hover:before {
  background-image: url(../images/btn1.png);
}

.page-btn2:hover:after {
  background-image: url(../images/btn2.png);
}

/* index-about start */
.index-about {
  background-color: #f0f0f0;
  padding: 88px 0 50px;
}

@media screen and (max-width: 1219px) {
  .index-about {
    padding: 70px 0 50px;
  }
}
@media screen and (max-width: 991px) {
  .index-about {
    padding: 50px 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .index-about {
    padding: 30px 0 10px;
  }
}
.index-about .box-item {
  margin-bottom: 44px;
}

@media screen and (max-width: 767px) {
  .index-about .box-item {
    margin-bottom: 30px;
  }
}
.index-about .box-item .item-pic {
  float: left;
  width: 49.0714285714%;
  margin-right: 3.5714285714%;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .index-about .box-item .item-pic {
    border-radius: 15px;
  }
}
@media screen and (max-width: 767px) {
  .index-about .box-item .item-pic {
    border-radius: 10px;
    margin-right: 2.1428571429%;
  }
}
@media screen and (max-width: 400px) {
  .index-about .box-item .item-pic {
    float: none;
    width: 100%;
    margin: 0 auto 20px;
  }
}
.index-about .box-item .item-body {
  font-size: 0;
  padding-top: 69px;
}

@media screen and (max-width: 1419px) {
  .index-about .box-item .item-body {
    padding-top: 50px;
  }
}
@media screen and (max-width: 1219px) {
  .index-about .box-item .item-body {
    padding-top: 20px;
  }
}
@media screen and (max-width: 991px) {
  .index-about .box-item .item-body {
    padding-top: 0;
  }
}
.index-about .box-item .item-title {
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom: 28px;
}

@media screen and (max-width: 1419px) {
  .index-about .box-item .item-title {
    margin-bottom: 20px;
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1219px) {
  .index-about .box-item .item-title {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 991px) {
  .index-about .box-item .item-title {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .index-about .box-item .item-title {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 640px) {
  .index-about .box-item .item-title {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.index-about .box-item .item-desc {
  overflow: visible;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
  margin-bottom: 51px;
}

@media screen and (max-width: 1419px) {
  .index-about .box-item .item-desc {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1219px) {
  .index-about .box-item .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  .index-about .box-item .item-desc {
    line-height: 22px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .index-about .box-item .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }
}
.index-about .num-list {
  font-size: 0;
  letter-spacing: 0;
}

.index-about .num-list .list-item {
  display: inline-block;
  vertical-align: top;
  width: 20.4285714286%;
  margin-left: 6.0952378571%;
  margin-bottom: 20px;
}

.index-about .num-list .list-item:first-child {
  margin-left: 0;
}

@media screen and (max-width: 1419px) {
  .index-about .num-list .list-item {
    width: 22.75%;
    margin-left: 3%;
  }
}
@media screen and (max-width: 1219px) {
  .index-about .num-list .list-item {
    width: 23%;
    margin-left: 2%;
  }
}
@media screen and (max-width: 640px) {
  .index-about .num-list .list-item {
    width: 49%;
    margin-left: 2%;
  }
  .index-about .num-list .list-item:nth-child(odd) {
    margin-left: 0;
  }
}
.index-about .num-list .item-title {
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1;
  position: relative;
  padding-bottom: 23px;
  margin-bottom: 25px;
  /* @media screen and (max-width:480px) {
  	@include font-size(14);
  } */
}

@media screen and (max-width: 1419px) {
  .index-about .num-list .item-title {
    font-size: 28px;
    font-size: 2.8rem;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1219px) {
  .index-about .num-list .item-title {
    font-size: 26px;
    font-size: 2.6rem;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 991px) {
  .index-about .num-list .item-title {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .index-about .num-list .item-title {
    font-size: 18px;
    font-size: 1.8rem;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 640px) {
  .index-about .num-list .item-title {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.index-about .num-list .item-title strong {
  font-size: 60px;
  font-size: 6rem;
  font-weight: normal;
    line-height: 50px;
  /* @media screen and (max-width:480px) {
  	@include font-size(20);
  } */
}

@media screen and (max-width: 1419px) {
  .index-about .num-list .item-title strong {
    font-size: 52px;
    font-size: 5.2rem;
  }
}
@media screen and (max-width: 1219px) {
  .index-about .num-list .item-title strong {
    font-size: 44px;
    font-size: 4.4rem;
  }
}
@media screen and (max-width: 991px) {
  .index-about .num-list .item-title strong {
    font-size: 36px;
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .index-about .num-list .item-title strong {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 640px) {
  .index-about .num-list .item-title strong {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.index-about .num-list .item-title:after {
  position: absolute;
  content: "";
  height: 2px;
  bottom: 0;
  left: 0;
  width: 21.3286713287%;
  background-color: #000;
}

.index-about .num-list .item-title:before {
  position: absolute;
  content: "";
  height: 2px;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #e5e5e5;
}

.index-about .num-list .item-desc {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
}

@media screen and (max-width: 1219px) {
  .index-about .num-list .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) {
  .index-about .num-list .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
/* index-about end */
/* index-products start */
.index-products {
  background: url(../images/bg2.jpg) no-repeat left center;
  background-size: cover;
  padding: 86px 0 123px;
}

@media screen and (max-width: 1419px) {
  .index-products {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 1219px) {
  .index-products {
    padding: 70px 0;
  }
}
@media screen and (max-width: 991px) {
  .index-products {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .index-products {
    padding: 30px 0;
  }
}
@media screen and (min-width: 1420px) {
  .index-products .index-item {
    margin-bottom: 55px;
  }
}
.index-products.page-products {
  background: transparent;
  padding: 68px 0 88px;
}

@media screen and (max-width: 1219px) {
  .index-products.page-products {
    padding: 70px 0;
  }
}
@media screen and (max-width: 991px) {
  .index-products.page-products {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .index-products.page-products {
    padding: 30px 0;
  }
}
.index-products.page-products .page-title {
  margin-bottom: 71px;
}

@media screen and (max-width: 1419px) {
  .index-products.page-products .page-title {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1219px) {
  .index-products.page-products .page-title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .index-products.page-products .page-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .index-products.page-products .page-title {
    margin-bottom: 20px;
  }
}
.case1_wrap + .index-products {
  padding: 0 0 147px;
  margin-top: -43px;
}

@media screen and (max-width: 1419px) {
  .case1_wrap + .index-products {
    padding-bottom: 90px;
    margin-top: 0;
  }
}
@media screen and (max-width: 1219px) {
  .case1_wrap + .index-products {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 991px) {
  .case1_wrap + .index-products {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .case1_wrap + .index-products {
    padding-bottom: 30px;
  }
}
.case1_wrap + .index-products .page-title {
  margin-bottom: 55px;
}

@media screen and (max-width: 1419px) {
  .case1_wrap + .index-products .page-title {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1219px) {
  .case1_wrap + .index-products .page-title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .case1_wrap + .index-products .page-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .case1_wrap + .index-products .page-title {
    margin-bottom: 20px;
  }
}
.cate-owl {
  overflow: hidden;
}

.cate-owl .owl-carousel {
  width: 108.6428571429%;
  margin-left: -4.3214285714%;
}

@media screen and (max-width: 1419px) {
  .cate-owl .owl-carousel {
    width: 104%;
    margin-left: -2%;
  }
}
@media screen and (max-width: 1219px) {
  .cate-owl .owl-carousel {
    width: 102%;
    margin-left: -1%;
  }
}
.cate-owl .owl-wrapper {
  display: flex !important;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
}

.cate-owl .owl-item {
  flex: 0 0 auto;
}

.cate-owl .list-item {
  height: 100%;
  margin: 0 11.932938856%;
  background-color: #f6f6f6;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s;
}

@media screen and (max-width: 1419px) {
  .cate-owl .list-item {
    margin: 0 5.7692318787%;
  }
}
@media screen and (max-width: 1219px) {
  .cate-owl .list-item {
    margin: 0 2.9411764706%;
  }
}
@media screen and (max-width: 991px) {
  .cate-owl .list-item {
    border-radius: 15px;
  }
}
@media screen and (max-width: 767px) {
  .cate-owl .list-item {
    border-radius: 10px;
  }
}
.cate-owl .list-item:hover {
  background-color: #094d3c;
}

.cate-owl .list-item:hover .item-icon .icon1 {
  opacity: 0;
  visibility: hidden;
}

.cate-owl .list-item:hover .item-icon .icon2 {
  opacity: 1;
  visibility: visible;
}

.cate-owl .list-item:hover .item-title, .cate-owl .list-item:hover .item-title a {
  color: #fff !important;
}

.cate-owl .item-body {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  padding: 22px 16px 25px;
}

@media screen and (max-width: 1219px) {
  .cate-owl .item-body {
    padding: 20px 15px;
  }
}
@media screen and (max-width: 991px) {
  .cate-owl .item-body {
    padding: 15px 10px;
  }
}
@media screen and (max-width: 767px) {
  .cate-owl .item-body {
    padding: 10px 5px;
  }
}
.cate-owl .item-icon {
  flex: 0 0 auto;
  width: 50px;
  margin-right: 13px;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 1219px) {
  .cate-owl .item-icon {
    margin-right: 10px;
    width: 44px;
  }
}
@media screen and (max-width: 991px) {
  .cate-owl .item-icon {
    width: 38px;
    margin-right: 5px;
  }
}
@media screen and (max-width: 767px) {
  .cate-owl .item-icon {
    width: 32px;
  }
}
@media screen and (max-width: 480px) {
  .cate-owl .item-icon {
    width: 25px;
    margin-right: 2px;
  }
}
.cate-owl .item-icon img {
  display: block;
  width: 100%;
}

.cate-owl .item-icon .icon1 {
  opacity: 1;
  visibility: visible;
}

.cate-owl .item-icon .icon2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.cate-owl .item-title {
  flex: 1 1 auto;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 26px;
  max-height: 52px;
}

@media screen and (max-width: 1219px) {
  .cate-owl .item-title {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 24px;
    max-height: 48px;
  }
}
@media screen and (max-width: 991px) {
  .cate-owl .item-title {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 20px;
    max-height: 40px;
  }
}
@media screen and (max-width: 480px) {
  .cate-owl .item-title {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 16px;
    max-height: 32px;
  }
}
/* index-products end */
/* index-ad start */
.index-ad {
  background-color: #f6f8f9;
  padding: 71px 0 60px;
}

@media screen and (max-width: 1219px) {
  .index-ad {
    padding-top: 70px;
  }
}
@media screen and (max-width: 991px) {
  .index-ad {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .index-ad {
    padding: 30px 0;
  }
}
.ad-owl {
  overflow: hidden;
}

.ad-owl .owl-wrapper {
  display: flex !important;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
}

.ad-owl .owl-carousel {
  width: 101.1428571429%;
  margin-left: -0.5714285714%;
}

@media screen and (max-width: 1219px) {
  .ad-owl .owl-carousel {
    width: 102%;
    margin-left: -1%;
  }
}
@media screen and (max-width: 400px) {
  .ad-owl .owl-carousel {
    width: 100%;
    margin-left: 0;
  }
}
.ad-owl .owl-item {
  margin-top: 35px;
}

@media screen and (max-width: 1419px) {
  .ad-owl .owl-item {
    margin-top: 32px;
  }
}
@media screen and (max-width: 1219px) {
  .ad-owl .owl-item {
    margin-top: 29px;
  }
}
@media screen and (max-width: 991px) {
  .ad-owl .owl-item {
    margin-top: 26px;
  }
}
@media screen and (max-width: 767px) {
  .ad-owl .owl-item {
    margin-top: 23px;
  }
}
.ad-owl .list-item {
  height: 100%;
  margin: 0 2.2598870056%;
  position: relative;
  transition: all 0.35s;
  border-radius: 20px;
  border: solid 1px #094d3c;
  text-align: center;
  padding: 0 15px 11px;
}

.ad-owl .list-item:hover {
  background-color: #094d3c;
}

.ad-owl .list-item:hover .item-title, .ad-owl .list-item:hover .item-title a, .ad-owl .list-item:hover .item-desc, .ad-owl .list-item:hover .item-desc a {
  color: #fff !important;
}

@media screen and (max-width: 1219px) {
  .ad-owl .list-item {
    margin: 0 2.9411764706%;
    padding: 0 10px 11px;
  }
}
@media screen and (max-width: 991px) {
  .ad-owl .list-item {
    border-radius: 15px;
  }
}
@media screen and (max-width: 767px) {
  .ad-owl .list-item {
    border-radius: 10px;
  }
}
@media screen and (max-width: 640px) {
  .ad-owl .list-item {
    margin: 0 1.9607843137%;
  }
}
@media screen and (max-width: 400px) {
  .ad-owl .list-item {
    margin: 0;
  }
}
.ad-owl .item-pic {
  width: 70px;
  border-radius: 10px;
  margin: -35px auto 22px;
}

@media screen and (max-width: 1419px) {
  .ad-owl .item-pic {
    width: 64px;
    margin-top: -32px;
  }
}
@media screen and (max-width: 1219px) {
  .ad-owl .item-pic {
    width: 58px;
    margin-top: -29px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 991px) {
  .ad-owl .item-pic {
    width: 52px;
    margin-top: -26px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .ad-owl .item-pic {
    width: 46px;
    margin-top: -23px;
  }
}
.ad-owl .item-title {
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 30px;
  margin-bottom: 10px;
}

@media screen and (max-width: 1219px) {
  .ad-owl .item-title {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 26px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 991px) {
  .ad-owl .item-title {
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .ad-owl .item-title {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 20px;
  }
}
.ad-owl .item-desc {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
}

@media screen and (max-width: 1419px) {
  .ad-owl .item-desc {
    line-height: 26px;
  }
}
@media screen and (max-width: 1219px) {
  .ad-owl .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
  }
}
@media screen and (max-width: 991px) {
  .ad-owl .item-desc {
    line-height: 22px;
  }
}
@media screen and (max-width: 767px) {
  .ad-owl .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}
.ad-owl .owl-buttons {
  display: none !important;
}

.ad-owl .owl-btns {
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
  width: 100%;
  margin-top: 40px;
}

@media screen and (max-width: 1219px) {
  .ad-owl .owl-btns {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .ad-owl .owl-btns {
    margin-top: 20px;
  }
}
.ad-owl .owl-btns .owl-btn {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 10px;
  font-size: 23px;
  font-size: 2.3rem;
  color: #666;
  background-color: #e5e5e5;
  transition: all 0.35s;
}

.ad-owl .owl-btns .owl-btn:hover {
  background-color: #094d3c;
  color: #fff;
}

@media screen and (max-width: 1419px) {
  .ad-owl .owl-btns .owl-btn {
    width: 44px;
    height: 44px;
    line-height: 44px;
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 1219px) {
  .ad-owl .owl-btns .owl-btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 991px) {
  .ad-owl .owl-btns .owl-btn {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .ad-owl .owl-btns .owl-btn {
    border-radius: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .ad-owl .owl-btns .owl-btn {
    width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.ad-owl .owl-btns .item-prev {
  margin-right: 20px;
}

@media screen and (max-width: 1219px) {
  .ad-owl .owl-btns .item-prev {
    margin-right: 15px;
  }
}
@media screen and (max-width: 991px) {
  .ad-owl .owl-btns .item-prev {
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .ad-owl .owl-btns .item-prev {
    margin-right: 5px;
  }
}
/* index-ad end */
/* index-solution start */
.index-solution {
  background: url(../images/bg3.jpg) no-repeat center;
  background-size: cover;
  padding: 54px 0 81px;
}

@media screen and (max-width: 1219px) {
  .index-solution {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 991px) {
  .index-solution {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .index-solution {
    padding: 30px 0;
  }
}
.index-solution .index-item {
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .index-solution .index-item {
    margin-bottom: 10px;
  }
}
.index-solution .box-list {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .index-solution .box-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
  }
}
.index-solution .box-list .list-item {
  border-bottom: solid 1px rgba(181, 181, 181, 0.5);
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 42px 0 25px;
}

@media screen and (max-width: 1219px) {
  .index-solution .box-list .list-item {
    padding: 30px 0 25px;
  }
}
@media screen and (max-width: 991px) {
  .index-solution .box-list .list-item {
    display: block;
    flex-wrap: wrap;
    width: 49%;
    flex-basis: 49%;
    position: relative;
    padding: 25px 0;
  }
}
@media screen and (max-width: 767px) {
  .index-solution .box-list .list-item {
    padding: 20px 0;
  }
}
@media screen and (max-width: 400px) {
  .index-solution .box-list .list-item {
    width: 100%;
    flex-basis: 100%;
  }
}
.index-solution .box-list .list-item:hover {
  border-bottom-color: #fff;
}

.index-solution .box-list .list-item:hover .item-title, .index-solution .box-list .list-item:hover .item-title a, .index-solution .box-list .list-item:hover .item-desc, .index-solution .box-list .list-item:hover .item-desc a {
  color: #ff5500 !important;
}

.index-solution .box-list .list-item:hover .item-title .iconfont {
  visibility: visible;
  opacity: 1;
}

.index-solution .box-list .list-item:hover .item-pics {
  transform: translateY(0px);
  visibility: visible;
  opacity: 1;
}

.index-solution .box-list .item-pic {
  flex: 0 0 auto;
  width: 44px;
  flex-basis: 44px;
  margin-top: 1px;
  margin-right: 47px;
}

@media screen and (max-width: 1419px) {
  .index-solution .box-list .item-pic {
    margin-right: 30px;
  }
}
@media screen and (max-width: 1219px) {
  .index-solution .box-list .item-pic {
    margin-right: 20px;
    width: 40px;
    flex-basis: 40px;
  }
}
@media screen and (max-width: 991px) {
  .index-solution .box-list .item-pic {
    width: 34px;
    flex-basis: 34px;
    position: absolute;
    top: 25px;
    left: 0;
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .index-solution .box-list .item-pic {
    width: 26px;
    flex-basis: 26px;
  }
}
.index-solution .box-list .item-title {
  flex: 0 0 auto;
  width: 35.7142857143%;
  flex-basis: 35.7142857143%;
  margin-right: 23px;
  margin-top: 7px;
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 28px;
}

.index-solution .box-list .item-title a {
  display: inline-block;
}

.index-solution .box-list .item-title .iconfont {
  font-size: 23px;
  font-size: 2.3rem;
  margin-left: 9px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.35s;
}

@media screen and (max-width: 1419px) {
  .index-solution .box-list .item-title {
    font-size: 20px;
    font-size: 2rem;
    line-height: 26px;
  }
  .index-solution .box-list .item-title .iconfont {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 1219px) {
  .index-solution .box-list .item-title {
    margin-right: 20px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 24px;
  }
  .index-solution .box-list .item-title .iconfont {
    font-size: 18px;
    font-size: 1.8rem;
    margin-left: 5px;
  }
}
@media screen and (max-width: 991px) {
  .index-solution .box-list .item-title {
    flex: 1 1 auto;
    width: 100%;
    margin-right: 0;
    padding-left: 40px;
  }
  .index-solution .box-list .item-title .iconfont {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .index-solution .box-list .item-title {
    padding-left: 32px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 20px;
  }
  .index-solution .box-list .item-title .iconfont {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.index-solution .box-list .item-body {
  flex: 1 1 auto;
  padding-right: 140px;
  position: relative;
}

@media screen and (max-width: 1419px) {
  .index-solution .box-list .item-body {
    padding-right: 80px;
  }
}
@media screen and (max-width: 991px) {
  .index-solution .box-list .item-body {
    padding-right: 0;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .index-solution .box-list .item-body {
    margin-top: 5px;
  }
}
.index-solution .box-list .item-pics {
  width: 182px;
  border-radius: 50%;
  border: solid 4px #fff;
  position: absolute;
  z-index: 5;
  left: 6px;
  top: 100%;
  margin-top: 5px;
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(30px);
  transform-origin: top;
  transition: all 400ms ease;
}

@media screen and (max-width: 1219px) {
  .index-solution .box-list .item-pics {
    width: 170px;
  }
}
@media screen and (max-width: 991px) {
  .index-solution .box-list .item-pics {
    transform: translateY(0px);
    visibility: visible;
    opacity: 1;
    position: relative;
    left: 0;
    top: 0;
    width: 140px;
  }
}
@media screen and (max-width: 767px) {
  .index-solution .box-list .item-pics {
    width: 120px;
    border-width: 3px;
  }
}
.index-solution .box-list .item-desc {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
}

@media screen and (max-width: 1419px) {
  .index-solution .box-list .item-desc {
    line-height: 26px;
  }
}
@media screen and (max-width: 1219px) {
  .index-solution .box-list .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .index-solution .box-list .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}
.index-solution .box-list .item-btn {
  position: absolute;
  right: 0;
  top: -12px;
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 10px;
  font-size: 23px;
  font-size: 2.3rem;
  color: #fff;
  background-color: #094d3c;
  transition: all 0.35s;
}

.index-solution .box-list .item-btn:before {
  display: block;
  transform: rotate(-15deg);
}

.index-solution .box-list .item-btn:hover {
  background-color: #ff5500;
  color: #fff;
}

@media screen and (max-width: 1419px) {
  .index-solution .box-list .item-btn {
    top: 0;
    width: 44px;
    height: 44px;
    line-height: 44px;
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 1219px) {
  .index-solution .box-list .item-btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 991px) {
  .index-solution .box-list .item-btn {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    font-size: 1.6rem;
    position: relative;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .index-solution .box-list .item-btn {
    border-radius: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .index-solution .box-list .item-btn {
    width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
/* index-solution end */
/* index-touch start */
.index-touch {
  background: url(../images/bg1.jpg) no-repeat center;
  background-attachment: fixed;
  position: relative;
  padding: 69px 0 66px;
}

@media screen and (max-width: 991px) {
  .index-touch {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .index-touch {
    padding: 30px 0;
  }
}
.index-touch:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../images/bg1.jpg) no-repeat center;
  background-size: cover;
  z-index: -1;
}

.index-touch .item-title {
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 48px;
  font-size: 4.8rem;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}

.index-touch .item-title a {
  display: inline-block;
  color: #fff;
}

.index-touch .item-title a:hover {
  color: #ff5500;
}

@media screen and (max-width: 1419px) {
  .index-touch .item-title {
    font-size: 42px;
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 1219px) {
  .index-touch .item-title {
    font-size: 36px;
    font-size: 3.6rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 991px) {
  .index-touch .item-title {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .index-touch .item-title {
    font-size: 24px;
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
}
.index-touch .item-desc {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 40px;
}

.index-touch .item-desc a {
  display: inline-block;
  color: #fff;
}

.index-touch .item-desc a:hover {
  color: #ff5500;
}

@media screen and (max-width: 1419px) {
  .index-touch .item-desc {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 1219px) {
  .index-touch .item-desc {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  .index-touch .item-desc {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .index-touch .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}
.index-touch .page-btn:hover {
  background-color: #fff;
  color: #ff5500;
}

.index-touch .page-btn:hover:before {
  background-image: url(../images/btn3.png);
}

.index-touch .page-btn:hover:after {
  background-image: url(../images/btn3_1.png);
}

/* index-touch end */
/* index-case start */
.index-case {
  background-color: #f3f5f7;
  padding: 82px 0 102px;
}

@media screen and (max-width: 1419px) {
  .index-case {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 1219px) {
  .index-case {
    padding: 70px 0;
  }
}
@media screen and (max-width: 991px) {
  .index-case {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .index-case {
    padding: 30px 0;
  }
}
@media screen and (min-width: 1420px) {
  .index-case .index-item {
    margin-bottom: 62px;
  }
}
.index-case.page-case {
  background-color: #fff;
  padding: 80px 0 102px;
}

@media screen and (max-width: 1419px) {
  .index-case.page-case {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 1219px) {
  .index-case.page-case {
    padding: 70px 0;
  }
}
@media screen and (max-width: 991px) {
  .index-case.page-case {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .index-case.page-case {
    padding: 30px 0;
  }
}
.index-case.page-case .page-title {
  margin-bottom: 60px;
}

@media screen and (max-width: 1419px) {
  .index-case.page-case .page-title {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1219px) {
  .index-case.page-case .page-title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .index-case.page-case .page-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .index-case.page-case .page-title {
    margin-bottom: 20px;
  }
}
.case2_wrap + .page-case {
  margin-top: -45px;
  padding-top: 0;
}

@media screen and (max-width: 1419px) {
  .case2_wrap + .page-case {
    margin-top: 0;
  }
}
.case2_wrap + .page-case .page-title {
  margin-bottom: 31px;
}

@media screen and (max-width: 767px) {
  .case2_wrap + .page-case .page-title {
    margin-bottom: 20px;
  }
}
.case-owl {
  position: relative;
}

.case-owl .owl-carousel {
  width: 103.7142857143%;
  margin-left: -1.8571428571%;
}

@media screen and (max-width: 1219px) {
  .case-owl .owl-carousel {
    width: 102%;
    margin-left: -1%;
  }
}
@media screen and (max-width: 400px) {
  .case-owl .owl-carousel {
    width: 100%;
    margin-left: 0;
  }
}
.case-owl .list-item {
  height: 100%;
  margin: 0 5.3719008264% 20px;
  position: relative;
  transition: all 0.35s;
}

@media screen and (max-width: 1219px) {
  .case-owl .list-item {
    margin: 0 2.9411764706% 10px;
  }
}
@media screen and (max-width: 480px) {
  .case-owl .list-item {
    margin: 0 1.9607843137% 10px;
  }
}
.case-owl .item-pic {
  border-radius: 20px 20px 0 0;
}

@media screen and (max-width: 991px) {
  .case-owl .item-pic {
    border-radius: 15px 15px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .case-owl .item-pic {
    border-radius: 10px 10px 0 0;
  }
}
.case-owl .item-body {
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0px 0px 20px 0px rgba(164, 164, 164, 0.4);
  padding: 36px 29px 20px;
  font-size: 0;
}

@media screen and (max-width: 1419px) {
  .case-owl .item-body {
    padding: 20px;
  }
}
@media screen and (max-width: 1219px) {
  .case-owl .item-body {
    box-shadow: 0px 0px 10px 0px rgba(164, 164, 164, 0.4);
    padding: 15px;
  }
}
@media screen and (max-width: 991px) {
  .case-owl .item-body {
    border-radius: 0 0 15px 15px;
  }
}
@media screen and (max-width: 767px) {
  .case-owl .item-body {
    border-radius: 0 0 10px 10px;
    padding: 10px;
    box-shadow: 0px 0px 5px 0px rgba(164, 164, 164, 0.1);
  }
}
.case-owl .item-title {
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

@media screen and (max-width: 1419px) {
  .case-owl .item-title {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1219px) {
  .case-owl .item-title {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  .case-owl .item-title {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 0;
  }
}
.case-owl .item-btn {
  display: inline-block;
  color: #ff5500;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
}

.case-owl .item-btn:hover {
  color: #094d3c;
}

@media screen and (max-width: 1219px) {
  .case-owl .item-btn {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .case-owl .item-btn {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.case-owl .owl-buttons {
  display: none !important;
}

.case-owl .owl-btns {
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 1219px) {
  .case-owl .owl-btns {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .case-owl .owl-btns {
    margin-top: 10px;
  }
}
.case-owl .owl-btns .owl-btn {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 10px;
  font-size: 23px;
  font-size: 2.3rem;
  color: #666;
  background-color: #e5e5e5;
  transition: all 0.35s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.case-owl .owl-btns .owl-btn:hover {
  background-color: #094d3c;
  color: #fff;
}

@media screen and (max-width: 1519px) {
  .case-owl .owl-btns .owl-btn {
    margin-top: -65px;
  }
}
@media screen and (max-width: 1419px) {
  .case-owl .owl-btns .owl-btn {
    width: 44px;
    height: 44px;
    line-height: 44px;
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 1219px) {
  .case-owl .owl-btns .owl-btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    font-size: 1.8rem;
    position: relative;
    top: auto;
    transform: none;
    margin-top: 0;
  }
}
@media screen and (max-width: 991px) {
  .case-owl .owl-btns .owl-btn {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .case-owl .owl-btns .owl-btn {
    border-radius: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .case-owl .owl-btns .owl-btn {
    width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.case-owl .owl-btns .item-prev {
  left: -100px;
}

@media screen and (max-width: 1619px) {
  .case-owl .owl-btns .item-prev {
    left: -55px;
  }
}
@media screen and (max-width: 1519px) {
  .case-owl .owl-btns .item-prev {
    left: 0;
  }
}
@media screen and (max-width: 1219px) {
  .case-owl .owl-btns .item-prev {
    margin-right: 15px;
  }
}
@media screen and (max-width: 991px) {
  .case-owl .owl-btns .item-prev {
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .case-owl .owl-btns .item-prev {
    margin-right: 5px;
  }
}
.case-owl .owl-btns .item-next {
  right: -100px;
}

@media screen and (max-width: 1619px) {
  .case-owl .owl-btns .item-next {
    right: -55px;
  }
}
@media screen and (max-width: 1519px) {
  .case-owl .owl-btns .item-next {
    right: 0;
  }
}
/* index-case end */
/* index-partners start */
.index-partners {
  background: url(../images/partner-bg1.jpg) no-repeat center bottom;
  padding: 82px 0 91px;
  margin-bottom: 17px;
}

@media screen and (max-width: 1419px) {
  .index-partners {
    padding-bottom: 90px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1219px) {
  .index-partners {
    padding: 70px 0;
  }
}
@media screen and (max-width: 991px) {
  .index-partners {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .index-partners {
    padding: 30px 0 20px;
  }
}
.index-partners .brand-slide {
  overflow: hidden;
  position: relative;
}

.index-partners .brand-slide .bd {
  position: relative;
}

.index-partners .brand-slide .bd:before, .index-partners .brand-slide .bd:after {
  position: absolute;
  content: "";
  width: 197px;
  height: 100%;
  top: 0;
  z-index: 2;
}

@media screen and (max-width: 1219px) {
  .index-partners .brand-slide .bd:before, .index-partners .brand-slide .bd:after {
    width: 150px;
  }
}
@media screen and (max-width: 991px) {
  .index-partners .brand-slide .bd:before, .index-partners .brand-slide .bd:after {
    width: 100px;
  }
}
@media screen and (max-width: 767px) {
  .index-partners .brand-slide .bd:before, .index-partners .brand-slide .bd:after {
    width: 50px;
  }
}
.index-partners .brand-slide .bd:before {
  background: linear-gradient(to right, white, transparent);
  left: 0;
}

.index-partners .brand-slide .bd:after {
  background: linear-gradient(to right, transparent, white);
  right: 0;
}

.index-partners .brand-slide .picList li {
  float: left;
  width: 10.26%;
  margin-right: 0.41%;
}

@media screen and (max-width: 991px) {
  .index-partners .brand-slide .picList li {
    width: 18%;
    margin-left: 1%;
    margin-right: 1%;
  }
}
@media screen and (max-width: 767px) {
  .index-partners .brand-slide .picList li {
    width: 23%;
  }
}
@media screen and (max-width: 480px) {
  .index-partners .brand-slide .picList li {
    width: 29.33%;
  }
}
.index-partners .brand-slide .picList .item-pic {
  margin-bottom: 18px;
}

/* index-partners end */
/* index-news start */
.index-news {
  background-color: #f3f5f7;
  padding: 78px 0 100px;
}

@media screen and (max-width: 1419px) {
  .index-news {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 1219px) {
  .index-news {
    padding: 70px 0;
  }
}
@media screen and (max-width: 991px) {
  .index-news {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .index-news {
    padding: 30px 0;
  }
}
.index-news .index-item {
  padding-right: 130px;
  text-align: left;
}

@media screen and (min-width: 1420px) {
  .index-news .index-item {
    margin-bottom: 66px;
  }
}
@media screen and (max-width: 1219px) {
  .index-news .index-item {
    padding-right: 100px;
  }
}
@media screen and (max-width: 991px) {
  .index-news .index-item {
    padding-right: 90px;
  }
}
@media screen and (max-width: 767px) {
  .index-news .index-item {
    padding-right: 70px;
  }
}
.index-news .box-btn {
  text-align: center;
  margin-top: 51px;
}

@media screen and (max-width: 1219px) {
  .index-news .box-btn {
    margin-top: 40px;
  }
}
@media screen and (max-width: 991px) {
  .index-news .box-btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .index-news .box-btn {
    margin-top: 20px;
  }
}
.index-news .wp {
  position: relative;
}

.index-news.related-news {
  background-color: transparent;
  padding: 0 0 90px;
  margin-top: -47px;
}

@media screen and (max-width: 1419px) {
  .index-news.related-news {
    padding-bottom: 90px;
    margin-top: 0;
  }
}
@media screen and (max-width: 1219px) {
  .index-news.related-news {
    padding: 0 0 70px;
  }
}
@media screen and (max-width: 991px) {
  .index-news.related-news {
    padding: 0 0 50px;
  }
}
@media screen and (max-width: 767px) {
  .index-news.related-news {
    padding: 0 0 30px;
  }
}
.index-news.related-news .page-title {
  margin-bottom: 55px;
}

@media screen and (max-width: 1419px) {
  .index-news.related-news .page-title {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1219px) {
  .index-news.related-news .page-title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .index-news.related-news .page-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .index-news.related-news .page-title {
    margin-bottom: 20px;
  }
}
.index-news.related-news .news-owl .owl-btns {
  position: relative;
  top: 0;
  width: 100%;
  margin-top: 40px;
}

@media screen and (max-width: 1219px) {
  .index-news.related-news .news-owl .owl-btns {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .index-news.related-news .news-owl .owl-btns {
    margin-top: 20px;
  }
}
.news-owl .owl-carousel {
  width: 101.5714285714%;
  margin-left: -0.7857142857%;
}

@media screen and (max-width: 1219px) {
  .news-owl .owl-carousel {
    width: 102%;
    margin-left: -1%;
  }
}
@media screen and (max-width: 400px) {
  .news-owl .owl-carousel {
    width: 100%;
    margin-left: 0;
  }
}
.news-owl .list-item {
  height: 100%;
  margin: 0 2.3206751055%;
  position: relative;
  transition: all 0.35s;
}

@media screen and (max-width: 1219px) {
  .news-owl .list-item {
    margin: 0 2.9411764706%;
  }
}
@media screen and (max-width: 480px) {
  .news-owl .list-item {
    margin: 0 1.9607843137%;
  }
}
.news-owl .item-pic {
  border-radius: 20px;
  margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
  .news-owl .item-pic {
    border-radius: 15px;
  }
}
@media screen and (max-width: 767px) {
  .news-owl .item-pic {
    margin-bottom: 10px;
    border-radius: 10px;
  }
}
.news-owl .item-date {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #666;
  margin-bottom: 7px;
}

@media screen and (max-width: 1219px) {
  .news-owl .item-date {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 991px) {
  .news-owl .item-date {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .news-owl .item-date {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.news-owl .item-title {
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 23px;
}

@media screen and (max-width: 1419px) {
  .news-owl .item-title {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1219px) {
  .news-owl .item-title {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .news-owl .item-title {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
}
.news-owl .item-btn {
  display: inline-block;
  color: #094d3c;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
}

.news-owl .item-btn:hover {
  color: #ff5500;
}

@media screen and (max-width: 1219px) {
  .news-owl .item-btn {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .news-owl .item-btn {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.news-owl .owl-buttons {
  display: none !important;
}

.news-owl .owl-btns {
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
  width: auto;
  position: absolute;
  right: 0;
  top: -3px;
}

@media screen and (max-width: 767px) {
  .news-owl .owl-btns {
    top: 0;
    right: 15px;
  }
}
.news-owl .owl-btns .owl-btn {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 10px;
  font-size: 23px;
  font-size: 2.3rem;
  color: #666;
  background-color: #e5e5e5;
  transition: all 0.35s;
}

.news-owl .owl-btns .owl-btn:hover {
  background-color: #094d3c;
  color: #fff;
}

@media screen and (max-width: 1419px) {
  .news-owl .owl-btns .owl-btn {
    width: 44px;
    height: 44px;
    line-height: 44px;
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 1219px) {
  .news-owl .owl-btns .owl-btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 991px) {
  .news-owl .owl-btns .owl-btn {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .news-owl .owl-btns .owl-btn {
    border-radius: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .news-owl .owl-btns .owl-btn {
    width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.news-owl .owl-btns .item-prev {
  margin-right: 20px;
}

@media screen and (max-width: 1219px) {
  .news-owl .owl-btns .item-prev {
    margin-right: 15px;
  }
}
@media screen and (max-width: 991px) {
  .news-owl .owl-btns .item-prev {
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .news-owl .owl-btns .item-prev {
    margin-right: 5px;
  }
}
/* index-news end */
/*-------------index end-------------------------------------------------------------------*/
/*-------------1-about start---------------------------------------------------------------*/
.page_wrap {
  padding: 58px 0 103px;
}

@media screen and (max-width: 1419px) {
  .page_wrap {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 1219px) {
  .page_wrap {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 991px) {
  .page_wrap {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .page_wrap {
    padding: 30px 0;
  }
}
@media screen and (min-width: 1420px) {
  .pro1_wrap {
    padding-bottom: 93px;
  }
}
@media screen and (min-width: 1420px) {
  .case2_wrap {
    padding-top: 51px;
  }
}
@media screen and (min-width: 1420px) {
  .service_wrap {
    padding-top: 51px;
  }
}
.faq_wrap .page-title {
  margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
  .faq_wrap .page-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .faq_wrap .page-title {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1420px) {
  .news1_wrap {
    padding-top: 50px;
  }
}
.news1_wrap .page-title {
  margin-bottom: 43px;
}

@media screen and (max-width: 991px) {
  .news1_wrap .page-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .news1_wrap .page-title {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1420px) {
  .news2_wrap {
    padding-top: 52px;
  }
}
.page-title {
  text-align: center;
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  text-transform: uppercase;
  font-size: 40px;
  font-size: 4rem;
  letter-spacing: 1.6px;
  line-height: 1.2;
}

.page-title a {
  display: inline-block;
}

.page-title a:hover {
  color: #094d3c;
}

@media screen and (max-width: 1419px) {
  .page-title {
    font-size: 34px;
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 1219px) {
  .page-title {
    font-size: 28px;
    font-size: 2.8rem;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 991px) {
  .page-title {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .page-title {
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0.5px;
  }
}
.about_wrap {
  padding-bottom: 0;
}

.about-box1 {
  margin-top: -5px;
  padding-bottom: 89px;
}

@media screen and (max-width: 1219px) {
  .about-box1 {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 991px) {
  .about-box1 {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .about-box1 {
    padding-bottom: 30px;
  }
}
.about-box1 .top-item {
  margin-bottom: 48px;
}

@media screen and (max-width: 991px) {
  .about-box1 .top-item {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .about-box1 .top-item {
    margin-bottom: 20px;
  }
}
.about-box1 .top-item .item-title {
  float: left;
  width: 19.2857142857%;
  margin-right: 2.1428571429%;
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 40px;
  font-size: 4rem;
  letter-spacing: 1.6px;
  line-height: 1.4;
  margin-top: -8px;
}

@media screen and (max-width: 1419px) {
  .about-box1 .top-item .item-title {
    font-size: 34px;
    font-size: 3.4rem;
    margin-top: 0;
  }
}
@media screen and (max-width: 1219px) {
  .about-box1 .top-item .item-title {
    font-size: 28px;
    font-size: 2.8rem;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 991px) {
  .about-box1 .top-item .item-title {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .about-box1 .top-item .item-title {
    letter-spacing: 0.5px;
    font-size: 18px;
    font-size: 1.8rem;
    float: none;
    width: 100%;
    margin: 0 0 10px;
  }
}
.about-box1 .top-item .item-desc {
  overflow: hidden;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
}

@media screen and (max-width: 1219px) {
  .about-box1 .top-item .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .about-box1 .top-item .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}
.about-box1 .item-pic {
  border-radius: 20px;
  overflow: hidden;
}

.about-box1 .item-pic img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .about-box1 .item-pic {
    border-radius: 15px;
  }
}
@media screen and (max-width: 767px) {
  .about-box1 .item-pic {
    border-radius: 10px;
  }
}
.about-box2 {
  background-color: #fff;
  padding-bottom: 1px;
}

.about-box2 .box-pic {
  overflow: hidden;
}

.about-box2 .box-pic img {
  display: block;
  width: 100%;
}

.about-box2 .item-box1 {
  background-color: #094d3c;
  border-radius: 20px;
  margin-bottom: 115px;
  margin-top: -218px;
  position: relative;
  z-index: 2;
  padding: 90px 60px 42px;
  font-size: 0;
  letter-spacing: 0;
}

@media screen and (max-width: 1419px) {
  .about-box2 .item-box1 {
    margin-bottom: 90px;
    margin-top: -160px;
  }
}
@media screen and (max-width: 1219px) {
  .about-box2 .item-box1 {
    padding: 40px;
    margin-bottom: 70px;
    margin-top: -120px;
  }
}
@media screen and (max-width: 991px) {
  .about-box2 .item-box1 {
    margin-bottom: 50px;
    padding: 40px 30px;
    border-radius: 15px;
    margin-top: -80px;
  }
}
@media screen and (max-width: 767px) {
  .about-box2 .item-box1 {
    margin-bottom: 30px;
    padding: 30px 15px;
    border-radius: 10px;
    margin-top: -60px;
  }
}
@media screen and (max-width: 640px) {
  .about-box2 .item-box1 {
    margin-top: 30px;
  }
}
.about-box2 .item-box1 .page-title {
  margin-bottom: 33px;
}

.about-box2 .item-box1 .page-title, .about-box2 .item-box1 .page-title * {
  color: #fff;
}

@media screen and (max-width: 1219px) {
  .about-box2 .item-box1 .page-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  .about-box2 .item-box1 .page-title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .about-box2 .item-box1 .page-title {
    margin-bottom: 15px;
  }
}
.about-box2 .item-box1 .box-item {
  display: inline-block;
  vertical-align: top;
  width: 47.65625%;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
}

.about-box2 .item-box1 .box-item, .about-box2 .item-box1 .box-item * {
  color: #fff;
  line-height: 28px;
}

.about-box2 .item-box1 .box-item em {
  font-style: normal;
  position: relative;
  padding-left: 27px;
  display: block;
}

.about-box2 .item-box1 .box-item em:before {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  left: 0;
  background-color: #fff;
  top: 9px;
}

@media screen and (max-width: 1219px) {
  .about-box2 .item-box1 .box-item {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
  }
  .about-box2 .item-box1 .box-item em {
    padding-left: 20px;
  }
  .about-box2 .item-box1 .box-item em:before {
    width: 8px;
    height: 8px;
    top: 8px;
  }
}
@media screen and (max-width: 767px) {
  .about-box2 .item-box1 .box-item {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
  .about-box2 .item-box1 .box-item em {
    padding-left: 15px;
  }
  .about-box2 .item-box1 .box-item em:before {
    width: 6px;
    height: 6px;
    top: 7px;
  }
}
@media screen and (max-width: 640px) {
  .about-box2 .item-box1 .box-item {
    width: 100%;
  }
}
.about-box2 .item-box1 .box-item .item-pic {
  border-radius: 20px;
  overflow: hidden;
}

.about-box2 .item-box1 .box-item .item-pic img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .about-box2 .item-box1 .box-item .item-pic {
    border-radius: 15px;
  }
}
@media screen and (max-width: 767px) {
  .about-box2 .item-box1 .box-item .item-pic {
    border-radius: 10px;
  }
}
.about-box2 .item-box1 .item2 {
  margin-left: 4.6875%;
}

@media screen and (max-width: 640px) {
  .about-box2 .item-box1 .item2 {
    margin-left: 0;
  }
}
.about-box2 .item-box2 {
  background-color: #fdfdfd;
  box-shadow: 0px 0px 27px 0px rgba(137, 137, 137, 0.27);
  border-radius: 20px;
  padding: 51px 45px 35px 60px;
  font-size: 0;
  letter-spacing: 0;
  margin-bottom: 122px;
}

@media screen and (max-width: 1419px) {
  .about-box2 .item-box2 {
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 1219px) {
  .about-box2 .item-box2 {
    padding: 40px;
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 991px) {
  .about-box2 .item-box2 {
    padding: 40px 30px;
    border-radius: 15px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .about-box2 .item-box2 {
    padding: 30px 15px;
    border-radius: 10px;
    margin-bottom: 30px;
  }
}
.about-box2 .item-box2 .box-item {
  display: inline-block;
  vertical-align: top;
  width: 46.332046332%;
}

@media screen and (max-width: 1219px) {
  .about-box2 .item-box2 .box-item {
    width: 47.65625%;
  }
}
@media screen and (max-width: 640px) {
  .about-box2 .item-box2 .box-item {
    width: 100%;
  }
}
.about-box2 .item-box2 .box-item:nth-child(even) {
  margin-left: 7.3359073359%;
}

@media screen and (max-width: 1219px) {
  .about-box2 .item-box2 .box-item:nth-child(even) {
    margin-left: 4.6875%;
  }
}
@media screen and (max-width: 640px) {
  .about-box2 .item-box2 .box-item:nth-child(even) {
    margin-left: 0;
  }
}
.about-box2 .item-box2 .box-item .item-title {
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.2;
  color: #094d3c;
  margin-bottom: 35px;
}

@media screen and (max-width: 1419px) {
  .about-box2 .item-box2 .box-item .item-title {
    font-size: 26px;
    font-size: 2.6rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1219px) {
  .about-box2 .item-box2 .box-item .item-title {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 991px) {
  .about-box2 .item-box2 .box-item .item-title {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .about-box2 .item-box2 .box-item .item-title {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
.about-box2 .item-box2 .box-item .item-desc {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
}

.about-box2 .item-box2 .box-item .item-desc, .about-box2 .item-box2 .box-item .item-desc * {
  color: #666;
}

.about-box2 .item-box2 .box-item .item-desc strong, .about-box2 .item-box2 .box-item .item-desc b {
  font-weight: normal;
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  color: #333;
}

@media screen and (max-width: 1219px) {
  .about-box2 .item-box2 .box-item .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .about-box2 .item-box2 .box-item .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}
.about-box2 .item-box2 .box-item .page-btn {
  margin-top: 71px;
}

@media screen and (max-width: 1419px) {
  .about-box2 .item-box2 .box-item .page-btn {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1219px) {
  .about-box2 .item-box2 .box-item .page-btn {
    margin-top: 50px;
  }
}
@media screen and (max-width: 991px) {
  .about-box2 .item-box2 .box-item .page-btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .about-box2 .item-box2 .box-item .page-btn {
    margin-top: 20px;
  }
}
.about-his {
  background: url(../images/his-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 73px 0 102px;
}

@media screen and (max-width: 1419px) {
  .about-his {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 1219px) {
  .about-his {
    padding: 70px 0;
  }
}
@media screen and (max-width: 991px) {
  .about-his {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .about-his {
    padding: 30px 0;
  }
}
.about-his .page-title {
  margin-bottom: 35px;
}

@media screen and (max-width: 991px) {
  .about-his .page-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .about-his .page-title {
    margin-bottom: 20px;
  }
}
.his-scroll {
  position: relative;
  padding: 0 30px;
  /* @media screen and (max-width:1419px) {padding: 0 44px;}
  @media screen and (max-width:1219px) {padding: 0 40px;}
  @media screen and (max-width:991px) {padding: 0 36px;}
  @media screen and (max-width:767px) {padding: 0 30px;}
  @media screen and (max-width:480px) {padding: 0 26px;} */
}

@media screen and (max-width: 1419px) {
  .his-scroll {
    padding: 0;
  }
}
.his-scroll:before {
  position: absolute;
  content: "";
  height: 1px;
  left: 0;
  width: 100%;
  background-color: #d7d7d7;
  top: 50%;
}

.his-scroll .scroll-list-box {
  width: 100%;
  overflow: hidden;
}

.his-scroll .scroll-list {
  width: 10000%;
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
}

.his-scroll .scroll-list li {
  width: 0.25%;
}

@media screen and (max-width: 991px) {
  .his-scroll .scroll-list li {
    width: 0.3333%;
  }
}
@media screen and (max-width: 767px) {
  .his-scroll .scroll-list li {
    width: 0.5%;
  }
}
.his-scroll .scroll-list .item1, .his-scroll .scroll-list .item2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: center;
}

.his-scroll .scroll-list .item1 {
  flex-direction: column;
}

.his-scroll .scroll-list .item1 .item-circle {
  margin-top: 10px;
}

.his-scroll .scroll-list .item1 .item-line {
  margin-top: 7px;
}

.his-scroll .scroll-list .item1 .item-desc {
  margin-top: 6px;
}

.his-scroll .scroll-list .item2 {
  flex-direction: column-reverse;
}

.his-scroll .scroll-list .item2 .item-circle {
  margin-bottom: 10px;
}

.his-scroll .scroll-list .item2 .item-line {
  margin-bottom: 7px;
}

.his-scroll .scroll-list .item2 .item-desc {
  margin-bottom: 6px;
}

.his-scroll .scroll-list .item-blank {
  height: 1px;
  display: block;
  width: 100%;
}

.his-scroll .scroll-list .item-circle {
  margin: 0 auto;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background-color: rgba(9, 77, 60, 0.2);
  padding: 10px;
}

.his-scroll .scroll-list .item-circle .item-sc {
  background-color: #094d3c;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: block;
}

@media screen and (max-width: 1419px) {
  .his-scroll .scroll-list .item-circle {
    width: 30px;
    height: 30px;
    padding: 8px;
  }
}
@media screen and (max-width: 1219px) {
  .his-scroll .scroll-list .item-circle {
    width: 25px;
    height: 25px;
    padding: 7px;
  }
}
@media screen and (max-width: 767px) {
  .his-scroll .scroll-list .item-circle {
    width: 20px;
    height: 20px;
    padding: 5px;
  }
}
.his-scroll .scroll-list .item-line {
  width: 1px;
  height: 63px;
  background-color: #a7a7a7;
  margin: 0 auto;
}

@media screen and (max-width: 1419px) {
  .his-scroll .scroll-list .item-line {
    height: 50px;
  }
}
@media screen and (max-width: 1219px) {
  .his-scroll .scroll-list .item-line {
    height: 40px;
  }
}
@media screen and (max-width: 991px) {
  .his-scroll .scroll-list .item-line {
    height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .his-scroll .scroll-list .item-line {
    height: 20px;
  }
}
.his-scroll .scroll-list .item-date {
  width: 100%;
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 34px;
  font-size: 3.4rem;
  line-height: 1.2;
}

@media screen and (max-width: 1419px) {
  .his-scroll .scroll-list .item-date {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 1219px) {
  .his-scroll .scroll-list .item-date {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 991px) {
  .his-scroll .scroll-list .item-date {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .his-scroll .scroll-list .item-date {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.his-scroll .scroll-list .item-desc {
  width: 100%;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
}

@media screen and (max-width: 1419px) {
  .his-scroll .scroll-list .item-desc {
    line-height: 26px;
  }
}
@media screen and (max-width: 1219px) {
  .his-scroll .scroll-list .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .his-scroll .scroll-list .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}
.his-scroll .scroll-btns {
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
}

.his-scroll .scroll-btns .scroll-btn {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 10px;
  font-size: 23px;
  font-size: 2.3rem;
  color: #666;
  background-color: #e5e5e5;
  transition: all 0.35s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.his-scroll .scroll-btns .scroll-btn:hover {
  background-color: #094d3c;
  color: #fff;
}

@media screen and (max-width: 1419px) {
  .his-scroll .scroll-btns .scroll-btn {
    width: 44px;
    height: 44px;
    line-height: 44px;
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 1219px) {
  .his-scroll .scroll-btns .scroll-btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 991px) {
  .his-scroll .scroll-btns .scroll-btn {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .his-scroll .scroll-btns .scroll-btn {
    border-radius: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .his-scroll .scroll-btns .scroll-btn {
    width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.his-scroll .scroll-btns .scroll-btn.prev {
  left: 0;
}

.his-scroll .scroll-btns .scroll-btn.next {
  right: 0;
}

.about-fac {
  background-color: #fff;
  padding: 95px 0 104px;
}

@media screen and (max-width: 1419px) {
  .about-fac {
    padding: 90px 0;
  }
}
@media screen and (max-width: 1219px) {
  .about-fac {
    padding: 70px 0;
  }
}
@media screen and (max-width: 991px) {
  .about-fac {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .about-fac {
    padding: 30px 0;
  }
}
.about-fac .page-title {
  margin-bottom: 69px;
}

@media screen and (max-width: 1419px) {
  .about-fac .page-title {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1219px) {
  .about-fac .page-title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .about-fac .page-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .about-fac .page-title {
    margin-bottom: 20px;
  }
}
.fac-scroll {
  position: relative;
}

.fac-scroll .scroll-list-box {
  width: 100%;
  overflow: hidden;
  width: 123.1770833333%;
  margin-left: -23.1770833333%;
}

.fac-scroll .scroll-list {
  width: 10000%;
  position: relative;
}

.fac-scroll .scroll-list li {
  float: left;
  width: 0.2930232558%;
  margin-right: 0.0059196617%;
}

@media screen and (max-width: 640px) {
  .fac-scroll .scroll-list li {
    width: 0.39%;
    margin-right: 0.01%;
  }
}
.fac-scroll .scroll-list .item-pic {
  border-radius: 20px;
}

@media screen and (max-width: 991px) {
  .fac-scroll .scroll-list .item-pic {
    border-radius: 15px;
  }
}
@media screen and (max-width: 767px) {
  .fac-scroll .scroll-list .item-pic {
    border-radius: 10px;
  }
}
.fac-scroll .scroll-btns {
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
  width: 100%;
  margin-top: 34px;
}

@media screen and (max-width: 1219px) {
  .fac-scroll .scroll-btns {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .fac-scroll .scroll-btns {
    margin-top: 20px;
  }
}
.fac-scroll .scroll-btns .scroll-btn {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 10px;
  font-size: 23px;
  font-size: 2.3rem;
  color: #666;
  background-color: #e5e5e5;
  transition: all 0.35s;
}

.fac-scroll .scroll-btns .scroll-btn:hover {
  background-color: #094d3c;
  color: #fff;
}

@media screen and (max-width: 1419px) {
  .fac-scroll .scroll-btns .scroll-btn {
    width: 44px;
    height: 44px;
    line-height: 44px;
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 1219px) {
  .fac-scroll .scroll-btns .scroll-btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 991px) {
  .fac-scroll .scroll-btns .scroll-btn {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .fac-scroll .scroll-btns .scroll-btn {
    border-radius: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .fac-scroll .scroll-btns .scroll-btn {
    width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.fac-scroll .scroll-btns .scroll-btn.prev {
  margin-right: 12px;
}

@media screen and (max-width: 991px) {
  .fac-scroll .scroll-btns .scroll-btn.prev {
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .fac-scroll .scroll-btns .scroll-btn.prev {
    margin-right: 5px;
  }
}
.about-ad {
  background-color: #fff;
  padding-bottom: 75px;
}

@media screen and (max-width: 1219px) {
  .about-ad {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 991px) {
  .about-ad {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .about-ad {
    padding-bottom: 30px;
  }
}
.about-ad .page-title {
  margin-bottom: 66px;
}

@media screen and (max-width: 1419px) {
  .about-ad .page-title {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1219px) {
  .about-ad .page-title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .about-ad .page-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .about-ad .page-title {
    margin-bottom: 20px;
  }
}
.aboutad-owl {
  overflow: hidden;
}

.aboutad-owl .owl-wrapper {
  display: flex !important;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
}

.aboutad-owl .owl-carousel {
  width: 100.9285714286%;
  margin-left: -0.4642857143%;
}

@media screen and (max-width: 1219px) {
  .aboutad-owl .owl-carousel {
    width: 102%;
    margin-left: -1%;
  }
}
@media screen and (max-width: 400px) {
  .aboutad-owl .owl-carousel {
    width: 100%;
    margin-left: 0;
  }
}
.aboutad-owl .owl-item {
  margin-bottom: 87px;
}

.aboutad-owl .owl-item:nth-child(even) {
  margin-top: 87px;
  margin-bottom: 0;
}

.aboutad-owl .owl-item:nth-child(even) .list-item {
  background: linear-gradient(#f3f9f8, #fdfdfd);
}

@media screen and (max-width: 1419px) {
  .aboutad-owl .owl-item {
    margin-bottom: 80px;
  }
  .aboutad-owl .owl-item:nth-child(even) {
    margin-top: 80px;
  }
}
@media screen and (max-width: 1219px) {
  .aboutad-owl .owl-item {
    margin-bottom: 60px;
  }
  .aboutad-owl .owl-item:nth-child(even) {
    margin-top: 60px;
  }
}
@media screen and (max-width: 991px) {
  .aboutad-owl .owl-item {
    margin-bottom: 50px;
  }
  .aboutad-owl .owl-item:nth-child(even) {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .aboutad-owl .owl-item {
    margin-bottom: 40px;
  }
  .aboutad-owl .owl-item:nth-child(even) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 480px) {
  .aboutad-owl .owl-item {
    margin-bottom: 0;
  }
  .aboutad-owl .owl-item:nth-child(even) {
    margin-top: 0;
  }
}
.aboutad-owl .list-item {
  height: 100%;
  margin: 0 1.8413597734%;
  position: relative;
  transition: all 0.35s;
  border-radius: 20px;
  background: linear-gradient(#f3f5f7, #fdfdfd);
  padding: 15px 15px 10px 32px;
}

@media screen and (max-width: 1419px) {
  .aboutad-owl .list-item {
    padding: 15px 15px 10px;
  }
}
@media screen and (max-width: 1219px) {
  .aboutad-owl .list-item {
    margin: 0 2.9411764706%;
  }
}
@media screen and (max-width: 991px) {
  .aboutad-owl .list-item {
    border-radius: 15px;
  }
}
@media screen and (max-width: 767px) {
  .aboutad-owl .list-item {
    border-radius: 10px;
  }
}
@media screen and (max-width: 640px) {
  .aboutad-owl .list-item {
    margin: 0 1.9607843137%;
  }
}
@media screen and (max-width: 400px) {
  .aboutad-owl .list-item {
    margin: 0;
  }
}
.aboutad-owl .item-pic {
  width: 70px;
  position: absolute;
  top: 10px;
  left: 15px;
}

@media screen and (max-width: 1219px) {
  .aboutad-owl .item-pic {
    width: 60px;
    left: 10px;
  }
}
@media screen and (max-width: 991px) {
  .aboutad-owl .item-pic {
    width: 50px;
  }
}
@media screen and (max-width: 767px) {
  .aboutad-owl .item-pic {
    width: 40px;
  }
}
.aboutad-owl .item-num {
  float: right;
  opacity: 0.04;
  color: #333;
  line-height: 0.75;
  font-size: 96px;
  font-size: 9.6rem;
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  margin-bottom: 31px;
}

@media screen and (max-width: 1419px) {
  .aboutad-owl .item-num {
    font-size: 86px;
    font-size: 8.6rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1219px) {
  .aboutad-owl .item-num {
    font-size: 76px;
    font-size: 7.6rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 991px) {
  .aboutad-owl .item-num {
    font-size: 66px;
    font-size: 6.6rem;
  }
}
@media screen and (max-width: 767px) {
  .aboutad-owl .item-num {
    font-size: 56px;
    font-size: 5.6rem;
  }
}
@media screen and (max-width: 640px) {
  .aboutad-owl .item-num {
    font-size: 50px;
    font-size: 5rem;
  }
}
@media screen and (max-width: 480px) {
  .aboutad-owl .item-num {
    font-size: 40px;
    font-size: 4rem;
  }
}
.aboutad-owl .item-title {
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 18px;
}

@media screen and (max-width: 1419px) {
  .aboutad-owl .item-title {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1219px) {
  .aboutad-owl .item-title {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 991px) {
  .aboutad-owl .item-title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .aboutad-owl .item-title {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.aboutad-owl .item-desc p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
  margin-bottom: 28px;
  position: relative;
  padding-left: 15px;
}

.aboutad-owl .item-desc p:before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #ff5500;
  left: 1px;
  top: 10px;
}

.aboutad-owl .item-desc p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1419px) {
  .aboutad-owl .item-desc p {
    line-height: 26px;
    margin-bottom: 26px;
  }
}
@media screen and (max-width: 1219px) {
  .aboutad-owl .item-desc p {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
    margin-bottom: 24px;
  }
  .aboutad-owl .item-desc p:before {
    width: 6px;
    height: 6px;
    top: 9px;
  }
}
@media screen and (max-width: 991px) {
  .aboutad-owl .item-desc p {
    line-height: 22px;
    margin-bottom: 22px;
  }
  .aboutad-owl .item-desc p:before {
    top: 8px;
  }
}
@media screen and (max-width: 767px) {
  .aboutad-owl .item-desc p {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
    margin-bottom: 20px;
    padding-left: 10px;
  }
  .aboutad-owl .item-desc p:before {
    width: 5px;
    height: 5px;
    top: 7px;
  }
}
.aboutad-owl .owl-buttons {
  display: none !important;
}

.aboutad-owl .owl-btns {
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
  width: 100%;
  margin-top: 40px;
}

@media screen and (max-width: 1219px) {
  .aboutad-owl .owl-btns {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .aboutad-owl .owl-btns {
    margin-top: 20px;
  }
}
.aboutad-owl .owl-btns .owl-btn {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 10px;
  font-size: 23px;
  font-size: 2.3rem;
  color: #666;
  background-color: #e5e5e5;
  transition: all 0.35s;
}

.aboutad-owl .owl-btns .owl-btn:hover {
  background-color: #094d3c;
  color: #fff;
}

@media screen and (max-width: 1419px) {
  .aboutad-owl .owl-btns .owl-btn {
    width: 44px;
    height: 44px;
    line-height: 44px;
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 1219px) {
  .aboutad-owl .owl-btns .owl-btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 991px) {
  .aboutad-owl .owl-btns .owl-btn {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .aboutad-owl .owl-btns .owl-btn {
    border-radius: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .aboutad-owl .owl-btns .owl-btn {
    width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.aboutad-owl .owl-btns .item-prev {
  margin-right: 12px;
}

@media screen and (max-width: 991px) {
  .aboutad-owl .owl-btns .item-prev {
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .aboutad-owl .owl-btns .item-prev {
    margin-right: 5px;
  }
}
.about-honor {
  background-color: #fff;
  padding-bottom: 100px;
}

@media screen and (max-width: 1419px) {
  .about-honor {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 1219px) {
  .about-honor {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 991px) {
  .about-honor {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .about-honor {
    padding-bottom: 30px;
  }
}
.about-honor .page-title {
  margin-bottom: 67px;
}

@media screen and (max-width: 1419px) {
  .about-honor .page-title {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1219px) {
  .about-honor .page-title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .about-honor .page-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .about-honor .page-title {
    margin-bottom: 20px;
  }
}
.honor-owl {
  position: relative;
  overflow: hidden;
  padding: 0 65px;
}

@media screen and (max-width: 1219px) {
  .honor-owl {
    padding: 0 60px;
  }
}
@media screen and (max-width: 991px) {
  .honor-owl {
    padding: 0 50px;
  }
}
@media screen and (max-width: 767px) {
  .honor-owl {
    padding: 0 40px;
  }
}
.honor-owl .list-item {
  height: 100%;
  margin: 0 6.1452513966%;
  position: relative;
  transition: all 0.35s;
}

@media screen and (max-width: 767px) {
  .honor-owl .list-item {
    margin: 0 4.1899441341%;
  }
}
.honor-owl .item-title {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.3;
  text-align: center;
  margin-top: 17px;
}

@media screen and (max-width: 1419px) {
  .honor-owl .item-title {
    font-size: 16px;
    font-size: 1.6rem;
    margin-top: 15px;
  }
}
@media screen and (max-width: 1219px) {
  .honor-owl .item-title {
    font-size: 14px;
    font-size: 1.4rem;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .honor-owl .item-title {
    margin-top: 5px;
  }
}
.honor-owl .owl-buttons {
  display: none !important;
}

.honor-owl .owl-btns {
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
  width: 100%;
}

.honor-owl .owl-btns .owl-btn {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 10px;
  font-size: 23px;
  font-size: 2.3rem;
  color: #666;
  background-color: #e5e5e5;
  transition: all 0.35s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.honor-owl .owl-btns .owl-btn:hover {
  background-color: #094d3c;
  color: #fff;
}

@media screen and (max-width: 1419px) {
  .honor-owl .owl-btns .owl-btn {
    width: 44px;
    height: 44px;
    line-height: 44px;
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 1219px) {
  .honor-owl .owl-btns .owl-btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 991px) {
  .honor-owl .owl-btns .owl-btn {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .honor-owl .owl-btns .owl-btn {
    border-radius: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .honor-owl .owl-btns .owl-btn {
    width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.honor-owl .owl-btns .item-prev {
  left: 22px;
}

@media screen and (max-width: 1219px) {
  .honor-owl .owl-btns .item-prev {
    left: 15px;
  }
}
@media screen and (max-width: 767px) {
  .honor-owl .owl-btns .item-prev {
    left: 10px;
  }
}
.honor-owl .owl-btns .item-next {
  right: 22px;
}

@media screen and (max-width: 1219px) {
  .honor-owl .owl-btns .item-next {
    right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .honor-owl .owl-btns .item-next {
    right: 10px;
  }
}
.about-cer {
  padding: 80px 0 91px;
}

@media screen and (max-width: 1219px) {
  .about-cer {
    padding: 70px 0;
  }
}
@media screen and (max-width: 991px) {
  .about-cer {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .about-cer {
    padding: 30px 0;
  }
}
.about-cer .page-title {
  margin-bottom: 67px;
}

@media screen and (max-width: 1419px) {
  .about-cer .page-title {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1219px) {
  .about-cer .page-title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .about-cer .page-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .about-cer .page-title {
    margin-bottom: 20px;
  }
}
.about-cer .wp {
  position: relative;
}

.about-cer .box-list {
  overflow: hidden;
  padding-bottom: 44px;
}

@media screen and (max-width: 480px) {
  .about-cer .box-list {
    padding-bottom: 0;
  }
}
.about-cer .box-list li {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 28.6px;
  transition: all 0.35s;
  cursor: pointer;
}

.about-cer .box-list li:hover, .about-cer .box-list li.active {
  color: #ff5500;
}

@media screen and (max-width: 1419px) {
  .about-cer .box-list li {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 1219px) {
  .about-cer .box-list li {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 991px) {
  .about-cer .box-list li {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .about-cer .box-list li {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}
.cer-owl {
  overflow: hidden;
  float: left;
  width: 47.7142857143%;
  padding-right: 15px;
  margin-top: 11px;
}

@media screen and (max-width: 1219px) {
  .cer-owl {
    width: 45.5714285714%;
  }
}
@media screen and (max-width: 991px) {
  .cer-owl {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .cer-owl {
    width: 215px;
  }
}
@media screen and (max-width: 640px) {
  .cer-owl {
    width: 175px;
  }
}
@media screen and (max-width: 480px) {
  .cer-owl {
    float: none;
    width: 200px;
    margin: 0 auto;
  }
}
.cer-owl .owl-carousel {
  max-width: 348px;
  margin-left: 30px;
}

@media screen and (max-width: 1219px) {
  .cer-owl .owl-carousel {
    max-width: 300px;
    margin-left: 0;
  }
}
@media screen and (max-width: 991px) {
  .cer-owl .owl-carousel {
    max-width: 280px;
  }
}
@media screen and (max-width: 767px) {
  .cer-owl .owl-carousel {
    max-width: 200px;
  }
}
.cer-owl .owl-buttons {
  display: none !important;
}

.cer-owl .owl-btns {
  font-size: 0;
  letter-spacing: 0;
  position: absolute;
  left: 47.7142857143%;
  bottom: 0;
}

@media screen and (max-width: 1219px) {
  .cer-owl .owl-btns {
    left: 45.5714285714%;
  }
}
@media screen and (max-width: 767px) {
  .cer-owl .owl-btns {
    left: 230px;
  }
}
@media screen and (max-width: 640px) {
  .cer-owl .owl-btns {
    left: 190px;
  }
}
@media screen and (max-width: 480px) {
  .cer-owl .owl-btns {
    position: relative;
    left: auto;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 20px;
  }
}
.cer-owl .owl-btns .owl-btn {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 10px;
  font-size: 23px;
  font-size: 2.3rem;
  color: #666;
  background-color: #e5e5e5;
  transition: all 0.35s;
}

.cer-owl .owl-btns .owl-btn:hover {
  background-color: #094d3c;
  color: #fff;
}

@media screen and (max-width: 1419px) {
  .cer-owl .owl-btns .owl-btn {
    width: 44px;
    height: 44px;
    line-height: 44px;
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 1219px) {
  .cer-owl .owl-btns .owl-btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 991px) {
  .cer-owl .owl-btns .owl-btn {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .cer-owl .owl-btns .owl-btn {
    border-radius: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .cer-owl .owl-btns .owl-btn {
    width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.cer-owl .owl-btns .item-prev {
  margin-right: 12px;
}

@media screen and (max-width: 991px) {
  .cer-owl .owl-btns .item-prev {
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .cer-owl .owl-btns .item-prev {
    margin-right: 5px;
  }
}
.about-partners {
  background: #fff url(../images/bg5.jpg) no-repeat center;
  padding: 84px 0 73px;
}

@media screen and (max-width: 1219px) {
  .about-partners {
    padding: 70px 0;
  }
}
@media screen and (max-width: 991px) {
  .about-partners {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .about-partners {
    padding: 30px 0;
  }
}
.about-partners .page-title {
  margin-bottom: 47px;
}

@media screen and (max-width: 1219px) {
  .about-partners .page-title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .about-partners .page-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .about-partners .page-title {
    margin-bottom: 20px;
  }
}
.about-partners .brand-btn {
  text-align: center;
  cursor: pointer;
}

.brand-list {
  font-size: 0;
  letter-spacing: 0;
  padding-bottom: 24px;
}

@media screen and (max-width: 991px) {
  .brand-list {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .brand-list {
    padding-bottom: 10px;
  }
}
.brand-list .list-item {
  display: inline-block;
  vertical-align: top;
  width: 17.5714285714%;
  margin-left: 3.0357142857%;
  margin-bottom: 25px;
}

.brand-list .list-item:nth-child(5n+1) {
  margin-left: 0;
}

@media screen and (max-width: 991px) {
  .brand-list .list-item {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .brand-list .list-item {
    width: 23.5%;
    margin-left: 2%;
  }
  .brand-list .list-item:nth-child(5n+1) {
    margin-left: 2%;
  }
  .brand-list .list-item:nth-child(4n+1) {
    margin-left: 0;
  }
}
@media screen and (max-width: 480px) {
  .brand-list .list-item {
    width: 32%;
    margin-left: 2%;
  }
  .brand-list .list-item:nth-child(5n+1) {
    margin-left: 2%;
  }
  .brand-list .list-item:nth-child(4n+1) {
    margin-left: 2%;
  }
  .brand-list .list-item:nth-child(3n+1) {
    margin-left: 0;
  }
}
.brand-list .item-pic {
  border: solid 1px #dedede;
}

/*-------------1-about end-----------------------------------------------------------------*/
/*-------------2-1-products start----------------------------------------------------------*/
.pro1-cate {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
  margin-bottom: 100px;
}

.pro1-cate:before {
  position: absolute;
  content: "";
  bottom: 4px;
  height: 1px;
  left: 0;
  width: 100%;
  background-color: #d7d7d7;
}

@media screen and (max-width: 991px) {
  .pro1-cate {
    display: none;
  }
}
.pro1-cate > li {
  flex: 1;
  margin-right: 16px;
  border-radius: 0;
  padding-bottom: 30px;
}

.pro1-cate > li:last-child {
  margin-right: 0;
}

.pro1-cate > li > p {
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  position: relative;
  min-height: 65px;
}

@media screen and (max-width: 1219px) {
  .pro1-cate > li > p {
    min-height: 60px;
  }
}
.pro1-cate > li > p:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #666;
}

.pro1-cate > li > p > a {
  flex: 1 1 auto;
  display: block;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 22px;
  padding: 10px;
}

@media screen and (max-width: 1219px) {
  .pro1-cate > li > p > a {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.pro1-cate > li.active .erji {
  transform: translateY(0px);
  visibility: visible;
  opacity: 1;
  z-index: 98;
}

.pro1-cate > li.active > p {
  background-color: #094d3c;
}

.pro1-cate > li.active > p:before {
  background-color: #094d3c;
}

.pro1-cate > li.active > p > a {
  color: #fff;
}

.pro1-cate > li:hover .erji {
  transform: translateY(0px);
  visibility: visible;
  opacity: 1;
}

.pro1-cate > li:hover > p {
  background-color: #094d3c;
}

.pro1-cate > li:hover > p:before {
  background-color: #094d3c;
}

.pro1-cate > li:hover > p > a {
  color: #fff;
}

.pro1-cate .erji {
  z-index: 99;
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  display: block;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transform: translateY(30px);
  transform-origin: top;
  transition: all 400ms ease;
  background-color: #fff;
  padding-top: 37px;
  padding-bottom: 20px;
}

.pro1-cate .erji > ul {
  font-size: 0;
  letter-spacing: 0;
}

.pro1-cate .erji li {
  display: inline-block;
  vertical-align: top;
  margin: 0 20px 10px;
}

.pro1-cate .erji li > a {
  display: block;
  line-height: 24px;
  font-size: 18px;
  font-size: 1.8rem;
  color: #333;
}

.pro1-cate .erji li:hover > a, .pro1-cate .erji li.active > a {
  color: #094d3c;
}

@media screen and (max-width: 1419px) {
  .pro1-cate .erji li > a {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.slide-title {
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  margin-bottom: 8px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 30px;
  position: relative;
}

.slide-title.slide-title2 {
  display: none;
}

.slide-title a, .slide-title p {
  display: block;
  position: relative;
  color: #fff;
  padding: 8px 15px;
  background-color: #094d3c;
  border-radius: 4px;
}

.slide-title a:hover {
  background-color: #094d3c;
}

.slide-title .iconfont {
  position: absolute;
  right: 8px;
  top: 8px;
  font-size: 20px;
  font-size: 2rem;
  font-weight: normal;
}

@media screen and (max-width: 991px) {
  .slide-title.slide-title1 {
    display: none;
  }
  .slide-title.slide-title2 {
    display: block;
  }
  .slide-title.slide-title2 a, .slide-title.slide-title2 p {
    padding-right: 40px;
  }
}
/* proslide start */
.proslide {
  display: none;
  margin: 30px 0;
}

@media screen and (max-width: 991px) {
  .proslide {
    display: none;
  }
}
.proslide .slide-yiji > li {
  width: 100%;
  margin-bottom: 8px;
}

.proslide .slide-yiji > li > a {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 4px;
  background-color: #f5f5f5;
  color: #333;
  position: relative;
}

.proslide .slide-yiji > li:hover > a, .proslide .slide-yiji > li.active > a {
  background-color: #094d3c;
  border-color: #094d3c;
  color: #fff;
}

.proslide .slide-erji {
  padding: 5px 0;
}

.proslide .slide-erji > li > a {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
  color: #333;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 15px;
  padding-right: 35px;
}

.proslide .slide-erji > li:hover > a, .proslide .slide-erji > li.active > a {
  color: #094d3c;
}

.proslide .slide-sanji > li > a {
  display: block;
  color: #666;
  line-height: 20px;
  padding: 5px 0 5px 50px;
}

@media screen and (max-width: 1219px) {
  .proslide .slide-sanji > li > a {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 18px;
    padding: 3px 0 3px 25px;
  }
}
.proslide .slide-sanji > li:hover > a, .proslide .slide-sanji > li.active > a {
  color: #094d3c;
}

/* proslide end */
.pro1-list {
  padding-bottom: 23px;
}

@media screen and (max-width: 767px) {
  .pro1-list {
    padding-bottom: 10px;
  }
}
.pro1-list .list-item {
  margin-bottom: 60px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}

@media screen and (max-width: 1219px) {
  .pro1-list .list-item {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 991px) {
  .pro1-list .list-item {
    margin-bottom: 40px;
    border-radius: 15px;
  }
}
@media screen and (max-width: 767px) {
  .pro1-list .list-item {
    margin-bottom: 30px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 480px) {
  .pro1-list .list-item {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 400px) {
  .pro1-list .list-item {
    flex-wrap: wrap;
    background-color: #f0f0f0;
  }
}
.pro1-list .list-item.item1 {
  background-color: #f0f0f0;
}

.pro1-list .list-item.item1 .item-body {
  padding-right: 6.4285714286%;
  padding-left: 5.7142857143%;
}

@media screen and (max-width: 1419px) {
  .pro1-list .list-item.item1 .item-body {
    padding-right: 3.5714285714%;
    padding-left: 3.5714285714%;
  }
}
@media screen and (max-width: 991px) {
  .pro1-list .list-item.item1 .item-body {
    padding-right: 2.1428571429%;
    padding-left: 2.1428571429%;
  }
}
@media screen and (max-width: 400px) {
  .pro1-list .list-item.item1 .item-body {
    padding: 15px 10px;
  }
}
.pro1-list .list-item.item2 {
  flex-direction: row-reverse;
}

.pro1-list .list-item.item2 .item-body {
  padding-right: 12.1428571429%;
}

@media screen and (max-width: 1419px) {
  .pro1-list .list-item.item2 .item-body {
    padding-right: 7.1428571429%;
  }
}
@media screen and (max-width: 991px) {
  .pro1-list .list-item.item2 .item-body {
    padding-right: 4.2857142857%;
  }
}
@media screen and (max-width: 400px) {
  .pro1-list .list-item.item2 .item-body {
    padding: 15px 10px;
  }
}
.pro1-list .item-pic {
  flex: 0 0 auto;
  width: 39.5714285714%;
}

@media screen and (max-width: 640px) {
  .pro1-list .item-pic {
    min-width: 190px;
  }
}
@media screen and (max-width: 480px) {
  .pro1-list .item-pic {
    min-width: 130px;
  }
}
@media screen and (max-width: 400px) {
  .pro1-list .item-pic {
    min-width: auto;
    width: 100%;
  }
}
.pro1-list .item-body {
  flex: 1 1 auto;
  overflow: hidden;
}

.pro1-list .item-title {
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 26px;
}

@media screen and (max-width: 1419px) {
  .pro1-list .item-title {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1219px) {
  .pro1-list .item-title {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 991px) {
  .pro1-list .item-title {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .pro1-list .item-title {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 480px) {
  .pro1-list .item-title {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.pro1-list .item-desc {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
  height: 112px;
  margin-bottom: 122px;
}

@media screen and (max-width: 1419px) {
  .pro1-list .item-desc {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 1219px) {
  .pro1-list .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
    height: 96px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 991px) {
  .pro1-list .item-desc {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .pro1-list .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
    height: 80px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 640px) {
  .pro1-list .item-desc {
    line-height: 20px;
    height: 60px;
    margin-bottom: 10px;
  }
  .pro1-list .item-desc a {
    -webkit-line-clamp: 3;
  }
}
@media screen and (max-width: 480px) {
  .pro1-list .item-desc {
    line-height: 16px;
    height: 48px;
  }
  .pro1-list .item-desc a {
    -webkit-line-clamp: 3;
  }
}
.pro1-list .item-btnbox {
  margin-bottom: 10px;
  font-size: 0;
  letter-spacing: 0;
}

.pro1-list .item-btnbox > * {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 7px;
}

.pro1-list .item-btnbox input {
  width: 16px;
  height: 16px;
  margin-right: 25px;
}

.pro1-list .item-btnbox .page-btn {
  margin-right: 50px;
}

.pro1-list .item-btnbox .page-btn:last-child {
  margin-right: 15px;
}

@media screen and (max-width: 1419px) {
  .pro1-list .item-btnbox {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 991px) {
  .pro1-list .item-btnbox input {
    margin-right: 10px;
  }
  .pro1-list .item-btnbox .page-btn {
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .pro1-list .item-btnbox input {
    width: 13px;
    height: 13px;
    margin-right: 5px;
  }
  .pro1-list .item-btnbox .page-btn {
    margin-right: 15px;
    min-width: 80px;
  }
}
@media screen and (max-width: 480px) {
  .pro1-list .item-btnbox > * {
    margin-bottom: 0;
  }
  .pro1-list .item-btnbox .page-btn {
    color: #094d3c;
    background-color: transparent;
    line-height: 20px;
    padding: 0;
    margin-left: 0;
    min-width: auto;
    margin-right: 10px;
    text-decoration: underline;
  }
  .pro1-list .item-btnbox .page-btn:last-child {
    margin-right: 0;
  }
  .pro1-list .item-btnbox .page-btn:before, .pro1-list .item-btnbox .page-btn:after {
    display: none;
  }
}
/*-------------2-1-products end------------------------------------------------------------*/
/*-------------2-2-products start----------------------------------------------------------*/
.pro2_wrap {
  padding-bottom: 0;
  padding-top: 100px;
}
@media screen and (max-width: 991px) {
  .pro2_wrap {
    padding-top: 40px;
  }
}

.m-prob1 .prob-pic {
  width: 527px;
  margin-right: 30px;
  float: left;
  margin-top: 9px;
}

@media screen and (max-width: 1419px) {
  .m-prob1 .prob-pic {
    width: 420px;
    margin-right: 30px;
    margin-top: 0;
  }
}
@media screen and (max-width: 1219px) {
  .m-prob1 .prob-pic {
    float: none;
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
  }
}
@media screen and (max-width: 767px) {
  .m-prob1 .prob-pic {
    max-width: 400px;
  }
}
.m-prob1 .prob-pic-big {
  position: relative;
  padding-bottom: 79.4165316045%;
}

.m-prob1 .prob-pic-big .provideo-box {
  border-radius: 20px;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}

@media screen and (max-width: 991px) {
  .m-prob1 .prob-pic-big .provideo-box {
    border-radius: 15px;
  }
}
@media screen and (max-width: 767px) {
  .m-prob1 .prob-pic-big .provideo-box {
    border-radius: 10px;
  }
}
.m-prob1 .prob-pic-big .provideo-box .provideo {
  position: relative;
  overflow: hidden;
  padding-bottom: 79.4165316045%;
  height: 0;
}

.m-prob1 .prob-pic-big .provideo-box .provideo iframe, .m-prob1 .prob-pic-big .provideo-box .provideo video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.m-prob1 .prob-pic-big .provideo-box .provideo iframe body {
  margin: 0px !important;
}

.m-prob1 .prob-pic-big-img {
  display: block;
  line-height: 0;
  font-size: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.m-prob1 .prob-pic-big-img .zoomPad {
  float: none;
  z-index: 8;
}

.m-prob1 .prob-pic-big-img .zoomPad .img {
  border-radius: 20px;
}

@media screen and (max-width: 991px) {
  .m-prob1 .prob-pic-big-img .zoomPad .img {
    border-radius: 15px;
  }
}
@media screen and (max-width: 767px) {
  .m-prob1 .prob-pic-big-img .zoomPad .img {
    border-radius: 10px;
  }
}
.m-prob1 .zoomWrapperImage img {
  max-width: 1200px;
}

.m-prob1 .prob-pic-small {
  position: relative;
  margin-top: 16px;
  padding: 0 28px;
  overflow: hidden;
}

@media screen and (max-width: 1219px) {
  .m-prob1 .prob-pic-small {
    margin-top: 15px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .m-prob1 .prob-pic-small {
    padding: 0 18px;
  }
}
@media screen and (max-width: 480px) {
  .m-prob1 .prob-pic-small {
    padding: 0 15px;
  }
}
.m-prob1 .prob-pic-btn {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  text-align: center;
  width: 46px;
  height: 46px;
  line-height: 46px;
  border-radius: 10px;
  font-size: 20px;
  font-size: 2rem;
  color: #666;
  background-color: #e5e5e5;
  transition: all 0.35s;
}

.m-prob1 .prob-pic-btn:hover {
  background-color: #094d3c;
  color: #fff;
}

@media screen and (max-width: 1419px) {
  .m-prob1 .prob-pic-btn {
    width: 44px;
    height: 44px;
    line-height: 44px;
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 1219px) {
  .m-prob1 .prob-pic-btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 991px) {
  .m-prob1 .prob-pic-btn {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .m-prob1 .prob-pic-btn {
    border-radius: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .m-prob1 .prob-pic-btn {
    width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.m-prob1 .prob-pic-btn.prev {
  left: 0;
}

.m-prob1 .prob-pic-btn.next {
  right: 0;
}

.m-prob1 .prob-pic-list {
  overflow: hidden;
}

.m-prob1 .prob-pic-list ul {
  width: 10000%;
  overflow: hidden;
}

.m-prob1 .prob-pic-list li {
  position: relative;
  float: left;
  margin-right: 0.0374331551%;
  width: 0.3083778966%;
  overflow: hidden;
}

.m-prob1 .prob-pic-item .item-pics, .m-prob1 .prob-pic-item .item-video {
  display: block;
  position: relative;
  border: solid 1px transparent;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}

.m-prob1 .prob-pic-item .item-pics img, .m-prob1 .prob-pic-item .item-video img {
  display: block;
  width: 100%;
}

.m-prob1 .prob-pic-item .item-pics.active, .m-prob1 .prob-pic-item .item-video.active {
  border-color: #094d3c;
}

@media screen and (max-width: 991px) {
  .m-prob1 .prob-pic-item .item-pics, .m-prob1 .prob-pic-item .item-video {
    border-radius: 15px;
  }
}
@media screen and (max-width: 767px) {
  .m-prob1 .prob-pic-item .item-pics, .m-prob1 .prob-pic-item .item-video {
    border-radius: 10px;
  }
}
@media screen and (max-width: 1219px) {
  .zoomPad {
    cursor: default !important;
  }
  .zoomPup {
    display: none !important;
  }
  .zoomWindow {
    display: none !important;
  }
  .zoomPreload {
    display: none !important;
  }
}
.pro2-top {
  padding: 0 0 75px;
}

@media screen and (max-width: 1419px) {
  .pro2-top {
    padding: 0 0 70px;
  }
}
@media screen and (max-width: 1219px) {
  .pro2-top {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 991px) {
  .pro2-top {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .pro2-top {
    padding-bottom: 30px;
  }
}
/* pro-info */
.pro-info {
  overflow: hidden;
  margin-top: -7px;
  border-bottom: solid 1px #cecece;
}

@media screen and (max-width: 1219px) {
  .pro-info {
    width: 100%;
    margin: 30px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .pro-info {
    margin-top: 20px;
  }
}
.pro-info > .item-title {
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.3;
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: solid 1px #cecece;
  color: #333;
}

@media screen and (max-width: 1419px) {
  .pro-info > .item-title {
    font-size: 20px;
    font-size: 2rem;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1219px) {
  .pro-info > .item-title {
    font-size: 20px;
    font-size: 2rem;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 991px) {
  .pro-info > .item-title {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .pro-info > .item-title {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }
}
.pro-info .pro-share {
  margin-bottom: 27px;
}

@media screen and (max-width: 1419px) {
  .pro-info .pro-share {
    margin-bottom: 20px;
  }
}
.pro-info .item-desc {
  box-sizing: border-box;
  padding-bottom: 20px;
  min-height: 418px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 28px;
}

.pro-info .item-desc, .pro-info .item-desc * {
  color: #666;
}

@media screen and (max-width: 1219px) {
  .pro-info .item-desc {
    min-height: auto;
    line-height: 24px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .pro-info .item-desc {
    line-height: 20px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.pro-info .item-btns {
  font-size: 0;
  letter-spacing: 0;
  padding-bottom: 30px;
}

@media screen and (max-width: 1219px) {
  .pro-info .item-btns {
    padding-bottom: 20px;
  }
}
.pro-info .item-btns .page-btn {
  display: inline-block;
  vertical-align: middle;
  margin-right: 53px;
  margin-bottom: 8px;
}

.pro-info .item-btns .page-btn:last-child {
  margin-right: 15px;
}

@media screen and (max-width: 1219px) {
  .pro-info .item-btns .page-btn {
    margin-right: 45px;
  }
}
@media screen and (max-width: 991px) {
  .pro-info .item-btns .page-btn {
    margin-right: 35px;
  }
}
@media screen and (max-width: 767px) {
  .pro-info .item-btns .page-btn {
    margin-right: 25px;
  }
}
.pro2-desc {
  background-color: #fff;
  padding: 90px 0 0;
}

@media screen and (max-width: 1419px) {
  .pro2-desc {
    padding: 90px 0 0;
  }
}
@media screen and (max-width: 1219px) {
  .pro2-desc {
    padding: 70px 0 0;
  }
}
@media screen and (max-width: 991px) {
  .pro2-desc {
    padding: 50px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .pro2-desc {
    padding: 30px 0 0;
  }
}
.pro2-desc .page-title {
  margin-bottom: 43px;
}

@media screen and (max-width: 1219px) {
  .pro2-desc .page-title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .pro2-desc .page-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .pro2-desc .page-title {
    margin-bottom: 20px;
  }
}
.pro2-desc .box-body {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
}

.pro2-desc .box-body, .pro2-desc .box-body * {
  color: #666;
  max-width: 1274px;
  margin: 0 auto;
}

.pro2-desc .box-body .table table tr:nth-child(odd) {
  background-color: rgba(9, 77, 60, 0.5);
  color: #fff;
}

.pro2-desc .box-body .table table tr:nth-child(even) {
  background-color: #fff;
}

.pro2-desc .box-body .table table tr:first-child {
  background-color: #094d3c;
  color: #fff;
}

.pro2-desc .box-body .table table tr td {
  padding: 15px 5px;
  font-size: 14px;
  font-size: 1.4rem;
  border: 1px solid #d2d2d2;
  /*background: #fff;*/
}

.pro2-desc .box-body .table table tr:first-child td {
  color: #fff;
}

.pro2-desc .box-body .table table tr:nth-child(odd) td {
  color: #fff;
}

@media screen and (max-width: 1219px) {
  .pro2-desc .box-body {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .pro2-desc .box-body {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}
.pro2-desc .video-item {
  margin-top: 40px;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .pro2-desc .video-item {
    margin-top: 30px;
  }
}
.pro2-desc .video-item .item-pic {
  margin-bottom: 0;
}

.pro2-app {
  padding: 82px 0 0;
}

@media screen and (max-width: 1219px) {
  .pro2-app {
    padding: 70px 0 0;
  }
}
@media screen and (max-width: 991px) {
  .pro2-app {
    padding: 50px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .pro2-app {
    padding: 30px 0 0;
  }
}
.pro2-app .page-title {
  margin-bottom: 66px;
}

@media screen and (max-width: 1219px) {
  .pro2-app .page-title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .pro2-app .page-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .pro2-app .page-title {
    margin-bottom: 20px;
  }
}
.pro2-app .box-item {
  margin-bottom: 30px;
}

.pro2-app .box-item.item1 .item-pic {
  float: right;
  margin-left: 6.4285714286%;
}

@media screen and (max-width: 1419px) {
  .pro2-app .box-item.item1 .item-pic {
    margin-left: 4.2857142857%;
  }
}
@media screen and (max-width: 1219px) {
  .pro2-app .box-item.item1 .item-pic {
    margin-left: 2.8571428571%;
  }
}
.pro2-app .box-item.item2 .item-pic {
  float: left;
  margin-right: 6.4285714286%;
}

@media screen and (max-width: 1419px) {
  .pro2-app .box-item.item2 .item-pic {
    margin-right: 4.2857142857%;
  }
}
@media screen and (max-width: 1219px) {
  .pro2-app .box-item.item2 .item-pic {
    margin-right: 2.8571428571%;
  }
}
.pro2-app .box-item .item-pic {
  position: relative;
  z-index: 2;
  width: 49.8165137615%;
  border-radius: 20px;
}

@media screen and (max-width: 991px) {
  .pro2-app .box-item .item-pic {
    border-radius: 15px;
  }
}
@media screen and (max-width: 767px) {
  .pro2-app .box-item .item-pic {
    border-radius: 10px;
  }
}
@media screen and (max-width: 480px) {
  .pro2-app .box-item .item-pic {
    width: 100%;
    float: none;
    margin: 0 auto 20px !important;
  }
}
.pro2-app .box-item .item-body {
  padding-top: 27px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
}

.pro2-app .box-item .item-body, .pro2-app .box-item .item-body * {
  color: #666;
}

@media screen and (max-width: 1419px) {
  .pro2-app .box-item .item-body {
    padding-top: 0;
  }
}
@media screen and (max-width: 1219px) {
  .pro2-app .box-item .item-body {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .pro2-app .box-item .item-body {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}
.pro2-video {
  background-color: #fff;
  padding: 92px 0 0;
}

@media screen and (max-width: 1219px) {
  .pro2-video {
    padding: 70px 0 0;
  }
}
@media screen and (max-width: 991px) {
  .pro2-video {
    padding: 50px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .pro2-video {
    padding: 30px 0 0;
  }
}
.pro2-video .page-title {
  margin-bottom: 58px;
}

@media screen and (max-width: 1219px) {
  .pro2-video .page-title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .pro2-video .page-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .pro2-video .page-title {
    margin-bottom: 20px;
  }
}
.pro2-video .video-list {
  padding-bottom: 0;
}

.pro2-form {
  background-color: #fff;
  padding-bottom: 130px;
}

@media screen and (max-width: 1419px) {
  .pro2-form {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 1219px) {
  .pro2-form {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 991px) {
  .pro2-form {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .pro2-form {
    padding-bottom: 40px;
  }
}
.pro2-form .page-title {
  margin-bottom: 18px;
}

@media screen and (max-width: 767px) {
  .pro2-form .page-title {
    margin-bottom: 10px;
  }
}
.pro2-form .box-subt {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
  margin-bottom: 74px;
}

.pro2-form .box-subt, .pro2-form .box-subt * {
  color: #666;
}

@media screen and (max-width: 1419px) {
  .pro2-form .box-subt {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1219px) {
  .pro2-form .box-subt {
    margin-bottom: 40px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
  }
}
@media screen and (max-width: 991px) {
  .pro2-form .box-subt {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .pro2-form .box-subt {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
    margin-bottom: 20px;
  }
}
.pro2-form .item-form { /* WebKit browsers */
  /* Mozilla Firefox 4 to 18 */
  /* Mozilla Firefox 19+ */
  /* Internet Explorer 10+ */
  max-width: 1274px;
  margin: 0 auto;
}

.pro2-form .item-form ::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}

.pro2-form .item-form :-o-placeholder {
  color: #999;
  opacity: 1;
}

.pro2-form .item-form ::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.pro2-form .item-form :-ms-input-placeholder {
  color: #999;
  opacity: 1;
}

.pro2-form .item-form .star {
  position: relative;
}

.pro2-form .item-form .star:before {
  position: absolute;
  content: "*";
  color: #ff3737;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  left: 0;
  line-height: 1;
  top: 17px;
}

.pro2-form .item-form .item-input {
  float: left;
  width: 32.0251177394%;
  margin-right: 1.9623233909%;
  padding-left: 16px;
  margin-bottom: 18px;
}

.pro2-form .item-form .item-input:nth-child(3n) {
  margin-right: 0;
}

.pro2-form .item-form .item-textarea {
  float: left;
  width: 100%;
  padding-left: 16px;
  margin-bottom: 18px;
}

.pro2-form .item-form input, .pro2-form .item-form textarea, .pro2-form .item-form select {
  display: block;
  width: 100%;
  background-color: #f8f8f8;
  border-radius: 5px;
  padding: 0 10px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #333;
}

.pro2-form .item-form input, .pro2-form .item-form select {
  height: 44px;
  line-height: 44px;
}

.pro2-form .item-form textarea {
  height: 126px;
  line-height: 24px;
  padding-top: 8px;
  padding-bottom: 10px;
}

.pro2-form .item-form .item-code {
  float: left;
  padding-left: 16px;
  margin-bottom: 18px;
  width: 22.6844583987%;
  margin-right: 1.0204081633%;
  position: relative;
  overflow: hidden;
}

.pro2-form .item-form .item-img {
  float: left;
  border: solid 1px #cfcfcf;
  line-height: 42px;
  font-size: 0;
  border-radius: 0;
  overflow: hidden;
}

.pro2-form .item-form .item-img img {
  max-height: 42px;
  vertical-align: middle;
  cursor: pointer;
}

.pro2-form .item-form .item-btn {
  overflow: hidden;
  float: right;
  width: 64.442700157%;
}

.pro2-form .item-form .item-btn input {
  background-color: #094d3c;
  color: #fff;
  transition: all 0.35s;
  font-size: 16px;
  font-size: 1.6rem;
}

.pro2-form .item-form .item-btn input:hover {
  background-color: #ff5500;
  color: #fff;
}

@media screen and (max-width: 991px) {
  .pro2-form .item-form .item-input {
    width: 49%;
    margin-right: 2%;
  }
  .pro2-form .item-form .item-input:nth-child(3n) {
    margin-right: 2%;
  }
  .pro2-form .item-form .item-input:nth-child(even) {
    margin-right: 0;
  }
  .pro2-form .item-form .item-input, .pro2-form .item-form .item-textarea, .pro2-form .item-form .item-code {
    margin-bottom: 15px;
    padding-left: 12px;
  }
  .pro2-form .item-form .item-code {
    width: 35%;
  }
  .pro2-form .item-form .item-btn {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  .pro2-form .item-form input, .pro2-form .item-form textarea, .pro2-form .item-form select {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .pro2-form .item-form input {
    height: 38px;
    line-height: 38px;
  }
  .pro2-form .item-form .item-img {
    line-height: 36px;
  }
  .pro2-form .item-form .item-img img {
    max-height: 36px;
  }
  .pro2-form .item-form .item-btn {
    width: 45%;
    padding-left: 12px;
  }
  .pro2-form .item-form .item-btn input {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .pro2-form .item-form .star:before {
    top: 13px;
  }
}
@media screen and (max-width: 480px) {
  .pro2-form .item-form .item-input, .pro2-form .item-form .item-textarea {
    width: 100%;
    margin-bottom: 10px;
  }
  .pro2-form .item-form .item-code {
    margin-right: 0;
    width: calc(100% - 90px);
  }
  .pro2-form .item-form .item-img {
    float: right;
  }
  .pro2-form .item-form .item-btn {
    width: 100%;
  }
}
/*-------------2-2-products end------------------------------------------------------------*/
/*-------------3-1-case start--------------------------------------------------------------*/
.case1_wrap .page-title {
  margin-top: -3px;
  margin-bottom: 45px;
}

@media screen and (max-width: 1219px) {
  .case1_wrap .page-title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .case1_wrap .page-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .case1_wrap .page-title {
    margin-bottom: 20px;
  }
}
.case1-list {
  font-size: 0;
  letter-spacing: 0;
  padding-bottom: 24px;
}

@media screen and (max-width: 991px) {
  .case1-list {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .case1-list {
    padding-bottom: 10px;
  }
}
.case1-list .list-item {
  display: inline-block;
  vertical-align: top;
  width: 30.8571428571%;
  margin-left: 3.7142857143%;
  margin-bottom: 48px;
}

.case1-list .list-item:nth-child(3n+1) {
  margin-left: 0;
}

.case1-list .list-item:hover .item-body {
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(164, 164, 164, 0.4);
}

@media screen and (max-width: 1219px) {
  .case1-list .list-item:hover .item-body {
    box-shadow: 0px 0px 10px 0px rgba(164, 164, 164, 0.4);
  }
}
@media screen and (max-width: 767px) {
  .case1-list .list-item:hover .item-body {
    box-shadow: 0px 0px 5px 0px rgba(164, 164, 164, 0.4);
  }
}
@media screen and (max-width: 1219px) {
  .case1-list .list-item {
    width: 32%;
    margin-left: 2%;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .case1-list .list-item {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 480px) {
  .case1-list .list-item {
    width: 49%;
  }
  .case1-list .list-item:nth-child(3n+1) {
    margin-left: 2%;
  }
  .case1-list .list-item:nth-child(odd) {
    margin-left: 0;
  }
}
.case1-list .item-pic {
  border-radius: 20px 20px 0 0;
}

@media screen and (max-width: 991px) {
  .case1-list .item-pic {
    border-radius: 15px 15px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .case1-list .item-pic {
    border-radius: 10px 10px 0 0;
  }
}
.case1-list .item-body {
  background-color: #f7f7f7;
  border-radius: 0 0 20px 20px;
  transition: all 0.35s;
  padding: 36px 29px 10px;
  font-size: 0;
}

@media screen and (max-width: 1419px) {
  .case1-list .item-body {
    padding: 20px;
  }
}
@media screen and (max-width: 1219px) {
  .case1-list .item-body {
    padding: 15px;
  }
}
@media screen and (max-width: 991px) {
  .case1-list .item-body {
    border-radius: 0 0 15px 15px;
  }
}
@media screen and (max-width: 767px) {
  .case1-list .item-body {
    border-radius: 0 0 10px 10px;
    padding: 10px;
  }
}
.case1-list .item-title {
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 14px;
}

@media screen and (max-width: 1419px) {
  .case1-list .item-title {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1219px) {
  .case1-list .item-title {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  .case1-list .item-title {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 0;
  }
}
.case1-list .item-desc {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
  height: 56px;
  margin-bottom: 26px;
}

@media screen and (max-width: 1419px) {
  .case1-list .item-desc {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1219px) {
  .case1-list .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
    height: 48px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 991px) {
  .case1-list .item-desc {
    line-height: 22px;
    height: 44px;
  }
}
@media screen and (max-width: 767px) {
  .case1-list .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
    height: 40px;
    margin-bottom: 5px;
  }
}
.case1-list .item-btn {
  display: inline-block;
  color: #094d3c;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
}

.case1-list .item-btn:hover {
  color: #ff5500;
}

@media screen and (max-width: 1219px) {
  .case1-list .item-btn {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .case1-list .item-btn {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
/*-------------3-1-case end----------------------------------------------------------------*/
/*-------------3-2-case start--------------------------------------------------------------*/
.case2-main > .item-title {
  text-align: center;
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.375;
  padding-bottom: 37px;
  margin-bottom: 41px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1419px) {
  .case2-main > .item-title {
    font-size: 22px;
    font-size: 2.2rem;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1219px) {
  .case2-main > .item-title {
    font-size: 20px;
    font-size: 2rem;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 991px) {
  .case2-main > .item-title {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 767px) {
  .case2-main > .item-title {
    font-size: 16px;
    font-size: 1.6rem;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
.case2-main > .item-desc {
  padding-bottom: 47px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
}

.case2-main > .item-desc, .case2-main > .item-desc * {
  color: #666;
}

.case2-main > .item-desc img, .case2-main > .item-desc iframe {
  max-width: 100%;
}

@media screen and (max-width: 1219px) {
  .case2-main > .item-desc {
    padding-bottom: 30px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
  }
}
@media screen and (max-width: 991px) {
  .case2-main > .item-desc {
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .case2-main > .item-desc {
    padding-bottom: 25px;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}
@media screen and (min-width: 1420px) {
  .case2-main .m-oths {
    padding-top: 31px;
  }
}
/*-------------3-2-case end----------------------------------------------------------------*/
/*-------------4-1-service start-----------------------------------------------------------*/
.service-title {
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 46px;
  font-size: 4.6rem;
  letter-spacing: 1.6px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 56px;
}

@media screen and (max-width: 1419px) {
  .service-title {
    font-size: 40px;
    font-size: 4rem;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1219px) {
  .service-title {
    font-size: 34px;
    font-size: 3.4rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 991px) {
  .service-title {
    font-size: 28px;
    font-size: 2.8rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .service-title {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
  }
}
.service-box1 {
  padding-bottom: 40px;
}

@media screen and (max-width: 1419px) {
  .service-box1 {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 1219px) {
  .service-box1 {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .service-box1 {
    padding-bottom: 10px;
  }
}
.service-box1 .box-item {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 90px;
}

@media screen and (max-width: 1419px) {
  .service-box1 .box-item {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 1219px) {
  .service-box1 .box-item {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 991px) {
  .service-box1 .box-item {
    margin-bottom: 30px;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .service-box1 .box-item {
    margin-bottom: 25px;
  }
}
.service-box1 .box-item:first-child .item-desc, .service-box1 .box-item:first-child .item-desc * {
  color: #666;
}

.service-box1 .box-item:nth-child(odd) {
  flex-direction: row;
}

.service-box1 .box-item:nth-child(odd) .item-pic {
  margin-right: 2.7142857143%;
}

@media screen and (max-width: 991px) {
  .service-box1 .box-item:nth-child(odd) .item-pic {
    float: left;
    margin-right: 2.1428571429%;
  }
}
.service-box1 .box-item:nth-child(even) {
  flex-direction: row-reverse;
}

.service-box1 .box-item:nth-child(even) .item-pic {
  margin-left: 2.7142857143%;
}

@media screen and (max-width: 991px) {
  .service-box1 .box-item:nth-child(even) .item-pic {
    float: right;
    margin-left: 2.1428571429%;
  }
}
.service-box1 .box-item .item-pic {
  flex: 0 0 auto;
  width: 48.8571428571%;
  border-radius: 20px;
}

@media screen and (max-width: 991px) {
  .service-box1 .box-item .item-pic {
    border-radius: 15px;
  }
}
@media screen and (max-width: 767px) {
  .service-box1 .box-item .item-pic {
    border-radius: 10px;
  }
}
@media screen and (max-width: 400px) {
  .service-box1 .box-item .item-pic {
    float: none !important;
    width: 100%;
    margin: 0 auto 15px !important;
  }
}
.service-box1 .box-item .item-body {
  flex: 1 1 auto;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .service-box1 .box-item .item-body {
    overflow: visible;
  }
}
.service-box1 .box-item .item-title {
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 40px;
  position: relative;
  padding-left: 22px;
  margin-bottom: 19px;
}

.service-box1 .box-item .item-title:before {
  position: absolute;
  content: "";
  width: 3px;
  height: 19px;
  background-color: #094d3c;
  left: 0;
  top: 10px;
}

@media screen and (max-width: 1419px) {
  .service-box1 .box-item .item-title {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 32px;
    margin-bottom: 15px;
    padding-left: 18px;
  }
  .service-box1 .box-item .item-title:before {
    height: 18px;
    top: 7px;
  }
}
@media screen and (max-width: 1219px) {
  .service-box1 .box-item .item-title {
    font-size: 20px;
    font-size: 2rem;
    line-height: 26px;
  }
  .service-box1 .box-item .item-title:before {
    height: 16px;
    top: 5px;
  }
}
@media screen and (max-width: 991px) {
  .service-box1 .box-item .item-title {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 24px;
    padding-left: 15px;
    margin-bottom: 10px;
  }
  .service-box1 .box-item .item-title:before {
    height: 16px;
    top: 4px;
  }
}
@media screen and (max-width: 767px) {
  .service-box1 .box-item .item-title {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 22px;
    padding-left: 10px;
  }
  .service-box1 .box-item .item-title:before {
    height: 12px;
    top: 3px;
    width: 2px;
  }
}
@media screen and (max-width: 480px) {
  .service-box1 .box-item .item-title {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 20px;
    padding-left: 10px;
  }
}
.service-box1 .box-item .item-desc {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
}

.service-box1 .box-item .item-desc, .service-box1 .box-item .item-desc * {
  color: #333;
}

.service-box1 .box-item .item-desc strong, .service-box1 .box-item .item-desc b {
  font-weight: normal;
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  color: #333 !important;
}

.service-box1 .box-item .item-desc p {
  margin-bottom: 28px;
  position: relative;
  padding-left: 17px;
}

.service-box1 .box-item .item-desc p:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ff5500;
  left: 0;
  top: 10px;
}

@media screen and (max-width: 1419px) {
  .service-box1 .box-item .item-desc {
    line-height: 26px;
  }
  .service-box1 .box-item .item-desc p {
    margin-bottom: 26px;
  }
}
@media screen and (max-width: 1219px) {
  .service-box1 .box-item .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
  }
  .service-box1 .box-item .item-desc p {
    margin-bottom: 24px;
    padding-left: 15px;
  }
  .service-box1 .box-item .item-desc p:before {
    top: 9px;
    width: 6px;
    height: 6px;
  }
}
@media screen and (max-width: 991px) {
  .service-box1 .box-item .item-desc {
    overflow: visible;
  }
  .service-box1 .box-item .item-desc p {
    padding-left: 0;
  }
  .service-box1 .box-item .item-desc p:before {
    position: relative;
    display: inline-block;
    top: -1px;
  }
}
@media screen and (max-width: 767px) {
  .service-box1 .box-item .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}
.service-box2 {
  padding: 92px 0 24px;
}

@media screen and (max-width: 1219px) {
  .service-box2 {
    padding: 70px 0 0;
  }
}
@media screen and (max-width: 991px) {
  .service-box2 {
    padding: 50px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .service-box2 {
    padding: 30px 0 0;
  }
}
.service-box2 .tab-options {
  margin-top: -3px;
  border-radius: 50px;
  background-color: #094d3c;
  margin-bottom: 65px;
  padding: 22px 40px 12px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 1419px) {
  .service-box2 .tab-options {
    padding: 20px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1219px) {
  .service-box2 .tab-options {
    padding: 15px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 991px) {
  .service-box2 .tab-options {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .service-box2 .tab-options {
    padding: 10px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .service-box2 .tab-options {
    border-radius: 10px;
    padding: 20px 10px 10px;
  }
}
.service-box2 .tab-options li {
  width: 32%;
  flex-basis: 32%;
  font-size: 20px;
  font-size: 2rem;
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  line-height: 1.65;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s;
}

.service-box2 .tab-options li:hover, .service-box2 .tab-options li.tab-active {
  color: #ff5500;
}

@media screen and (max-width: 1419px) {
  .service-box2 .tab-options li {
    line-height: 1.5;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1219px) {
  .service-box2 .tab-options li {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 991px) {
  .service-box2 .tab-options li {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.3;
  }
}
@media screen and (max-width: 480px) {
  .service-box2 .tab-options li {
    width: 100%;
    flex-basis: 100%;
    margin-bottom: 10px;
  }
}
.service-box2 .tab-content-item .item-pic {
  float: right;
  width: 50%;
  border-radius: 20px;
  margin-left: 2.8571428571%;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .service-box2 .tab-content-item .item-pic {
    border-radius: 15px;
    margin-left: 2.1428571429%;
  }
}
@media screen and (max-width: 767px) {
  .service-box2 .tab-content-item .item-pic {
    border-radius: 10px;
  }
}
@media screen and (max-width: 480px) {
  .service-box2 .tab-content-item .item-pic {
    float: none !important;
    width: 100%;
    margin: 0 auto 15px !important;
  }
}
.service-box2 .tab-content-item .item-body {
  padding-left: 21px;
}

@media screen and (max-width: 1419px) {
  .service-box2 .tab-content-item .item-body {
    padding-left: 0;
  }
}
.service-box2 .tab-content-item .item-title {
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 40px;
  margin-bottom: 22px;
  margin-top: -2px;
}

@media screen and (max-width: 1419px) {
  .service-box2 .tab-content-item .item-title {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 32px;
    margin-bottom: 15px;
    margin-top: 0;
  }
}
@media screen and (max-width: 1219px) {
  .service-box2 .tab-content-item .item-title {
    font-size: 20px;
    font-size: 2rem;
    line-height: 26px;
  }
}
@media screen and (max-width: 991px) {
  .service-box2 .tab-content-item .item-title {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 24px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .service-box2 .tab-content-item .item-title {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 22px;
  }
}
@media screen and (max-width: 480px) {
  .service-box2 .tab-content-item .item-title {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 20px;
  }
}
.service-box2 .tab-content-item .item-desc {
  overflow: visible;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
}

.service-box2 .tab-content-item .item-desc strong, .service-box2 .tab-content-item .item-desc b {
  font-weight: normal;
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  color: #333;
}

.service-box2 .tab-content-item .item-desc .item-tip {
  position: relative;
  padding-left: 17px;
}

.service-box2 .tab-content-item .item-desc .item-tip:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ff5500;
  left: 0;
  top: 10px;
}

.service-box2 .tab-content-item .item-desc li {
  position: relative;
  padding-left: 17px;
}

.service-box2 .tab-content-item .item-desc li:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ff5500;
  left: 0;
  top: 10px;
}

.service-box2 .tab-content-item .item-desc, .service-box2 .tab-content-item .item-desc * {
  color: #333;
}

.service-box2 .tab-content-item .item-desc p {
  position: relative;
  padding-left: 17px;
  margin-bottom: 25px;
}

.service-box2 .tab-content-item .item-desc p:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ff5500;
  left: 0;
  top: 10px;
}

@media screen and (max-width: 1419px) {
  .service-box2 .tab-content-item .item-desc {
    line-height: 26px;
  }
}
@media screen and (max-width: 1219px) {
  .service-box2 .tab-content-item .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
  }
  .service-box2 .tab-content-item .item-desc .item-tip {
    padding-left: 15px;
  }
  .service-box2 .tab-content-item .item-desc .item-tip:before {
    top: 9px;
    width: 6px;
    height: 6px;
  }
}
@media screen and (max-width: 991px) {
  .service-box2 .tab-content-item .item-desc .item-tip {
    padding-left: 0;
  }
  .service-box2 .tab-content-item .item-desc .item-tip:before {
    position: relative;
    display: inline-block;
    top: -1px;
  }
}
@media screen and (max-width: 767px) {
  .service-box2 .tab-content-item .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}
.service-line {
  margin-bottom: -90px;
}

.service-line + p {
  padding-top: 90px;
}

@media screen and (max-width: 767px) {
  .service-line {
    margin-bottom: -10px;
  }
  .service-line + p {
    padding-top: 10px;
  }
}
/*-------------4-1-service end-------------------------------------------------------------*/
/*-------------4-2-video start-------------------------------------------------------------*/
.video-item {
  margin-bottom: 73px;
}

@media screen and (max-width: 1419px) {
  .video-item {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1219px) {
  .video-item {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 991px) {
  .video-item {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .video-item {
    margin-bottom: 30px;
  }
}
.video-item .item-pic {
  position: relative;
  border-radius: 20px;
  margin-bottom: 58px;
  cursor: pointer;
}

@media screen and (max-width: 1419px) {
  .video-item .item-pic {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1219px) {
  .video-item .item-pic {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  .video-item .item-pic {
    border-radius: 20px;
  }
}
@media screen and (max-width: 767px) {
  .video-item .item-pic {
    border-radius: 10px;
    margin-bottom: 15px;
  }
}
.video-item .item-title {
  float: left;
  width: 17.5714285714%;
  margin-right: 2.1428571429%;
  margin-top: 2px;
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.2;
}

@media screen and (max-width: 1419px) {
  .video-item .item-title {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 1219px) {
  .video-item .item-title {
    font-size: 22px;
    font-size: 2.2rem;
    width: 19.2857142857%;
  }
}
@media screen and (max-width: 991px) {
  .video-item .item-title {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .video-item .item-title {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 10px;
    float: none;
    width: 100%;
    margin-right: 0;
  }
}
.video-item .item-desc {
  overflow: hidden;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
}

.video-item .item-desc, .video-item .item-desc * {
  color: #666;
}

@media screen and (max-width: 1219px) {
  .video-item .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .video-item .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}
/* video */
.video-list {
  font-size: 0;
  letter-spacing: 0;
  padding-bottom: 44px;
}

@media screen and (max-width: 1219px) {
  .video-list {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  .video-list {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .video-list {
    padding-bottom: 10px;
  }
}
.video-list .list-item {
  display: inline-block;
  vertical-align: top;
  width: 47.7142857143%;
  margin-left: 4.5714285714%;
  margin-bottom: 41px;
}

.video-list .list-item:nth-child(odd) {
  margin-left: 0;
}

@media screen and (max-width: 1219px) {
  .video-list .list-item {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .video-list .list-item {
    width: 49%;
    margin-left: 2%;
    margin-bottom: 25px;
  }
}
.video-list .item-pic {
  border-radius: 20px;
  margin-bottom: 21px;
  cursor: pointer;
}

@media screen and (max-width: 1219px) {
  .video-list .item-pic {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 991px) {
  .video-list .item-pic {
    border-radius: 15px;
  }
}
@media screen and (max-width: 767px) {
  .video-list .item-pic {
    border-radius: 10px;
    margin-bottom: 10px;
  }
}
.video-list .item-title {
  text-align: center;
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
}

@media screen and (max-width: 1419px) {
  .video-list .item-title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1219px) {
  .video-list .item-title {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .video-list .item-title {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
/* an-btn6 start */
.an-btn6 {
  display: inline-block;
  vertical-align: middle;
  width: 75px;
  height: 75px;
  box-sizing: border-box;
  border-radius: 50%;
  background-color: #fff;
}

.an-btn6:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto;
  display: block;
  border-width: 17px 0 17px 17px;
  border-radius: 0;
  border-style: solid;
  border-color: transparent transparent transparent #ff5500;
}

@media screen and (max-width: 1219px) {
  .an-btn6 {
    width: 70px;
    height: 70px;
  }
  .an-btn6:before {
    border-width: 15px 0 15px 15px;
  }
}
@media screen and (max-width: 991px) {
  .an-btn6 {
    width: 60px;
    height: 60px;
  }
  .an-btn6:before {
    border-width: 12px 0 12px 12px;
  }
}
@media screen and (max-width: 767px) {
  .an-btn6 {
    width: 50px;
    height: 50px;
  }
  .an-btn6:before {
    border-width: 10px 0 10px 10px;
  }
}
@media screen and (max-width: 480px) {
  .an-btn6 {
    width: 40px;
    height: 40px;
  }
  .an-btn6:before {
    border-width: 8px 0 8px 8px;
  }
}
.an-btn6 .an-btn6_animation {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 1;
  border-width: 0.5px;
  border-style: solid;
  border-color: #fff;
  opacity: 0;
  animation: circles 3.2s linear 0s infinite;
  animation-play-state: running;
}

.an-btn6 .an-btn6_animation.circle_1 {
  animation-delay: 0.8s;
}

.an-btn6 .an-btn6_animation.circle_2 {
  animation-delay: 1.6s;
}

.an-btn6 .an-btn6_animation.circle_3 {
  animation-delay: 2.4s;
}

@keyframes circles {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  20% {
    transform: scale(1.28);
    opacity: 0.3;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
/* an-btn6 end */
/* an-btn7 start */
.an-btn7 {
  display: inline-block;
  vertical-align: middle;
  width: 55px;
  height: 55px;
  box-sizing: border-box;
  border-radius: 50%;
  background-color: #fff;
}

.an-btn7:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto;
  display: block;
  border-width: 12px 0 12px 12px;
  border-radius: 0;
  border-style: solid;
  border-color: transparent transparent transparent #ff5500;
}

@media screen and (max-width: 1419px) {
  .an-btn7 {
    width: 50px;
    height: 50px;
  }
  .an-btn7:before {
    border-width: 11px 0 11px 11px;
  }
}
@media screen and (max-width: 1219px) {
  .an-btn7 {
    width: 45px;
    height: 45px;
  }
  .an-btn7:before {
    border-width: 10px 0 10px 10px;
  }
}
@media screen and (max-width: 991px) {
  .an-btn7 {
    width: 40px;
    height: 40px;
  }
  .an-btn7:before {
    border-width: 9px 0 9px 9px;
  }
}
@media screen and (max-width: 767px) {
  .an-btn7 {
    width: 35px;
    height: 35px;
  }
  .an-btn7:before {
    border-width: 8px 0 8px 8px;
  }
}
@media screen and (max-width: 480px) {
  .an-btn7 {
    width: 30px;
    height: 30px;
  }
  .an-btn7:before {
    border-width: 6px 0 6px 6px;
  }
}
.an-btn7 .an-btn7_animation {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 1;
  border-width: 0.5px;
  border-style: solid;
  border-color: #fff;
  opacity: 0;
  animation: circles 3.2s linear 0s infinite;
  animation-play-state: running;
}

.an-btn7 .an-btn7_animation.circle_1 {
  animation-delay: 0.8s;
}

.an-btn7 .an-btn7_animation.circle_2 {
  animation-delay: 1.6s;
}

.an-btn7 .an-btn7_animation.circle_3 {
  animation-delay: 2.4s;
}

.video-backdrop {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999999999;
  /* .item-videobox start */
  /* .item-videobox end */
}

.video-backdrop .item-close {
  position: absolute;
  right: 2.6041666667%;
  top: 2.6041666667%;
  color: #fff;
  font-size: 36px;
  font-size: 3.6rem;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .video-backdrop .item-close {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
.video-backdrop .item-videobox {
  overflow: hidden;
  max-width: 750px;
  border-radius: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 95%;
  transform: translate(-50%, -50%);
}

.video-backdrop .item-videobox .item-video {
  position: relative;
  overflow: hidden;
  padding-bottom: 75%;
  height: 0;
}

.video-backdrop .item-videobox .item-video iframe, .video-backdrop .item-videobox .item-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-backdrop .item-videobox .item-video iframe body {
  margin: 0px !important;
}

/*-------------4-2-video end---------------------------------------------------------------*/
/*-------------4-3-download start----------------------------------------------------------*/
.download-top {
  margin-top: -7px;
  margin-bottom: 86px;
}

@media screen and (max-width: 1419px) {
  .download-top {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1219px) {
  .download-top {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 991px) {
  .download-top {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .download-top {
    margin-bottom: 30px;
  }
}
.download-top .item-title {
  float: left;
  width: 27.8571428571%;
  margin-right: 2.1428571429%;
  margin-top: -1px;
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 40px;
  font-size: 4rem;
  line-height: 1.2;
  text-transform: uppercase;
}

@media screen and (max-width: 1419px) {
  .download-top .item-title {
    font-size: 34px;
    font-size: 3.4rem;
    margin-top: 0;
  }
}
@media screen and (max-width: 1219px) {
  .download-top .item-title {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 991px) {
  .download-top .item-title {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .download-top .item-title {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 10px;
    float: none;
    width: 100%;
    margin-right: 0;
  }
}
.download-top .item-desc {
  overflow: hidden;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
}

.download-top .item-desc, .download-top .item-desc * {
  color: #666;
}

@media screen and (max-width: 1219px) {
  .download-top .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .download-top .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}
.download-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: stretch;
  padding-bottom: 34px;
}

@media screen and (max-width: 991px) {
  .download-list {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .download-list {
    padding-bottom: 20px;
  }
}
.download-list .list-item {
  width: 26.6428571429%;
  flex-basis: 26.6428571429%;
  margin-left: 10.0357142857%;
  background-color: #f5f5f5;
  margin-bottom: 53px;
  padding: 22px 24px 15px;
  position: relative;
}

.download-list .list-item:nth-child(3n+1) {
  margin-left: 0;
}

@media screen and (max-width: 1419px) {
  .download-list .list-item {
    margin-bottom: 40px;
    width: 30%;
    flex-basis: 30%;
    margin-left: 5%;
  }
}
@media screen and (max-width: 1219px) {
  .download-list .list-item {
    width: 32%;
    flex-basis: 32%;
    margin-left: 2%;
    padding: 15px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  .download-list .list-item {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .download-list .list-item {
    padding: 10px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 640px) {
  .download-list .list-item {
    width: 49%;
    flex-basis: 49%;
    margin-left: 2%;
  }
  .download-list .list-item:nth-child(3n+1) {
    margin-left: 2%;
  }
  .download-list .list-item:nth-child(odd) {
    margin-left: 0;
  }
}
.download-list .item-pic {
  width: 36px;
  margin-bottom: 13px;
}

@media screen and (max-width: 1219px) {
  .download-list .item-pic {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 991px) {
  .download-list .item-pic {
    width: 32px;
  }
}
@media screen and (max-width: 767px) {
  .download-list .item-pic {
    width: 28px;
  }
}
.download-list .item-title {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
  min-height: 56px;
  margin-bottom: 16px;
}

.download-list .item-title, .download-list .item-title a {
  color: #666;
}

.download-list .item-title a:hover {
  color: #ff5500 !important;
}

@media screen and (max-width: 1219px) {
  .download-list .item-title {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
    min-height: 48px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 991px) {
  .download-list .item-title {
    line-height: 22px;
    min-height: 44px;
  }
}
@media screen and (max-width: 767px) {
  .download-list .item-title {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 20px;
    min-height: 40px;
  }
}
.download-list .item-btn {
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  color: #094d3c;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.2;
  display: inline-block;
}

.download-list .item-btn .iconfont {
  font-size: 19px;
  font-size: 1.9rem;
  margin-left: 5px;
}

.download-list .item-btn:hover {
  color: #ff5500;
}

@media screen and (max-width: 1419px) {
  .download-list .item-btn {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1219px) {
  .download-list .item-btn {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .download-list .item-btn .iconfont {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .download-list .item-btn {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .download-list .item-btn .iconfont {
    font-size: 14px;
    font-size: 1.4rem;
    margin-left: 2px;
  }
}
/* model */
.pass-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
}

.pass-model {
  width: 840px;
  background-color: #fff;
  border-radius: 10px;
  padding: 55px 49px 41px;
}

@media screen and (max-width: 1219px) {
  .pass-model {
    width: 760px;
    padding: 40px 40px 30px;
  }
}
@media screen and (max-width: 991px) {
  .pass-model {
    max-width: 700px;
    width: 95%;
    padding: 40px 20px 20px;
  }
}
@media screen and (max-width: 640px) {
  .pass-model {
    padding: 30px 20px 15px;
  }
}
.pass-model .box-close {
  display: inline-block;
  cursor: pointer;
  position: absolute;
  right: 29px;
  top: 38px;
  color: #333;
  font-size: 18px;
  font-size: 1.8rem;
}

.pass-model .box-close:hover {
  color: #094d3c;
}

@media screen and (max-width: 1219px) {
  .pass-model .box-close {
    right: 20px;
    top: 20px;
  }
}
@media screen and (max-width: 991px) {
  .pass-model .box-close {
    font-size: 16px;
    font-size: 1.6rem;
    top: 15px;
    bottom: 15px;
  }
}
@media screen and (max-width: 640px) {
  .pass-model .box-close {
    top: 10px;
    right: 10px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.pass-model .box-title {
  text-align: center;
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 40px;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 34px;
}

@media screen and (max-width: 1419px) {
  .pass-model .box-title {
    font-size: 36px;
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 1219px) {
  .pass-model .box-title {
    font-size: 30px;
    font-size: 3rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  .pass-model .box-title {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .pass-model .box-title {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.pass-model .pass-form .item-input {
  float: left;
  width: 48.5175202156%;
  margin-bottom: 20px;
}

.pass-model .pass-form .item-input:nth-child(even) {
  float: right;
}

.pass-model .pass-form .item-textarea {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.pass-model .pass-form input, .pass-model .pass-form textarea, .pass-model .pass-form select {
  display: block;
  width: 100%;
  background-color: #f5f5f5;
  padding: 0 10px 0 23px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #666;
}

.pass-model .pass-form input, .pass-model .pass-form select {
  height: 60px;
  line-height: 60px;
}

.pass-model .pass-form textarea {
  height: 169px;
  line-height: 24px;
  padding-top: 11px;
  padding-bottom: 10px;
}

.pass-model .pass-form .item-code {
  width: 66.846361186%;
  float: left !important;
  position: relative;
  overflow: hidden;
}

.pass-model .pass-form .item-code input {
  padding-right: 110px;
}

.pass-model .pass-form .item-img {
  position: absolute;
  right: 0;
  top: 0;
  line-height: 60px;
  font-size: 0;
  border-radius: 0;
  overflow: hidden;
}

.pass-model .pass-form .item-img img {
  max-height: 60px;
  vertical-align: middle;
  cursor: pointer;
}

.pass-model .pass-form .item-btn {
  float: right !important;
  width: 30.1886792453%;
}

.pass-model .pass-form .item-btn input {
  padding: 0 10px;
  border-radius: 6px;
  background-color: #094d3c;
  color: #fff;
  transition: all 0.5s;
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
}

.pass-model .pass-form .item-btn input:hover {
  background-color: #ff5500;
}

@media screen and (max-width: 1219px) {
  .pass-model .pass-form input, .pass-model .pass-form select {
    height: 50px;
    line-height: 50px;
  }
  .pass-model .pass-form input, .pass-model .pass-form textarea, .pass-model .pass-form select {
    font-size: 14px;
    font-size: 1.4rem;
    padding-left: 20px;
  }
  .pass-model .pass-form textarea {
    padding-top: 10px;
  }
  .pass-model .pass-form .item-code input {
    padding-right: 90px;
  }
  .pass-model .pass-form .item-img {
    line-height: 50px;
  }
  .pass-model .pass-form .item-img img {
    max-height: 50px;
  }
  .pass-model .pass-form .item-btn input {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .pass-model .pass-form .item-input, .pass-model .pass-form .item-textarea {
    margin-bottom: 15px;
  }
  .pass-model .pass-form input, .pass-model .pass-form select {
    height: 40px;
    line-height: 40px;
  }
  .pass-model .pass-form input, .pass-model .pass-form textarea, .pass-model .pass-form select {
    font-size: 12px;
    font-size: 1.2rem;
    padding-left: 15px;
  }
  .pass-model .pass-form textarea {
    padding-top: 10px;
    height: 120px;
  }
  .pass-model .pass-form .item-code input {
    padding-right: 70px;
  }
  .pass-model .pass-form .item-img {
    line-height: 40px;
  }
  .pass-model .pass-form .item-img img {
    max-height: 40px;
  }
  .pass-model .pass-form .item-btn input {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 640px) {
  .pass-model .pass-form .item-code, .pass-model .pass-form .item-btn {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .pass-model .pass-form .item-input, .pass-model .pass-form .item-textarea {
    width: 100%;
    margin-bottom: 10px;
  }
  .pass-model .pass-form input, .pass-model .pass-form textarea, .pass-model .pass-form select {
    padding-left: 10px;
  }
}
/*-------------4-3-download end------------------------------------------------------------*/
/*-------------4-4-faq start---------------------------------------------------------------*/
.faq_wrap {
  background: url(../images/bg4.jpg) no-repeat center bottom;
}

.faq-list {
  padding-bottom: 24px;
}

@media screen and (max-width: 991px) {
  .faq-list {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .faq-list {
    padding-bottom: 10px;
  }
}
.faq-list .list-item {
  background-color: #ffffff;
  box-shadow: 0px 2px 10px 0px rgba(42, 98, 173, 0.16);
  border-radius: 20px;
  margin-bottom: 33px;
  padding: 29px 27px 34px;
  transition: all 0.35s;
}

.faq-list .list-item:hover {
  background-color: #094d3c;
  box-shadow: none;
}

.faq-list .list-item:hover .item-title, .faq-list .list-item:hover .item-title *, .faq-list .list-item:hover .item-desc, .faq-list .list-item:hover .item-desc * {
  color: #fff !important;
}

@media screen and (max-width: 1419px) {
  .faq-list .list-item {
    padding: 25px;
  }
}
@media screen and (max-width: 1219px) {
  .faq-list .list-item {
    padding: 20px;
  }
}
@media screen and (max-width: 991px) {
  .faq-list .list-item {
    border-radius: 15px;
  }
}
@media screen and (max-width: 767px) {
  .faq-list .list-item {
    margin-bottom: 25px;
    border-radius: 10px;
    padding: 15px;
  }
}
.faq-list .item-title {
  cursor: pointer;
  position: relative;
  transition: all 0.35s;
  padding-left: 33px;
  line-height: 24px;
  font-size: 20px;
  font-size: 2rem;
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
}

.faq-list .item-title, .faq-list .item-title * {
  color: #094d3c;
}

.faq-list .item-title .item-span {
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (max-width: 1219px) {
  .faq-list .item-title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 991px) {
  .faq-list .item-title {
    font-size: 16px;
    font-size: 1.6rem;
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .faq-list .item-title {
    padding-left: 25px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 20px;
  }
}
.faq-list .item-desc {
  position: relative;
  padding-left: 41px;
  line-height: 28px;
  margin-top: 27px;
  font-size: 16px;
  font-size: 1.6rem;
}

.faq-list .item-desc .item-span {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 20px;
  font-size: 2rem;
  color: #ff5500;
}

@media screen and (max-width: 1419px) {
  .faq-list .item-desc {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1219px) {
  .faq-list .item-desc {
    padding-left: 35px;
    margin-top: 15px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
  }
  .faq-list .item-desc .item-span {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 991px) {
  .faq-list .item-desc {
    padding-left: 30px;
    margin-top: 10px;
  }
  .faq-list .item-desc .item-span {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .faq-list .item-desc {
    padding-left: 25px;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
  .faq-list .item-desc .item-span {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
/*-------------4-4-faq end-----------------------------------------------------------------*/
/*-------------5-1-news start--------------------------------------------------------------*/
.news1-list {
  padding-bottom: 27px;
}

@media screen and (max-width: 991px) {
  .news1-list {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .news1-list {
    padding-bottom: 10px;
  }
}
.news1-list .list-item {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
  background-color: rgba(243, 245, 247, 0.7);
  border-radius: 20px;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .news1-list .list-item {
    border-radius: 15px;
  }
}
@media screen and (max-width: 767px) {
  .news1-list .list-item {
    margin-bottom: 25px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 480px) {
  .news1-list .list-item {
    margin-bottom: 20px;
  }
}
.news1-list .item-pic {
  flex: 0 0 auto;
  width: 30.2857142857%;
  flex-basis: 30.2857142857%;
  margin-right: 5.5714285714%;
  border-radius: 20px;
}

@media screen and (max-width: 1419px) {
  .news1-list .item-pic {
    margin-right: 2.1428571429%;
  }
}
@media screen and (max-width: 991px) {
  .news1-list .item-pic {
    border-radius: 15px;
    width: 35.7142857143%;
    flex-basis: 35.7142857143%;
  }
}
@media screen and (max-width: 767px) {
  .news1-list .item-pic {
    width: 210px;
    flex-basis: 210px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 480px) {
  .news1-list .item-pic {
    width: 35.7142857143%;
    flex-basis: 35.7142857143%;
    min-width: 135px;
  }
}
.news1-list .item-body {
  overflow: hidden;
  flex: 1 1 auto;
  padding-right: 40px;
  padding-bottom: 15px;
}

@media screen and (max-width: 1419px) {
  .news1-list .item-body {
    padding-bottom: 0;
    padding-right: 25px;
  }
}
@media screen and (max-width: 991px) {
  .news1-list .item-body {
    padding-right: 15px;
  }
}
@media screen and (max-width: 640px) {
  .news1-list .item-body {
    padding-right: 10px;
  }
}
.news1-list .item-date {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #666;
  margin-bottom: 11px;
}

@media screen and (max-width: 1219px) {
  .news1-list .item-date {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  .news1-list .item-date {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.news1-list .item-title {
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.news1-list .item-title, .news1-list .item-title a {
  color: #094d3c;
}

.news1-list .item-title a:hover {
  color: #ff5500 !important;
}

@media screen and (max-width: 1419px) {
  .news1-list .item-title {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1219px) {
  .news1-list .item-title {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 991px) {
  .news1-list .item-title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .news1-list .item-title {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 480px) {
  .news1-list .item-title {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 3px;
  }
}
.news1-list .item-desc {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
  max-height: 84px;
  margin-bottom: 38px;
}

.news1-list .item-desc a:hover {
  color: #ff5500 !important;
}

@media screen and (max-width: 1419px) {
  .news1-list .item-desc {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1219px) {
  .news1-list .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
    max-height: 72px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 991px) {
  .news1-list .item-desc {
    line-height: 22px;
    max-height: 66px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .news1-list .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
    max-height: 60px;
  }
}
@media screen and (max-width: 480px) {
  .news1-list .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 18px;
    max-height: 36px;
    margin-bottom: 5px;
  }
  .news1-list .item-desc a {
    -webkit-line-clamp: 2;
  }
}
.news1-list .item-btn {
  display: inline-block;
  font-size: 16px;
  font-size: 1.6rem;
  color: #094d3c;
  line-height: 1.5;
}

.news1-list .item-btn:hover {
  color: #ff5500;
}

@media screen and (max-width: 1219px) {
  .news1-list .item-btn {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 767px) {
  .news1-list .item-btn {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 480px) {
  .news1-list .item-btn {
    display: none;
  }
}
/*-------------5-1-news end----------------------------------------------------------------*/
/*-------------5-2-news start--------------------------------------------------------------*/
.news2-main > .item-title {
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.3;
  margin-bottom: 18px;
}

@media screen and (max-width: 1419px) {
  .news2-main > .item-title {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1219px) {
  .news2-main > .item-title {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 991px) {
  .news2-main > .item-title {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 767px) {
  .news2-main > .item-title {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}
.news2-main > .item-date {
  font-size: 0;
  letter-spacing: 0;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  padding-bottom: 36px;
  margin-bottom: 41px;
}

.news2-main > .item-date > * {
  display: inline-block;
  vertical-align: middle;
}

@media screen and (max-width: 1419px) {
  .news2-main > .item-date {
    padding-bottom: 25px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1219px) {
  .news2-main > .item-date {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .news2-main > .item-date {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
.news2-main > .item-date .item-p {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 24px;
  color: #666;
  margin-right: 40px;
}

@media screen and (max-width: 1419px) {
  .news2-main > .item-date .item-p {
    font-size: 16px;
    font-size: 1.6rem;
    margin-right: 30px;
  }
}
@media screen and (max-width: 1219px) {
  .news2-main > .item-date .item-p {
    font-size: 14px;
    font-size: 1.4rem;
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .news2-main > .item-date .item-p {
    font-size: 12px;
    font-size: 1.2rem;
    margin-right: 10px;
  }
}
.news2-main > .item-desc {
  padding-bottom: 52px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
}

.news2-main > .item-desc, .news2-main > .item-desc * {
  color: #666;
}

.news2-main > .item-desc img, .news2-main > .item-desc iframe {
  max-width: 100%;
}

@media screen and (max-width: 1219px) {
  .news2-main > .item-desc {
    padding-bottom: 30px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
  }
}
@media screen and (max-width: 991px) {
  .news2-main > .item-desc {
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .news2-main > .item-desc {
    padding-bottom: 25px;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}
/*-------------5-2-news end----------------------------------------------------------------*/
/*-------------6-1-contact start-----------------------------------------------------------*/
.contact_wrap {
  padding: 0;
}

.contact_wrap .bread1 {
  display: none;
}

@media screen and (max-width: 991px) {
  .contact_wrap .bread1 {
    display: block;
  }
}
.contact-box {
  background: linear-gradient(#f7f7f7, #fefefe);
  border-radius: 20px;
  width: 1578px;
  margin: -90px auto 68px;
  padding: 45px 93px 45px 113px;
}

@media screen and (max-width: 1619px) {
  .contact-box {
    width: 1400px;
    padding: 45px;
  }
}
@media screen and (max-width: 1419px) {
  .contact-box {
    width: 1200px;
  }
}
@media screen and (max-width: 1219px) {
  .contact-box {
    width: 960px;
  }
}
@media screen and (max-width: 991px) {
  .contact-box {
    background: #f7f7f7;
    width: 720px;
    padding: 45px 30px;
    margin: 50px auto;
  }
}
@media screen and (max-width: 767px) {
  .contact-box {
    width: calc(100% - 30px);
    padding: 30px 15px 20px;
    margin: 30px auto 40px;
  }
}
.contact-box .box-left {
  float: left;
  width: 48.250728863%;
  margin-right: 3.6443148688%;
  padding-top: 24px;
}

@media screen and (max-width: 1419px) {
  .contact-box .box-left {
    padding-top: 0;
  }
}
@media screen and (max-width: 991px) {
  .contact-box .box-left {
    float: none;
    width: 100%;
    margin: 0 auto 50px;
  }
}
@media screen and (max-width: 767px) {
  .contact-box .box-left {
    margin-bottom: 30px;
  }
}
.contact-box .box-left .box-top .box-title {
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 23px;
}

@media screen and (max-width: 1419px) {
  .contact-box .box-left .box-top .box-title {
    font-size: 28px;
    font-size: 2.8rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1219px) {
  .contact-box .box-left .box-top .box-title {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 991px) {
  .contact-box .box-left .box-top .box-title {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .contact-box .box-left .box-top .box-title {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
.contact-box .box-left .box-top .box-desc {
  max-width: 560px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
  color: #666;
  margin-bottom: 68px;
}

@media screen and (max-width: 1419px) {
  .contact-box .box-left .box-top .box-desc {
    line-height: 28px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1219px) {
  .contact-box .box-left .box-top .box-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .contact-box .box-left .box-top .box-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
    margin-bottom: 20px;
  }
}
.contact-box .box-left .box-info {
  margin-bottom: 87px;
}

@media screen and (max-width: 1419px) {
  .contact-box .box-left .box-info {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .contact-box .box-left .box-info {
    margin-bottom: 30px;
  }
}
.contact-box .box-left .box-info:last-child {
  margin-bottom: 0;
}

.contact-box .box-left .box-info .box-title {
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 14px;
}

@media screen and (max-width: 1219px) {
  .contact-box .box-left .box-info .box-title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 991px) {
  .contact-box .box-left .box-info .box-title {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .contact-box .box-left .box-info .box-title {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}
.contact-box .box-left .box-info .info-item {
  position: relative;
  padding-left: 44px;
  margin-bottom: 17px;
}

.contact-box .box-left .box-info .info-item:last-child {
  margin-bottom: 0;
}

.contact-box .box-left .box-info .info-item .item-icon {
  position: absolute;
  left: 0;
  top: 5px;
  color: #094d3c;
  font-size: 24px;
  font-size: 2.4rem;
}

.contact-box .box-left .box-info .info-item .item-subt {
  margin-bottom: 3px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 26px;
}

.contact-box .box-left .box-info .info-item .item-desc {
  font-size: 0;
  letter-spacing: 0;
}

.contact-box .box-left .box-info .info-item .item-desc > * {
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 26px;
  margin-right: 45px;
}

.contact-box .box-left .box-info .info-item .item-desc > *:last-child {
  margin-right: 0;
}

.contact-box .box-left .box-info .info-item .item-desc, .contact-box .box-left .box-info .info-item .item-desc * {
  color: #333;
}

@media screen and (max-width: 1219px) {
  .contact-box .box-left .box-info .info-item {
    padding-left: 40px;
    margin-bottom: 15px;
  }
  .contact-box .box-left .box-info .info-item .item-subt {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
  }
  .contact-box .box-left .box-info .info-item .item-desc > * {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .contact-box .box-left .box-info .info-item {
    padding-left: 30px;
    margin-bottom: 10px;
  }
  .contact-box .box-left .box-info .info-item .item-icon {
    font-size: 20px;
    font-size: 2rem;
  }
  .contact-box .box-left .box-info .info-item .item-subt {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
  .contact-box .box-left .box-info .info-item .item-desc > * {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
    margin-right: 20px;
  }
}
.contact-box .box-right {
  overflow: hidden;
}

.contact-box .box-right .box-title {
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.2;
}

@media screen and (max-width: 1419px) {
  .contact-box .box-right .box-title {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 1219px) {
  .contact-box .box-right .box-title {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 991px) {
  .contact-box .box-right .box-title {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .contact-box .box-right .box-title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.contact-box .box-right .box-form { /* WebKit browsers */
  /* Mozilla Firefox 4 to 18 */
  /* Mozilla Firefox 19+ */
  /* Internet Explorer 10+ */
  margin-bottom: 30px;
}

.contact-box .box-right .box-form ::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}

.contact-box .box-right .box-form :-o-placeholder {
  color: #999;
  opacity: 1;
}

.contact-box .box-right .box-form ::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.contact-box .box-right .box-form :-ms-input-placeholder {
  color: #999;
  opacity: 1;
}

.contact-box .box-right .box-form .box-title {
  margin-bottom: 40px;
}

@media screen and (max-width: 1419px) {
  .contact-box .box-right .box-form .box-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .contact-box .box-right .box-form .box-title {
    margin-bottom: 20px;
  }
}
.contact-box .box-right .box-form .star {
  position: relative;
}

.contact-box .box-right .box-form .star:before {
  position: absolute;
  content: "*";
  color: #ff0000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  left: 17px;
  line-height: 1;
  top: 16px;
}

.contact-box .box-right .box-form .star input, .contact-box .box-right .box-form .star textarea, .contact-box .box-right .box-form .star select {
  padding-left: 21px;
}

.contact-box .box-right .box-form .item-input {
  float: left;
  width: 48.9393939394%;
  margin-bottom: 18px;
}

.contact-box .box-right .box-form .item-input:nth-child(even) {
  float: right;
}

.contact-box .box-right .box-form .item-textarea {
  float: left;
  width: 100%;
  margin-bottom: 24px;
}

.contact-box .box-right .box-form input, .contact-box .box-right .box-form textarea, .contact-box .box-right .box-form select {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border-radius: 4px;
  border: solid 1px #dadada;
  padding: 0 10px 0 17px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #333;
}

.contact-box .box-right .box-form input, .contact-box .box-right .box-form select {
  height: 45px;
  line-height: 43px;
}

.contact-box .box-right .box-form textarea {
  height: 150px;
  line-height: 24px;
  padding-top: 9px;
  padding-bottom: 10px;
}

.contact-box .box-right .box-form .item-code {
  float: left !important;
  width: 48.9393939394%;
  position: relative;
  overflow: hidden;
}

.contact-box .box-right .box-form .item-code input {
  padding-right: 125px;
}

.contact-box .box-right .box-form .item-img {
  position: absolute;
  right: 1px;
  top: 1px;
  line-height: 43px;
  font-size: 0;
  border-radius: 0;
  overflow: hidden;
}

.contact-box .box-right .box-form .item-img img {
  max-height: 43px;
  vertical-align: middle;
  cursor: pointer;
}

.contact-box .box-right .box-form .item-btn {
  float: right !important;
}

.contact-box .box-right .box-form .item-btn input {
  background-color: #094d3c;
  color: #fff;
  transition: all 0.35s;
  font-size: 20px;
  font-size: 2rem;
}

.contact-box .box-right .box-form .item-btn input:hover {
  background-color: #ff5500;
}

@media screen and (max-width: 1219px) {
  .contact-box .box-right .box-form .item-btn input {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .contact-box .box-right .box-form .item-input, .contact-box .box-right .box-form .item-textarea {
    margin-bottom: 15px;
  }
  .contact-box .box-right .box-form input, .contact-box .box-right .box-form textarea, .contact-box .box-right .box-form select {
    font-size: 12px;
    font-size: 1.2rem;
    padding-left: 10px;
  }
  .contact-box .box-right .box-form input {
    height: 38px;
    line-height: 38px;
  }
  .contact-box .box-right .box-form .item-code input {
    padding-right: 105px;
  }
  .contact-box .box-right .box-form .item-img {
    line-height: 36px;
  }
  .contact-box .box-right .box-form .item-img img {
    max-height: 36px;
  }
  .contact-box .box-right .box-form .item-btn input {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .contact-box .box-right .box-form .star:before {
    top: 12px;
    left: 9px;
  }
  .contact-box .box-right .box-form .star input, .contact-box .box-right .box-form .star textarea, .contact-box .box-right .box-form .star select {
    padding-left: 13px;
  }
}
@media screen and (max-width: 480px) {
  .contact-box .box-right .box-form .item-input, .contact-box .box-right .box-form .item-textarea {
    width: 100%;
    margin-bottom: 10px;
  }
  .contact-box .box-right .box-form .item-code {
    width: 100%;
  }
  .contact-box .box-right .box-form .item-img {
    float: right;
  }
  .contact-box .box-right .box-form .item-btn input {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.contact-box .box-right .box-follow .box-title {
  margin-bottom: 54px;
}

@media screen and (max-width: 1419px) {
  .contact-box .box-right .box-follow .box-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .contact-box .box-right .box-follow .box-title {
    margin-bottom: 20px;
  }
}
.contact-box .box-right .box-follow .box-list {
  font-size: 0;
  letter-spacing: 0;
}

.contact-box .box-right .box-follow .box-list .list-item {
  display: inline-block;
  vertical-align: top;
  width: 30.9090909091%;
  margin-left: 3.6363636364%;
  margin-bottom: 27px;
}

.contact-box .box-right .box-follow .box-list .list-item:nth-child(3n+1) {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .contact-box .box-right .box-follow .box-list .list-item {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 400px) {
  .contact-box .box-right .box-follow .box-list .list-item {
    width: 49%;
    margin-left: 2%;
  }
  .contact-box .box-right .box-follow .box-list .list-item:nth-child(3n+1) {
    margin-left: 2%;
  }
  .contact-box .box-right .box-follow .box-list .list-item:nth-child(odd) {
    margin-left: 0;
  }
}
.contact-box .box-right .box-follow .box-list .item-title {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
  padding-left: 47px;
  position: relative;
}

.contact-box .box-right .box-follow .box-list .item-title .iconfont {
  font-size: 24px;
  font-size: 2.4rem;
  position: absolute;
  left: 5px;
  top: 0;
  color: #094d3c;
}

@media screen and (max-width: 1219px) {
  .contact-box .box-right .box-follow .box-list .item-title {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 28px;
  }
}
@media screen and (max-width: 767px) {
  .contact-box .box-right .box-follow .box-list .item-title {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 28px;
    padding-left: 40px;
  }
  .contact-box .box-right .box-follow .box-list .item-title .iconfont {
    font-size: 20px;
    font-size: 2rem;
  }
}
.contact-box .box-right .box-follow .box-list .item-pic {
  margin-left: 44px;
  max-width: 157px;
}

@media screen and (max-width: 767px) {
  .contact-box .box-right .box-follow .box-list .item-pic {
    max-width: 130px;
    margin-left: 34px;
  }
}
.map img, .map iframe {
  max-width: 100%;
  display: block;
}

/*-------------6-1-contact end-------------------------------------------------------------*/
/*-------------6-2-contact start-----------------------------------------------------------*/
@media screen and (min-width: 1220px) {
  .zp_wrap {
    padding-bottom: 81px;
  }
}
.zp-head {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  background-color: #ededed;
  border-radius: 10px;
  margin-bottom: 6px;
  padding: 29px 23px 31px;
}

@media screen and (max-width: 1419px) {
  .zp-head {
    padding: 25px 20px;
  }
}
@media screen and (max-width: 1219px) {
  .zp-head {
    padding: 15px;
  }
}
@media screen and (max-width: 767px) {
  .zp-head {
    padding: 10px;
  }
}
@media screen and (max-width: 480px) {
  .zp-head {
    flex-wrap: wrap;
  }
}
.zp-head li {
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.3;
  padding-right: 20px;
}

.zp-head li.item1 {
  width: 25.0369276219%;
  color: #094d3c;
}

.zp-head li.item2 {
  width: 35.4505169867%;
}

.zp-head li.item3 {
  width: 24.8892171344%;
}

.zp-head li.item4 {
  width: 14.623338257%;
  padding-right: 0;
}

@media screen and (max-width: 1219px) {
  .zp-head li {
    font-size: 18px;
    font-size: 1.8rem;
    padding-right: 15px;
    width: 25% !important;
  }
}
@media screen and (max-width: 991px) {
  .zp-head li {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 767px) {
  .zp-head li {
    font-size: 14px;
    font-size: 1.4rem;
    padding-right: 10px;
  }
}
@media screen and (max-width: 480px) {
  .zp-head li {
    width: 50% !important;
  }
  .zp-head li.item1, .zp-head li.item2 {
    margin-bottom: 10px;
  }
  .zp-head li.item2 {
    margin-right: 0;
  }
}
.zp-list {
  padding-bottom: 13px;
}

.zp-list .list-item {
  margin-bottom: 32px;
}

@media screen and (max-width: 1419px) {
  .zp-list .list-item {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1219px) {
  .zp-list .list-item {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .zp-list .list-item {
    margin-bottom: 15px;
  }
}
.zp-list .list-item.active .item-head {
  background-color: #094d3c;
  color: #fff;
}

.zp-list .item-head {
  cursor: pointer;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  background-color: #ededed;
  border-radius: 10px;
  padding: 17px 23px 8px;
}

@media screen and (max-width: 1419px) {
  .zp-list .item-head {
    padding: 15px 20px 10px;
  }
}
@media screen and (max-width: 1219px) {
  .zp-list .item-head {
    padding: 15px 15px 10px;
  }
}
@media screen and (max-width: 767px) {
  .zp-list .item-head {
    padding: 10px;
  }
}
@media screen and (max-width: 480px) {
  .zp-list .item-head {
    flex-wrap: wrap;
  }
}
.zp-list .item-head dd {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.3;
  padding-right: 20px;
}

.zp-list .item-head dd.item1 {
  width: 25.0369276219%;
}

.zp-list .item-head dd.item2 {
  width: 35.4505169867%;
}

.zp-list .item-head dd.item3 {
  width: 24.8892171344%;
}

.zp-list .item-head dd.item4 {
  width: 14.623338257%;
  padding-right: 0;
}

@media screen and (max-width: 1219px) {
  .zp-list .item-head dd {
    font-size: 14px;
    font-size: 1.4rem;
    padding-right: 15px;
    width: 25% !important;
  }
}
@media screen and (max-width: 991px) {
  .zp-list .item-head dd {
    line-height: 1.2;
  }
}
@media screen and (max-width: 767px) {
  .zp-list .item-head dd {
    font-size: 12px;
    font-size: 1.2rem;
    padding-right: 10px;
  }
}
@media screen and (max-width: 480px) {
  .zp-list .item-head dd {
    width: 50% !important;
  }
  .zp-list .item-head dd.item1, .zp-list .item-head dd.item2 {
    margin-bottom: 10px;
  }
  .zp-list .item-head dd.item2 {
    margin-right: 0;
  }
}
.zp-list .item-body {
  padding: 40px 23px 20px;
}

@media screen and (max-width: 1219px) {
  .zp-list .item-body {
    padding: 20px 15px;
  }
}
@media screen and (max-width: 767px) {
  .zp-list .item-body {
    padding: 20px 10px 10px;
  }
}
.zp-list .item-body .item-title {
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 22px;
}

@media screen and (max-width: 1219px) {
  .zp-list .item-body .item-title {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .zp-list .item-body .item-title {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}
.zp-list .item-body .item-desc strong {
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.3;
  color: #333;
  padding-bottom: 22px;
  display: block;
}

.zp-list .item-body .item-desc {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
  margin-bottom: 44px;
}

@media screen and (max-width: 1219px) {
  .zp-list .item-body .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .zp-list .item-body .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
    margin-bottom: 20px;
  }
}
.zp-list .item-body .item-btn {
  text-align: center;
  margin-top: -28px;
}

@media screen and (max-width: 1219px) {
  .zp-list .item-body .item-btn {
    margin-top: 0;
  }
}
/*-------------6-2-contact end-------------------------------------------------------------*/
@media screen and (min-width: 992px) {
  .n-nav,
  .n-nav-icon {
    display: none;
  }
}
@keyframes resize {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale(5, 5);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
.n-nav .n-nav-icon {
  position: fixed;
  right: 5px;
  top: 8px;
  width: 35px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  transition: all 0.4s ease 0s;
  z-index: 999999999;
}

.n-nav .n-nav-icon .iconfont {
  font-size: 20px;
  font-size: 2rem;
  color: #ff5500;
}

.n-nav .n-nav-icon span {
  display: none;
  width: 100%;
  height: 2px;
  margin-bottom: 4px;
  background-color: #ff5500;
}

.n-nav .n-nav-icon.active {
  top: 5px;
  background: #094d3c url(../fonts/nav-close.png) no-repeat center;
  background-size: 30px;
}

.n-nav .n-nav-icon.active span, .n-nav .n-nav-icon.active .iconfont {
  display: none;
}

.n-nav .n-nav-body {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  bottom: 0;
  width: 100%;
  left: 0;
  overflow-y: scroll;
  background-color: #094d3c;
  padding-top: 40px;
}

.n-nav .box-search {
  background-color: #fff;
  padding: 5px 10px;
  position: relative;
  border: solid 1px #ff5500;
  margin: 5px 10px;
}

.n-nav .box-search .item-input {
  width: 100%;
  line-height: 32px;
  height: 32px;
  padding: 0 60px 0 0;
}

.n-nav .box-search .iconfont {
  font-weight: bold;
  background-color: #ff5500;
  width: 44px;
  height: 32px;
  line-height: 32px;
  border-radius: 5px;
  color: #fff;
  text-align: center;
  position: absolute;
  right: 10px;
  top: 5px;
  z-index: 0;
}

.n-nav .box-search .iconfont:hover {
  background-color: #094d3c;
}

.n-nav .box-search .item-submit {
  position: absolute;
  width: 44px;
  height: 32px;
  right: 10px;
  top: 5px;
  z-index: 1;
}

.n-nav .box-list {
  margin-top: 30px;
}

.n-nav .box-list > li {
  position: relative;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: resize;
  transition: all 0.5s;
  padding: 0 10px;
}

.n-nav .box-list > li a {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 26px;
  padding: 10px 25px 10px 10px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.n-nav .box-list li {
  position: relative;
}

.n-nav .box-list li .has-next {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background: url(../fonts/n1.png) no-repeat center;
  background-size: contain;
  transition: all 0.5s;
  cursor: pointer;
}

.n-nav .box-list li.active > .has-next {
  background: url(../fonts/n2.png) no-repeat center;
  background-size: contain;
}

.n-nav .box-list .yiji-list {
  display: none;
}

.n-nav .box-list .yiji-list li {
  padding-left: 12px;
}

.n-nav .box-list .yiji-list li .has-next {
  right: 0;
}

.n-nav .box-list .yiji-list li > a {
  padding: 10px 25px 10px 20px;
  line-height: 22px;
  position: relative;
}

.n-nav .box-list .yiji-list li > a:before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background-color: #fff;
  top: 19px;
  left: 10px;
}

.n-nav .box-list .erji-list {
  display: none;
}

.n-nav .box-list .sanji-list {
  display: none;
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut {
  animation-duration: 0.75s;
}

.animated.flipOutX,
.animated.flipOutY {
  animation-duration: 0.75s;
}
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  0% {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  0% {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes jello {
  11.1% {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
  100% {
    transform: none;
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  100% {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  100% {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    transform: perspective(400px);
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    transform: perspective(400px);
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }
  100% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInStable {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  33.333% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  66.666666% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.zoomInStable {
  animation-name: zoomInStable;
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}
@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

@keyframes anime {
  from {
    opacity: 0;
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    -moz-transform: scaleY(1);
  }
}
@font-face {
  font-family: "ArialMT";
  src: url("../fonts/ArialMT.eot");
  src: url("../fonts/ArialMT.eot") format("embedded-opentype"), url("../fonts/ArialMT.woff2") format("woff2"), url("../fonts/ArialMT.woff") format("woff"), url("../fonts/ArialMT.ttf") format("truetype"), url("../fonts/ArialMT.svg#ArialMT") format("svg");
  font-display: swap;
}
@font-face {
  font-family: "Arial-BoldMT";
  src: url("../fonts/Arial-BoldMT.eot");
  src: url("../fonts/Arial-BoldMT.eot") format("embedded-opentype"), url("../fonts/Arial-BoldMT.woff2") format("woff2"), url("../fonts/Arial-BoldMT.woff") format("woff"), url("../fonts/Arial-BoldMT.ttf") format("truetype"), url("../fonts/Arial-BoldMT.svg#Arial-BoldMT") format("svg");
  font-display: swap;
}
@font-face {
  font-family: "iconfont"; /* Project id 4976276 */
  src: url("../fonts/iconfont.woff2?t=1753034921116") format("woff2"), url("../fonts/iconfont.woff?t=1753034921116") format("woff"), url("../fonts/iconfont.ttf?t=1753034921116") format("truetype");
}
.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-size: 1.6rem;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-icons-hqew-:before {
  content: "\e64e";
}

.icon-message:before {
  content: "\ebe1";
}

.icon-whatsapp1:before {
  content: "\e7c4";
}

.icon-contact1:before {
  content: "\e7c5";
}

.icon-email1:before {
  content: "\e7c8";
}

.icon-address1:before {
  content: "\e7cd";
}

.icon-skype1:before {
  content: "\e7ce";
}

.icon-qq1:before {
  content: "\e7cf";
}

.icon-wechat1:before {
  content: "\e7d0";
}

.icon-website:before {
  content: "\e7d1";
}

.icon-phone2:before {
  content: "\e7d2";
}

.icon-mobile1:before {
  content: "\e7d3";
}

.icon-fax-fill:before {
  content: "\e621";
}

.icon-xiaohongshu1:before {
  content: "\e6ad";
}

.icon-xiaohongshu:before {
  content: "\e626";
}

.icon-kwai:before {
  content: "\e654";
}

.icon-address:before {
  content: "\e7bc";
}

.icon-contact:before {
  content: "\e7be";
}

.icon-whatsapp:before {
  content: "\e7bf";
}

.icon-wechat:before {
  content: "\e7c1";
}

.icon-fax:before {
  content: "\e7c2";
}

.icon-mobile:before {
  content: "\e7c3";
}

.icon-phone1:before {
  content: "\e7c6";
}

.icon-tel:before {
  content: "\e7c7";
}

.icon-website1:before {
  content: "\e7c9";
}

.icon-qq:before {
  content: "\e7ca";
}

.icon-phone11:before {
  content: "\e7cb";
}

.icon-skype:before {
  content: "\e7cc";
}

.icon-message2:before {
  content: "\e7dc";
}

.icon-companyname:before {
  content: "\e610";
}

.icon-shouji:before {
  content: "\e658";
}

.icon-youxiang1:before {
  content: "\e69d";
}

.icon-dizhi:before {
  content: "\e91b";
}

.icon-xiazai2:before {
  content: "\e60e";
}

.icon-linkedin:before {
  content: "\e648";
}

.icon-youtube:before {
  content: "\e6d6";
}

.icon-instagram1:before {
  content: "\e87f";
}

.icon-tiktok:before {
  content: "\ecdc";
}

.icon-twitter-new2:before {
  content: "\e800";
}

.icon-phone:before {
  content: "\e640";
}

.icon-youxiang:before {
  content: "\e600";
}

.icon-facebook:before {
  content: "\e620";
}

.icon-vk:before {
  content: "\e757";
}

.icon-pinterest:before {
  content: "\e8ab";
}

.icon-sousuo2:before {
  content: "\e61c";
}

.icon-up7:before {
  content: "\e722";
}

.icon-bottom7:before {
  content: "\e723";
}

.icon-left7:before {
  content: "\e724";
}

.icon-right7:before {
  content: "\e725";
}

.icon-up9:before {
  content: "\e72a";
}

.icon-bottom9:before {
  content: "\e72b";
}

.icon-left9:before {
  content: "\e72c";
}

.icon-right9:before {
  content: "\e72d";
}

.icon-up16:before {
  content: "\e746";
}

.icon-bottom16:before {
  content: "\e747";
}

.icon-left16:before {
  content: "\e748";
}

.icon-right16:before {
  content: "\e749";
}

.icon-top10:before {
  content: "\e7ee";
}

.icon-bottom10:before {
  content: "\e7ef";
}

.icon-left10:before {
  content: "\e7f0";
}

.icon-right10:before {
  content: "\e7f1";
}

.icon-sanjiaoxing:before {
  content: "\e6e6";
}

.icon-sanjiaoxing_shang:before {
  content: "\e6e7";
}

.icon-sousuo-2:before {
  content: "\e65b";
}

.icon-right-arrow:before {
  content: "\e9ef";
}

.icon-caidan:before {
  content: "\e642";
}

.icon-liebiao:before {
  content: "\e834";
}

.icon-icon-test10:before {
  content: "\e651";
}

.icon-icon-test12:before {
  content: "\e653";
}

.icon-search:before {
  content: "\e602";
}

.icon-list:before {
  content: "\e671";
}

.icon-earth-full:before {
  content: "\e9ee";
}

.icon-close:before {
  content: "\e839";
}

/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
  transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
  float: left;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}

.owl-controls {
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
/* .grabbing { 
    cursor:url(grabbing.png) 8 8, move;
} */
/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/
.owl-theme .owl-controls {
  text-align: center;
  font-size: 0;
  line-height: 0;
}

/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-buttons {
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
}

.owl-theme .owl-controls .owl-buttons div {
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
  font-size: 1.2rem;
}

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
/* Styling Pagination*/
.owl-theme .owl-controls .owl-pagination {
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
  display: block;
  line-height: 0;
  background-color: transparent;
  border-radius: 0;
  margin-top: 60px;
}

@media screen and (max-width: 1419px) {
  .owl-theme .owl-controls .owl-pagination {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1219px) {
  .owl-theme .owl-controls .owl-pagination {
    margin-top: 40px;
  }
}
@media screen and (max-width: 991px) {
  .owl-theme .owl-controls .owl-pagination {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .owl-theme .owl-controls .owl-pagination {
    margin-top: 20px;
  }
}
.owl-theme .owl-controls .owl-page {
  display: inline-block;
  vertical-align: top;
  vertical-align: middle;
  transition: all 0.3s;
  margin: 0 4px;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: #bebebe;
}

@media screen and (max-width: 767px) {
  .owl-theme .owl-controls .owl-page {
    margin: 0 3px;
    width: 6px;
    height: 6px;
  }
}
.owl-theme .owl-controls .owl-page span {
  display: block;
  font-size: 0;
  line-height: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  margin: 0;
  display: none;
}

.owl-theme .owl-controls .owl-page.active,
.owl-theme .owl-controls.clickable .owl-page:hover {
  width: 20px;
  background-color: #094d3c;
}

@media screen and (max-width: 767px) {
  .owl-theme .owl-controls .owl-page.active,
  .owl-theme .owl-controls.clickable .owl-page:hover {
    width: 16px;
  }
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  background-color: #094d3c;
}

/* If PaginationNumbers is true */
.owl-theme .owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  border-radius: 30px;
}

/* preloading images */
.owl-item.loading {
  min-height: 150px;
  background: url(AjaxLoader.gif) no-repeat center center;
}

/**
 * Swiper 10.3.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 21, 2023
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  overflow: clip;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg, .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-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: flex;
  justify-content: 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%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}

.slick-slider {
  position: relative;
  display: block;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: 0;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track, .slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  outline: 0;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-prev, .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  cursor: pointer;
  transform: translate(0, -50%);
  color: transparent;
  border: 0;
  outline: 0;
  background: transparent;
}

.slick-prev {
  left: 0;
}

[dir=rtl] .slick-prev {
  right: 0;
  left: auto;
}

.slick-next {
  right: 0;
}

[dir=rtl] .slick-next {
  right: auto;
  left: 0;
}

.slick-dots {
  position: absolute;
  bottom: 15px;
  display: block;
  width: 100%;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  font-size: 0;
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  cursor: pointer;
  transition: all 0.3s ease-out 0s;
  vertical-align: middle;
  border-radius: 50%;
  background: #ccc;
}

.slick-dots li button {
  display: none;
}

.slick-dots li.slick-active {
  background: #666;
}

.zzzs3slide {
  width: 22.39%;
}

.zzzs3slide img {
  width: 100%;
  display: block;
}

.honor-wp {
  position: relative;
  width: calc(100% - 200px);
  margin: 0 auto;
  /*padding: 0 60px;*/
   padding:  0 116px;
   max-width: 1536px;
}

.honor-wp .zzzNext {
  right: 0;
}

.honor-wp .zzzPrev {
  left: 0;
}

.zzzs3swiper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.zzzs3swiper .swiper-slide-active .zzzName {
  opacity: 1;
}

.zzzImg {
  box-shadow: 5px 15px 20px rgba(0, 0, 0, 0.08);
}

.zzzName {
  font-size: 1.8rem;
  line-height: 1.3;
  text-align: center;
  margin-top: 17px;
  color: #333;
  opacity: 0;
  transition: 0.2s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.zzzQie {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 10px;
  font-size: 23px;
  font-size: 2.3rem;
  color: #666;
  background-color: #e5e5e5;
  transition: all 0.35s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
}

.zzzQie:hover {
  background-color: #094d3c;
  color: #fff;
}

.zzzPrev {
  left: 50px;
}

.zzzNext {
  right: 50px;
}

@media screen and (max-width: 991px) {
  .honor-wp {
    width: 96%;
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .zzzPrev {
    left: 10px;
  }
  .zzzNext {
    right: 10px;
  }
  .zzzQie {
    top: 44%;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .zzzName {
    font-size: 14px;
    font-size: 1.2rem;
  }
}
/* æŽ§ä»¶ */
.mod_controls1_list_nub, .mod_controls1 {
  position: relative;
  z-index: 2;
}

.mod_controls1::before {
  content: "";
  height: 16px;
  border-radius: 16px;
  background: rgb(245, 245, 245);
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.mod_controls1::after {
  content: "";
  height: 16px;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  background: #094d3c;
  width: 6.6666666667%;
  left: 0px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* åˆ‡æ¢ç®­å¤´ */
.mod_arrows2 .swiper-button-prev,
.mod_arrows2 .swiper-button-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #EBEBED;
  /* box-shadow: 0px 6px 19px rgba(170, 178, 179, 0.24); */
  transition: all 0.36s;
  margin-top: 0;
  transform: translateY(-50%);
}

.mod_arrows2 .swiper-button-next {
  right: 0px;
  top: 0;
}

.mod_arrows2 .swiper-button-prev {
  left: 0px;
  top: 0;
}

.mod_arrows2 .swiper-button-prev::before,
.mod_arrows2 .swiper-button-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 16px;
  background-size: 100% 100%;
  z-index: 2;
}

.mod_arrows2 .swiper-button-next:after,
.mod_arrows2 .swiper-button-prev:after {
  display: none;
}

/* è½®æ’­ç‚¹ */
.mod_controls1_list {
  display: flex;
  justify-content: center;
  /* margin: 0 -72px; */
}

.mod_controls1_list_nub {
  padding: 52px 72px;
  width: 14%;
  cursor: pointer;
}

.mod_controls1_list_nub span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  margin: 0 auto;
  display: block;
  border: solid 2px #094d3c;
  z-index: 3;
}

.mod_controls1_list_nub span::before,
.mod_controls1_list_nub span::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.mod_controls1_list_nub .std_title6 {
  font-size: 20px;
  line-height: 1.75;
  color: #676B77;
  transition: all 0.36s;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: "playbold", arial !important;
}

.mod_controls1_list_nub.on .std_title6 {
  color: #094d3c;
}

.mod_controls1_list_nub.on::after {
  animation: pathlu 4s linear forwards;
}

.mod_controls1_list_nub:last-child.on::after {
  animation: none;
}

.mod_controls1_list_nub::after {
  content: "";
  height: 16px;
  background: #094d3c;
  width: 0;
  position: absolute;
  left: 46%;
  top: 50%;
  transform: translateY(-50%);
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.mod_controls1_list_nub:not(.on)::after {
  width: 103%;
}

.mod_controls1_list_nub.on ~ .mod_controls1_list_nub::after {
  width: 0;
}

@keyframes pathlu {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.mod_controls1_list .slick-track {
  width: 100%;
  white-space: nowrap;
}

.mod_controls1_list .slick-list {
  width: 100%;
}

.ys_develop1_list_nub.swiper-slide-prev .ydln_text_year_font2,
.ys_develop1_list_nub.swiper-slide-next .ydln_text_year_font2,
.ys_develop1_list_nub.swiper-slide-prev .std_text2,
.ys_develop1_list_nub.swiper-slide-next .std_text2,
.ys_develop1_list_nub.swiper-slide-prev .ydln_img,
.ys_develop1_list_nub.swiper-slide-next .ydln_img {
  opacity: 0;
  pointer-events: none;
}

.ys_develop1_list_nub.swiper-slide-prev .ydln_text_year_font1 {
  transform: translateX(calc(1200px - 100%));
  transition: all 1.2s;
}

/* æ»šåŠ¨æ¡ */
.mCSB_scrollTools .mCSB_draggerRail {
  width: 1px;
}

.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #E6E6E6;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 1px;
}

.mCSB_scrollTools.mCS-dark .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools.mCS-dark .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #4a6cf7;
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #4a6cf7;
}

.intro_hist {
  width: 100%;
  background: #fff;
  position: relative;
}

.intro_main .mod_link_bj img {
  object-fit: cover;
}

.ys_develop1 h2 {
  text-align: center;
}

.ys_develop1 {
  overflow: hidden;
}

.modQie {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 10px;
  font-size: 23px;
  font-size: 2.3rem;
  color: #666;
  background-color: #e5e5e5;
  transition: all 0.35s;
  transform: translateY(-50%);
  position: absolute;
  top: 0px;
}

.modNext {
  right: 0;
}

.modPrev {
  left: 0;
}

.modQie:hover {
  background-color: #094d3c;
  color: #ffffff;
}

.mod_controls1_list {
  margin-top: 50px;
}

.deveYear {
  font-family: "Arial-BoldMT", arial, helvetica, sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

.deveTxt {
  width: 100%;
  font-size: 16px;
  line-height: 28px;
  margin-top: 20px;
}

.deveTxt p {
  line-height: 28px;
}

@media screen and (min-width: 1220px) {
  .about-fac .page-title {
    margin-bottom: 40px;
  }
  /*.about-cer .page-title {*/
  /*  margin-bottom: 20px;*/
  /*}*/
  .about-cer {
    padding: 20px 0;
  }
}
.a1m1-caro-n {
  position: relative;
}

.a1m1-img {
  border-radius: 20px;
  overflow: hidden;
}

.a1m1-img img {
  display: block;
}

.a1m1-caro-n .sw-btn > div {
  cursor: pointer;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 10px;
  font-size: 23px;
  font-size: 2.3rem;
  color: #666;
  background-color: #e5e5e5;
  transition: all 0.35s;
  position: absolute;
  top: 50%;
  z-index: 9;
}

.a1m1-caro-n .sw-btn > div:hover {
  background-color: #094d3c;
  color: #fff;
}

.a1m1-caro-n .a1m1-prev {
  left: 0;
  transform: translate(-128%, -50%);
}

.a1m1-caro-n .a1m1-next {
  right: 0;
  transform: translate(128%, -50%);
}

@media screen and (max-width: 1600px) {
  .a1m1-caro-n {
    margin: 0 80px;
  }
}
@media screen and (max-width: 1419px) {
  .a1m1-caro-n .sw-btn > div {
    width: 44px;
    height: 44px;
    line-height: 44px;
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 1219px) {
  .a1m1-caro-n .sw-btn > div {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 991px) {
  .a1m1-caro-n .sw-btn > div {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    font-size: 1.6rem;
    position: initial;
    transform: initial;
    margin-top: 20px;
  }
  .a1m1-caro-n {
    margin: 0;
  }
  .a1m1-caro-n .sw-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .a1m1-caro-n .sw-btn > div {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.about-cer {
  background-color: #fff;
}

.cer-trun {
  margin: 0 auto;
  width: 80%;
  position: relative;
  height: 0;
  padding-bottom: 40%;
  overflow: hidden;
}

.cer-trun iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.cer-trun iframe body {
  margin: 0px !important;
}

.cer-btm {
  margin-top: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 36px;
  color: #555555;
  text-align: center;
}

@media screen and (max-width: 999px) {
  .cer-trun {
    padding-bottom: 84%;
  }
}
@media screen and (max-width: 767px) {
  .cer-trun {
    padding-bottom: 100%;
  }
}
.g-wp {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #f5f5f5;
  margin-top: 40px;
}
@media screen and (max-width: 991px) {
  .g-wp {
    margin-top: 30px;
    padding-left: 2%;
    padding-right: 2%;
  }
}

.g-mn {
  order: 2;
  width: 72.3958333333%;
  padding-left: 40px;
  padding-right: calc((100vw - 1400px) / 2);
  background-color: #fff;
  padding-bottom: 100px;
  align-self: stretch;
}
@media screen and (max-width: 1419px) {
  .g-mn {
    padding-right: calc((100vw - 1200px) / 2);
    padding-left: 30px;
  }
}
@media screen and (max-width: 1219px) {
  .g-mn {
    padding-bottom: 40px;
    padding-right: calc((100vw - 960px) / 2);
  }
}
@media screen and (max-width: 991px) {
  .g-mn {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.g-sd {
  position: sticky;
  left: 0;
  top: 100px;
  width: 27.6041666667%;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}
@media screen and (max-width: 1219px) {
  .g-sd {
    top: 80px;
    max-height: calc(100vh - 80px);
  }
}
@media screen and (max-width: 991px) {
  .g-sd {
    position: relative;
    top: 0;
    width: 100%;
    max-height: inherit;
    order: 2;
    margin-top: 30px;
  }
}

.m-sdnav1 .nav-item {
  position: relative;
}
.m-sdnav1 .nav-item > a {
  position: relative;
  display: block;
  padding-top: 24px;
  padding-bottom: 24px;
  /*padding-right: 60px;
  padding-left: 36px;*/
    padding-right: 52px;
  padding-left: 20px;
  line-height: 30px;
  font-size: 20px;
  font-size: 2rem;
  text-transform: uppercase;
}

.m-sdnav1 .nav-item > a .icon {
  position: absolute;
  right: 30px;
  top: 28px;
  width: 21px;
  height: 17px;
  background: url("../images/sdnav-icon1.png") no-repeat center;
  background-size: 100%;
}
.m-sdnav1 .nav-item > a:hover, .m-sdnav1 .nav-item > a.active {
  color: #fff;
  background-color: #094d3c;
}
.m-sdnav1 .nav-item > a:hover .icon, .m-sdnav1 .nav-item > a.active .icon {
  background-image: url("../images/sdnav-icon2.png");
}
.m-sdnav1 .nav-item:first-child {
  margin-top: 0;
}
.m-sdnav1 .sbnav-list {
  display: none;
}
.m-sdnav1 .sbnav-list.show {
  display: block;
}
.m-sdnav1 .sbnav-list1 {
  padding-left: 36px;
  padding-right: 60px;
}
.m-sdnav1 .sbnav-item1 > a {
  padding-top: 18px;
  padding-bottom: 18px;
  position: relative;
  display: block;
  line-height: 30px;
  font-size: 18px;
  font-size: 1.8rem;
  color: #4e4e4e;
  padding-left: 14px;
}
.m-sdnav1 .sbnav-item1 > a .icon {
  margin-left: 5px;
  font-size: 10px;
  font-size: 1rem;
}
.m-sdnav1 .sbnav-item1 > a .icon-bottom7 {
  display: none;
}
.m-sdnav1 .sbnav-item1 > a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 2px;
  height: 30px;
  background-color: #949494;
}
.m-sdnav1 .sbnav-item1 > a:hover, .m-sdnav1 .sbnav-item1 > a.active {
  color: #094d3c;
}
.m-sdnav1 .sbnav-item1 > a:hover .icon-right7, .m-sdnav1 .sbnav-item1 > a.active .icon-right7 {
  display: none;
}
.m-sdnav1 .sbnav-item1 > a:hover .icon-bottom7, .m-sdnav1 .sbnav-item1 > a.active .icon-bottom7 {
  display: inline;
}
.m-sdnav1 .sbnav-item1:first-child {
  margin-top: 0;
}
.m-sdnav1 .sbnav-item2 > a {
  position: relative;
  display: block;
  padding-left: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 28px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #4e4e4e;
}
.m-sdnav1 .sbnav-item2 > a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.m-sdnav1 .sbnav-item2 > a:hover, .m-sdnav1 .sbnav-item2 > a.active {
  color: #094d3c;
  font-weight: 100;
}
.m-sdnav1 .sbnav-item2 > a:hover:before, .m-sdnav1 .sbnav-item2 > a.active:before {
  background-color: #094d3c;
}
@media screen and (max-width: 1219px) {
  .m-sdnav1 .nav-item > a {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 35px;
    line-height: 20px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .m-sdnav1 .nav-item > a .icon {
    right: 10px;
    top: 15px;
  }
  .m-sdnav1 .sbnav-list1 {
    padding-left: 20px;
    padding-right: 35px;
  }
  .m-sdnav1 .sbnav-item1 > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .m-sdnav1 .sbnav-item1 > a:before {
    top: 10px;
    height: 20px;
  }
  .m-sdnav1 .sbnav-item2 > a {
    padding-top: 5px;
    padding-bottom: 5px;
    line-height: 20px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .m-sdnav1 .sbnav-item2 > a:before {
    top: 12px;
  }
}
@media screen and (max-width:1700px) {
    .m-sdnav1 .nav-item > a{font-size: 1.7rem;}}
@media screen and (max-width:1500px) {
    .m-sdnav1 .nav-item > a {font-size: 1.4rem;}
    .m-sdnav1 .sbnav-item1 > a{font-size: 1.4rem;}
}

.index-case {
  overflow: hidden;
}

.m-prol {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 30px;
}
.m-prol .list-item {
  margin-right: 1.1009174312%;
  margin-bottom: 47px;
  width: 32.5688073394%;
}
.m-prol .list-item:nth-child(3n) {
  margin-right: 0;
}
.m-prol .item-pic {
  border-radius: 20px;
  border: 1px solid #cfcfcf;
}
.m-prol .item-title {
  margin-top: 25px;
  height: 56px;
  line-height: 28px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.m-prol .item-title a {
  line-height: 28px;
  font-size: 18px;
  font-size: 1.8rem;
}
.m-prol .item-link {
  margin-top: 30px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}
.m-prol .item-link input, .m-prol .item-link a {
  margin-right: 20px;
  margin-bottom: 5px;
}
.m-prol .item-link input:last-child, .m-prol .item-link a:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1440px) {
  .m-prol {
    padding-bottom: 10px;
  }
  .m-prol .list-item {
    margin-bottom: 30px;
  }
  .m-prol .item-title {
    margin-top: 10px;
    height: 40px;
    line-height: 20px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .m-prol .item-title a {
    line-height: 20px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .m-prol .item-link {
    margin-top: 15px;
  }
  .m-prol .item-link input, .m-prol .item-link a {
    margin-right: 5px;
  }
}
@media screen and (max-width: 640px) {
  .m-prol .list-item {
    margin-left: 1%;
    margin-right: 1% !important;
    width: 48%;
  }
}
@media screen and (max-width: 375px) {
  .m-prol .list-item {
    width: 98%;
  }
}

.m-probanner {
  height: 360px;
}
.m-probanner .item-title {
  color: #333;
}
.m-probanner .item-title a {
  color: #333;
}
@media screen and (max-width: 991px) {
  .m-probanner {
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .m-probanner {
    height: auto;
  }
}