/*!
 * fullPage 3.0.5
 * https://github.com/alvarotrigo/fullPage.js
 *
 * @license GPLv3 for open source use only
 * or Fullpage Commercial License for commercial use
 * http://alvarotrigo.com/fullPage/pricing/
 *
 * Copyright (C) 2018 http://alvarotrigo.com/fullPage - A project by Alvaro Trigo
 */
html.fp-enabled,
.fp-enabled body {
    margin: 0;
    padding: 0;
    overflow:hidden;

    /*Avoid flicker on slides transitions for mobile phones #336 */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.fp-section {
    position: relative;
    -webkit-box-sizing: border-box; /* Safari<=5 Android<=3 */
    -moz-box-sizing: border-box; /* <=28 */
    box-sizing: border-box;
}
.fp-slide {
    float: left;
}
.fp-slide, .fp-slidesContainer {
    height: 100%;
    display: block;
}
.fp-slides {
    z-index:1;
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s ease-out; /* Safari<=6 Android<=4.3 */
    transition: all 0.3s ease-out;
}
.fp-section.fp-table, .fp-slide.fp-table {
    display: table;
    table-layout:fixed;
    width: 100%;
}
.fp-tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}
.fp-slidesContainer {
    float: left;
    position: relative;
}
.fp-controlArrow {
    -webkit-user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
    position: absolute;
    z-index: 4;
    top: 50%;
    cursor: pointer;
    width: 0;
    height: 0;
    border-style: solid;
    margin-top: -38px;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.fp-controlArrow.fp-prev {
    left: 15px;
    width: 0;
    border-width: 38.5px 34px 38.5px 0;
    border-color: transparent #fff transparent transparent;
}
.fp-controlArrow.fp-next {
    right: 15px;
    border-width: 38.5px 0 38.5px 34px;
    border-color: transparent transparent transparent #fff;
}
.fp-scrollable {
    overflow: hidden;
    position: relative;
}
.fp-scroller{
    overflow: hidden;
}
.iScrollIndicator{
    border: 0 !important;
}
.fp-notransition {
    -webkit-transition: none !important;
    transition: none !important;
}
#fp-nav {
    position: fixed;
    z-index: 100;
    margin-top: -32px;
    top: 50%;
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
}
#fp-nav.fp-right {
    right: 17px;
}
#fp-nav.fp-left {
    left: 17px;
}
.fp-slidesNav{
    position: absolute;
    z-index: 4;
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    left: 0 !important;
    right: 0;
    margin: 0 auto !important;
}
.fp-slidesNav.fp-bottom {
    bottom: 17px;
}
.fp-slidesNav.fp-top {
    top: 17px;
}
#fp-nav ul,
.fp-slidesNav ul {
  margin: 0;
  padding: 0;
}
#fp-nav ul li,
.fp-slidesNav ul li {
    display: block;
    width: 14px;
    height: 13px;
    margin: 7px;
    position:relative;
}
.fp-slidesNav ul li {
    display: inline-block;
}
#fp-nav ul li a,
.fp-slidesNav ul li a {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}
#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span{
    height: 12px;
    width: 12px;
    margin: -6px 0 0 -6px;
    border-radius: 100%;
 }
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    height: 4px;
    width: 4px;
    border: 0;
    background: #333;
    left: 50%;
    top: 50%;
    margin: -2px 0 0 -2px;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span{
    width: 10px;
    height: 10px;
    margin: -5px 0px 0px -5px;
}
#fp-nav ul li .fp-tooltip {
    position: absolute;
    top: -2px;
    color: #fff;
    font-size: 14px;
    font-family: arial, helvetica, sans-serif;
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    display: block;
    opacity: 0;
    width: 0;
    cursor: pointer;
}
#fp-nav ul li:hover .fp-tooltip,
#fp-nav.fp-show-active a.active + .fp-tooltip {
    -webkit-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
    width: auto;
    opacity: 1;
}
#fp-nav ul li .fp-tooltip.fp-right {
    right: 20px;
}
#fp-nav ul li .fp-tooltip.fp-left {
    left: 20px;
}
.fp-auto-height.fp-section,
.fp-auto-height .fp-slide,
.fp-auto-height .fp-tableCell{
    height: auto !important;
}

.fp-responsive .fp-auto-height-responsive.fp-section,
.fp-responsive .fp-auto-height-responsive .fp-slide,
.fp-responsive .fp-auto-height-responsive .fp-tableCell {
    height: auto !important;
}

/*Only display content to screen readers*/
.fp-sr-only{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.zoomPad {
	position: relative;
	float: left;
	z-index: 99;
	cursor: crosshair;
	border-radius: 20px;
}


.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;
	* width: 100px;
	* height: 49px;
	border-radius: 20px;
}


.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;
}

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

.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;
border-radius: 20px;
}

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

.zoomIframe {
	z-index: -1;
	filter: alpha(opacity=0);
	-moz-opacity: 0.80;
	opacity: 0.80;
	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); -webkit-transition: opacity .5s ease; -o-transition: opacity .5s ease; -moz-transition: opacity .5s ease; transition: opacity .5s ease; z-index: 99999999999999999999999999999999999999; }

#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; -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); 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; -webkit-transition: left .4s ease, -webkit-transform .4s ease; transition: left .4s ease, -webkit-transform .4s ease; -o-transition: left .4s ease, -o-transform .4s ease; -moz-transition: left .4s ease, transform .4s ease, -moz-transform .4s ease; transition: left .4s ease, transform .4s ease; transition: left .4s ease, transform .4s ease, -webkit-transform .4s ease, -moz-transform .4s ease, -o-transform .4s ease; transition: left .4s ease, transform .4s ease, -webkit-transform .4s ease; }

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

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

.baguetteBox-button#next-button, .baguetteBox-button#previous-button { top: 50%; top: -webkit-calc(50% - 30px); top: -moz-calc(50% - 30px); 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; -webkit-transition: background-color .4s ease; -o-transition: background-color .4s ease; -moz-transition: background-color .4s ease; transition: background-color .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: -webkit-calc(2% + 6px); right: -moz-calc(2% + 6px); right: calc(2% + 6px); width: 30px; height: 30px; }

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

/*# sourceMappingURL=baguetteBox.css.map */

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

html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  color: #333;
  font-family: "Roboto-Regular", 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;
}

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: "Roboto-Regular", 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: #1c4cb3;
}

.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: #1c4cb3 !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: #1c4cb3 !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: #1c4cb3 !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: 0 !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: #1c4cb3;
  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: #1c4cb3 !important;
  background-color: #1c4cb3 \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: #1c4cb3 !important;
  background-color: #fff \9 ;
  color: #1c4cb3 !important;
}
.an-btn2:hover .iconfont {
  color: #1c4cb3 !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: #1c4cb3 !important;
  background-color: #fff \9 ;
  color: #1c4cb3 !important;
}
.an-btn2_1:hover .iconfont {
  color: #1c4cb3 !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;
}
.table table tr th {
  font-weight: normal;
  background-color: #1c4cb3;
  text-align: left;
  padding: 10px 10px;
  font-size: 14px;
  font-size: 1.4rem;
}
.table table tr th, .table table tr th * {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .table table tr th {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.table table tr td {
  font-size: 14px;
  font-size: 1.4rem;
  padding: 2px 10px;
}
@media screen and (max-width: 991px) {
  .table table tr td {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.table table tr {
  background-color: #fcfcfc;
}
.table table tr:nth-child(odd) {
  background-color: #ebf1fd;
}
@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 #e5e5e5;
  background-color: transparent;
  color: #333;
  min-width: 35px;
  padding: 0 2px;
  height: 30px;
  line-height: 28px;
  margin: 0 4px 10px;
  font-size: 12px;
  font-size: 1.2rem;
}
.page a.prev {
  min-width: 61px;
}
.page a.prev:hover {
  border-color: #1c4cb3;
  background-color: #1c4cb3;
  color: #fff;
}
.page a.next {
  min-width: 61px;
}
.page a.next:hover {
  border-color: #1c4cb3;
  background-color: #1c4cb3;
  color: #fff;
}
.page a:hover, .page a.page-active {
  border-color: #1c4cb3;
  background-color: #1c4cb3;
  color: #fff;
}
@media only screen and (max-width: 1219px) {
  .page a {
    height: 28px;
    line-height: 26px;
    min-width: 28px;
    margin: 0 3px 10px !important;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.page .add-form {
  display: inline-block;
  vertical-align: middle;
  margin-left: 13px;
  padding-right: 15px;
  margin-top: 3px;
  background: url(../images/af-bg.png) no-repeat right center;
}
.page .add-form .add-btn {
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  line-height: 22px;
  color: #1c4cb3;
  cursor: pointer;
  transition: all 0.35s;
}
.page .add-form .add-btn:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 1219px) {
  .page .add-form {
    margin-left: 5px;
  }
  .page .add-form .add-btn {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/*-------------page-end--------------------------------------------------------------------*/
/*-------------contact start---------------------------------------------------------------*/
.contact-pc {
  position: fixed;
  z-index: 999;
  right: 0;
  width: 52px;
}
.contact-pc li {
  position: relative;
  width: 100%;
  height: 52px;
  margin-bottom: 1px;
  border-radius: 4px;
  background-color: #dfdfdf;
  transition: all 0.35s;
}
.contact-pc li:hover {
  background-color: #1c4cb3;
}
.contact-pc li:hover .iconfont {
  color: #fff !important;
}
.contact-pc li a {
  display: block;
  height: 100%;
  width: 100%;
  text-align: center;
  line-height: 52px;
  cursor: pointer;
}
.contact-pc li img {
  vertical-align: middle;
}
.contact-pc li .iconfont {
  color: #fff;
  font-size: 26px;
  font-size: 2.6rem;
  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 .iconfont {
  font-size: 25px !important;
  font-size: 2.5rem !important;
}

.contact-phone {
  position: fixed;
  bottom: 0;
  height: 40px;
  left: 0;
  right: 0;
  display: none;
  z-index: 999;
}
.contact-phone li {
  width: 25%;
  height: 100%;
  float: left;
  position: relative;
  background: rgba(62, 58, 57, 0.3);
}
.contact-phone li:hover {
  background-color: #1c4cb3;
}
.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;
}

@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: 6px;
  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-bottom: solid 1px #ededed;
  padding: 32px 0 29px;
}
.m-oths .oths-item {
  position: relative;
  padding-left: 60px;
  padding-top: 10px;
  min-height: 44px;
}
.m-oths .oths-item-1 {
  margin-bottom: 24px;
}
@media screen and (max-width: 1419px) {
  .m-oths {
    padding: 25px 0;
  }
  .m-oths .oths-item {
    padding-left: 50px;
    padding-top: 8px;
    min-height: 40px;
  }
  .m-oths .oths-item-1 {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1219px) {
  .m-oths {
    padding: 20px 0;
  }
  .m-oths .oths-item {
    padding-left: 45px;
    padding-top: 4px;
    min-height: 32px;
  }
  .m-oths .oths-item-1 {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .m-oths {
    padding: 15px 0;
  }
  .m-oths .oths-item {
    padding-left: 35px;
    padding-top: 3px;
    min-height: 26px;
  }
}
.m-oths .item-icon {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 44px;
  height: 44px;
  line-height: 42px;
  border-radius: 50%;
  font-size: 15px;
  font-size: 1.5rem;
  color: #1c4cb3;
  border: solid 1px rgba(153, 153, 153, 0.77);
}
@media screen and (max-width: 1419px) {
  .m-oths .item-icon {
    width: 40px;
    height: 40px;
    line-height: 38px;
  }
}
@media screen and (max-width: 1219px) {
  .m-oths .item-icon {
    width: 32px;
    height: 32px;
    line-height: 30px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .m-oths .item-icon {
    width: 26px;
    height: 26px;
    line-height: 24px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.m-oths .item-a {
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  font-size: 20px;
  font-size: 2rem;
  line-height: 24px;
}
.m-oths .item-a a {
  display: inline-block;
}
.m-oths .item-a a:hover {
  color: #1c4cb3;
}
.m-oths .item-a a.none {
  cursor: auto;
  color: #666;
}
@media screen and (max-width: 1419px) {
  .m-oths .item-a {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1219px) {
  .m-oths .item-a {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .m-oths .item-a {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 20px;
  }
}

/*-------------bread start-----------------------------------------------------------------*/
.bread {
  padding-top: 12px;
  padding-bottom: 42px;
}
@media screen and (max-width: 991px) {
  .bread {
    padding-bottom: 35px;
  }
}
@media screen and (max-width: 767px) {
  .bread {
    padding-top: 10px;
    padding-bottom: 25px;
  }
}
.bread .item-subt {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.4;
}
.bread .item-subt, .bread .item-subt * {
  color: #666;
}
.bread .item-subt a:hover, .bread .item-subt .bread-active {
  color: #1c4cb3;
}
@media screen and (max-width: 1219px) {
  .bread .item-subt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .bread .item-subt {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.page-title {
  text-align: center;
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  font-size: 44px;
  font-size: 4.4rem;
  line-height: 1.2;
}
.page-title a:hover {
  color: #1c4cb3;
}
@media screen and (max-width: 1419px) {
  .page-title {
    font-size: 38px;
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 1219px) {
  .page-title {
    font-size: 32px;
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 991px) {
  .page-title {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .page-title {
    font-size: 20px;
    font-size: 2rem;
  }
}

/*-------------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: 35px;
  margin-right: 2.7083333333%;
}
@media screen and (max-width: 1650px) {
  .search {
    margin-right: 1.5625%;
  }
}
@media screen and (max-width: 1419px) {
  .search {
    margin-right: 15px;
  }
}
@media screen and (max-width: 1219px) {
  .search {
    margin-top: 15px;
  }
}
@media screen and (max-width: 991px) {
  .search {
    display: none;
  }
}
.search .search-icon {
  cursor: pointer;
  display: block;
}
.search .search-icon .iconfont {
  display: block;
  color: #333;
  font-size: 17px;
  font-size: 1.7rem;
}
.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: #1c4cb3;
  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----------------------------------------------------------------*/
body {
  padding-top: 89px;
}
@media screen and (max-width: 1219px) {
  body {
    padding-top: 88px;
  }
}
@media screen and (max-width: 991px) {
  body {
    position: relative;
    padding-top: 0;
  }
}

.fixed.header {
  position: fixed;
}
@media screen and (max-width: 767px) {
  .fixed.header {
    position: relative;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background-color: #fff;
  border-bottom: solid 1px #fdfaf5;
}
@media screen and (max-width: 1219px) {
  .header {
    padding: 0 15px;
  }
}
@media screen and (max-width: 991px) {
  .header {
    padding: 10px 15px;
    position: relative;
    background-color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .header {
    position: relative;
  }
}
.header > .wp {
  width: 100%;
  position: relative;
  padding: 0;
}
.header .logo {
  float: left;
  display: block;
  width: 390px;
  margin-left: 3.3854166667%;
  margin-right: 3.0208333333%;
  margin-top: 18px;
}
.header .logo img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 1650px) {
  .header .logo {
    margin-left: 1.5625%;
    margin-right: 1.5625%;
  }
}
@media screen and (max-width: 1419px) {
  .header .logo {
    margin-left: 15px;
    margin-right: 0.78125%;
    width: 360px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 1219px) {
  .header .logo {
    margin-top: 5px;
  }
}
@media screen and (max-width: 991px) {
  .header .logo {
    margin-top: 0;
    margin-left: 0;
    width: 320px;
  }
}
@media screen and (max-width: 480px) {
  .header .logo {
    width: 280px;
    margin-top: 30px;
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
}
.header .lang-box {
  float: right;
  position: relative;
  margin-top: 34px;
  margin-right: 1.9270833333%;
  margin-left: 2.2916666667%;
}
@media screen and (max-width: 1650px) {
  .header .lang-box {
    margin-right: 1.0416666667%;
    margin-left: 1.5625%;
  }
}
@media screen and (max-width: 1419px) {
  .header .lang-box {
    margin-right: 0.5208333333%;
    margin-left: 1.0416666667%;
  }
}
@media screen and (max-width: 1219px) {
  .header .lang-box {
    margin-top: 15px;
  }
}
@media screen and (max-width: 991px) {
  .header .lang-box {
    margin-top: 0;
    margin-right: 0;
    position: absolute;
    top: 0;
    right: 20px;
  }
}
.header .lang-box .item-title {
  color: #333;
  cursor: pointer;
  font-size: 0;
  letter-spacing: 0;
  line-height: 22px;
}
.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: 18px;
  font-size: 1.8rem;
  margin-right: 8px;
}
.header .lang-box .item-title .icon-sanjiaoxing {
  font-size: 19px;
  font-size: 1.9rem;
  margin-left: 0;
  margin-right: 0;
}
@media screen and (max-width: 1419px) {
  .header .lang-box .item-title > * {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .header .lang-box .item-title .iconfont {
    font-size: 16px;
    font-size: 1.6rem;
    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 .iconfont {
    font-size: 14px;
    font-size: 1.4rem;
    margin-right: 5px;
  }
}
.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 {
  text-align: center;
  display: block;
  color: #333;
  line-height: 30px;
  font-size: 14px;
  font-size: 1.4rem;
}
.header .lang-box .box-list a:hover {
  color: #1c4cb3;
}
@media screen and (max-width: 767px) {
  .header .lang-box .box-list a {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}
.header .navlist {
  padding-top: 31px;
  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: 1519px) {
  .header .navlist {
    padding-top: 33px;
  }
}
@media screen and (max-width: 1219px) {
  .header .navlist {
    float: left;
    width: 100%;
    margin-top: 5px;
    padding: 0 15px;
  }
}
@media screen and (max-width: 991px) {
  .header .navlist {
    display: none;
  }
}
.header .navlist > li {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.header .navlist > li > a {
  display: block;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 24px;
  padding-bottom: 33px;
  color: #333;
}
@media screen and (max-width: 1519px) {
  .header .navlist > li > a {
    font-size: 16px;
    font-size: 1.6rem;
    padding-bottom: 31px;
  }
}
@media screen and (max-width: 1419px) {
  .header .navlist > li > a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1219px) {
  .header .navlist > li > a {
    padding-bottom: 5px;
  }
}
.header .navlist > li.nav-active > a, .header .navlist > li:hover > a {
  color: #1c4cb3;
}
.header .navlist li:hover .yiji {
  transform: translateY(0px);
  visibility: visible;
  opacity: 1;
}
.header .yiji {
  z-index: 99;
  position: absolute;
  top: 100%;
  width: 296px;
  left: 0;
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(30px);
  transform-origin: top;
  transition: all 400ms ease;
  background-color: #fff;
  border-bottom: solid 6px #1c4cb3;
  padding-top: 3px;
  margin-top: 2px;
}
@media screen and (max-width: 1419px) {
  .header .yiji {
    width: 260px;
  }
}
@media screen and (max-width: 1219px) {
  .header .yiji {
    width: 230px;
  }
}
.header .yiji li {
  position: relative;
  text-align: left;
}
.header .yiji li > a {
  display: block;
  line-height: 24px;
  padding: 13px 15px 13px 26px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #333;
  border-bottom: solid 1px rgba(223, 223, 223, 0.5);
}
.header .yiji li:hover > a {
  color: #1c4cb3;
}
.header .yiji li:hover .erji {
  transform: translateY(0px);
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 1419px) {
  .header .yiji li > a {
    padding: 10px 15px 10px;
    line-height: 20px;
  }
}
@media screen and (max-width: 1219px) {
  .header .yiji li > a {
    padding: 6px 15px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@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: 200px;
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(30px);
  transform-origin: top;
  transition: all 400ms ease;
  background-color: #fff;
  margin-left: 1px;
}
.fixed1 {
  position: fixed !important;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 99999;
}

/*-------------header end------------------------------------------------------------------*/
/*-------------footer start----------------------------------------------------------------*/
.index-footer {
  background-color: #131313;
}

.footer {
  background-color: #131313;
}
.footer .f-top {
  border-bottom: solid 2px rgba(255, 255, 255, 0.2);
  text-align: center;
}
.footer .f-top .wp {
  font-size: 0;
  letter-spacing: 0;
  padding-top: 46px;
  padding-bottom: 34px;
  position: relative;
}
@media screen and (max-width: 1419px) {
  .footer .f-top .wp {
    padding-bottom: 30px;
    padding-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .footer .f-top .wp {
    padding: 30px 15px 10px;
  }
}
.footer .f-top .wp:before, .footer .f-top .wp:after {
  position: absolute;
  content: "";
  width: 1px;
  top: 48px;
  bottom: 37px;
  background-color: rgba(245, 245, 245, 0.5);
}
@media screen and (max-width: 1219px) {
  .footer .f-top .wp:before, .footer .f-top .wp:after {
    top: 25px;
    bottom: 25px;
  }
}
@media screen and (max-width: 640px) {
  .footer .f-top .wp:before, .footer .f-top .wp:after {
    display: none;
  }
}
.footer .f-top .wp:before {
  left: 491px;
}
@media screen and (max-width: 1419px) {
  .footer .f-top .wp:before {
    left: 391px;
  }
}
@media screen and (max-width: 1219px) {
  .footer .f-top .wp:before {
    left: 30%;
  }
}
.footer .f-top .wp:after {
  right: 508px;
}
@media screen and (max-width: 1419px) {
  .footer .f-top .wp:after {
    right: 408px;
  }
}
@media screen and (max-width: 1219px) {
  .footer .f-top .wp:after {
    right: 35%;
  }
}
.footer .f-top .list-item {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding-left: 70px;
  text-align: left;
  width: 265px;
  margin-left: 140px;
}
.footer .f-top .list-item:first-child {
  margin-left: 25px;
}
.footer .f-top .list-item:last-child {
  margin-left: 90px;
}
@media screen and (max-width: 1219px) {
  .footer .f-top .list-item {
    width: 30%;
    margin-left: 5% !important;
  }
  .footer .f-top .list-item:first-child {
    margin-left: 0 !important;
  }
}
@media screen and (max-width: 991px) {
  .footer .f-top .list-item {
    padding-left: 60px;
  }
}
@media screen and (max-width: 767px) {
  .footer .f-top .list-item {
    padding-left: 50px;
  }
}
@media screen and (max-width: 640px) {
  .footer .f-top .list-item {
    padding-left: 35px;
    width: 33.33%;
    margin-left: 0 !important;
  }
}
@media screen and (max-width: 480px) {
  .footer .f-top .list-item {
    width: 100%;
    margin-bottom: 10px;
  }
}
.footer .f-top .iconfont {
  display: block;
  position: absolute;
  left: 0;
  width: 50px;
  height: 50px;
  line-height: 48px;
  border-radius: 50%;
  border: solid 1px #fff;
  color: #fff;
  font-size: 24px;
  font-size: 2.4rem;
  text-align: center;
  margin-top: 12px;
}
@media screen and (max-width: 1219px) {
  .footer .f-top .iconfont {
    margin-top: 3px;
  }
}
@media screen and (max-width: 767px) {
  .footer .f-top .iconfont {
    width: 44px;
    height: 44px;
    line-height: 42px;
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .footer .f-top .iconfont {
    width: 30px;
    height: 30px;
    line-height: 28px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.footer .f-top .item-title {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 30px;
  margin-bottom: 5px;
}
.footer .f-top .item-title, .footer .f-top .item-title a {
  color: #fff;
}
@media screen and (max-width: 1219px) {
  .footer .f-top .item-title {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 26px;
  }
}
@media screen and (max-width: 991px) {
  .footer .f-top .item-title {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .footer .f-top .item-title {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 22px;
  }
}
.footer .f-top .item-subt {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
}
.footer .f-top .item-subt, .footer .f-top .item-subt a {
  color: #fff;
}
@media screen and (max-width: 1219px) {
  .footer .f-top .item-subt {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
  }
}
@media screen and (max-width: 767px) {
  .footer .f-top .item-subt {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 22px;
  }
}
.footer .f-middle {
  border-bottom: solid 1px #363d42;
  padding: 63px 0 5px;
}
.footer .f-middle, .footer .f-middle * {
  color: #ccc;
}
.footer .f-middle a:hover {
  color: #1c4cb3;
}
.footer .f-middle .wp {
  font-size: 0;
  letter-spacing: 0;
}
.footer .f-middle .footer-title {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.2;
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  margin-bottom: 34px;
}
.footer .f-middle .footer-title, .footer .f-middle .footer-title * {
  color: #fff;
}
.footer .f-middle .footer-title a:hover {
  color: #1c4cb3;
}
@media screen and (max-width: 1219px) {
  .footer .f-middle .footer-title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer .f-middle .footer-title {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 480px) {
  .footer .f-middle .footer-title {
    margin-bottom: 10px;
  }
}
.footer .f-middle .flist {
  display: inline-block;
  vertical-align: top;
  padding-right: 30px;
  margin-bottom: 15px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 36px;
}
@media screen and (max-width: 1419px) {
  .footer .f-middle .flist {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1219px) {
  .footer .f-middle .flist {
    line-height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .footer .f-middle .flist {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 26px;
  }
}
@media screen and (max-width: 480px) {
  .footer .f-middle .flist {
    line-height: 24px;
  }
}
.footer .f-middle .flist1 {
  width: 363px;
}
.footer .f-middle .flist2 {
  width: 363px;
  float: right;
  text-align: right;
}
.footer .f-middle .flist3 {
  width: 282px;
}
.footer .f-middle .flist4 {
  width: 392px;
  padding-right: 0 !important;
  margin-bottom: 0;
}
.footer .f-middle .flist4 .item-form { /* WebKit browsers */
  /* Mozilla Firefox 4 to 18 */
  /* Mozilla Firefox 19+ */
  /* Internet Explorer 10+ */
  margin-top: -1px;
}
.footer .f-middle .flist4 .item-form ::-webkit-input-placeholder {
  color: #ccc;
  opacity: 1;
}
.footer .f-middle .flist4 .item-form :-o-placeholder {
  color: #ccc;
  opacity: 1;
}
.footer .f-middle .flist4 .item-form ::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
.footer .f-middle .flist4 .item-form :-ms-input-placeholder {
  color: #ccc;
  opacity: 1;
}
.footer .f-middle .flist4 .item-form .item-row {
  padding-left: 13px;
  margin-bottom: 13px;
}
.footer .f-middle .flist4 .item-form .star {
  position: relative;
}
.footer .f-middle .flist4 .item-form .star:before {
  position: absolute;
  content: "*";
  color: #ff000b;
  font-family: "Roboto-Regular", arial, helvetica, sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  left: 0;
  top: 10px;
}
.footer .f-middle .flist4 .item-form .item-input50 {
  width: 48.4693877551%;
  float: left;
}
.footer .f-middle .flist4 .item-form .item-input50:nth-child(even) {
  float: right;
}
.footer .f-middle .flist4 .item-form .item-input100 {
  width: 100%;
}
.footer .f-middle .flist4 .item-form input, .footer .f-middle .flist4 .item-form textarea {
  display: block;
  width: 100%;
  border: solid 1px #ccc;
  padding: 0 13px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
}
.footer .f-middle .flist4 .item-form input {
  height: 35px;
  line-height: 33px;
}
.footer .f-middle .flist4 .item-form textarea {
  height: 90px;
  line-height: 24px;
  padding-top: 4px;
  padding-bottom: 5px;
}
.footer .f-middle .flist4 .item-form .item-code {
  width: 100%;
  position: relative;
}
.footer .f-middle .flist4 .item-form .item-code input {
  padding-right: 90px;
}
.footer .f-middle .flist4 .item-form .item-img {
  position: absolute;
  right: 1px;
  top: 1px;
  font-size: 0;
  line-height: 33px;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  padding-left: 0;
}
.footer .f-middle .flist4 .item-form .item-img img {
  vertical-align: middle;
  max-height: 33px;
}
.footer .f-middle .flist4 .item-form .item-btn {
  padding-top: 1px;
  margin-bottom: 0;
}
.footer .f-middle .flist4 .item-form .item-btn input {
  font-size: 16px;
  font-size: 1.6rem;
  height: 40px;
  line-height: 38px;
  border-color: #1c4cb3;
  background-color: #1c4cb3;
  color: #fff;
  padding: 0;
  text-align: center;
  transition: all 0.35s;
}
.footer .f-middle .flist4 .item-form .item-btn input:hover {
  border-color: #fff;
  background-color: #fff;
  color: #1c4cb3;
}
@media screen and (max-width: 1219px) {
  .footer .f-middle .flist4 .item-form input, .footer .f-middle .flist4 .item-form textarea {
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .footer .f-middle .flist4 .item-form input, .footer .f-middle .flist4 .item-form textarea {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .footer .f-middle .flist4 .item-form .item-row {
    margin-bottom: 8px;
  }
  .footer .f-middle .flist4 .item-form input {
    height: 30px;
    line-height: 28px;
  }
  .footer .f-middle .flist4 .item-form .item-code {
    padding-right: 75px;
  }
  .footer .f-middle .flist4 .item-form .item-img {
    line-height: 28px;
  }
  .footer .f-middle .flist4 .item-form .item-img img {
    max-height: 28px;
  }
  .footer .f-middle .flist4 .item-form .item-btn input {
    height: 30px;
    line-height: 28px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 640px) {
  .footer .f-middle .flist4 .item-form .item-input50 {
    width: 100%;
  }
}
@media screen and (max-width: 1419px) {
  .footer .f-middle {
    padding-top: 40px;
  }
  .footer .f-middle .flist1 {
    width: 263px;
  }
  .footer .f-middle .flist2 {
    width: 273px;
  }
  .footer .f-middle .flist3 {
    width: 272px;
  }
  .footer .f-middle .flist4 {
    width: 392px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1219px) {
  .footer .f-middle .flist1 {
    width: 173px;
  }
  .footer .f-middle .flist2 {
    width: 203px;
  }
  .footer .f-middle .flist3 {
    width: 222px;
  }
  .footer .f-middle .flist4 {
    width: 362px;
  }
}
@media screen and (max-width: 991px) {
  .footer .f-middle {
    padding-top: 30px;
  }
  .footer .f-middle .flist1 {
    width: 40%;
  }
  .footer .f-middle .flist2 {
    width: 60%;
    padding-right: 0;
  }
  .footer .f-middle .flist3 {
    width: 40%;
  }
  .footer .f-middle .flist4 {
    width: 60%;
  }
}
@media screen and (max-width: 480px) {
  .footer .f-middle .flist3 {
    width: 100%;
  }
  .footer .f-middle .flist4 {
    width: 100%;
  }
}
.footer .item-follow {
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
}
.footer .item-follow > a {
  display: inline-block;
  vertical-align: top;
  width: 36px;
  height: 36px;
  line-height: 34px;
  border-radius: 50%;
  border: solid 1px #ffffff;
  font-size: 16px;
  font-size: 1.6rem;
  color: #fff;
  margin: 0 7px 5px;
  text-align: center;
  transition: all 0.35s;
}
.footer .item-follow > a:hover {
  border-color: #1c4cb3;
  background-color: #1c4cb3;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer .item-follow > a {
    width: 32px;
    height: 32px;
    line-height: 28px;
    font-size: 14px;
    font-size: 1.4rem;
    margin: 0 3px 5px;
  }
}
.footer .f-bot {
  text-align: center;
  padding-top: 41px;
  padding-bottom: 40px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 24px;
}
.footer .f-bot, .footer .f-bot * {
  color: #999;
}
.footer .f-bot a:hover {
  color: #1c4cb3;
}
@media screen and (max-width: 1419px) {
  .footer .f-bot {
    padding: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .footer .f-bot {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}
.footer .f-bot .links a {
  display: inline-block;
  margin-right: 30px;
}
@media screen and (max-width: 1219px) {
  .footer .f-bot .links a {
    margin-right: 20px;
  }
}

/*-------------footer end------------------------------------------------------------------*/
/*-------------index start-----------------------------------------------------------------*/
.section .fp-tableCell {
  padding-top: 88px;
}

.section1.section .fp-tableCell {
  padding-top: 0;
}

@media screen and (max-width: 991px) {
  .section {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .section {
    padding: 30px 0;
  }
}
.section.section1, .section.section7 {
  padding: 0 !important;
}

.index-title {
  text-align: center;
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  font-size: 44px;
  font-size: 4.4rem;
  line-height: 1.2;
  letter-spacing: 1.7px;
}
.index-title a:hover {
  color: #1c4cb3;
}
@media screen and (max-width: 1419px) {
  .index-title {
    font-size: 38px;
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 1219px) {
  .index-title {
    font-size: 32px;
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 991px) {
  .index-title {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .index-title {
    font-size: 20px;
    font-size: 2rem;
  }
}

.index-probox {
  background: url(../images/bg1.jpg) no-repeat center;
  background-attachment: fixed;
  position: relative;
}
.index-probox: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-probox .index-title {
  margin-bottom: 53px;
}
@media screen and (max-width: 1619px) {
  .index-probox .index-title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1419px) {
  .index-probox .index-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1219px) {
  .index-probox .index-title {
    margin-bottom: 20px;
  }
}
.index-probox .box-tab {
  display: flex;
  flex-flow: column-reverse wrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}
.index-probox .box-tab:before {
  position: absolute;
  content: "";
  width: 47.4285714286%;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: #fff;
  border-radius: 20px 20px 0 0;
}
@media screen and (max-width: 767px) {
  .index-probox .box-tab:before {
    border-radius: 10px 10px 0 0;
  }
}
@media screen and (max-width: 480px) {
  .index-probox .box-tab {
    flex-direction: column;
  }
  .index-probox .box-tab:before {
    display: none;
  }
}
.index-probox .tab-options {
  width: 100%;
  flex-basis: 100%;
  position: relative;
  z-index: 2;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 3px 29px 0px rgba(0, 0, 0, 0.09);
  font-size: 0;
  letter-spacing: 0;
  padding: 35px 10px 45px;
}
@media screen and (max-width: 1419px) {
  .index-probox .tab-options {
    padding: 25px 10px;
  }
}
@media screen and (max-width: 1219px) {
  .index-probox .tab-options {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 767px) {
  .index-probox .tab-options {
    padding: 15px 0;
    border-radius: 10px;
  }
}
@media screen and (max-width: 640px) {
  .index-probox .tab-options {
    padding: 15px 0 5px;
  }
}
@media screen and (max-width: 480px) {
  .index-probox .tab-options {
    margin-bottom: 20px;
  }
}
.index-probox .tab-options li {
  display: inline-block;
  vertical-align: top;
  width: 20%;
  text-align: center;
  cursor: pointer;
  padding: 0 10px;
}
.index-probox .tab-options li:hover, .index-probox .tab-options li.tab-active {
  color: #1c4cb3;
}
@media screen and (max-width: 640px) {
  .index-probox .tab-options li {
    width: 33.333%;
    margin-bottom: 10px;
  }
}
.index-probox .tab-options .item-icon {
  width: 52px;
  margin: 0 auto 26px;
}
.index-probox .tab-options .item-icon img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 1419px) {
  .index-probox .tab-options .item-icon {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1219px) {
  .index-probox .tab-options .item-icon {
    width: 48px;
  }
}
@media screen and (max-width: 991px) {
  .index-probox .tab-options .item-icon {
    width: 44px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .index-probox .tab-options .item-icon {
    width: 40px;
  }
}
@media screen and (max-width: 604px) {
  .index-probox .tab-options .item-icon {
    width: 36px;
  }
}
.index-probox .tab-options .item-title {
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.2;
}
@media screen and (max-width: 1419px) {
  .index-probox .tab-options .item-title {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 1219px) {
  .index-probox .tab-options .item-title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 991px) {
  .index-probox .tab-options .item-title {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .index-probox .tab-options .item-title {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.index-probox .tab-content {
  width: 100%;
  flex-basis: 100%;
}
.index-probox .tab-content-item .item-pic {
  float: right;
  width: 47.4285714286%;
  margin-left: 3.5%;
  border-radius: 20px 20px 0 0;
}
@media screen and (max-width: 767px) {
  .index-probox .tab-content-item .item-pic {
    border-radius: 10px 10px 0 0;
    margin-left: 2.1428571429%;
  }
}
@media screen and (max-width: 640px) {
  .index-probox .tab-content-item .item-pic {
    width: 48.5714285714%;
  }
}
@media screen and (max-width: 480px) {
  .index-probox .tab-content-item .item-pic {
    float: none;
    width: 100%;
    border-radius: 10px;
    margin: 0 auto 20px;
  }
}
.index-probox .tab-content-item .item-body {
  overflow: hidden;
  padding-top: 36px;
}
@media screen and (max-width: 1419px) {
  .index-probox .tab-content-item .item-body {
    padding-top: 30px;
  }
}
@media screen and (max-width: 1219px) {
  .index-probox .tab-content-item .item-body {
    padding-top: 15px;
  }
}
@media screen and (max-width: 991px) {
  .index-probox .tab-content-item .item-body {
    padding-top: 0;
  }
}
.index-probox .tab-content-item .item-title {
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 14px;
}
@media screen and (max-width: 1419px) {
  .index-probox .tab-content-item .item-title {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 1219px) {
  .index-probox .tab-content-item .item-title {
    font-size: 24px;
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 991px) {
  .index-probox .tab-content-item .item-title {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  .index-probox .tab-content-item .item-title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.index-probox .tab-content-item .item-subt {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.2;
  padding-bottom: 38px;
  margin-bottom: 30px;
  border-bottom: solid 1px #d8d8d8;
}
@media screen and (max-width: 1419px) {
  .index-probox .tab-content-item .item-subt {
    padding-bottom: 30px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1219px) {
  .index-probox .tab-content-item .item-subt {
    font-size: 18px;
    font-size: 1.8rem;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 991px) {
  .index-probox .tab-content-item .item-subt {
    font-size: 16px;
    font-size: 1.6rem;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .index-probox .tab-content-item .item-subt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 640px) {
  .index-probox .tab-content-item .item-subt {
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 480px) {
  .index-probox .tab-content-item .item-subt {
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
}
.index-probox .tab-content-item .item-desc {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
  height: 60px;
  margin-bottom: 45px;
}
@media screen and (max-width: 1419px) {
  .index-probox .tab-content-item .item-desc {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1219px) {
  .index-probox .tab-content-item .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
    height: 52px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 991px) {
  .index-probox .tab-content-item .item-desc {
    line-height: 24px;
    height: 48px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .index-probox .tab-content-item .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
    height: 40px;
  }
}
@media screen and (max-width: 640px) {
  .index-probox .tab-content-item .item-desc {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 480px) {
  .index-probox .tab-content-item .item-desc {
    margin-bottom: 20px;
  }
}
.index-probox .tab-content-item .item-btns {
  font-size: 0;
  letter-spacing: 0;
  margin-bottom: 50px;
}
@media screen and (max-width: 1419px) {
  .index-probox .tab-content-item .item-btns {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  .index-probox .tab-content-item .item-btns {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .index-probox .tab-content-item .item-btns {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 640px) {
  .index-probox .tab-content-item .item-btns {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .index-probox .tab-content-item .item-btns {
    margin-bottom: 10px;
  }
}
.index-probox .tab-content-item .item-btns .item-btn {
  text-align: center;
  display: inline-block;
  vertical-align: top;
  min-width: 183px;
  line-height: 50px;
  background-color: #ffffff;
  border-radius: 10px;
  border: solid 2px #e6e6e6;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 0 20px;
  margin-right: 25px;
  margin-bottom: 10px;
}
.index-probox .tab-content-item .item-btns .item-btn:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1419px) {
  .index-probox .tab-content-item .item-btns .item-btn {
    line-height: 46px;
  }
}
@media screen and (max-width: 1219px) {
  .index-probox .tab-content-item .item-btns .item-btn {
    line-height: 40px;
    min-width: 160px;
    margin-right: 15px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 991px) {
  .index-probox .tab-content-item .item-btns .item-btn {
    line-height: 36px;
    min-width: 130px;
  }
}
@media screen and (max-width: 767px) {
  .index-probox .tab-content-item .item-btns .item-btn {
    border-radius: 5px;
    line-height: 30px;
    min-width: 120px;
    margin-right: 10px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 640px) {
  .index-probox .tab-content-item .item-btns .item-btn {
    padding: 0 10px;
    line-height: 26px;
    min-width: auto;
    margin-right: 5px;
  }
}
.index-probox .tab-content-item .item-a {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.2;
}
.index-probox .tab-content-item .item-a:hover {
  color: #1c4cb3;
}
@media screen and (max-width: 1219px) {
  .index-probox .tab-content-item .item-a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .index-probox .tab-content-item .item-a {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.index-about {
  background: url(../images/bg2.jpg) no-repeat center;
  background-attachment: fixed;
  position: relative;
}
.index-about:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../images/bg2.jpg) no-repeat center;
  background-size: cover;
  z-index: -1;
}
.index-about .top-item {
  margin-bottom: 65px;
}
@media screen and (max-width: 1419px) {
  .index-about .top-item {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 991px) {
  .index-about .top-item {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 640px) {
  .index-about .top-item {
    margin-bottom: 0;
  }
}
.index-about .top-item .index-title {
  float: left;
  text-align: left;
  width: 34%;
  margin-top: -3px;
  position: relative;
  padding-bottom: 16px;
}
.index-about .top-item .index-title:before {
  position: absolute;
  content: "";
  width: 49px;
  height: 1px;
  background-color: #fff;
  opacity: 0.4;
  bottom: 0;
  left: 0;
}
.index-about .top-item .index-title, .index-about .top-item .index-title a {
  color: #fff;
}
.index-about .top-item .index-title a:hover {
  color: #1c4cb3;
}
@media screen and (max-width: 1219px) {
  .index-about .top-item .index-title {
    margin-top: 0;
  }
}
@media screen and (max-width: 991px) {
  .index-about .top-item .index-title {
    width: 28.5714285714%;
  }
}
@media screen and (max-width: 640px) {
  .index-about .top-item .index-title {
    float: none;
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
}
.index-about .top-item .item-desc {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
}
.index-about .top-item .item-desc, .index-about .top-item .item-desc a {
  color: #fff;
}
@media screen and (max-width: 1219px) {
  .index-about .top-item .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
  }
}
@media screen and (max-width: 991px) {
  .index-about .top-item .item-desc {
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .index-about .top-item .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}
.index-about .bottom-item .video-btn-box {
  float: left;
  text-align: left;
  width: 34%;
  padding: 60px 0 0 50px;
}
.index-about .bottom-item .video-btn-box .video-btn {
  position: relative;
}
@media screen and (max-width: 1419px) {
  .index-about .bottom-item .video-btn-box {
    padding: 50px 0 0 50px;
  }
}
@media screen and (max-width: 1219px) {
  .index-about .bottom-item .video-btn-box {
    padding: 40px 0 0 40px;
  }
}
@media screen and (max-width: 991px) {
  .index-about .bottom-item .video-btn-box {
    padding: 30px 0 0 30px;
    width: 28.5714285714%;
  }
}
@media screen and (max-width: 640px) {
  .index-about .bottom-item .video-btn-box {
    float: none;
    width: 100%;
    padding: 40px 0 40px 30px;
  }
}
.index-about .bottom-item .item-right {
  overflow: hidden;
}
.index-about .bottom-item .item-btn {
  text-align: center;
  display: inline-block;
  min-width: 183px;
  line-height: 54px;
  color: #fff;
  background-color: #1c4cb3;
  border-radius: 10px;
  border: solid 1px #1c4cb3;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 0 20px;
}
@media screen and (max-width: 1419px) {
  .index-about .bottom-item .item-btn {
    line-height: 50px;
  }
}
@media screen and (max-width: 1219px) {
  .index-about .bottom-item .item-btn {
    line-height: 44px;
    min-width: 160px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 991px) {
  .index-about .bottom-item .item-btn {
    line-height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .index-about .bottom-item .item-btn {
    line-height: 32px;
    min-width: auto;
    font-size: 12px;
    font-size: 1.2rem;
    border-radius: 5px;
  }
}
.index-about .bottom-item .box-list {
  border: solid 1px rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding: 43px 0 73px;
  margin-bottom: 67px;
}
@media screen and (max-width: 1419px) {
  .index-about .bottom-item .box-list {
    padding: 40px 0;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1219px) {
  .index-about .bottom-item .box-list {
    padding: 35px 0 30px;
  }
}
@media screen and (max-width: 991px) {
  .index-about .bottom-item .box-list {
    padding: 25px 0 20px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .index-about .bottom-item .box-list {
    border-radius: 10px;
  }
}
.index-about .bottom-item .box-list:before, .index-about .bottom-item .box-list:after {
  position: absolute;
  content: "";
  width: 1px;
  top: 31px;
  bottom: 56px;
  background-color: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 1419px) {
  .index-about .bottom-item .box-list:before, .index-about .bottom-item .box-list:after {
    top: 30px;
    bottom: 30px;
  }
}
@media screen and (max-width: 1219px) {
  .index-about .bottom-item .box-list:before, .index-about .bottom-item .box-list:after {
    top: 20px;
    bottom: 20px;
  }
}
@media screen and (max-width: 991px) {
  .index-about .bottom-item .box-list:before, .index-about .bottom-item .box-list:after {
    top: 15px;
    bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .index-about .bottom-item .box-list:before, .index-about .bottom-item .box-list:after {
    top: 10px;
    bottom: 10px;
  }
}
.index-about .bottom-item .box-list:before {
  left: 34.8484848485%;
}
@media screen and (max-width: 1419px) {
  .index-about .bottom-item .box-list:before {
    left: 33.3333333333%;
  }
}
.index-about .bottom-item .box-list:after {
  right: 35.8225108225%;
}
@media screen and (max-width: 1419px) {
  .index-about .bottom-item .box-list:after {
    right: 33.3333333333%;
  }
}
.index-about .bottom-item .box-list .list-item {
  flex: 1;
  text-align: center;
  padding: 0 10px;
}
.index-about .bottom-item .box-list .item-num {
  margin-bottom: 11px;
  font-size: 60px;
  font-size: 6rem;
  letter-spacing: 1px;
  line-height: 1;
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
}
.index-about .bottom-item .box-list .item-num strong {
  font-weight: normal;
}
.index-about .bottom-item .box-list .item-num, .index-about .bottom-item .box-list .item-num a {
  color: #fff;
}
.index-about .bottom-item .box-list .item-num a {
  display: block;
}
.index-about .bottom-item .box-list .item-num a:hover {
  color: #1c4cb3;
}
@media screen and (max-width: 1419px) {
  .index-about .bottom-item .box-list .item-num {
    font-size: 52px;
    font-size: 5.2rem;
  }
}
@media screen and (max-width: 1219px) {
  .index-about .bottom-item .box-list .item-num {
    font-size: 44px;
    font-size: 4.4rem;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 991px) {
  .index-about .bottom-item .box-list .item-num {
    font-size: 36px;
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .index-about .bottom-item .box-list .item-num {
    font-size: 28px;
    font-size: 2.8rem;
    margin-bottom: 5px;
  }
}
.index-about .bottom-item .box-list .item-title {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
}
.index-about .bottom-item .box-list .item-title, .index-about .bottom-item .box-list .item-title a {
  color: #fff;
}
@media screen and (max-width: 1219px) {
  .index-about .bottom-item .box-list .item-title {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .index-about .bottom-item .box-list .item-title {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.index-appbox {
  background-color: #f5f5f5;
}
.index-appbox .index-title {
  margin-bottom: 40px;
}
@media screen and (max-width: 1419px) {
  .index-appbox .index-title {
    margin-bottom: 20px;
  }
}
.index-appbox .box-tab {
  position: relative;
}
@media screen and (max-width: 1359px) {
  .index-appbox .box-tab {
    padding: 0 50px;
  }
}
@media screen and (max-width: 991px) {
  .index-appbox .box-tab {
    padding: 0;
  }
}
.index-appbox .tab-options {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: stretch;
  border-bottom: solid 1px #efefef;
  margin-bottom: 40px;
}
@media screen and (max-width: 1419px) {
  .index-appbox .tab-options {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1219px) {
  .index-appbox .tab-options {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .index-appbox .tab-options {
    justify-content: flex-start;
    background-color: #efefef;
    padding: 5px 0;
  }
}
.index-appbox .tab-options li {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.35s;
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.2;
  padding-bottom: 25px;
  margin-bottom: 15px;
  border-bottom: solid 3px transparent;
  text-align: center;
}
.index-appbox .tab-options li:hover, .index-appbox .tab-options li.tab-active {
  border-bottom-color: #1c4cb3;
  color: #1c4cb3;
}
.index-appbox .tab-options li p {
  flex: 1;
}
@media screen and (max-width: 1419px) {
  .index-appbox .tab-options li {
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 1219px) {
  .index-appbox .tab-options li {
    font-size: 18px;
    font-size: 1.8rem;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 991px) {
  .index-appbox .tab-options li {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .index-appbox .tab-options li {
    font-size: 14px;
    font-size: 1.4rem;
    width: 33.33%;
    flex-basis: 33.33%;
    margin: 0;
    padding: 5px;
    border-bottom: none !important;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .index-appbox .tab-options li {
    width: 50%;
    flex-basis: 50%;
  }
}
.index-appbox .tab-content {
  position: relative;
}
.index-appbox .tab-content .tab-content-item {
  position: relative;
}
.index-appbox .tab-content .item-pic {
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .index-appbox .tab-content .item-pic {
    border-radius: 10px 10px 0 0;
  }
}
.index-appbox .tab-content .item-body {
  width: 344px;
  background-color: #1c4cb3;
  border-radius: 20px;
  position: absolute;
  top: 2.6479750779%;
  left: 1.4285714286%;
  padding: 21px 25px 42px 35px;
}
@media screen and (max-width: 1219px) {
  .index-appbox .tab-content .item-body {
    padding: 20px 20px 30px;
    width: 300px;
  }
}
@media screen and (max-width: 991px) {
  .index-appbox .tab-content .item-body {
    width: 250px;
    padding: 15px 15px 20px;
  }
}
@media screen and (max-width: 767px) {
  .index-appbox .tab-content .item-body {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 0 0 10px 10px;
  }
}
.index-appbox .tab-content .item-desc {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
  margin-bottom: 55px;
}
.index-appbox .tab-content .item-desc, .index-appbox .tab-content .item-desc a {
  color: #fff;
}
.index-appbox .tab-content .item-desc a:hover {
  color: #000 !important;
}
@media screen and (max-width: 1219px) {
  .index-appbox .tab-content .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  .index-appbox .tab-content .item-desc {
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .index-appbox .tab-content .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
    margin-bottom: 15px;
  }
}
.index-appbox .tab-content .item-btn {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #fff;
  text-decoration: underline;
}
.index-appbox .tab-content .item-btn:hover {
  color: #000 !important;
}
@media screen and (max-width: 1219px) {
  .index-appbox .tab-content .item-btn {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .index-appbox .tab-content .item-btn {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.index-appbox .tab-btns {
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .index-appbox .tab-btns {
    margin-top: 20px;
  }
}
.index-appbox .tab-btns .tab-btn {
  position: absolute;
  top: 50%;
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  width: 44px;
  height: 44px;
  line-height: 42px;
  border-radius: 50%;
  font-size: 15px;
  font-size: 1.5rem;
  color: #1c4cb3;
  border: solid 1px rgba(153, 153, 153, 0.77);
  transition: all 0.35s;
  /* @media screen and (max-width:480px) {
  	width: 26px;
  	height: 26px;
  	line-height: 24px;
  	@include font-size(12);	
  } */
}
.index-appbox .tab-btns .tab-btn:hover {
  border-color: #1c4cb3;
  background-color: #1c4cb3;
  color: #fff;
}
@media screen and (max-width: 1419px) {
  .index-appbox .tab-btns .tab-btn {
    bottom: 130px;
  }
}
@media screen and (max-width: 1219px) {
  .index-appbox .tab-btns .tab-btn {
    bottom: 110px;
    width: 40px;
    height: 40px;
    line-height: 38px;
  }
}
@media screen and (max-width: 991px) {
  .index-appbox .tab-btns .tab-btn {
    position: relative;
    top: 0;
    transform: none;
  }
}
@media screen and (max-width: 767px) {
  .index-appbox .tab-btns .tab-btn {
    width: 30px;
    height: 30px;
    line-height: 28px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.index-appbox .tab-btns .tab-prev {
  left: -70px;
}
@media screen and (max-width: 1359px) {
  .index-appbox .tab-btns .tab-prev {
    left: 0;
  }
}
@media screen and (max-width: 991px) {
  .index-appbox .tab-btns .tab-prev {
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .index-appbox .tab-btns .tab-prev {
    margin-right: 5px;
  }
}
.index-appbox .tab-btns .tab-next {
  right: -70px;
}
@media screen and (max-width: 1359px) {
  .index-appbox .tab-btns .tab-next {
    right: 0;
  }
}

.index-cerbox {
  background: url(../images/bg4.jpg) no-repeat center;
  background-attachment: fixed;
  position: relative;
  /* .turn_page start */
  /* .turn_page end */
}
.index-cerbox:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../images/bg4.jpg) no-repeat center;
  background-size: cover;
  z-index: -1;
}
.index-cerbox .index-title {
  margin-bottom: 50px;
}
@media screen and (max-width: 1219px) {
  .index-cerbox .index-title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .index-cerbox .index-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .index-cerbox .index-title {
    margin-bottom: 20px;
  }
}
.index-cerbox .turn_page #box {
  position: relative;
}
@media screen and (max-width: 1359px) {
  .index-cerbox .turn_page #box {
    padding: 0 50px;
  }
}
@media screen and (max-width: 991px) {
  .index-cerbox .turn_page #box {
    padding: 0;
  }
}
.index-cerbox .turn_page #box .box-list {
  position: relative;
  padding-bottom: calc(32.4285714286% + 50px);
}
@media screen and (max-width: 1219px) {
  .index-cerbox .turn_page #box .box-list {
    padding-bottom: calc(32.4285714286% + 40px);
  }
}
@media screen and (max-width: 767px) {
  .index-cerbox .turn_page #box .box-list {
    padding-bottom: calc(40.2985074627% + 40px);
  }
}
@media screen and (max-width: 480px) {
  .index-cerbox .turn_page #box .box-list {
    padding-bottom: calc(66.8888888889% + 40px);
  }
}
.index-cerbox .turn_page #box .box-list .list-item {
  position: absolute;
  width: 0;
  z-index: 0;
  cursor: pointer;
  overflow: hidden;
  box-sizing: content-box !important;
  bottom: 0;
  padding-bottom: 50px;
}
@media screen and (max-width: 1219px) {
  .index-cerbox .turn_page #box .box-list .list-item {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .index-cerbox .turn_page #box .box-list .list-item:nth-child(4) .item-box .item-title {
    opacity: 1;
  }
}
.index-cerbox .turn_page #box .box-list .list-item img {
  width: 100%;
  vertical-align: bottom;
  cursor: pointer;
  transition: all 0.5s;
}
.index-cerbox .turn_page #box .box-list .item-box {
  position: absolute;
  bottom: 0;
  height: 75px;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 1219px) {
  .index-cerbox .turn_page #box .box-list .item-box {
    height: 40px;
  }
}
.index-cerbox .turn_page #box .box-list .item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.index-cerbox .turn_page #box .box-list .item-title {
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 24px;
  /*! margin: 0 auto; */
  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;
  top: 25px;
  height: 50px;
}
@media screen and (max-width: 1219px) {
  .index-cerbox .turn_page #box .box-list .item-title {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .index-cerbox .turn_page #box .box-list .item-title {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 20px;
    opacity: 0;
  }
}
.index-cerbox .turn_page #box .item-btns {
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .index-cerbox .turn_page #box .item-btns {
    margin-top: 20px;
  }
}
.index-cerbox .turn_page #box .item-btn {
  position: absolute;
  bottom: 150px;
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  width: 44px;
  height: 44px;
  line-height: 42px;
  border-radius: 50%;
  font-size: 15px;
  font-size: 1.5rem;
  color: #1c4cb3;
  border: solid 1px rgba(153, 153, 153, 0.77);
  transition: all 0.35s;
  /* @media screen and (max-width:480px) {
  	width: 26px;
  	height: 26px;
  	line-height: 24px;
  	@include font-size(12);	
  } */
}
.index-cerbox .turn_page #box .item-btn:hover {
  border-color: #1c4cb3;
  background-color: #1c4cb3;
  color: #fff;
}
@media screen and (max-width: 1419px) {
  .index-cerbox .turn_page #box .item-btn {
    bottom: 130px;
  }
}
@media screen and (max-width: 1219px) {
  .index-cerbox .turn_page #box .item-btn {
    bottom: 110px;
    width: 40px;
    height: 40px;
    line-height: 38px;
  }
}
@media screen and (max-width: 991px) {
  .index-cerbox .turn_page #box .item-btn {
    position: relative;
    bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .index-cerbox .turn_page #box .item-btn {
    width: 30px;
    height: 30px;
    line-height: 28px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.index-cerbox .turn_page #box .prev {
  left: -70px;
}
@media screen and (max-width: 1359px) {
  .index-cerbox .turn_page #box .prev {
    left: 0;
  }
}
@media screen and (max-width: 991px) {
  .index-cerbox .turn_page #box .prev {
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .index-cerbox .turn_page #box .prev {
    margin-right: 5px;
  }
}
.index-cerbox .turn_page #box .next {
  right: -70px;
}
@media screen and (max-width: 1359px) {
  .index-cerbox .turn_page #box .next {
    right: 0;
  }
}

.index-news {
  background: url(../images/bg5.jpg) no-repeat center;
  background-attachment: fixed;
  position: relative;
}
.index-news:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../images/bg5.jpg) no-repeat center;
  background-size: cover;
  z-index: -1;
}
.index-news .index-title {
  margin-bottom: 69px;
}
@media screen and (max-width: 1419px) {
  .index-news .index-title {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1219px) {
  .index-news .index-title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .index-news .index-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .index-news .index-title {
    margin-bottom: 20px;
  }
}
.index-news .tab-content {
  float: right;
  width: 48.0714285714%;
  margin-left: 1.4285714286%;
}
@media screen and (max-width: 767px) {
  .index-news .tab-content {
    width: 298px;
  }
}
@media screen and (max-width: 640px) {
  .index-news .tab-content {
    width: 100%;
    float: none;
    margin: 0 auto 20px;
    max-width: 400px;
  }
}
.index-news .tab-content .tab-content-item {
  position: relative;
}
.index-news .tab-content .item-pic {
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .index-news .tab-content .item-pic {
    border-radius: 10px;
  }
}
.index-news .tab-content .item-date {
  position: absolute;
  top: 4.816955684%;
  left: 7.8751857355%;
  border-radius: 20px;
  background-color: #1c4cb3;
  color: #fff;
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  line-height: 1;
  text-align: center;
  width: 132px;
  height: 132px;
  padding: 16px 5px;
  transition: all 0.35s;
}
.index-news .tab-content .item-date .item-m {
  font-size: 45px;
  font-size: 4.5rem;
  margin-bottom: 23px;
}
.index-news .tab-content .item-date .item-d {
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 1419px) {
  .index-news .tab-content .item-date {
    width: 110px;
    height: 110px;
  }
  .index-news .tab-content .item-date .item-m {
    font-size: 38px;
    font-size: 3.8rem;
    margin-bottom: 12px;
  }
  .index-news .tab-content .item-date .item-d {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1219px) {
  .index-news .tab-content .item-date {
    width: 90px;
    height: 90px;
  }
  .index-news .tab-content .item-date .item-m {
    font-size: 30px;
    font-size: 3rem;
    margin-bottom: 10px;
  }
  .index-news .tab-content .item-date .item-d {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 991px) {
  .index-news .tab-content .item-date {
    width: 65px;
    height: 65px;
    border-radius: 15px;
  }
  .index-news .tab-content .item-date .item-m {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 8px;
  }
  .index-news .tab-content .item-date .item-d {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .index-news .tab-content .item-date {
    top: 2.8901734104%;
    left: 2.2288261516%;
    border-radius: 10px;
  }
  .index-news .tab-content .item-date .item-m {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
  .index-news .tab-content .item-date .item-d {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.index-news .tab-options {
  overflow: hidden;
}
.index-news .tab-options li {
  background-color: #ffffff;
  border-radius: 20px;
  margin-bottom: 20px;
  padding: 17px 28px 15px;
  cursor: pointer;
  transition: all 0.35s;
}
.index-news .tab-options li:last-child {
  margin-bottom: 0;
}
.index-news .tab-options li.tab-active {
  padding-top: 21px;
  padding-bottom: 31px;
}
.index-news .tab-options li.tab-active .item-title, .index-news .tab-options li.tab-active .item-title * {
  color: #1c4cb3;
}
.index-news .tab-options li.tab-active .item-date {
  display: none;
}
.index-news .tab-options li.tab-active .item-desc {
  display: block;
}
@media screen and (max-width: 1419px) {
  .index-news .tab-options li {
    padding-left: 20px;
    padding-right: 20px;
  }
  .index-news .tab-options li.tab-active {
    padding-top: 17px;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 1219px) {
  .index-news .tab-options li {
    margin-bottom: 15px;
    padding: 12px 15px 14px;
  }
}
@media screen and (max-width: 991px) {
  .index-news .tab-options li {
    border-radius: 10px;
    padding: 11px 15px 11px;
  }
  .index-news .tab-options li.tab-active {
    padding-top: 11px;
    padding-bottom: 11px;
  }
}
@media screen and (max-width: 767px) {
  .index-news .tab-options li {
    margin-bottom: 10px;
  }
}
.index-news .tab-options .item-title {
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  font-size: 20px;
  font-size: 2rem;
  line-height: 35px;
  max-height: 70px;
}
@media screen and (max-width: 1419px) {
  .index-news .tab-options .item-title {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 30px;
    max-height: 60px;
  }
}
@media screen and (max-width: 1219px) {
  .index-news .tab-options .item-title {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 24px;
    max-height: 48px;
  }
}
@media screen and (max-width: 991px) {
  .index-news .tab-options .item-title {
    display: block !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    max-height: auto;
  }
}
@media screen and (max-width: 767px) {
  .index-news .tab-options .item-title {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 20px;
  }
}
.index-news .tab-options .item-date {
  color: #666;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 16px;
}
@media screen and (max-width: 1419px) {
  .index-news .tab-options .item-date {
    line-height: 1.2;
    margin-top: 10px;
  }
}
@media screen and (max-width: 1219px) {
  .index-news .tab-options .item-date {
    font-size: 14px;
    font-size: 1.4rem;
    margin-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .index-news .tab-options .item-date {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.index-news .tab-options .item-desc {
  display: none;
  margin-top: 13px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
  height: 60px;
  color: #666;
}
@media screen and (max-width: 1419px) {
  .index-news .tab-options .item-desc {
    margin-top: 10px;
  }
}
@media screen and (max-width: 1219px) {
  .index-news .tab-options .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
    height: 48px;
    margin-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .index-news .tab-options .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
    height: 40px;
  }
}

/*-------------index end-------------------------------------------------------------------*/
/*-------------1-1products start-----------------------------------------------------------*/
.pro1_wrap {
  padding-bottom: 92px;
}
@media screen and (max-width: 1219px) {
  .pro1_wrap {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 991px) {
  .pro1_wrap {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .pro1_wrap {
    padding-bottom: 30px;
  }
}

.pro1-top .pro1-search {
  float: right;
  overflow: hidden;
  position: relative;
  margin-top: 8px;
  width: 318px;
  height: 55px;
  border-radius: 27px;
  border: solid 1px #e6e6e6;
  cursor: pointer;
}
@media screen and (max-width: 1419px) {
  .pro1-top .pro1-search {
    margin-top: 0;
  }
}
@media screen and (max-width: 1219px) {
  .pro1-top .pro1-search {
    width: 250px;
    height: 44px;
    border-radius: 22px;
  }
}
@media screen and (max-width: 991px) {
  .pro1-top .pro1-search {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .pro1-top .pro1-search {
    float: none;
    height: 36px;
    border-radius: 16px;
    margin-bottom: 20px;
  }
}
.pro1-top .pro1-search .iconfont {
  font-size: 17px;
  font-size: 1.7rem;
  color: #333;
  position: absolute;
  width: 43px;
  height: 55px;
  line-height: 55px;
  right: 0;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 1219px) {
  .pro1-top .pro1-search .iconfont {
    width: 35px;
    height: 44px;
    line-height: 44px;
  }
}
@media screen and (max-width: 767px) {
  .pro1-top .pro1-search .iconfont {
    width: 35px;
    height: 36px;
    line-height: 36px;
  }
}
.pro1-top .pro1-search .item-input {
  position: absolute;
  height: 55px;
  line-height: 55px;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  padding: 0 45px 0 25px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #333;
}
@media screen and (max-width: 1219px) {
  .pro1-top .pro1-search .item-input {
    padding: 0 40px 0 15px;
    height: 44px;
    line-height: 44px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .pro1-top .pro1-search .item-input {
    height: 36px;
    line-height: 36px;
  }
}
.pro1-top .pro1-search .item-submit {
  position: absolute;
  width: 43px;
  height: 100%;
  top: 0px;
  right: 0px;
  cursor: pointer;
  z-index: 1;
}
@media screen and (max-width: 1219px) {
  .pro1-top .pro1-search .item-submit {
    width: 35px;
  }
}
.pro1-top .page-title {
  overflow: hidden;
  text-align: left;
  margin-bottom: 24px;
}
@media screen and (max-width: 1419px) {
  .pro1-top .page-title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1219px) {
  .pro1-top .page-title {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 991px) {
  .pro1-top .page-title {
    padding-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .pro1-top .page-title {
    margin-bottom: 10px;
    padding-top: 0;
  }
}
.pro1-top .item-desc {
  margin-bottom: 35px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
  overflow: hidden;
}
.pro1-top .item-desc, .pro1-top .item-desc a {
  color: #666;
}
@media screen and (max-width: 1219px) {
  .pro1-top .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  .pro1-top .item-desc {
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .pro1-top .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
    margin-bottom: 20px;
  }
}
.pro1-top .more-btn {
  display: inline-block;
  cursor: pointer;
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  font-size: 20px;
  font-size: 2rem;
  line-height: 0.9;
  color: #1c4cb3;
  margin-bottom: 30px;
  border-bottom: solid 2px #a7b4db;
}
@media screen and (max-width: 1419px) {
  .pro1-top .more-btn {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1219px) {
  .pro1-top .more-btn {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .pro1-top .more-btn {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.pro1-cate {
  background-color: #f4f4f4;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  padding: 25px 35px 28px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1419px) {
  .pro1-cate {
    padding: 25px 20px;
  }
}
@media screen and (max-width: 1219px) {
  .pro1-cate {
    padding: 20px 10px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 991px) {
  .pro1-cate {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .pro1-cate {
    padding: 15px 5px;
    margin-bottom: 30px;
  }
}
.pro1-cate > a {
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 30px;
  margin: 0 10px;
}
.pro1-cate > a:hover, .pro1-cate > a.active {
  color: #1c4cb3;
}
@media screen and (max-width: 1419px) {
  .pro1-cate > a {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 1219px) {
  .pro1-cate > a {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 991px) {
  .pro1-cate > a {
    line-height: 26px;
  }
}
@media screen and (max-width: 767px) {
  .pro1-cate > a {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.pro1-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: stretch;
  padding-bottom: 18px;
}
.pro1-list .list-item {
  position: relative;
  background-color: #ffffff;
  box-shadow: 0px 1px 35px 0px rgba(3, 0, 0, 0.17);
  width: 29.2857142857%;
  flex-basis: 29.2857142857%;
  margin-left: 6.0714285714%;
  margin-bottom: 48px;
  padding: 21px 26px 57px 25px;
  transition: all 0.35s;
}
.pro1-list .list-item:hover {
  background-color: #f4f4f4;
}
@media screen and (max-width: 1419px) {
  .pro1-list .list-item {
    width: 32%;
    flex-basis: 32%;
    margin-left: 2%;
  }
}
@media screen and (max-width: 1219px) {
  .pro1-list .list-item {
    margin-bottom: 40px;
    padding: 20px 20px 50px 20px;
  }
}
@media screen and (max-width: 991px) {
  .pro1-list .list-item {
    margin-bottom: 30px;
    padding: 20px 15px 60px 15px;
    box-shadow: 0px 1px 25px 0px rgba(3, 0, 0, 0.17);
  }
}
@media screen and (max-width: 767px) {
  .pro1-list .list-item {
    padding-top: 15px;
    box-shadow: 0px 1px 20px 0px rgba(3, 0, 0, 0.17);
  }
}
@media screen and (max-width: 640px) {
  .pro1-list .list-item {
    width: 48%;
    flex-basis: 48%;
    margin: 0 1% 25px !important;
    box-shadow: 0px 1px 15px 0px rgba(3, 0, 0, 0.17);
  }
}
@media screen and (max-width: 400px) {
  .pro1-list .list-item {
    width: 100%;
    flex-basis: 100%;
    margin: 0 0 20px !important;
    box-shadow: 0px 1px 10px 0px rgba(3, 0, 0, 0.17);
  }
}
.pro1-list .item-title {
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  font-size: 20px;
  font-size: 2rem;
  line-height: 30px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1219px) {
  .pro1-list .item-title {
    line-height: 26px;
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 991px) {
  .pro1-list .item-title {
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .pro1-list .item-title {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 20px;
  }
}
.pro1-list .item-desc {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 30px;
}
@media screen and (max-width: 1219px) {
  .pro1-list .item-desc {
    line-height: 26px;
  }
}
@media screen and (max-width: 991px) {
  .pro1-list .item-desc {
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .pro1-list .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}
.pro1-list .item-btnbox {
  position: absolute;
  left: 26px;
  bottom: 17px;
  font-size: 0;
  letter-spacing: 0;
}
.pro1-list .item-btnbox > * {
  display: inline-block;
  vertical-align: middle;
}
.pro1-list .item-btnbox input {
  margin-right: 5px;
}
@media screen and (max-width: 1219px) {
  .pro1-list .item-btnbox {
    left: 20px;
  }
}
@media screen and (max-width: 991px) {
  .pro1-list .item-btnbox {
    left: 15px;
    bottom: 12px;
  }
}
.pro1-list .item-btn {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
  color: #1c4cb3;
}
.pro1-list .item-btn:hover {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .pro1-list .item-btn {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.pro1-list .item-more {
  position: absolute;
  right: 32px;
  bottom: 17px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
}
.pro1-list .item-more:hover {
  color: #1c4cb3;
}
@media screen and (max-width: 1219px) {
  .pro1-list .item-more {
    right: 20px;
  }
}
@media screen and (max-width: 991px) {
  .pro1-list .item-more {
    left: 15px;
    bottom: 35px;
  }
}
@media screen and (max-width: 767px) {
  .pro1-list .item-more {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/*-------------1-1products end-------------------------------------------------------------*/
/*-------------1-2-products start-----------------------------------------------------------*/
.pro2_wrap {
  padding-bottom: 41px;
}
@media screen and (max-width: 1219px) {
  .pro2_wrap {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  .pro2_wrap {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .pro2_wrap {
    padding-bottom: 10px;
  }
}

.pro2-top {
  background-color: #f5f5f5;
  padding-bottom: 79px;
  padding-top: 8px;
}
@media screen and (max-width: 1219px) {
  .pro2-top {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 991px) {
  .pro2-top {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .pro2-top {
    padding: 0 0 30px;
  }
}
.pro2-top .item-left {
  float: left;
  width: 44.0714285714%;
  margin-right: 5.8571428571%;
}
.pro2-top .item-left .big-img-box {
  position: relative;
  padding-bottom: 95.4619124797%;
  border-radius: 20px;
  border: solid 1px #dbdbdb;
}
.pro2-top .item-left .big-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  line-height: 0;
}
.pro2-top .item-left .zoomPad {
  float: none;
  z-index: 8;
}
.pro2-top .item-left .zoomWrapperImage img {
  max-width: 1200px;
}
.pro2-top .item-left img {
  display: block;
  width: 100%;
  border-radius: 20px;
}
@media screen and (max-width: 1419px) {
  .pro2-top .item-left {
    width: 46.4285714286%;
    margin-right: 2.1428571429%;
  }
}
@media screen and (max-width: 991px) {
  .pro2-top .item-left {
    float: none;
    width: 100%;
    margin: 0 auto 20px;
    max-width: 400px;
  }
}
@media screen and (max-width: 767px) {
  .pro2-top .item-left .big-img-box {
    border-radius: 10px;
  }
  .pro2-top .item-left img {
    border-radius: 10px;
  }
}
.pro2-top .item-body {
  overflow: hidden;
}
.pro2-top .item-body .item-title {
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 2;
  padding-bottom: 31px;
  border-bottom: solid 1px #d7d7d7;
  margin-bottom: 31px;
  margin-top: -6px;
}
@media screen and (max-width: 1419px) {
  .pro2-top .item-body .item-title {
    padding-bottom: 20px;
    margin-bottom: 25px;
    font-size: 26px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 1219px) {
  .pro2-top .item-body .item-title {
    font-size: 24px;
    font-size: 2.4rem;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 991px) {
  .pro2-top .item-body .item-title {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .pro2-top .item-body .item-title {
    font-size: 20px;
    font-size: 2rem;
    padding-bottom: 10px;
  }
}
.pro2-top .item-body .pro-share {
  margin-bottom: 45px;
}
.pro2-top .item-body .pro-share .share-title {
  text-transform: capitalize;
  font-size: 16px;
  font-size: 1.6rem;
  color: #999;
}
@media screen and (max-width: 1419px) {
  .pro2-top .item-body .pro-share {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1219px) {
  .pro2-top .item-body .pro-share {
    margin-bottom: 20px;
  }
  .pro2-top .item-body .pro-share .share-title {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .pro2-top .item-body .pro-share .share-title {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.pro2-top .item-body .item-desc {
  min-height: 348px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
  margin-bottom: 30px;
}
.pro2-top .item-body .item-desc, .pro2-top .item-body .item-desc * {
  color: #666;
}
.pro2-top .item-body .item-desc img, .pro2-top .item-body .item-desc iframe {
  max-width: 100%;
}
.pro2-top .item-body .item-desc .title1 {
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  font-size: 20px;
  font-size: 2rem;
  color: #333;
  margin-bottom: 21px;
}
@media screen and (max-width: 1419px) {
  .pro2-top .item-body .item-desc {
    min-height: 315px;
  }
}
@media screen and (max-width: 1219px) {
  .pro2-top .item-body .item-desc {
    margin-bottom: 20px;
    min-height: 250px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
  }
  .pro2-top .item-body .item-desc .title1 {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 991px) {
  .pro2-top .item-body .item-desc {
    line-height: 24px;
    min-height: auto;
  }
}
@media screen and (max-width: 767px) {
  .pro2-top .item-body .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
  .pro2-top .item-body .item-desc .title1 {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}
.pro2-top .item-body .item-btns {
  font-size: 0;
  letter-spacing: 0;
}
.pro2-top .item-body .item-btns .item-btn {
  text-align: center;
  display: inline-block;
  vertical-align: top;
  min-width: 183px;
  line-height: 52px;
  background-color: #ffffff;
  border-radius: 10px;
  border: solid 2px #e6e6e6;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 0 20px;
  margin-right: 25px;
  margin-bottom: 10px;
}
.pro2-top .item-body .item-btns .item-btn:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1419px) {
  .pro2-top .item-body .item-btns .item-btn {
    line-height: 48px;
  }
}
@media screen and (max-width: 1219px) {
  .pro2-top .item-body .item-btns .item-btn {
    line-height: 42px;
    min-width: 160px;
    margin-right: 15px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .pro2-top .item-body .item-btns .item-btn {
    line-height: 38px;
    min-width: 130px;
    margin-right: 10px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 991px) {
  .zoomPad {
    cursor: default !important;
  }
  .zoomPup {
    display: none !important;
  }
  .zoomWindow {
    display: none !important;
  }
  .zoomPreload {
    display: none !important;
  }
}
.pro2-desc {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
}
.pro2-desc, .pro2-desc * {
  color: #666;
}
.pro2-desc img, .pro2-desc iframe {
  max-width: 100%;
}
@media screen and (max-width: 1219px) {
  .pro2-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
  }
}
@media screen and (max-width: 991px) {
  .pro2-desc {
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .pro2-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}
.pro2-desc .img-list3 .list-item {
  float: left;
  margin-bottom: 10px;
}
.pro2-desc .img-list3 .item1 {
  width: 29%;
  margin-right: 1.6428571429%;
}
.pro2-desc .img-list3 .item2 {
  width: 38.7142857143%;
  margin-right: 1.6428571429%;
}
.pro2-desc .img-list3 .item3 {
  width: 29%;
}

.pro2-detail {
  padding-top: 93px;
  padding-bottom: 42px;
}
@media screen and (max-width: 1419px) {
  .pro2-detail {
    padding-top: 90px;
  }
}
@media screen and (max-width: 1219px) {
  .pro2-detail {
    padding: 70px 0 42px;
  }
}
@media screen and (max-width: 991px) {
  .pro2-detail {
    padding: 50px 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .pro2-detail {
    padding: 30px 0;
  }
}
.pro2-detail .page-title {
  margin-bottom: 33px;
}
@media screen and (max-width: 991px) {
  .pro2-detail .page-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .pro2-detail .page-title {
    margin-bottom: 20px;
  }
}

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

.pro2-app .page-title {
  margin-bottom: 79px;
}
@media screen and (max-width: 1419px) {
  .pro2-app .page-title {
    margin-bottom: 50px;
  }
}
@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;
  }
}

.related-probox {
  background-color: #f5f5f5;
  padding: 54px 0 50px;
}
@media screen and (max-width: 991px) {
  .related-probox {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .related-probox {
    padding: 30px 0;
  }
}
.related-probox.hot-probox {
  padding-bottom: 80px;
}
@media screen and (max-width: 1219px) {
  .related-probox.hot-probox {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 991px) {
  .related-probox.hot-probox {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .related-probox.hot-probox {
    padding-bottom: 30px;
  }
}
.related-probox .page-title {
  margin-bottom: 36px;
}
@media screen and (max-width: 1219px) {
  .related-probox .page-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  .related-probox .page-title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .related-probox .page-title {
    margin-bottom: 10px;
  }
}

.relatedpro-owl .owl-wrapper {
  display: flex !important;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
}
.relatedpro-owl .owl-carousel {
  width: 106.0714285714%;
  margin-left: -3.0357142857%;
}
@media screen and (max-width: 1419px) {
  .relatedpro-owl .owl-carousel {
    width: 102%;
    margin-left: -1%;
  }
}
.relatedpro-owl .owl-item {
  margin: 35px 0;
}
@media screen and (max-width: 1419px) {
  .relatedpro-owl .owl-item {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.relatedpro-owl .list-item {
  height: 100%;
  margin: 0 8.5858585859%;
  position: relative;
  background-color: #ffffff;
  box-shadow: 0px 1px 35px 0px rgba(3, 0, 0, 0.17);
  padding: 21px 26px 30px 25px;
  transition: all 0.35s;
}
.relatedpro-owl .list-item:hover {
  background-color: #f4f4f4;
}
@media screen and (max-width: 1419px) {
  .relatedpro-owl .list-item {
    margin-left: 2.9411764706%;
    margin-right: 2.9411764706%;
    box-shadow: 0px 1px 10px 0px rgba(3, 0, 0, 0.17);
  }
}
@media screen and (max-width: 1219px) {
  .relatedpro-owl .list-item {
    padding: 20px;
  }
}
@media screen and (max-width: 991px) {
  .relatedpro-owl .list-item {
    padding: 20px 15px;
  }
}
@media screen and (max-width: 767px) {
  .relatedpro-owl .list-item {
    padding: 15px;
    box-shadow: 0px 1px 5px 0px rgba(3, 0, 0, 0.17);
  }
}
@media screen and (max-width: 640px) {
  .relatedpro-owl .list-item {
    margin-left: 1.9607843137%;
    margin-right: 1.9607843137%;
  }
}
@media screen and (max-width: 400px) {
  .relatedpro-owl .list-item {
    margin-left: 0;
    margin-right: 0;
    margin-left: 1%;
    margin-right: 1%;
  }
}
.relatedpro-owl .item-title {
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  font-size: 20px;
  font-size: 2rem;
  line-height: 30px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1219px) {
  .relatedpro-owl .item-title {
    line-height: 26px;
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 991px) {
  .relatedpro-owl .item-title {
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .relatedpro-owl .item-title {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 20px;
  }
}
.relatedpro-owl .item-desc {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 30px;
}
@media screen and (max-width: 1219px) {
  .relatedpro-owl .item-desc {
    line-height: 26px;
  }
}
@media screen and (max-width: 991px) {
  .relatedpro-owl .item-desc {
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .relatedpro-owl .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}
.relatedpro-owl .owl-buttons {
  display: none !important;
}
.relatedpro-owl .owl-btns {
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
  width: 100%;
  margin-top: 24px;
}
@media screen and (max-width: 1219px) {
  .relatedpro-owl .owl-btns {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .relatedpro-owl .owl-btns {
    margin-top: 10px;
  }
}
.relatedpro-owl .owl-btns .owl-btn {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  width: 44px;
  height: 44px;
  line-height: 42px;
  border-radius: 50%;
  font-size: 15px;
  font-size: 1.5rem;
  color: #1c4cb3;
  border: solid 1px rgba(153, 153, 153, 0.77);
  transition: all 0.35s;
  /* @media screen and (max-width:480px) {
  	width: 26px;
  	height: 26px;
  	line-height: 24px;
  	@include font-size(12);	
  } */
}
.relatedpro-owl .owl-btns .owl-btn:hover {
  border-color: #1c4cb3;
  background-color: #1c4cb3;
  color: #fff;
}
@media screen and (max-width: 1219px) {
  .relatedpro-owl .owl-btns .owl-btn {
    width: 40px;
    height: 40px;
    line-height: 38px;
  }
}
@media screen and (max-width: 767px) {
  .relatedpro-owl .owl-btns .owl-btn {
    width: 30px;
    height: 30px;
    line-height: 28px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.relatedpro-owl .owl-btns .item-prev {
  margin-right: 12px;
}
@media screen and (max-width: 1219px) {
  .relatedpro-owl .owl-btns .item-prev {
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .relatedpro-owl .owl-btns .item-prev {
    margin-right: 5px;
  }
}
/*-------------1-2-products end-------------------------------------------------------------*/
/*-------------2-1-about start-------------------------------------------------------------*/
.about-box1 {
  background-color: #f5f5f5;
  padding-top: 5px;
  padding-bottom: 83px;
}
@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-spec {
  padding-bottom: 55px;
}
@media screen and (max-width: 991px) {
  .about-spec {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .about-spec {
    padding-bottom: 30px;
  }
}
.about-spec .item-imgs {
  float: right;
  font-size: 0;
  letter-spacing: 0;
  width: 48.1428571429%;
  margin-left: 2.5%;
  margin-top: 3px;
  position: relative;
}
.about-spec .item-imgs .item-pic {
  display: inline-block;
  vertical-align: top;
  width: 32.0474777448%;
  margin-left: 1.9287833828%;
  overflow: hidden;
}
.about-spec .item-imgs .item-pic img {
  display: block;
  width: 100%;
}
.about-spec .item-imgs .item-pic:first-child {
  margin-left: 0;
}
.about-spec .item-imgs .item-pic:nth-child(2) {
  margin-top: 4.7477744807%;
}
@media screen and (max-width: 480px) {
  .about-spec .item-imgs {
    float: none;
    width: 100%;
    margin: 0 auto 20px;
  }
}
.about-spec .item-body {
  font-size: 0;
}
.about-spec .item-title {
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  font-size: 50px;
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 28px;
}
@media screen and (max-width: 1419px) {
  .about-spec .item-title {
    font-size: 44px;
    font-size: 4.4rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1219px) {
  .about-spec .item-title {
    font-size: 38px;
    font-size: 3.8rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 991px) {
  .about-spec .item-title {
    font-size: 32px;
    font-size: 3.2rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .about-spec .item-title {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 480px) {
  .about-spec .item-title {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.about-spec .item-subt {
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 29px;
}
@media screen and (max-width: 1419px) {
  .about-spec .item-subt {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1219px) {
  .about-spec .item-subt {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 991px) {
  .about-spec .item-subt {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .about-spec .item-subt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.about-spec .item-desc {
  margin-bottom: 53px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
}
.about-spec .item-desc, .about-spec .item-desc * {
  color: #666;
}
.about-spec .item-desc img, .about-spec .item-desc iframe {
  max-width: 100%;
}
@media screen and (max-width: 1419px) {
  .about-spec .item-desc {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1219px) {
  .about-spec .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
  }
}
@media screen and (max-width: 991px) {
  .about-spec .item-desc {
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .about-spec .item-desc {
    margin-bottom: 20px;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}
.about-spec .item-btn {
  text-align: center;
  display: inline-block;
  min-width: 183px;
  line-height: 52px;
  color: #fff;
  background-color: #1c4cb3;
  border-radius: 10px;
  border: solid 1px #1c4cb3;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 0 20px;
}
@media screen and (max-width: 1419px) {
  .about-spec .item-btn {
    line-height: 48px;
  }
}
@media screen and (max-width: 1219px) {
  .about-spec .item-btn {
    line-height: 42px;
    min-width: 160px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .about-spec .item-btn {
    line-height: 38px;
    min-width: 130px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.about-num {
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 36px 0 40px;
}
@media screen and (max-width: 1219px) {
  .about-num {
    padding: 35px 0 30px;
  }
}
@media screen and (max-width: 991px) {
  .about-num {
    padding: 25px 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .about-num {
    border-radius: 10px;
  }
}
.about-num .list-item {
  flex: 1;
  text-align: center;
  padding: 0 10px;
}
.about-num .item-num {
  margin-bottom: 12px;
  font-size: 60px;
  font-size: 6rem;
  letter-spacing: 1px;
  line-height: 1;
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
}
.about-num .item-num strong {
  font-weight: normal;
}
@media screen and (max-width: 1419px) {
  .about-num .item-num {
    font-size: 52px;
    font-size: 5.2rem;
  }
}
@media screen and (max-width: 1219px) {
  .about-num .item-num {
    font-size: 44px;
    font-size: 4.4rem;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 991px) {
  .about-num .item-num {
    font-size: 36px;
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .about-num .item-num {
    font-size: 28px;
    font-size: 2.8rem;
    margin-bottom: 5px;
  }
}
.about-num .item-title {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.4;
}
@media screen and (max-width: 1219px) {
  .about-num .item-title {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .about-num .item-title {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.about-box2 {
  padding: 127px 0 92px;
  background: url(../images/bg6.jpg) no-repeat center;
  background-attachment: fixed;
  position: relative;
}
@media screen and (max-width: 1419px) {
  .about-box2 {
    padding: 90px 0;
  }
}
@media screen and (max-width: 1219px) {
  .about-box2 {
    padding: 70px 0;
  }
}
@media screen and (max-width: 991px) {
  .about-box2 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .about-box2 {
    padding: 30px 0;
  }
}
.about-box2:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../images/bg6.jpg) no-repeat center;
  background-size: cover;
  z-index: -1;
}

.about-ad {
  margin-bottom: 98px;
}
@media screen and (max-width: 1419px) {
  .about-ad {
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 1219px) {
  .about-ad {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 991px) {
  .about-ad {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .about-ad {
    margin-bottom: 30px;
  }
}
.about-ad .box-body {
  padding-top: 5px;
}
@media screen and (max-width: 1419px) {
  .about-ad .box-body {
    padding-top: 0;
  }
}
.about-ad .box-body .page-title {
  text-align: left;
  margin-bottom: 28px;
}
@media screen and (max-width: 1419px) {
  .about-ad .box-body .page-title {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .about-ad .box-body .page-title {
    margin-bottom: 10px;
  }
}
.about-ad .box-body .item-desc {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
}
.about-ad .box-body .item-desc, .about-ad .box-body .item-desc * {
  color: #666;
}
.about-ad .box-body .item-desc img, .about-ad .box-body .item-desc iframe {
  max-width: 100%;
}
@media screen and (max-width: 1219px) {
  .about-ad .box-body .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
  }
}
@media screen and (max-width: 991px) {
  .about-ad .box-body .item-desc {
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .about-ad .box-body .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}

.ad-owl {
  position: relative;
  float: left;
  width: 49.0714285714%;
  margin-right: 5.8571428571%;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 1419px) {
  .ad-owl {
    margin-right: 2.1428571429%;
  }
}
@media screen and (max-width: 767px) {
  .ad-owl {
    border-radius: 10px;
  }
}
@media screen and (max-width: 480px) {
  .ad-owl {
    float: none;
    width: 100%;
    margin: 0 auto 20px;
  }
}
.ad-owl .owl-theme .owl-controls {
  position: absolute;
  bottom: 3.1034482759%;
  right: 3.7845705968%;
}

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

.choose-owl .owl-carousel {
  width: 108.2142857143%;
  margin-left: -4.1071428571%;
}
@media screen and (max-width: 1419px) {
  .choose-owl .owl-carousel {
    width: 102%;
    margin-left: -1%;
  }
}
@media screen and (max-width: 400px) {
  .choose-owl .owl-carousel {
    width: 100%;
    margin-left: 0;
  }
}
.choose-owl .owl-wrapper {
  display: flex !important;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
}
.choose-owl .list-item {
  height: 100%;
  margin: 0 11.3861386139%;
  background-color: #f5f5f5;
  border-radius: 20px;
  padding: 23px 22px 50px 37px;
}
@media screen and (max-width: 1419px) {
  .choose-owl .list-item {
    margin: 0 2.9411764706%;
    padding: 20px 20px 40px 20px;
  }
}
@media screen and (max-width: 991px) {
  .choose-owl .list-item {
    padding: 20px 15px 30px;
  }
}
@media screen and (max-width: 767px) {
  .choose-owl .list-item {
    padding: 15px 15px 20px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 640px) {
  .choose-owl .list-item {
    margin: 0 1.9607843137%;
  }
}
@media screen and (max-width: 400px) {
  .choose-owl .list-item {
    margin: 0;
  }
}
.choose-owl .item-num {
  text-align: right;
  color: #1c4cb3;
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  font-size: 48px;
  font-size: 4.8rem;
  line-height: 1;
  margin-bottom: 20px;
}
@media screen and (max-width: 1419px) {
  .choose-owl .item-num {
    font-size: 42px;
    font-size: 4.2rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1219px) {
  .choose-owl .item-num {
    font-size: 36px;
    font-size: 3.6rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 991px) {
  .choose-owl .item-num {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .choose-owl .item-num {
    font-size: 24px;
    font-size: 2.4rem;
    margin-bottom: 5px;
  }
}
.choose-owl .item-title {
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 12px;
}
@media screen and (max-width: 1419px) {
  .choose-owl .item-title {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1219px) {
  .choose-owl .item-title {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 991px) {
  .choose-owl .item-title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .choose-owl .item-title {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
}
.choose-owl .item-desc {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
}
.choose-owl .item-desc, .choose-owl .item-desc * {
  color: #666;
}
@media screen and (max-width: 1219px) {
  .choose-owl .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
  }
}
@media screen and (max-width: 991px) {
  .choose-owl .item-desc {
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .choose-owl .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}
.choose-owl .owl-buttons {
  display: none !important;
}
.choose-owl .owl-btns {
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
  width: 100%;
  margin-top: 39px;
}
@media screen and (max-width: 1219px) {
  .choose-owl .owl-btns {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .choose-owl .owl-btns {
    margin-top: 20px;
  }
}
.choose-owl .owl-btns .owl-btn {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  width: 44px;
  height: 44px;
  line-height: 42px;
  border-radius: 50%;
  font-size: 15px;
  font-size: 1.5rem;
  color: #1c4cb3;
  border: solid 1px rgba(153, 153, 153, 0.77);
  transition: all 0.35s;
  /* @media screen and (max-width:480px) {
  	width: 26px;
  	height: 26px;
  	line-height: 24px;
  	@include font-size(12);	
  } */
}
.choose-owl .owl-btns .owl-btn:hover {
  border-color: #1c4cb3;
  background-color: #1c4cb3;
  color: #fff;
}
@media screen and (max-width: 1219px) {
  .choose-owl .owl-btns .owl-btn {
    width: 40px;
    height: 40px;
    line-height: 38px;
  }
}
@media screen and (max-width: 767px) {
  .choose-owl .owl-btns .owl-btn {
    width: 30px;
    height: 30px;
    line-height: 28px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.choose-owl .owl-btns .item-prev {
  margin-right: 17px;
}
@media screen and (max-width: 1219px) {
  .choose-owl .owl-btns .item-prev {
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .choose-owl .owl-btns .item-prev {
    margin-right: 5px;
  }
}
.about-box3.about-sus {
  padding: 96px 0 113px;
  background: url(../images/about6.jpg) no-repeat center;
  background-attachment: fixed;
  position: relative;
}
@media screen and (max-width: 1419px) {
  .about-box3.about-sus {
    padding: 90px 0;
  }
}
@media screen and (max-width: 1219px) {
  .about-box3.about-sus {
    padding: 70px 0;
  }
}
@media screen and (max-width: 991px) {
  .about-box3.about-sus {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .about-box3.about-sus {
    padding: 30px 0;
  }
}
.about-box3.about-sus:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../images/about6.jpg) no-repeat center;
  background-size: cover;
  z-index: -1;
}
.about-box3.about-sus .box-top {
  max-width: 1110px;
  margin: 0 auto;
  text-align: center;
}
.about-box3.about-sus .box-top .page-title {
  color: #fff;
  margin-bottom: 15px;
}
@media screen and (max-width: 1219px) {
  .about-box3.about-sus .box-top .page-title {
    margin-bottom: 10px;
  }
}
.about-box3.about-sus .box-top .item-desc {
  margin-bottom: 35px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
}
.about-box3.about-sus .box-top .item-desc, .about-box3.about-sus .box-top .item-desc * {
  color: #fff;
}
@media screen and (max-width: 1219px) {
  .about-box3.about-sus .box-top .item-desc {
    margin-bottom: 30px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
  }
}
@media screen and (max-width: 991px) {
  .about-box3.about-sus .box-top .item-desc {
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .about-box3.about-sus .box-top .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
    margin-bottom: 20px;
  }
}

.sus-owl .owl-carousel {
  width: 101.6785714286%;
  margin-left: -0.8392857143%;
}
@media screen and (max-width: 1419px) {
  .sus-owl .owl-carousel {
    width: 102%;
    margin-left: -1%;
  }
}
@media screen and (max-width: 400px) {
  .sus-owl .owl-carousel {
    /* width: 100%;
    margin-left: 0; */
  }
}
.sus-owl .list-item {
  margin: 0 2.4762908325%;
}
@media screen and (max-width: 1419px) {
  .sus-owl .list-item {
    margin: 0 2.9411764706%;
  }
}
@media screen and (max-width: 640px) {
  .sus-owl .list-item {
    margin: 0 1.9607843137%;
  }
}
.sus-owl .item-pic {
  border: solid 4px #fff;
}
@media screen and (max-width: 640px) {
  .sus-owl .item-pic {
    border-width: 2px;
  }
}
.sus-owl .owl-buttons {
  display: none !important;
}
.sus-owl .owl-btns {
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
  width: 100%;
  margin-top: 41px;
}
@media screen and (max-width: 1219px) {
  .sus-owl .owl-btns {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .sus-owl .owl-btns {
    margin-top: 20px;
  }
}
.sus-owl .owl-btns .owl-btn {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  width: 44px;
  height: 44px;
  line-height: 42px;
  border-radius: 50%;
  font-size: 15px;
  font-size: 1.5rem;
  color: #fff;
  border: solid 1px rgba(255, 255, 255, 0.77);
  transition: all 0.35s;
  /* @media screen and (max-width:480px) {
  	width: 26px;
  	height: 26px;
  	line-height: 24px;
  	@include font-size(12);	
  } */
}
.sus-owl .owl-btns .owl-btn:hover {
  border-color: #1c4cb3;
  background-color: #1c4cb3;
  color: #fff;
}
@media screen and (max-width: 1219px) {
  .sus-owl .owl-btns .owl-btn {
    width: 40px;
    height: 40px;
    line-height: 38px;
  }
}
@media screen and (max-width: 767px) {
  .sus-owl .owl-btns .owl-btn {
    width: 30px;
    height: 30px;
    line-height: 28px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.sus-owl .owl-btns .item-prev {
  margin-right: 17px;
}
@media screen and (max-width: 1219px) {
  .sus-owl .owl-btns .item-prev {
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .sus-owl .owl-btns .item-prev {
    margin-right: 5px;
  }
}
.about-box4 {
  background: url(../images/his-bg.jpg) no-repeat bottom center;
  background-size: contain;
  padding: 103px 0 148px;
}
@media screen and (max-width: 1419px) {
  .about-box4 {
    padding: 90px 0;
  }
}
@media screen and (max-width: 1219px) {
  .about-box4 {
    padding: 70px 0;
  }
}
@media screen and (max-width: 991px) {
  .about-box4 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .about-box4 {
    padding: 30px 0;
  }
}
.about-box4 .box-title {
  margin-bottom: 66px;
}
@media screen and (max-width: 1219px) {
  .about-box4 .box-title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .about-box4 .box-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .about-box4 .box-title {
    margin-bottom: 20px;
  }
}
.about-box4 .his-content {
  margin-bottom: 28px;
}
.about-box4 .his-content .tab-content-item {
  display: none;
}
.about-box4 .his-content .tab-content-item:first-child {
  display: block;
}
.about-box4 .his-content .item-pic {
  float: left;
  width: 48.2857142857%;
  margin-right: 6.0714285714%;
  position: relative;
}
@media screen and (max-width: 1419px) {
  .about-box4 .his-content .item-pic {
    margin-right: 2.1428571429%;
  }
}
@media screen and (max-width: 480px) {
  .about-box4 .his-content .item-pic {
    float: none;
    width: 100%;
    margin: 0 auto 20px;
  }
}
.about-box4 .his-content .item-body {
  padding-top: 41px;
}
@media screen and (max-width: 1419px) {
  .about-box4 .his-content .item-body {
    padding-top: 30px;
  }
}
@media screen and (max-width: 1219px) {
  .about-box4 .his-content .item-body {
    padding-top: 20px;
  }
}
@media screen and (max-width: 991px) {
  .about-box4 .his-content .item-body {
    padding-top: 0;
  }
}
.about-box4 .his-content .page-title {
  text-align: left;
  margin-bottom: 6px;
}
.about-box4 .his-content .item-desc {
  overflow: visible;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
}
.about-box4 .his-content .item-desc, .about-box4 .his-content .item-desc * {
  color: #666;
}
.about-box4 .his-content .item-desc img, .about-box4 .his-content .item-desc iframe {
  max-width: 100%;
}
@media screen and (max-width: 1219px) {
  .about-box4 .his-content .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
  }
}
@media screen and (max-width: 991px) {
  .about-box4 .his-content .item-desc {
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .about-box4 .his-content .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}
.about-box4 .owl-btns {
  font-size: 0;
  letter-spacing: 0;
  margin-top: 65px;
}
@media screen and (max-width: 1419px) {
  .about-box4 .owl-btns {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1219px) {
  .about-box4 .owl-btns {
    margin-top: 30px;
  }
}
@media screen and (max-width: 991px) {
  .about-box4 .owl-btns {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .about-box4 .owl-btns {
    margin-top: 10px;
  }
}
.about-box4 .owl-btns .owl-btn {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  width: 44px;
  height: 44px;
  line-height: 42px;
  border-radius: 50%;
  font-size: 15px;
  font-size: 1.5rem;
  color: #1c4cb3;
  border: solid 1px rgba(153, 153, 153, 0.77);
  transition: all 0.35s;
  /* @media screen and (max-width:480px) {
  	width: 26px;
  	height: 26px;
  	line-height: 24px;
  	@include font-size(12);	
  } */
}
.about-box4 .owl-btns .owl-btn:hover {
  border-color: #1c4cb3;
  background-color: #1c4cb3;
  color: #fff;
}
@media screen and (max-width: 1219px) {
  .about-box4 .owl-btns .owl-btn {
    width: 40px;
    height: 40px;
    line-height: 38px;
  }
}
@media screen and (max-width: 767px) {
  .about-box4 .owl-btns .owl-btn {
    width: 30px;
    height: 30px;
    line-height: 28px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.about-box4 .owl-btns .item-prev {
  margin-right: 19px;
}
@media screen and (max-width: 1219px) {
  .about-box4 .owl-btns .item-prev {
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .about-box4 .owl-btns .item-prev {
    margin-right: 5px;
  }
}
.his-scroll .scroll-btns {
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
  margin-top: 20px;
  display: none;
}
.his-scroll .scroll-btns .scroll-btn {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  width: 44px;
  height: 44px;
  line-height: 42px;
  border-radius: 50%;
  font-size: 15px;
  font-size: 1.5rem;
  color: #1c4cb3;
  border: solid 1px rgba(153, 153, 153, 0.77);
  transition: all 0.35s;
  /* @media screen and (max-width:480px) {
  	width: 26px;
  	height: 26px;
  	line-height: 24px;
  	@include font-size(12);	
  } */
}
.his-scroll .scroll-btns .scroll-btn:hover {
  border-color: #1c4cb3;
  background-color: #1c4cb3;
  color: #fff;
}
@media screen and (max-width: 1219px) {
  .his-scroll .scroll-btns .scroll-btn {
    width: 40px;
    height: 40px;
    line-height: 38px;
  }
}
@media screen and (max-width: 767px) {
  .his-scroll .scroll-btns .scroll-btn {
    width: 30px;
    height: 30px;
    line-height: 28px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.his-scroll .scroll-btns .scroll-btn.prev {
  margin-right: 19px;
}
@media screen and (max-width: 1219px) {
  .his-scroll .scroll-btns .scroll-btn.prev {
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .his-scroll .scroll-btns .scroll-btn.prev {
    margin-right: 5px;
  }
}
.his-scroll .scroll-btns .scroll-btn:hover {
  color: #1c4cb3;
}
.his-scroll .scroll-list-box {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.his-scroll .scroll-list-box:before {
  position: absolute;
  content: "";
  top: 5px;
  height: 1px;
  left: 0;
  width: 100%;
  background-color: #e6e6e6;
}
@media screen and (max-width: 991px) {
  .his-scroll .scroll-list-box:before {
    bottom: 13px;
  }
}
.his-scroll .scroll-list {
  width: 10000%;
  position: relative;
}
.his-scroll .scroll-list li {
  float: left;
  width: 0.13%;
  margin-right: 0.0875%;
  cursor: pointer;
  position: relative;
  text-align: center;
}
.his-scroll .scroll-list li.active .item-title {
  color: #1c4cb3;
}
@media screen and (max-width: 991px) {
  .his-scroll .scroll-list li {
    width: 0.2%;
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .his-scroll .scroll-list li {
    width: 0.25%;
  }
}
.his-scroll .scroll-list .item-box {
  display: inline-block;
}
.his-scroll .scroll-list .item-circle {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #1c4cb3;
  margin-bottom: 9px;
  margin-left: 1px;
}
.his-scroll .scroll-list .item-title {
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1;
}
@media screen and (max-width: 1219px) {
  .his-scroll .scroll-list .item-title {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 991px) {
  .his-scroll .scroll-list .item-title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .his-scroll .scroll-list .item-title {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.about-box5.about-quality {
  background-color: #f5f5f5;
  padding: 49px 0 156px;
}
@media screen and (max-width: 1419px) {
  .about-box5.about-quality {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 1219px) {
  .about-box5.about-quality {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 991px) {
  .about-box5.about-quality {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .about-box5.about-quality {
    padding: 30px 0;
  }
}
.about-box5.about-quality .wp {
  position: relative;
}
.about-box5.about-quality .box-body {
  font-size: 0;
  padding-top: 17px;
}
@media screen and (max-width: 991px) {
  .about-box5.about-quality .box-body {
    padding-top: 0;
  }
}
.about-box5.about-quality .box-body .page-title {
  text-align: left;
  line-height: 1.75;
  margin-bottom: 24px;
}
@media screen and (max-width: 1419px) {
  .about-box5.about-quality .box-body .page-title {
    line-height: 1.2;
  }
}
@media screen and (max-width: 1219px) {
  .about-box5.about-quality .box-body .page-title {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .about-box5.about-quality .box-body .page-title {
    margin-bottom: 10px;
  }
}
.about-box5.about-quality .box-body .item-desc {
  margin-bottom: 57px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
}
.about-box5.about-quality .box-body .item-desc, .about-box5.about-quality .box-body .item-desc * {
  color: #666;
}
.about-box5.about-quality .box-body .item-desc img, .about-box5.about-quality .box-body .item-desc iframe {
  max-width: 100%;
}
@media screen and (max-width: 1419px) {
  .about-box5.about-quality .box-body .item-desc {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1219px) {
  .about-box5.about-quality .box-body .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
  }
}
@media screen and (max-width: 991px) {
  .about-box5.about-quality .box-body .item-desc {
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .about-box5.about-quality .box-body .item-desc {
    margin-bottom: 20px;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}
.about-box5.about-quality .box-body .item-btn {
  text-align: center;
  display: inline-block;
  min-width: 183px;
  line-height: 52px;
  color: #fff;
  background-color: #1c4cb3;
  border-radius: 10px;
  border: solid 1px #1c4cb3;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 0 20px;
}
@media screen and (max-width: 1419px) {
  .about-box5.about-quality .box-body .item-btn {
    line-height: 48px;
  }
}
@media screen and (max-width: 1219px) {
  .about-box5.about-quality .box-body .item-btn {
    line-height: 42px;
    min-width: 160px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .about-box5.about-quality .box-body .item-btn {
    line-height: 38px;
    min-width: 130px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.quality-owl {
  float: right;
  width: 48%;
  margin-left: 7.1428571429%;
}
@media screen and (max-width: 1419px) {
  .quality-owl {
    margin-left: 5%;
  }
}
@media screen and (max-width: 1219px) {
  .quality-owl {
    margin-left: 2.1428571429%;
  }
}
@media screen and (max-width: 480px) {
  .quality-owl {
    float: none;
    width: 100%;
    margin: 0 auto 20px;
  }
}
.quality-owl .list-item .item-left {
  float: left;
  width: 47.7678571429%;
}
.quality-owl .list-item .item-left .item-pic:first-child {
  margin-bottom: 5.6074766355%;
}
.quality-owl .list-item .item-right {
  float: right;
  width: 50.2976190476%;
}
.quality-owl .list-item .item-pic {
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .quality-owl .list-item .item-pic {
    border-radius: 10px;
  }
}
.quality-owl .owl-buttons {
  display: none !important;
}
.quality-owl .owl-btns {
  position: absolute;
  right: 55.1428571429%;
  bottom: 13.1428571429%;
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 1219px) {
  .quality-owl .owl-btns {
    right: 50.1428571429%;
    bottom: 5.7142857143%;
  }
}
@media screen and (max-width: 991px) {
  .quality-owl .owl-btns {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 10px;
  }
}
.quality-owl .owl-btns .owl-btn {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  width: 44px;
  height: 44px;
  line-height: 42px;
  border-radius: 50%;
  font-size: 15px;
  font-size: 1.5rem;
  color: #1c4cb3;
  border: solid 1px rgba(153, 153, 153, 0.77);
  transition: all 0.35s;
  /* @media screen and (max-width:480px) {
  	width: 26px;
  	height: 26px;
  	line-height: 24px;
  	@include font-size(12);	
  } */
}
.quality-owl .owl-btns .owl-btn:hover {
  border-color: #1c4cb3;
  background-color: #1c4cb3;
  color: #fff;
}
@media screen and (max-width: 1219px) {
  .quality-owl .owl-btns .owl-btn {
    width: 40px;
    height: 40px;
    line-height: 38px;
  }
}
@media screen and (max-width: 767px) {
  .quality-owl .owl-btns .owl-btn {
    width: 30px;
    height: 30px;
    line-height: 28px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.quality-owl .owl-btns .item-prev {
  margin-right: 19px;
}
@media screen and (max-width: 1219px) {
  .quality-owl .owl-btns .item-prev {
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .quality-owl .owl-btns .item-prev {
    margin-right: 5px;
  }
}
.about-box6.about-ex {
  padding: 60px 0 128px;
}
@media screen and (max-width: 1419px) {
  .about-box6.about-ex {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 1219px) {
  .about-box6.about-ex {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 991px) {
  .about-box6.about-ex {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .about-box6.about-ex {
    padding: 30px 0;
  }
}
.about-box6.about-ex .page-title {
  margin-bottom: 45px;
}
@media screen and (max-width: 1219px) {
  .about-box6.about-ex .page-title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .about-box6.about-ex .page-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .about-box6.about-ex .page-title {
    margin-bottom: 20px;
  }
}

.ex-owl .owl-carousel {
  width: 108%;
  margin-left: -4%;
}
@media screen and (max-width: 1419px) {
  .ex-owl .owl-carousel {
    width: 102%;
    margin-left: -1%;
  }
}
.ex-owl .list-item {
  margin: 0 11.1111111111%;
}
@media screen and (max-width: 1419px) {
  .ex-owl .list-item {
    margin: 0 2.9411764706%;
  }
}
@media screen and (max-width: 640px) {
  .ex-owl .list-item {
    margin: 0 1.9607843137%;
  }
}
.ex-owl .item-pic {
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .ex-owl .item-pic {
    border-radius: 10px;
  }
}
.ex-owl .item-title {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.4;
  margin-top: 25px;
}
@media screen and (max-width: 1219px) {
  .ex-owl .item-title {
    font-size: 16px;
    font-size: 1.6rem;
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .ex-owl .item-title {
    font-size: 14px;
    font-size: 1.4rem;
    margin-top: 10px;
  }
}
.ex-owl .owl-buttons {
  display: none !important;
}
.ex-owl .owl-btns {
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
  width: 100%;
  margin-top: 28px;
}
@media screen and (max-width: 1219px) {
  .ex-owl .owl-btns {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .ex-owl .owl-btns {
    margin-top: 20px;
  }
}
.ex-owl .owl-btns .owl-btn {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  width: 44px;
  height: 44px;
  line-height: 42px;
  border-radius: 50%;
  font-size: 15px;
  font-size: 1.5rem;
  color: #1c4cb3;
  border: solid 1px rgba(153, 153, 153, 0.77);
  transition: all 0.35s;
  /* @media screen and (max-width:480px) {
  	width: 26px;
  	height: 26px;
  	line-height: 24px;
  	@include font-size(12);	
  } */
}
.ex-owl .owl-btns .owl-btn:hover {
  border-color: #1c4cb3;
  background-color: #1c4cb3;
  color: #fff;
}
@media screen and (max-width: 1219px) {
  .ex-owl .owl-btns .owl-btn {
    width: 40px;
    height: 40px;
    line-height: 38px;
  }
}
@media screen and (max-width: 767px) {
  .ex-owl .owl-btns .owl-btn {
    width: 30px;
    height: 30px;
    line-height: 28px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.ex-owl .owl-btns .item-prev {
  margin-right: 17px;
}
@media screen and (max-width: 1219px) {
  .ex-owl .owl-btns .item-prev {
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .ex-owl .owl-btns .item-prev {
    margin-right: 5px;
  }
}
/*-------------2-1-about end---------------------------------------------------------------*/
/*-------------2-2-about start-------------------------------------------------------------*/
.cer_wrap {
  padding-top: 20px;
}
@media screen and (max-width: 991px) {
  .cer_wrap {
    padding-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .cer_wrap {
    padding-top: 0;
  }
}
.cer_wrap .page-title {
  margin-bottom: 34px;
}
@media screen and (max-width: 991px) {
  .cer_wrap .page-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .cer_wrap .page-title {
    margin-bottom: 20px;
  }
}

.cer-box1 {
  padding-bottom: 34px;
}
@media screen and (max-width: 991px) {
  .cer-box1 {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .cer-box1 {
    padding-bottom: 20px;
  }
}
.cer-box1 .cer-title {
  margin-bottom: 43px;
}
@media screen and (max-width: 991px) {
  .cer-box1 .cer-title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .cer-box1 .cer-title {
    margin-bottom: 30px;
  }
}

.cer-box2 {
  background-color: #f1f1f1;
  padding-top: 79px;
  padding-bottom: 45px;
}
@media screen and (max-width: 1219px) {
  .cer-box2 {
    padding-top: 70px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .cer-box2 {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .cer-box2 {
    padding-top: 40px;
    padding-bottom: 20px;
  }
}
.cer-box2 .cer-title {
  background-color: #fff;
  margin-bottom: 66px;
}
@media screen and (max-width: 1419px) {
  .cer-box2 .cer-title {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1219px) {
  .cer-box2 .cer-title {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 991px) {
  .cer-box2 .cer-title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .cer-box2 .cer-title {
    margin-bottom: 30px;
  }
}

.cer-box3 {
  padding-top: 85px;
  padding-bottom: 46px;
}
@media screen and (max-width: 1219px) {
  .cer-box3 {
    padding-top: 70px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .cer-box3 {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .cer-box3 {
    padding-top: 40px;
    padding-bottom: 20px;
  }
}
.cer-box3 .cer-title {
  margin-bottom: 71px;
}
@media screen and (max-width: 1419px) {
  .cer-box3 .cer-title {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1219px) {
  .cer-box3 .cer-title {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 991px) {
  .cer-box3 .cer-title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .cer-box3 .cer-title {
    margin-bottom: 30px;
  }
}

.cer-title {
  display: inline-block;
  position: relative;
  background-color: #ededed;
  border-radius: 10px;
  min-width: 348px;
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 36px;
  padding-left: 48px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 20px;
}
.cer-title:before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #1c4cb3;
  left: 21px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1419px) {
  .cer-title {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 30px;
    min-width: 320px;
  }
}
@media screen and (max-width: 1219px) {
  .cer-title {
    padding-left: 38px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 20px;
    font-size: 20px;
    font-size: 2rem;
    min-width: 280px;
  }
  .cer-title:before {
    width: 10px;
    height: 10px;
    left: 15px;
  }
}
@media screen and (max-width: 991px) {
  .cer-title {
    padding-left: 38px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-right: 20px;
    min-width: 260px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 26px;
  }
}
@media screen and (max-width: 767px) {
  .cer-title {
    padding-left: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 15px;
    min-width: 220px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 24px;
  }
  .cer-title:before {
    width: 6px;
    height: 6px;
    left: 12px;
  }
}

.cer-list {
  font-size: 0;
  letter-spacing: 0;
}
.cer-list .list-item {
  display: inline-block;
  vertical-align: top;
  width: 20.5714285714%;
  margin-left: 5.9047142857%;
  margin-bottom: 79px;
}
@media screen and (max-width: 1419px) {
  .cer-list .list-item {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1219px) {
  .cer-list .list-item {
    margin-bottom: 40px;
    width: 22.75%;
    margin-left: 3%;
  }
}
@media screen and (max-width: 991px) {
  .cer-list .list-item {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .cer-list .list-item {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 640px) {
  .cer-list .list-item {
    width: 29.33%;
    margin: 0 2% 20px !important;
  }
}
@media screen and (max-width: 400px) {
  .cer-list .list-item {
    width: 46%;
    margin: 0 2% 20px !important;
  }
}
.cer-list .item-title {
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.3;
  margin-top: 5px;
}
@media screen and (max-width: 1419px) {
  .cer-list .item-title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1219px) {
  .cer-list .item-title {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .cer-list .item-title {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/*-------------2-2-about end---------------------------------------------------------------*/
/*-------------3-1-R&D start---------------------------------------------------------------*/
.rd_wrap {
  padding-bottom: 139px;
}
@media screen and (max-width: 1419px) {
  .rd_wrap {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 1219px) {
  .rd_wrap {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 991px) {
  .rd_wrap {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .rd_wrap {
    padding-bottom: 40px;
  }
}
.rd_wrap .page-title {
  margin-bottom: 63px;
}
@media screen and (max-width: 1419px) {
  .rd_wrap .page-title {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1219px) {
  .rd_wrap .page-title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .rd_wrap .page-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .rd_wrap .page-title {
    margin-bottom: 20px;
  }
}

.rd-box1 {
  margin-bottom: 83px;
}
@media screen and (max-width: 1419px) {
  .rd-box1 {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 1219px) {
  .rd-box1 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 991px) {
  .rd-box1 {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .rd-box1 {
    margin-bottom: 30px;
  }
}
.rd-box1 .item-pic {
  float: right;
  width: 50%;
  overflow: hidden;
  border-radius: 20px;
  margin-left: 15px;
}
.rd-box1 .item-pic img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .rd-box1 .item-pic {
    border-radius: 10px;
  }
}
@media screen and (max-width: 480px) {
  .rd-box1 .item-pic {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-bottom: 15px;
  }
}
.rd-box1 .item-body {
  margin-top: -4px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
}
.rd-box1 .item-body, .rd-box1 .item-body * {
  color: #666;
}
@media screen and (max-width: 1419px) {
  .rd-box1 .item-body {
    margin-top: 0;
  }
}
@media screen and (max-width: 1219px) {
  .rd-box1 .item-body {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
  }
}
@media screen and (max-width: 991px) {
  .rd-box1 .item-body {
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .rd-box1 .item-body {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}

.rd-box2 {
  position: relative;
  margin-bottom: 94px;
}
@media screen and (max-width: 1419px) {
  .rd-box2 {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 1219px) {
  .rd-box2 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 991px) {
  .rd-box2 {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .rd-box2 {
    margin-bottom: 30px;
  }
}
.rd-box2 img {
  display: block;
  width: 100%;
}

.rd-box3 .item-pic {
  float: left;
  width: 50%;
  overflow: hidden;
  border-radius: 20px;
  margin-right: 2.4285714286%;
  position: relative;
}
.rd-box3 .item-pic img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 1219px) {
  .rd-box3 .item-pic {
    margin-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .rd-box3 .item-pic {
    border-radius: 10px;
  }
}
@media screen and (max-width: 480px) {
  .rd-box3 .item-pic {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-bottom: 15px;
  }
}
.rd-box3 .item-body {
  padding-top: 26px;
  font-size: 0;
}
@media screen and (max-width: 1419px) {
  .rd-box3 .item-body {
    padding-top: 0;
  }
}
.rd-box3 .item-desc {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
  margin-bottom: 60px;
}
.rd-box3 .item-desc, .rd-box3 .item-desc * {
  color: #666;
}
@media screen and (max-width: 1419px) {
  .rd-box3 .item-desc {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1219px) {
  .rd-box3 .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
  }
}
@media screen and (max-width: 991px) {
  .rd-box3 .item-desc {
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .rd-box3 .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
    margin-bottom: 20px;
  }
}
.rd-box3 .item-btn {
  overflow: hidden;
  border-radius: 10px;
  display: inline-block;
  background-color: #1c4cb3;
  border: solid 1px #1c4cb3;
  color: #fff;
  line-height: 46px;
  padding: 0 25px;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 1219px) {
  .rd-box3 .item-btn {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 40px;
  }
}
@media screen and (max-width: 991px) {
  .rd-box3 .item-btn {
    line-height: 36px;
  }
}
@media screen and (max-width: 767px) {
  .rd-box3 .item-btn {
    padding: 0 20px;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 28px;
    border-radius: 5px;
  }
}

/* an-btn6 start */
.an-btn6 {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  width: 84px;
  height: 84px;
  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: 14px 0 14px 15px;
  border-style: solid;
  border-color: transparent transparent transparent #1c4cb3;
}
@media screen and (max-width: 1419px) {
  .an-btn6 {
    width: 70px;
    height: 70px;
  }
  .an-btn6:before {
    border-width: 12px 0 12px 13px;
  }
}
@media screen and (max-width: 1219px) {
  .an-btn6 {
    width: 60px;
    height: 60px;
  }
  .an-btn6:before {
    border-width: 10px 0 10px 12px;
  }
}
@media screen and (max-width: 991px) {
  .an-btn6 {
    width: 50px;
    height: 50px;
  }
  .an-btn6:before {
    border-width: 8px 0 8px 11px;
  }
}
@media screen and (max-width: 767px) {
  .an-btn6 {
    width: 40px;
    height: 40px;
  }
  .an-btn6:before {
    border-width: 6px 0 6px 10px;
  }
}
.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: 1px;
  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: 1;
  }
  /* 25% {
  	transform: scale(1.4);
  	opacity: .8
  } */
  50% {
    transform: scale(1.76);
    opacity: 0.5;
  }
  /* 75% {
  	transform: scale(2.2);
  	opacity: .2
  } */
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
/* an-btn6 end */
.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.0666666667%;
  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;
}

/*-------------3-1-R&D end-----------------------------------------------------------------*/
/*-------------4-1-applicantion start------------------------------------------------------*/
.app1_wrap {
  padding-bottom: 51px;
}
@media screen and (max-width: 1219px) {
  .app1_wrap {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .app1_wrap {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .app1_wrap {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .app1_wrap {
    padding-bottom: 10px;
  }
}
.app1_wrap .page-title {
  margin-bottom: 58px;
}
@media screen and (max-width: 1419px) {
  .app1_wrap .page-title {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1219px) {
  .app1_wrap .page-title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .app1_wrap .page-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .app1_wrap .page-title {
    margin-bottom: 20px;
  }
}

.app1-list .list-item {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 74px;
}
@media screen and (max-width: 1419px) {
  .app1-list .list-item {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 1219px) {
  .app1-list .list-item {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 991px) {
  .app1-list .list-item {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .app1-list .list-item {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .app1-list .list-item {
    display: block;
  }
}
.app1-list .list-item.item1 {
  flex-direction: row;
}
.app1-list .list-item.item1 .item-pic {
  margin-right: 4.2857142857%;
}
@media screen and (max-width: 1419px) {
  .app1-list .list-item.item1 .item-pic {
    margin-right: 3.5714285714%;
  }
}
@media screen and (max-width: 1219px) {
  .app1-list .list-item.item1 .item-pic {
    margin-right: 2.1428571429%;
  }
}
.app1-list .list-item.item2 {
  flex-direction: row-reverse;
}
.app1-list .list-item.item2 .item-pic {
  margin-left: 4.2857142857%;
}
@media screen and (max-width: 1419px) {
  .app1-list .list-item.item2 .item-pic {
    margin-left: 3.5714285714%;
  }
}
@media screen and (max-width: 1219px) {
  .app1-list .list-item.item2 .item-pic {
    margin-left: 2.1428571429%;
  }
}
.app1-list .item-pic {
  flex: 0 0 auto;
  width: 62.8571428571%;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .app1-list .item-pic {
    border-radius: 10px;
  }
}
@media screen and (max-width: 640px) {
  .app1-list .item-pic {
    width: 57.1428571429%;
  }
}
@media screen and (max-width: 480px) {
  .app1-list .item-pic {
    width: 100%;
    margin: 0 auto 15px !important;
  }
}
.app1-list .item-body {
  flex: 1 1 auto;
  font-size: 0;
}
.app1-list .item-title {
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 29px;
}
@media screen and (max-width: 1419px) {
  .app1-list .item-title {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1219px) {
  .app1-list .item-title {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 991px) {
  .app1-list .item-title {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  .app1-list .item-title {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.app1-list .item-desc {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
  max-height: 150px;
  margin-bottom: 45px;
}
@media screen and (max-width: 1419px) {
  .app1-list .item-desc {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1219px) {
  .app1-list .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
    max-height: 130px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 991px) {
  .app1-list .item-desc {
    line-height: 22px;
    max-height: 110px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .app1-list .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
    max-height: 100px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 640px) {
  .app1-list .item-desc {
    max-height: 60px;
  }
  .app1-list .item-desc a {
    -webkit-line-clamp: 3;
  }
}
.app1-list .item-btn {
  display: inline-block;
  padding: 0 40px;
  border: solid 1px #1c4cb3;
  background-color: #1c4cb3;
  border-radius: 10px;
  line-height: 52px;
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 1219px) {
  .app1-list .item-btn {
    padding: 0 30px;
    line-height: 44px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 991px) {
  .app1-list .item-btn {
    padding: 0 20px;
    line-height: 36px;
  }
}
@media screen and (max-width: 767px) {
  .app1-list .item-btn {
    padding: 0 15px;
    line-height: 28px;
    font-size: 12px;
    font-size: 1.2rem;
    border-radius: 5px;
  }
}

/*-------------4-1-applicantion end--------------------------------------------------------*/
/*-------------4-2-applicantion start------------------------------------------------------*/
.app2_wrap {
  padding-bottom: 99px;
}
@media screen and (max-width: 1419px) {
  .app2_wrap {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 1219px) {
  .app2_wrap {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 991px) {
  .app2_wrap {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .app2_wrap {
    padding-bottom: 40px;
  }
}

.app2-main > .item-title {
  text-align: center;
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 38px;
  padding-bottom: 36px;
  border-bottom: solid 1px #e6e6e6;
}
@media screen and (max-width: 1419px) {
  .app2-main > .item-title {
    font-size: 24px;
    font-size: 2.4rem;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1219px) {
  .app2-main > .item-title {
    font-size: 22px;
    font-size: 2.2rem;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 991px) {
  .app2-main > .item-title {
    font-size: 20px;
    font-size: 2rem;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .app2-main > .item-title {
    font-size: 18px;
    font-size: 1.8rem;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
.app2-main > .item-desc {
  padding-bottom: 42px;
  border-bottom: solid 1px #e6e6e6;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
}
.app2-main > .item-desc, .app2-main > .item-desc * {
  color: #666;
}
.app2-main > .item-desc img, .app2-main > .item-desc iframe {
  max-width: 100%;
}
.app2-main > .item-desc img {
  border-radius: 15px;
}
@media screen and (max-width: 1219px) {
  .app2-main > .item-desc {
    padding-bottom: 30px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
  }
}
@media screen and (max-width: 991px) {
  .app2-main > .item-desc {
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .app2-main > .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
  .app2-main > .item-desc img {
    border-radius: 10px;
  }
}
.app2-main .img-list {
  font-size: 0;
  letter-spacing: 0;
}
.app2-main .img-list .list-item {
  display: inline-block;
  vertical-align: top;
  width: 47.9285714286%;
  margin-left: 4.1428571429%;
  margin-bottom: 24px;
}
.app2-main .img-list .list-item:nth-child(odd) {
  margin-left: 0;
}
@media screen and (max-width: 1219px) {
  .app2-main .img-list .list-item {
    width: 49%;
    margin-left: 2%;
  }
}
.app2-main .img-list .item-pic {
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .app2-main .img-list .item-pic {
    border-radius: 10px;
  }
}
.app2-main .m-oths {
  padding: 40px 0 48px;
}
.app2-main .m-oths .oths-item-1 {
  margin-bottom: 16px;
}
@media screen and (max-width: 1419px) {
  .app2-main .m-oths {
    padding: 25px 0;
  }
  .app2-main .m-oths .oths-item-1 {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1219px) {
  .app2-main .m-oths {
    padding: 20px 0;
  }
  .app2-main .m-oths .oths-item-1 {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .app2-main .m-oths {
    padding: 15px 0;
  }
}

/*-------------4-2-applicantion end--------------------------------------------------------*/
/*-------------5-1-service start-----------------------------------------------------------*/
.service-bread {
  background-color: #f5f5f5;
}

@media screen and (max-width: 640px) {
  .service_wrap .page-title {
    font-size: 18px !important;
    font-size: 1.8rem !important;
  }
}

.service-box1 {
  background-color: #f5f5f5;
  padding-bottom: 108px;
}
@media screen and (max-width: 1419px) {
  .service-box1 {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 1219px) {
  .service-box1 {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 991px) {
  .service-box1 {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .service-box1 {
    padding-bottom: 30px;
  }
}
.service-box1 .page-title {
  margin-bottom: 44px;
}
@media screen and (max-width: 991px) {
  .service-box1 .page-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .service-box1 .page-title {
    margin-bottom: 20px;
  }
}
.service-box1 .item-box .item-pic {
  float: right;
  width: 50%;
  overflow: hidden;
  border-radius: 20px;
  margin-left: 5.7142857143%;
  position: relative;
}
.service-box1 .item-box .item-pic img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 1419px) {
  .service-box1 .item-box .item-pic {
    margin-left: 3.5714285714%;
  }
}
@media screen and (max-width: 1219px) {
  .service-box1 .item-box .item-pic {
    margin-left: 15px;
  }
}
@media screen and (max-width: 767px) {
  .service-box1 .item-box .item-pic {
    border-radius: 10px;
  }
}
@media screen and (max-width: 480px) {
  .service-box1 .item-box .item-pic {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-bottom: 15px;
  }
}
.service-box1 .item-box .item-body {
  padding-top: 52px;
  font-size: 0;
}
@media screen and (max-width: 1419px) {
  .service-box1 .item-box .item-body {
    padding-top: 0;
  }
}
.service-box1 .item-box .item-desc {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
  margin-bottom: 15px;
}
.service-box1 .item-box .item-desc, .service-box1 .item-box .item-desc * {
  color: #666;
}
@media screen and (max-width: 1219px) {
  .service-box1 .item-box .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
  }
}
@media screen and (max-width: 991px) {
  .service-box1 .item-box .item-desc {
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .service-box1 .item-box .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
    margin-bottom: 20px;
  }
}
.service-box1 .item-box .item-btn {
  overflow: hidden;
  border-radius: 10px;
  display: inline-block;
  background-color: #1c4cb3;
  border: solid 1px #1c4cb3;
  color: #fff;
  line-height: 52px;
  padding: 0 7px;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 1219px) {
  .service-box1 .item-box .item-btn {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 44px;
  }
}
@media screen and (max-width: 991px) {
  .service-box1 .item-box .item-btn {
    line-height: 36px;
  }
}
@media screen and (max-width: 767px) {
  .service-box1 .item-box .item-btn {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 28px;
    border-radius: 5px;
  }
}

.service-box2 {
  padding: 87px 0 98px;
}
@media screen and (max-width: 1419px) {
  .service-box2 {
    padding: 80px 0;
  }
}
@media screen and (max-width: 1219px) {
  .service-box2 {
    padding: 70px 0;
  }
}
@media screen and (max-width: 991px) {
  .service-box2 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .service-box2 {
    padding: 30px 0;
  }
}
.service-box2 .item-pic {
  float: left;
  width: 50%;
  overflow: hidden;
  border-radius: 20px;
  margin-right: 4.5714285714%;
  position: relative;
}
.service-box2 .item-pic img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 1419px) {
  .service-box2 .item-pic {
    margin-right: 3.5714285714%;
  }
}
@media screen and (max-width: 1219px) {
  .service-box2 .item-pic {
    margin-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .service-box2 .item-pic {
    border-radius: 10px;
  }
}
@media screen and (max-width: 480px) {
  .service-box2 .item-pic {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.service-box2 .item-body {
  padding-top: 74px;
  font-size: 0;
}
@media screen and (max-width: 1419px) {
  .service-box2 .item-body {
    padding-top: 50px;
  }
}
@media screen and (max-width: 1219px) {
  .service-box2 .item-body {
    padding-top: 40px;
  }
}
@media screen and (max-width: 991px) {
  .service-box2 .item-body {
    padding-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .service-box2 .item-body {
    padding-top: 0;
  }
}
.service-box2 .page-title {
  text-align: left;
  margin-bottom: 35px;
}
@media screen and (max-width: 1419px) {
  .service-box2 .page-title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1219px) {
  .service-box2 .page-title {
    margin-bottom: 10px;
  }
}
.service-box2 .item-desc {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
}
.service-box2 .item-desc, .service-box2 .item-desc * {
  color: #666;
}
@media screen and (max-width: 1219px) {
  .service-box2 .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
  }
}
@media screen and (max-width: 991px) {
  .service-box2 .item-desc {
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .service-box2 .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}

.service-box3 {
  background-color: #f5f5f5;
  padding: 80px 0 61px;
}
@media screen and (max-width: 1219px) {
  .service-box3 {
    padding: 70px 0 40px;
  }
}
@media screen and (max-width: 991px) {
  .service-box3 {
    padding: 50px 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .service-box3 {
    padding: 30px 0 10px;
  }
}
.service-box3 .page-title {
  margin-bottom: 24px;
}
@media screen and (max-width: 1419px) {
  .service-box3 .page-title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1219px) {
  .service-box3 .page-title {
    margin-bottom: 10px;
  }
}
.service-box3 .item-desc {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
  margin-bottom: 38px;
}
.service-box3 .item-desc, .service-box3 .item-desc * {
  color: #666;
}
@media screen and (max-width: 1219px) {
  .service-box3 .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  .service-box3 .item-desc {
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .service-box3 .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
    margin-bottom: 20px;
  }
}
.service-box3 .img-list {
  font-size: 0;
  letter-spacing: 0;
}
.service-box3 .img-list .list-item {
  display: inline-block;
  vertical-align: top;
  width: 46.4285714286%;
  margin-left: 7.1428571429%;
  margin-bottom: 30px;
}
.service-box3 .img-list .list-item:nth-child(odd) {
  margin-left: 0;
}
@media screen and (max-width: 1219px) {
  .service-box3 .img-list .list-item {
    width: 49%;
    margin-left: 2%;
  }
}
@media screen and (max-width: 400px) {
  .service-box3 .img-list .list-item {
    /* width: 100%;
    margin-left: 0;
    margin-bottom: 20px; */
  }
}
.service-box3 .img-list .item-pic {
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .service-box3 .img-list .item-pic {
    border-radius: 10px;
  }
}
@media screen and (max-width: 480px) {
  .service-box3 .img-list .item-pic {
    border-radius: 10px;
  }
}

.related-appbox {
  padding: 75px 0 97px;
}
@media screen and (max-width: 1219px) {
  .related-appbox {
    padding: 70px 0;
  }
}
@media screen and (max-width: 991px) {
  .related-appbox {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .related-appbox {
    padding: 30px 0;
  }
}
.related-appbox .box-title {
  text-align: center;
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  font-size: 44px;
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 48px;
}
.related-appbox .box-title a:hover {
  color: #1c4cb3;
}
@media screen and (max-width: 1419px) {
  .related-appbox .box-title {
    font-size: 38px;
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 1219px) {
  .related-appbox .box-title {
    font-size: 32px;
    font-size: 3.2rem;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .related-appbox .box-title {
    font-size: 26px;
    font-size: 2.6rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .related-appbox .box-title {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 20px;
  }
}

.app-owl .list-item {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
@media screen and (max-width: 480px) {
  .app-owl .list-item {
    display: block;
  }
}
.app-owl .item-pic {
  flex: 0 0 auto;
  width: 62.8571428571%;
  border-radius: 20px;
  margin-right: 4.2857142857%;
}
@media screen and (max-width: 1419px) {
  .app-owl .item-pic {
    margin-right: 3.5714285714%;
  }
}
@media screen and (max-width: 1219px) {
  .app-owl .item-pic {
    margin-right: 2.1428571429%;
  }
}
@media screen and (max-width: 767px) {
  .app-owl .item-pic {
    border-radius: 10px;
  }
}
@media screen and (max-width: 640px) {
  .app-owl .item-pic {
    width: 57.1428571429%;
  }
}
@media screen and (max-width: 480px) {
  .app-owl .item-pic {
    width: 100%;
    margin: 0 auto 15px !important;
  }
}
.app-owl .item-body {
  flex: 1 1 auto;
  font-size: 0;
}
.app-owl .item-title {
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 29px;
}
@media screen and (max-width: 1419px) {
  .app-owl .item-title {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1219px) {
  .app-owl .item-title {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 991px) {
  .app-owl .item-title {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  .app-owl .item-title {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.app-owl .item-desc {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
  max-height: 150px;
  margin-bottom: 45px;
}
@media screen and (max-width: 1419px) {
  .app-owl .item-desc {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1219px) {
  .app-owl .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
    max-height: 130px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 991px) {
  .app-owl .item-desc {
    line-height: 22px;
    max-height: 110px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .app-owl .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
    max-height: 100px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 640px) {
  .app-owl .item-desc {
    max-height: 60px;
  }
  .app-owl .item-desc a {
    -webkit-line-clamp: 3;
  }
}
.app-owl .item-btn {
  display: inline-block;
  padding: 0 40px;
  border: solid 1px #1c4cb3;
  background-color: #1c4cb3;
  border-radius: 10px;
  line-height: 52px;
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 1219px) {
  .app-owl .item-btn {
    padding: 0 30px;
    line-height: 44px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 991px) {
  .app-owl .item-btn {
    padding: 0 20px;
    line-height: 36px;
  }
}
@media screen and (max-width: 767px) {
  .app-owl .item-btn {
    padding: 0 15px;
    line-height: 28px;
    font-size: 12px;
    font-size: 1.2rem;
    border-radius: 5px;
  }
}
.app-owl .owl-buttons {
  display: none !important;
}
.app-owl .owl-btns {
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
  width: 100%;
  margin-top: 44px;
}
@media screen and (max-width: 1219px) {
  .app-owl .owl-btns {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .app-owl .owl-btns {
    margin-top: 20px;
  }
}
.app-owl .owl-btns .owl-btn {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  width: 44px;
  height: 44px;
  line-height: 42px;
  border-radius: 50%;
  font-size: 15px;
  font-size: 1.5rem;
  color: #1c4cb3;
  border: solid 1px rgba(153, 153, 153, 0.77);
  transition: all 0.35s;
  /* @media screen and (max-width:480px) {
  	width: 26px;
  	height: 26px;
  	line-height: 24px;
  	@include font-size(12);	
  } */
}
.app-owl .owl-btns .owl-btn:hover {
  border-color: #1c4cb3;
  background-color: #1c4cb3;
  color: #fff;
}
@media screen and (max-width: 1219px) {
  .app-owl .owl-btns .owl-btn {
    width: 40px;
    height: 40px;
    line-height: 38px;
  }
}
@media screen and (max-width: 767px) {
  .app-owl .owl-btns .owl-btn {
    width: 30px;
    height: 30px;
    line-height: 28px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.app-owl .owl-btns .item-prev {
  margin-right: 17px;
}
@media screen and (max-width: 1219px) {
  .app-owl .owl-btns .item-prev {
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .app-owl .owl-btns .item-prev {
    margin-right: 5px;
  }
}
/*-------------5-1-service end-------------------------------------------------------------*/
/*-------------5-2-faq start---------------------------------------------------------------*/
.faq_wrap {
  padding-bottom: 77px;
}
@media screen and (max-width: 1219px) {
  .faq_wrap {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 991px) {
  .faq_wrap {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .faq_wrap {
    padding-bottom: 30px;
  }
}
.faq_wrap .page-title {
  margin-bottom: 59px;
}
@media screen and (max-width: 1419px) {
  .faq_wrap .page-title {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1219px) {
  .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;
  }
}

.faq-list {
  padding-bottom: 33px;
}
@media screen and (max-width: 1219px) {
  .faq-list {
    padding-bottom: 20px;
  }
}
.faq-list .list-item.active .item-title {
  background-color: #1c4cb3;
  color: #fff;
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
}
.faq-list .list-item.active .item-title .iconfont {
  transform: rotate(-90deg);
}
.faq-list .item-title {
  cursor: pointer;
  position: relative;
  transition: all 0.35s;
  background-color: #f7f7f7;
  border-radius: 10px;
  line-height: 24px;
  font-size: 18px;
  font-size: 1.8rem;
  padding: 21px 50px 20px 28px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1219px) {
  .faq-list .item-title {
    padding: 15px 40px 15px 15px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .faq-list .item-title {
    padding: 15px 30px 15px 15px;
    margin-bottom: 15px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 20px;
  }
}
.faq-list .item-title .iconfont {
  transition: all 0.35s;
  position: absolute;
  font-size: 18px;
  font-size: 1.8rem;
  color: #999;
  right: 30px;
  top: 21px;
}
@media screen and (max-width: 1219px) {
  .faq-list .item-title .iconfont {
    font-size: 16px;
    font-size: 1.6rem;
    right: 15px;
    top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .faq-list .item-title .iconfont {
    font-size: 14px;
    font-size: 1.4rem;
    right: 10px;
  }
}
.faq-list .item-desc {
  display: none;
  line-height: 24px;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 6px 28px 26px;
}
@media screen and (max-width: 1219px) {
  .faq-list .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 20px;
    padding: 0 15px 20px;
  }
}
@media screen and (max-width: 767px) {
  .faq-list .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/*-------------5-2-faq end-----------------------------------------------------------------*/
/*-------------5-3-download start----------------------------------------------------------*/
.download_wrap {
  padding-bottom: 115px;
}
@media screen and (max-width: 1419px) {
  .download_wrap {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 1219px) {
  .download_wrap {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 991px) {
  .download_wrap {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .download_wrap {
    padding-bottom: 30px;
  }
}
.download_wrap .page-title {
  margin-bottom: 39px;
}
@media screen and (max-width: 991px) {
  .download_wrap .page-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .download_wrap .page-title {
    margin-bottom: 20px;
  }
}

.download-list {
  padding-bottom: 45px;
}
@media screen and (max-width: 1219px) {
  .download-list {
    padding-bottom: 40px;
  }
}
@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 {
  background-color: #f7f7f7;
  margin-bottom: 22px;
  padding: 17px 50px 16px 18px;
  position: relative;
}
@media screen and (max-width: 991px) {
  .download-list .list-item {
    padding: 15px 50px 15px 15px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .download-list .list-item {
    padding: 10px 35px 10px 10px;
    margin-bottom: 15px;
  }
}
.download-list .item-pic {
  float: left;
  width: 30px;
  margin-right: 29px;
}
@media screen and (max-width: 1219px) {
  .download-list .item-pic {
    margin-right: 20px;
  }
}
@media screen and (max-width: 991px) {
  .download-list .item-pic {
    margin-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .download-list .item-pic {
    margin-right: 8px;
    width: 28px;
  }
}
.download-list .item-title {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
}
.download-list .item-title, .download-list .item-title a {
  color: #666;
}
@media screen and (max-width: 991px) {
  .download-list .item-title {
    line-height: 24px;
    margin-top: 4px;
  }
}
@media screen and (max-width: 767px) {
  .download-list .item-title {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 20px;
    margin-top: 5px;
  }
}
.download-list .item-btn {
  position: absolute;
  right: 18px;
  top: 23px;
  color: #ff1f1f;
  font-size: 20px;
  font-size: 2rem;
  line-height: 20px;
  display: block;
}
.download-list .item-btn:hover {
  color: #1c4cb3;
}
@media screen and (max-width: 991px) {
  .download-list .item-btn {
    right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .download-list .item-btn {
    font-size: 18px;
    font-size: 1.8rem;
    top: 15px;
    right: 10px;
  }
}

/*-------------5-3-download end------------------------------------------------------------*/
/*-------------6-1-news start--------------------------------------------------------------*/
.news1_wrap {
  padding-bottom: 101px;
}
@media screen and (max-width: 1419px) {
  .news1_wrap {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 1219px) {
  .news1_wrap {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 991px) {
  .news1_wrap {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .news1_wrap {
    padding-bottom: 30px;
  }
}
.news1_wrap .page-title {
  margin-bottom: 70px;
}
@media screen and (max-width: 1419px) {
  .news1_wrap .page-title {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1219px) {
  .news1_wrap .page-title {
    margin-bottom: 40px;
  }
}
@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;
  }
}

.news1-list {
  font-size: 0;
  letter-spacing: 0;
  padding-bottom: 6px;
}
.news1-list .list-item {
  position: relative;
  display: inline-block;
  vertical-align: top;
  background-color: #ffffff;
  box-shadow: 6px 6px 21px 0px rgba(0, 0, 0, 0.09);
  border-radius: 20px;
  overflow: hidden;
  width: 31.8571428571%;
  margin-left: 2.2142857143%;
  margin-bottom: 77px;
}
.news1-list .list-item:hover .item-date {
  background-color: #1c4cb3;
  color: #fff;
}
@media screen and (max-width: 1419px) {
  .news1-list .list-item {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1219px) {
  .news1-list .list-item {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 991px) {
  .news1-list .list-item {
    margin-bottom: 40px;
    border-radius: 15px;
  }
}
@media screen and (max-width: 767px) {
  .news1-list .list-item {
    margin-bottom: 30px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 640px) {
  .news1-list .list-item {
    box-shadow: none;
    border-radius: 0;
  }
}
@media screen and (max-width: 480px) {
  .news1-list .list-item {
    width: 48%;
    margin: 0 1% 20px !important;
  }
}
@media screen and (max-width: 640px) {
  .news1-list .item-pic {
    border-radius: 10px;
    margin-bottom: 10px;
  }
}
.news1-list .item-date {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 20px;
  background-color: #fff;
  color: #1c4cb3;
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  line-height: 1;
  text-align: center;
  width: 90px;
  height: 90px;
  padding: 11px 5px;
  transition: all 0.35s;
}
.news1-list .item-date .item-m {
  font-size: 31px;
  font-size: 3.1rem;
  margin-bottom: 16px;
}
.news1-list .item-date .item-d {
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 1419px) {
  .news1-list .item-date {
    width: 85px;
    height: 85px;
  }
  .news1-list .item-date .item-m {
    font-size: 28px;
    font-size: 2.8rem;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 1219px) {
  .news1-list .item-date {
    width: 75px;
    height: 75px;
  }
  .news1-list .item-date .item-m {
    font-size: 24px;
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 991px) {
  .news1-list .item-date {
    width: 65px;
    height: auto;
    border-radius: 15px;
    padding: 10px 5px;
  }
  .news1-list .item-date .item-m {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 8px;
  }
  .news1-list .item-date .item-d {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .news1-list .item-date {
    top: 5px;
    right: 5px;
    border-radius: 10px;
    padding: 5px 10px;
    width: auto;
    background-color: #fff !important;
    color: #333 !important;
  }
  .news1-list .item-date .item-m {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
  .news1-list .item-date .item-d {
    font-size: 10px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 640px) {
  .news1-list .item-date {
    background-color: transparent;
    position: relative;
    top: auto;
    right: auto;
    text-align: left;
    padding: 0;
    font-size: 0;
    letter-spacing: 0;
  }
  .news1-list .item-date > * {
    display: inline-block;
  }
  .news1-list .item-date .item-m {
    margin-right: 5px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .news1-list .item-date .item-d {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.news1-list .item-body {
  padding: 35px 24px 39px 24px;
}
@media screen and (max-width: 1419px) {
  .news1-list .item-body {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 1219px) {
  .news1-list .item-body {
    padding: 20px 15px 25px;
  }
}
@media screen and (max-width: 991px) {
  .news1-list .item-body {
    padding: 15px 10px 20px;
  }
}
@media screen and (max-width: 640px) {
  .news1-list .item-body {
    padding: 0;
  }
}
.news1-list .item-title {
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 31px;
  height: 62px;
  margin-bottom: 16px;
}
@media screen and (max-width: 1419px) {
  .news1-list .item-title {
    line-height: 26px;
    height: 52px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1219px) {
  .news1-list .item-title {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 24px;
    height: 48px;
  }
}
@media screen and (max-width: 991px) {
  .news1-list .item-title {
    line-height: 22px;
    height: 44px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  .news1-list .item-title {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 20px;
    height: 40px;
  }
}
@media screen and (max-width: 640px) {
  .news1-list .item-title {
    line-height: 18px;
    height: 36px;
  }
}
.news1-list .item-desc {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
}
@media screen and (max-width: 1219px) {
  .news1-list .item-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .news1-list .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 18px;
  }
}

/*-------------6-1-news end----------------------------------------------------------------*/
/*-------------6-2-news start--------------------------------------------------------------*/
.news2_wrap {
  padding-bottom: 31px;
}
@media screen and (max-width: 767px) {
  .news2_wrap {
    padding-bottom: 10px;
  }
}

.news2-mainwrap .box-main {
  width: 978px;
  padding-bottom: 50px;
}
@media screen and (max-width: 1419px) {
  .news2-mainwrap .box-main {
    width: 860px;
  }
}
@media screen and (max-width: 1219px) {
  .news2-mainwrap .box-main {
    width: 680px;
  }
}
@media screen and (max-width: 991px) {
  .news2-mainwrap .box-main {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .news2-mainwrap .box-main {
    padding-bottom: 30px;
  }
}
.news2-mainwrap .box-slide {
  width: 341px;
}
@media screen and (max-width: 1419px) {
  .news2-mainwrap .box-slide {
    width: 300px;
  }
}
@media screen and (max-width: 1219px) {
  .news2-mainwrap .box-slide {
    width: 250px;
  }
}
@media screen and (max-width: 991px) {
  .news2-mainwrap .box-slide {
    width: 100%;
  }
}

.news2-main {
  padding-top: 6px;
}
.news2-main > .item-title {
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.3;
  margin-bottom: 35px;
}
@media screen and (max-width: 1419px) {
  .news2-main > .item-title {
    font-size: 24px;
    font-size: 2.4rem;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 1219px) {
  .news2-main > .item-title {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 991px) {
  .news2-main > .item-title {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .news2-main > .item-title {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}
.news2-main > .item-date {
  font-size: 0;
  letter-spacing: 0;
  border-bottom: solid 1px #e6e6e6;
  padding-bottom: 35px;
  padding-right: 134px;
  margin-bottom: 45px;
}
.news2-main > .item-date > * {
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 1419px) {
  .news2-main > .item-date {
    padding-right: 0;
    padding-bottom: 30px;
    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 {
  float: left;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 24px;
  color: #1c4cb3;
}
@media screen and (max-width: 1419px) {
  .news2-main > .item-date .item-p {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1219px) {
  .news2-main > .item-date .item-p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 991px) {
  .news2-main > .item-date .item-p {
    float: none;
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .news2-main > .item-date .item-p {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.news2-main > .item-date .pro-share {
  float: right;
}
@media screen and (max-width: 991px) {
  .news2-main > .item-date .pro-share {
    float: none;
  }
}
.news2-main > .item-desc {
  padding-bottom: 38px;
  border-bottom: solid 1px #e6e6e6;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
}
.news2-main > .item-desc, .news2-main > .item-desc * {
  color: #666;
}
.news2-main > .item-desc img, .news2-main > .item-desc iframe {
  max-width: 100%;
}
.news2-main > .item-desc img {
  border-radius: 20px;
}
@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 {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
  .news2-main > .item-desc img {
    border-radius: 15px;
  }
}
@media screen and (max-width: 480px) {
  .news2-main > .item-desc img {
    border-radius: 10px;
  }
}

.news2-stitle {
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1.2;
  margin-bottom: 42px;
  padding-top: 2px;
}
.news2-stitle a:hover {
  color: #1c4cb3;
}
@media screen and (max-width: 1419px) {
  .news2-stitle {
    font-size: 32px;
    font-size: 3.2rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1219px) {
  .news2-stitle {
    font-size: 28px;
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 991px) {
  .news2-stitle {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .news2-stitle {
    font-size: 20px;
    font-size: 2rem;
  }
}

.news2-slide {
  font-size: 0;
  letter-spacing: 0;
}
.news2-slide .list-item {
  position: relative;
  display: inline-block;
  vertical-align: top;
  background-color: #ffffff;
  box-shadow: 6px 6px 21px 0px rgba(0, 0, 0, 0.09);
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  margin-bottom: 49px;
}
.news2-slide .list-item:hover .item-date {
  background-color: #1c4cb3;
  color: #fff;
}
@media screen and (max-width: 1419px) {
  .news2-slide .list-item {
    margin-bottom: 40px;
    border-radius: 15px;
  }
}
@media screen and (max-width: 1219px) {
  .news2-slide .list-item {
    margin-bottom: 30px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 991px) {
  .news2-slide .list-item {
    width: 31.33%;
    margin: 0 1% 30px;
  }
}
@media screen and (max-width: 640px) {
  .news2-slide .list-item {
    box-shadow: none;
    border-radius: 0;
  }
}
@media screen and (max-width: 480px) {
  .news2-slide .list-item {
    width: 48%;
    margin: 0 1% 20px !important;
  }
}
@media screen and (max-width: 640px) {
  .news2-slide .item-pic {
    border-radius: 10px;
    margin-bottom: 10px;
  }
}
.news2-slide .item-date {
  position: absolute;
  top: 8px;
  right: 9px;
  border-radius: 20px;
  background-color: #fff;
  color: #1c4cb3;
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  line-height: 1;
  text-align: center;
  width: 70px;
  height: 70px;
  padding: 10px 5px;
  transition: all 0.35s;
}
.news2-slide .item-date .item-m {
  font-size: 22px;
  font-size: 2.2rem;
  margin-bottom: 11px;
}
.news2-slide .item-date .item-d {
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (max-width: 1419px) {
  .news2-slide .item-date {
    width: 65px;
    height: auto;
    border-radius: 15px;
    padding: 10px 5px;
  }
  .news2-slide .item-date .item-m {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 1219px) {
  .news2-slide .item-date {
    top: 5px;
    right: 5px;
    border-radius: 10px;
    padding: 5px 10px;
    width: auto;
    background-color: #fff !important;
    color: #333 !important;
  }
  .news2-slide .item-date .item-m {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
  .news2-slide .item-date .item-d {
    font-size: 10px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 640px) {
  .news2-slide .item-date {
    background-color: transparent;
    position: relative;
    top: auto;
    right: auto;
    text-align: left;
    padding: 0;
    font-size: 0;
    letter-spacing: 0;
  }
  .news2-slide .item-date > * {
    display: inline-block;
  }
  .news2-slide .item-date .item-m {
    margin-right: 5px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .news2-slide .item-date .item-d {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.news2-slide .item-body {
  padding: 23px 24px 13px;
}
@media screen and (max-width: 1419px) {
  .news2-slide .item-body {
    padding: 13px;
  }
}
@media screen and (max-width: 1219px) {
  .news2-slide .item-body {
    padding: 13px 10px;
  }
}
@media screen and (max-width: 640px) {
  .news2-slide .item-body {
    padding: 0;
  }
}
.news2-slide .item-title {
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
  height: 56px;
}
@media screen and (max-width: 1419px) {
  .news2-slide .item-title {
    line-height: 24px;
    height: 48px;
  }
}
@media screen and (max-width: 1219px) {
  .news2-slide .item-title {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 22px;
    height: 44px;
  }
}
@media screen and (max-width: 640px) {
  .news2-slide .item-title {
    line-height: 20px;
    height: 40px;
  }
}

/*-------------6-2-news end----------------------------------------------------------------*/
/*-------------7-contact start-------------------------------------------------------------*/
.contact_wrap {
  padding-top: 8px;
  padding-bottom: 98px;
}
@media screen and (max-width: 1419px) {
  .contact_wrap {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 1219px) {
  .contact_wrap {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 991px) {
  .contact_wrap {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .contact_wrap {
    padding-bottom: 40px;
  }
}

.contact-info {
  padding-bottom: 71px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 1219px) {
  .contact-info {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 991px) {
  .contact-info {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .contact-info {
    padding-bottom: 20px;
  }
}
.contact-info .info-item {
  width: 32.1428571429%;
  flex-basis: 32.1428571429%;
  margin-bottom: 20px;
  background-color: #1c4cb3;
  border-radius: 4px;
  transition: all 0.35s;
  position: relative;
  text-align: center;
  padding: 47px 15px 17px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 26px;
}
.contact-info .info-item, .contact-info .info-item * {
  color: #fff;
}
.contact-info .info-item a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1219px) {
  .contact-info .info-item {
    padding: 30px 10px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 24px;
  }
}
@media screen and (max-width: 991px) {
  .contact-info .info-item {
    padding: 20px 10px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 22px;
  }
}
@media screen and (max-width: 767px) {
  .contact-info .info-item {
    padding: 15px 5px;
    line-height: 20px;
  }
}
@media screen and (max-width: 640px) {
  .contact-info .info-item {
    width: 49%;
    flex-basis: 49%;
    margin-bottom: 15px;
  }
  .contact-info .info-item:nth-child(3) {
    width: 100%;
    flex-basis: 100%;
  }
}
.contact-info .info-item .item-icon {
  display: block;
  font-size: 46px;
  font-size: 4.6rem;
  line-height: 1;
  margin: 0 auto 11px;
}
@media screen and (max-width: 1219px) {
  .contact-info .info-item .item-icon {
    font-size: 40px;
    font-size: 4rem;
  }
}
@media screen and (max-width: 991px) {
  .contact-info .info-item .item-icon {
    font-size: 36px;
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .contact-info .info-item .item-icon {
    font-size: 32px;
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 640px) {
  .contact-info .info-item .item-icon {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
.contact-info .info-item .item-title {
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 8px;
}
@media screen and (max-width: 1219px) {
  .contact-info .info-item .item-title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 991px) {
  .contact-info .info-item .item-title {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .contact-info .info-item .item-title {
    margin-bottom: 5px;
  }
}
.contact-info .info-item .item-tel {
  font-size: 0;
  letter-spacing: 0;
}
.contact-info .info-item .item-tel > span {
  display: block;
  vertical-align: top;
  font-size: 18px;
  font-size: 1.8rem;
  /*margin-right: 55px;*/
}
.contact-info .info-item .item-tel > span:last-child {
  margin-right: 0;
}
/*@media screen and (max-width: 1419px) {*/
/*  .contact-info .info-item .item-tel > span {*/
/*    margin-right: 30px;*/
/*  }*/
/*}*/
@media screen and (max-width: 1219px) {
  .contact-info .info-item .item-tel > span {
    font-size: 16px;
    font-size: 1.6rem;
    margin-right: 0;
    display: block;
  }
}
@media screen and (max-width: 991px) {
  .contact-info .info-item .item-tel > span {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.contact-form .item-title {
  text-align: center;
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  font-size: 42px;
  font-size: 4.2rem;
  line-height: 1.2;
  margin-bottom: 28px;
}
@media screen and (max-width: 1419px) {
  .contact-form .item-title {
    font-size: 36px;
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 1219px) {
  .contact-form .item-title {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 991px) {
  .contact-form .item-title {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .contact-form .item-title {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.contact-form .box-form { /* WebKit browsers */
  /* Mozilla Firefox 4 to 18 */
  /* Mozilla Firefox 19+ */
  /* Internet Explorer 10+ */
  margin-bottom: 90px;
}
.contact-form .box-form ::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.contact-form .box-form :-o-placeholder {
  color: #999;
  opacity: 1;
}
.contact-form .box-form ::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.contact-form .box-form :-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.contact-form .box-form .item-input {
  float: left;
  width: 49.1428571429%;
  margin-bottom: 10px;
}
.contact-form .box-form .item-input:nth-child(even) {
  float: right;
}
.contact-form .box-form .item-textarea {
  float: left;
  width: 100%;
  margin-bottom: 10px;
}
.contact-form .box-form input, .contact-form .box-form textarea, .contact-form .box-form select {
  display: block;
  width: 100%;
  border-radius: 0;
  background-color: #f5f5f5;
  padding: 0 10px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #333;
}
.contact-form .box-form input, .contact-form .box-form select {
  height: 64px;
  line-height: 64px;
}
.contact-form .box-form textarea {
  height: 128px;
  line-height: 24px;
  padding-top: 14px;
  padding-bottom: 10px;
}
.contact-form .box-form .item-code {
  float: left !important;
  position: relative;
  overflow: hidden;
}
.contact-form .box-form .item-code input {
  padding-right: 150px;
}
.contact-form .box-form .item-img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  line-height: 64px;
  font-size: 0;
  border-radius: 0;
  overflow: hidden;
}
.contact-form .box-form .item-img img {
  max-height: 64px;
  vertical-align: middle;
  cursor: pointer;
}
.contact-form .box-form .item-btn {
  float: right !important;
}
.contact-form .box-form .item-btn input {
  background-color: #1c4cb3;
  color: #fff;
  transition: all 0.35s;
  font-size: 26px;
  font-size: 2.6rem;
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
}
.contact-form .box-form .item-btn input:hover {
  background-color: #f5f5f5;
  color: #1c4cb3;
}
@media screen and (max-width: 1419px) {
  .contact-form .box-form {
    margin-bottom: 50px;
  }
  .contact-form .box-form .item-btn input {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1219px) {
  .contact-form .box-form {
    margin-bottom: 70px;
  }
  .contact-form .box-form input, .contact-form .box-form select {
    height: 50px;
    line-height: 50px;
  }
  .contact-form .box-form input, .contact-form .box-form textarea, .contact-form .box-form select {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .contact-form .box-form .item-code input {
    padding-right: 120px;
  }
  .contact-form .box-form .item-img {
    line-height: 50px;
  }
  .contact-form .box-form .item-img img {
    max-height: 50px;
  }
  .contact-form .box-form .item-btn input {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 991px) {
  .contact-form .box-form {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form .box-form {
    margin-bottom: 30px;
  }
  .contact-form .box-form input, .contact-form .box-form select {
    height: 40px;
    line-height: 40px;
  }
  .contact-form .box-form input, .contact-form .box-form textarea, .contact-form .box-form select {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .contact-form .box-form .item-code input {
    padding-right: 95px;
  }
  .contact-form .box-form .item-img {
    line-height: 40px;
  }
  .contact-form .box-form .item-img img {
    max-height: 40px;
  }
  .contact-form .box-form .item-btn input {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  .contact-form .box-form .item-input, .contact-form .box-form .item-textarea {
    width: 100% !important;
    margin-bottom: 10px;
  }
}

.map img, .map iframe {
  max-width: 100%;
  display: block;
}

/*-------------7-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: #1c4cb3;
}
.n-nav .n-nav-icon span {
  display: none;
  width: 100%;
  height: 2px;
  margin-bottom: 4px;
  background-color: #1c4cb3;
}
.n-nav .n-nav-icon.active {
  top: 5px;
  background: #000 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: #000;
  padding-top: 40px;
}
.n-nav .box-search {
  background-color: #fff;
  padding: 5px 10px;
  position: relative;
  border: solid 1px #1c4cb3;
  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: #1c4cb3;
  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: #000;
}
.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;
}
.slideshow {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .slideshow {
    position: relative;
  }
}

.slideshow .wp {
  position: absolute;
  left: 50%;
  margin-left: -600px;
  top: 50%;
  margin-top: -166.5px;
}

.slideshow .wp img {
  max-width: 100%;
  max-height: 80%;
}

.slideshow .item a img {
  width: 100%;
  transition: all 6s ease-out;
  transform: scale(1.1);
}

.slideshow .item.slick-active img {
  transform: scale(1);
}

.slick-dots {
  position: absolute;
  left: 0;
  bottom: 2.4074074074%;
  width: 100%;
  padding: 0;
  text-align: right;
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
  padding: 0 15px;
}
.slick-dots li {
  display: inline-block;
  vertical-align: bottom;
  cursor: pointer;
  transition: all 0.35s;
  font-size: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: #fff;
}
.slick-dots li.slick-active {
  background-color: #1c4cb3;
}
@media screen and (max-width: 991px) {
  .slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0 3px;
  }
}
@media screen and (max-width: 767px) {
  .slick-dots li {
    width: 8px;
    height: 8px;
    margin: 0 2px;
  }
}

.slick-prev, .slick-next {
  background-color: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.7);
  color: #1c4cb3;
  transition: all 0.5s;
  display: none !important;
}
.slick-prev:hover, .slick-next:hover {
  background-color: #1c4cb3;
  background-color: rgba(28, 76, 179, 0.4);
  color: #fff;
}
@media screen and (max-width: 991px) {
  .slick-prev, .slick-next {
    display: none;
  }
}

.slick-prev {
  left: 60px;
}

.slick-next {
  right: 60px;
}

.slideshow .item.slick-active.item_one img {
  transform: scale(1.1);
}

.slideshow .item.slick-active.item_one.on img {
  transform: scale(1);
}

.slick-list, .slick-slider, .slick-track {
  position: relative;
  display: block;
}

.slick-loading .slick-slide, .slick-loading .slick-track {
  visibility: hidden;
}

.slick-slider {
  box-sizing: border-box;
  -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 {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: 0;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-list, .slick-slider .slick-track {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  top: 0;
  left: 0;
}

.slick-track:after, .slick-track:before {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-slide iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.slick-slide video {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 101%;
  min-height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  display: none \9 ;
  display: block \9 \0 ;
}

.slick-dots .slide-count {
  display: none;
}

@media screen and (max-width: 991px) {
  .slick-slide video {
    object-position: inherit;
    object-fit: inherit;
    width: 100%;
    height: 100%;
    transform: translate(0, 0);
    left: 0;
    top: 0;
  }
}
.page-banner img {
  display: block;
  width: 100%;
}
@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  11.1% {
    -webkit-transform: none;
            transform: none
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg)
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg)
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg)
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg)
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
            transform: skewX(-0.78125deg) skewY(-0.78125deg)
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
            transform: skewX(0.390625deg) skewY(0.390625deg)
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
            transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
  }
  100% {
    -webkit-transform: none;
            transform: none
  }
}

@keyframes jello {
  11.1% {
    -webkit-transform: none;
            transform: none
  }

  22.2% {

    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg)
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg)
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg)
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg)
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
            transform: skewX(-0.78125deg) skewY(-0.78125deg)
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
            transform: skewX(0.390625deg) skewY(0.390625deg)
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
            transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
  }
  100% {
    -webkit-transform: none;
            transform: none
  }
}



.jello{
    -webkit-animation-name:jello;
            animation-name:jello;
    -webkit-transform-origin: center;

            transform-origin: center
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}


@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInStable {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  33.333% {
    opacity: 1;
	-webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  
  66.666666% {
    opacity: 1;
	-webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes zoomInStable {
 0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  33.333% {
    opacity: 1;
	-webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  
  66.666666% {
    opacity: 1;
	-webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.zoomInStable {
  -webkit-animation-name: zoomInStable;
  animation-name: zoomInStable;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: 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);
}
}

@-webkit-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);
}
}

@-moz-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);
}

}

@-o-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);
}
}

@-ms-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);
}

}

@media screen and (min-width:1000px) and (max-width:1219px) {}
@media screen and (max-width:1419px) {}
@media screen and (max-width:1219px) {}
@media screen and (max-width:991px) {}
@media screen and (max-width:767px) {}
@media screen and (max-width:640px) {}
@media screen and (max-width:480px) {}


@font-face {
    font-family: 'Roboto-Light';
    src: url('../fonts/Roboto-Light.eot');
    src: url('../fonts/Roboto-Light.eot') format('embedded-opentype'),
         url('../fonts/Roboto-Light.woff2') format('woff2'),
         url('../fonts/Roboto-Light.woff') format('woff'),
         url('../fonts/Roboto-Light.ttf') format('truetype'),
         url('../fonts/Roboto-Light.svg#Roboto-Light') format('svg');
		 font-display: swap;
}
@font-face {
	font-family: 'Roboto-Regular';
	src: url('../fonts/Roboto-Regular.eot');
	src: url('../fonts/Roboto-Regular.eot') format('embedded-opentype'),
	     url('../fonts/Roboto-Regular.woff2') format('woff2'),
	     url('../fonts/Roboto-Regular.woff') format('woff'),
	     url('../fonts/Roboto-Regular.ttf') format('truetype'),
	     url('../fonts/Roboto-Regular.svg#Roboto-Regular') format('svg');
		 font-display: swap;
}

@font-face {
    font-family: 'Roboto-Bold';
    src: url('../fonts/Roboto-Bold.eot');
    src: url('../fonts/Roboto-Bold.eot') format('embedded-opentype'),
         url('../fonts/Roboto-Bold.woff2') format('woff2'),
         url('../fonts/Roboto-Bold.woff') format('woff'),
         url('../fonts/Roboto-Bold.ttf') format('truetype'),
         url('../fonts/Roboto-Bold.svg#Roboto-Bold') format('svg');
		 font-display: swap;
}
@font-face {
  font-family: "iconfont"; /* Project id 4946425 */
  src: url('../fonts/iconfont.woff2?t=1750087156426') format('woff2'),
       url('../fonts/iconfont.woff?t=1750087156426') format('woff'),
       url('../fonts/iconfont.ttf?t=1750087156426') 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-instagram1:before {
  content: "\e87f";
}

.icon-icon-test10:before {
  content: "\e651";
}

.icon-icon-test12:before {
  content: "\e653";
}

.icon-close:before {
  content: "\e839";
}

.icon-xiazai2:before {
  content: "\e60e";
}

.icon-xiazai1:before {
  content: "\e606";
}

.icon--vitality:before {
  content: "\e6d8";
}

.icon-a-houtai_quanxiangtiaoyonglianfuben:before {
  content: "\e68e";
}

.icon-sousuo2:before {
  content: "\e61c";
}

.icon-xiazai:before {
  content: "\e633";
}

.icon-dianhua:before {
  content: "\e7b8";
}

.icon-sousuo-2:before {
  content: "\e65b";
}

.icon-yuanjiantou-shouqi:before {
  content: "\e700";
}

.icon-shouji:before {
  content: "\e605";
}

.icon-home:before {
  content: "\e624";
}

.icon-youjian:before {
  content: "\e635";
}

.icon-message:before {
  content: "\ebe1";
}

.icon-address1:before {
  content: "\e7bc";
}

.icon-contact1:before {
  content: "\e7be";
}

.icon-whatsapp1:before {
  content: "\e7bf";
}

.icon-wechat1:before {
  content: "\e7c4";
}

.icon-fax1:before {
  content: "\e7c6";
}

.icon-mobile:before {
  content: "\e7c7";
}

.icon-phone:before {
  content: "\e7c8";
}

.icon-tel:before {
  content: "\e7c9";
}

.icon-website1:before {
  content: "\e7ca";
}

.icon-qq1:before {
  content: "\e7cc";
}

.icon-phone1:before {
  content: "\e7cf";
}

.icon-skype1:before {
  content: "\e7d0";
}

.icon-whatsapp:before {
  content: "\e7c1";
}

.icon-address:before {
  content: "\e7c2";
}

.icon-contact:before {
  content: "\e7c3";
}

.icon-email1:before {
  content: "\e7c5";
}

.icon-skype:before {
  content: "\e7cb";
}

.icon-qq:before {
  content: "\e7cd";
}

.icon-wechat:before {
  content: "\e7ce";
}

.icon-website:before {
  content: "\e7d1";
}

.icon-message2:before {
  content: "\e7dc";
}

.icon-qiyemingcheng-tubiao:before {
  content: "\e608";
}

.icon-fax-fill:before {
  content: "\e621";
}

.icon-fax:before {
  content: "\e622";
}

.icon-companyname:before {
  content: "\e610";
}

.icon-nav_whatsapp:before {
  content: "\e64f";
}

.icon-dizhi:before {
  content: "\e60c";
}

.icon-facebook1:before {
  content: "\e607";
}

.icon-jurassic_email:before {
  content: "\e698";
}

.icon-dianhua3:before {
  content: "\e7fc";
}

.icon-jurassic_email-copy:before {
  content: "\ecdd";
}

.icon-sanjiaoxing:before {
  content: "\e6e6";
}

.icon-sanjiaoxing_shang:before {
  content: "\e6e7";
}

.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-facebook:before {
  content: "\e620";
}

.icon-vk:before {
  content: "\e757";
}

.icon-pinterest:before {
  content: "\e8ab";
}

.icon-linkedin:before {
  content: "\e648";
}

.icon-youtube:before {
  content: "\e6d6";
}

.icon-instagram:before {
  content: "\e6fc";
}

.icon-caidan:before {
  content: "\e642";
}

.icon-liebiao:before {
  content: "\e834";
}

.icon-search:before {
  content: "\e602";
}

.icon-list:before {
  content: "\e671";
}

.icon-tiktok:before {
  content: "\ecdc";
}

.icon-earth-full:before {
  content: "\e9ee";
}

.icon-twitter-new2:before {
  content: "\e800";
}



/* 
 * 	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{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	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;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-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;
}
.owl-theme .owl-controls .owl-page {
  display: inline-block;
  vertical-align: top;
  vertical-align: middle;
  transition: all 0.3s;
  margin: 0 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
}
@media screen and (max-width: 1219px) {
  .owl-theme .owl-controls .owl-page {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 767px) {
  .owl-theme .owl-controls .owl-page {
    width: 8px;
    height: 8px;
  }
}

.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 {
  background-color: #1c4cb3;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  background-color: #1c4cb3;
}

/* 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;
}


.main .box-main {
  float: right;
  width: 964px;
}
@media screen and (max-width: 1419px) {
  .main .box-main {
    width: 850px;
  }
}
@media screen and (max-width: 1219px) {
  .main .box-main {
    width: 670px;
  }
}
@media screen and (max-width: 991px) {
  .main .box-main {
    width: 100%;
  }
}
.main .box-slide {
  float: left;
  width: 382px;
}
@media screen and (max-width: 1419px) {
  .main .box-slide {
    width: 320px;
  }
}
@media screen and (max-width: 1219px) {
  .main .box-slide {
    width: 260px;
  }
}
@media screen and (max-width: 991px) {
  .main .box-slide {
    width: 100%;
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .main .box-slide {
    margin-top: 30px;
  }
}

.slide-title {
  background-color: #1c4cb3;
  font-size: 22px;
  font-size: 2.2rem;
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  line-height: 30px;
  position: relative;
}
.slide-title.slide-title2 {
  display: none;
}
.slide-title a, .slide-title p {
  display: block;
  position: relative;
  border-radius: 0;
  color: #fff;
  padding: 13px 27px;
}
.slide-title .iconfont {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 20px;
  font-size: 2rem;
  font-weight: normal;
}
@media screen and (max-width: 1419px) {
  .slide-title a, .slide-title p {
    padding: 13px 20px;
  }
}
@media screen and (max-width: 1219px) {
  .slide-title {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 26px;
  }
}
@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-top: 10px;
    padding-bottom: 10px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .slide-title {
    font-size: 20px;
    font-size: 2rem;
  }
}

.proslide {
  background-color: #f5f5f5;
}
.proslide .slide-yiji {
  padding: 3px 14px 19px 17px;
}
.proslide .slide-yiji > li {
  width: 100%;
}
.proslide .slide-yiji > li > a {
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
  color: #333;
  line-height: 24px;
  padding: 18px 15px 18px 8px;
  position: relative;
  border-bottom: solid 1px rgba(207, 207, 207, 0.2);
}
@media screen and (max-width: 1419px) {
  .proslide .slide-yiji > li > a {
    padding: 14px 15px 14px 0;
  }
}
@media screen and (max-width: 1219px) {
  .proslide .slide-yiji > li > a {
    font-size: 16px;
    font-size: 1.6rem;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.proslide .slide-yiji > li > a:before {
  position: absolute;
  content: "+";
  right: 0;
}
.proslide .slide-yiji > li:hover > a, .proslide .slide-yiji > li.active > a {
  color: #1c4cb3;
}
.proslide .slide-yiji > li:hover > a:before, .proslide .slide-yiji > li.active > a:before {
  content: "-";
}
.proslide .slide-erji {
  padding: 13px 0 0;
}
.proslide .slide-erji > li > a {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
  color: #666;
  padding: 8px 0 8px 33px;
}
@media screen and (max-width: 1219px) {
  .proslide .slide-erji > li > a {
    font-size: 14px;
    font-size: 1.4rem;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 15px;
  }
}
.proslide .slide-erji > li:hover > a, .proslide .slide-erji > li.active > a {
  color: #1c4cb3;
}
.proslide .slide-sanji > li > a {
  display: block;
  color: #999;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
  padding: 5px 0 0 33px;
}
@media screen and (max-width: 1219px) {
  .proslide .slide-sanji > li > a {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 18px;
    padding: 5px 0 0 15px;
  }
}
.proslide .slide-sanji > li:hover > a, .proslide .slide-sanji > li.active > a {
  color: #1c4cb3;
}

.products1-list {
  font-size: 0;
  letter-spacing: 0;
  padding-bottom: 28px;
}
@media screen and (max-width: 1219px) {
  .products1-list {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .products1-list {
    padding-bottom: 10px;
  }
}
.products1-list .list-item {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 29.4605809129%;
  margin-left: 4%;
  margin-bottom: 40px;
  transition: all 0.35s;
}
@media screen and (max-width: 1419px) {
  .products1-list .list-item {
    width: 32%;
    margin-left: 2%;
  }
}
@media screen and (max-width: 1219px) {
  .products1-list .list-item {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .products1-list .list-item {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 480px) {
  .products1-list .list-item {
    width: 48%;
    margin: 0 1% 20px !important;
  }
}
.products1-list .item-pic {
  border-radius: 20px;
  border: solid 1px #eeeeee;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .products1-list .item-pic {
    border-radius: 10px;
    margin-bottom: 10px;
  }
}
.products1-list .item-title {
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 30px;
  margin-bottom: 15px;
}
@media screen and (max-width: 1419px) {
  .products1-list .item-title {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1219px) {
  .products1-list .item-title {
    line-height: 26px;
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 991px) {
  .products1-list .item-title {
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .products1-list .item-title {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 20px;
  }
}
.products1-list .item-desc {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 30px;
  max-height: 60px;
  margin-bottom: 14px;
}
@media screen and (max-width: 1219px) {
  .products1-list .item-desc {
    line-height: 26px;
    max-height: 52px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 991px) {
  .products1-list .item-desc {
    line-height: 24px;
    max-height: 48px;
  }
}
@media screen and (max-width: 767px) {
  .products1-list .item-desc {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
    max-height: 40px;
    margin-bottom: 5px;
  }
}
.products1-list .item-btnbox {
  position: relative;
  font-size: 0;
  letter-spacing: 0;
}
.products1-list .item-btnbox > * {
  display: inline-block;
  vertical-align: middle;
}
.products1-list .item-btnbox input {
  margin-right: 5px;
}
.products1-list .item-btn {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
  color: #1c4cb3;
}
.products1-list .item-btn:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1219px) {
  .products1-list .item-btn {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .products1-list .item-btn {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.products1-list .item-more {
  z-index: 2;
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
}
.products1-list .item-more:hover {
  color: #1c4cb3;
}
@media screen and (max-width: 1219px) {
  .products1-list .item-more {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .products1-list .item-more {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 640px) {
  .products1-list .item-more {
    display: none;
  }
}

.pro1_wrap {
  padding-bottom: 98px;
}
@media screen and (max-width: 1219px) {
  .pro1_wrap {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 991px) {
  .pro1_wrap {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .pro1_wrap {
    padding-bottom: 30px;
  }
}

.pro1-top .item-desc {
  margin-bottom: 5px;
}

.index-partner {
  background: url(../images/bg7.jpg) no-repeat center;
  background-size: cover;
}
.index-partner .index-title {
  margin-bottom: 33px;
}
@media screen and (max-width: 1419px) {
  .index-partner .index-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1219px) {
  .index-partner .index-title {
    margin-bottom: 20px;
  }
}
.index-partner .box-desc {
  margin-bottom: 54px;
  overflow: hidden;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
  text-align: center;
}
.index-partner .box-desc, .index-partner .box-desc * {
  color: #666;
}
.index-partner .box-desc a {
  display: inline-block;
}
.index-partner .box-desc a:hover {
  color: #1c4cb3;
}
@media screen and (max-width: 1419px) {
  .index-partner .box-desc {
    margin-bottom: 50px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 26px;
  }
}
@media screen and (max-width: 1219px) {
  .index-partner .box-desc {
    margin-bottom: 40px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
  }
}
@media screen and (max-width: 991px) {
  .index-partner .box-desc {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 767px) {
  .index-partner .box-desc {
    margin-bottom: 25px;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}

.partner-owl .owl-carousel {
  width: 106.4761857143%;
  margin-left: -3.2380928571%;
}
@media screen and (max-width: 1219px) {
  .partner-owl .owl-carousel {
    width: 104%;
    margin-left: -2%;
  }
}
.partner-owl .list-item {
  margin: 0 12.164572838%;
}
@media screen and (max-width: 1219px) {
  .partner-owl .list-item {
    margin: 0 7.8431372549%;
  }
}
@media screen and (max-width: 640px) {
  .partner-owl .list-item {
    margin: 0 5.7693417181%;
  }
}
.partner-owl .owl-buttons {
  display: none !important;
}
.partner-owl .owl-btns {
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
  width: 100%;
  margin-top: 67px;
}
@media screen and (max-width: 1419px) {
  .partner-owl .owl-btns {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1219px) {
  .partner-owl .owl-btns {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .partner-owl .owl-btns {
    margin-top: 20px;
  }
}
.partner-owl .owl-btns .owl-btn {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  width: 44px;
  height: 44px;
  line-height: 42px;
  border-radius: 50%;
  font-size: 15px;
  font-size: 1.5rem;
  color: #1c4cb3;
  border: solid 1px rgba(153, 153, 153, 0.77);
  transition: all 0.35s;
}
.partner-owl .owl-btns .owl-btn:hover {
  border-color: #1c4cb3;
  background-color: #1c4cb3;
  color: #fff;
}
@media screen and (max-width: 1219px) {
  .partner-owl .owl-btns .owl-btn {
    width: 40px;
    height: 40px;
    line-height: 38px;
  }
}
@media screen and (max-width: 767px) {
  .partner-owl .owl-btns .owl-btn {
    width: 30px;
    height: 30px;
    line-height: 28px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 480px) {
  .partner-owl .owl-btns .owl-btn {
    width: 26px;
    height: 26px;
    line-height: 24px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.partner-owl .owl-btns .item-prev {
  margin-right: 39px;
}
@media screen and (max-width: 1419px) {
  .partner-owl .owl-btns .item-prev {
    margin-right: 25px;
  }
}
@media screen and (max-width: 1219px) {
  .partner-owl .owl-btns .item-prev {
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .partner-owl .owl-btns .item-prev {
    margin-right: 5px;
  }
}
.index-history {
  position: relative;
}
.index-history .index-title {
  margin-bottom: 40px;
}
@media screen and (max-width: 1619px) {
  .index-history .index-title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1419px) {
  .index-history .index-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1219px) {
  .index-history .index-title {
    margin-bottom: 20px;
  }
}
.index-history .item-pic {
  width: 100%;
  overflow: hidden;
}
.index-history .item-pic img {
  display: block;
}

.index-ware .index-title {
  margin-bottom: 58px;
}
@media screen and (max-width: 1619px) {
  .index-ware .index-title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1419px) {
  .index-ware .index-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1219px) {
  .index-ware .index-title {
    margin-bottom: 20px;
  }
}
.index-ware .box-list {
  font-size: 0;
  letter-spacing: 0;
  margin-bottom: -30px;
}
@media screen and (max-width: 991px) {
  .index-ware .box-list {
    margin-bottom: -20px;
  }
}
@media screen and (max-width: 480px) {
  .index-ware .box-list {
    margin-bottom: -15px;
  }
}
.index-ware .box-list .list-item {
  display: inline-block;
  vertical-align: top;
  width: 48.5%;
  margin-left: 3%;
  margin-bottom: 30px;
}
.index-ware .box-list .list-item:nth-child(odd) {
  margin-left: 0;
}
@media screen and (max-width: 991px) {
  .index-ware .box-list .list-item {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .index-ware .box-list .list-item {
    margin-bottom: 15px;
  }
}

.app-scroll {
  position: relative;
}
.app-scroll .scroll-list-box {
  width: 100%;
  overflow: hidden;
  width: 164.4791666667%;
  margin-left: -64.4791666667%;
}
.app-scroll .scroll-list {
  width: 10000%;
  position: relative;
}
.app-scroll .scroll-list li {
  float: left;
  width: 0.443318556%;
  margin-right: 0.0322989234%;
}
@media screen and (max-width: 640px) {
  .app-scroll .scroll-list li {
    /* width: 0.39%;
    margin-right: 0.01%; */
  }
}
.app-scroll .scroll-list .item-pic {
  margin-bottom: 33px;
  margin-top: 4px;
  border-radius: 20px;
}
@media screen and (max-width: 991px) {
  .app-scroll .scroll-list .item-pic {
    border-radius: 15px;
    margin-top: 0;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .app-scroll .scroll-list .item-pic {
    border-radius: 10px;
    margin-bottom: 15px;
  }
}
.app-scroll .scroll-list .item-title {
  font-family: "Roboto-Bold", arial, helvetica, sans-serif;
  text-align: center;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.2;
}
@media screen and (max-width: 1419px) {
  .app-scroll .scroll-list .item-title {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 1219px) {
  .app-scroll .scroll-list .item-title {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 991px) {
  .app-scroll .scroll-list .item-title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .app-scroll .scroll-list .item-title {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.app-scroll .scroll-btns {
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
}
.app-scroll .scroll-btns .scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -60px;
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  width: 44px;
  height: 44px;
  line-height: 42px;
  border-radius: 50%;
  font-size: 15px;
  font-size: 1.5rem;
  color: #1c4cb3;
  border: solid 1px rgba(153, 153, 153, 0.77);
  transition: all 0.35s;
}
.app-scroll .scroll-btns .scroll-btn:hover {
  border-color: #1c4cb3;
  background-color: #1c4cb3;
  color: #fff;
}
@media screen and (max-width: 1419px) {
  .app-scroll .scroll-btns .scroll-btn {
    width: 40px;
    height: 40px;
    line-height: 38px;
    margin-top: -38px;
  }
}
@media screen and (max-width: 1219px) {
  .app-scroll .scroll-btns .scroll-btn {
    width: 30px;
    height: 30px;
    line-height: 28px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .app-scroll .scroll-btns .scroll-btn {
    width: 26px;
    height: 26px;
    line-height: 24px;
    font-size: 12px;
    font-size: 1.2rem;
    margin-top: -20px;
  }
}
.app-scroll .scroll-btns .scroll-btn.prev {
  left: calc(11.09375% - 22px);
}
@media screen and (max-width: 1419px) {
  .app-scroll .scroll-btns .scroll-btn.prev {
    left: calc(11.09375% - 20px);
  }
}
@media screen and (max-width: 1219px) {
  .app-scroll .scroll-btns .scroll-btn.prev {
    left: calc(11.09375% - 15px);
  }
}
@media screen and (max-width: 767px) {
  .app-scroll .scroll-btns .scroll-btn.prev {
    left: calc(11.09375% - 13px);
  }
}
@media screen and (max-width: 640px) {
  .app-scroll .scroll-btns .scroll-btn.prev {
    left: 5px;
  }
}
.app-scroll .scroll-btns .scroll-btn.next {
  right: calc(11.09375% - 22px);
}
@media screen and (max-width: 1419px) {
  .app-scroll .scroll-btns .scroll-btn.next {
    right: calc(11.09375% - 20px);
  }
}
@media screen and (max-width: 1219px) {
  .app-scroll .scroll-btns .scroll-btn.next {
    right: calc(11.09375% - 15px);
  }
}
@media screen and (max-width: 767px) {
  .app-scroll .scroll-btns .scroll-btn.next {
    right: calc(11.09375% - 13px);
  }
}
@media screen and (max-width: 640px) {
  .app-scroll .scroll-btns .scroll-btn.next {
    right: 5px;
  }
}