body {
  overflow-x: hidden;
  font-family: "Microsoft YaHei";
}
html {
  font-size: 10px;
  /*10 Ã· 16 Ã— 100% = 62.5%*/
}
@media (max-width: 1200px) {
  html {
    font-size: 9px;
  }
}
@media (max-width: 992px) {
  html {
    font-size: 7px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 8px;
  }
}
body > iframe {
  display: none;
}
a {
  text-decoration: none!important;
}




/*??*/
.overflow-hidden { overflow: hidden;} /*?????????????*/
.visibility-hidden { visibility: hidden;} /*????????,??????????*/
.visibility-visible { visibility: visible;} /*???????*/
.display-block { display: block;} /*??????????*/
.display-none { display: none;} /*???????*/
.display-inline { display: inline;} /*???????*/
.display-inline-block { display: inline-block;} /*?????????,????????????*/
.text-align-center { text-align: center;} /*????*/
.text-align-left { text-align: left;} /*?????*/
.text-align-right { text-align: right;} /*?????*/
.font-weight-bold { font-weight: bold;} /*????*/
.font-weight-normal { font-weight: normal;} /*?????*/
.cursor-pointer { cursor: pointer} /*????????????????*/
.text-decoration-underline{ text-decoration: underline;} 

/*???*/
.display-box {
	display: -webkit-box !important;
	display: -moz-box !important;
	display: -o-box !important;
	display: -ms-flexbox !important;
	display: box !important;	
}

.display-box2 {
	display: -webkit-box;
	display: -moz-box;
	display: -o-box;
	display: -ms-flexbox;
	display: box;
}


/*????-????*/
.box-align-center {
	-webkit-box-align: center;
	-moz-box-align: center;
	-o-box-align: center;
	-ms-flex-align: center;
	box-align: center;
}
.box-align-center>* {
	display: block;
}

/*????-????*/
.box-align-start {
	-moz-box-align: start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	-o-box-align: start;
	box-align: start;
}

/*????-????*/
.box-align-end {
	-moz-box-align: end;
	-webkit-box-align: end;
	-o-box-align: end;
	-ms-flex-align: end;
	box-align: end;
}

/*????-????*/
.box-pack-center {
	-moz-box-pack: center;
	-webkit-box-pack: center;
	-o-box-pack: center;
	-ms-flex-pack: center;
	box-pack: center;
}

/*????-????*/
.box-pack-start {
	-moz-box-pack: start;
	-webkit-box-pack: start;
	-o-box-pack: start;
	-ms-flex-pack: start;
	box-pack: start;
}

/*????-????*/
.box-pack-end {
	-moz-box-pack: end;
	-webkit-box-pack: end;
	-o-box-pack: end;
	-ms-flex-pack: end;
	box-pack: end;
}

/*??2???*/
.display-flex-justify{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
		
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;	
}

/*????????*/
.box-flex {
	-moz-box-flex: 1;
	-webkit-box-flex: 1;
	-o-box-flex: 1;
	-ms-flex: 1;
	box-flex: 1;
}
.box-flex2 {
	-moz-box-flex: 0.1;
	-webkit-box-flex: 0.1;
	-o-box-flex: 0.1;
	-ms-flex: 0.1;
	box-flex: 0.1;
}

/*????????????-???????*/
.box-ordinal-group1 {
	-moz-box-ordinal-group: 1;
	-webkit-box-ordinal-group: 1;
	-o-box-ordinal-group: 1;
	-ms-box-ordinal-group: 1;
	box-ordinal-group: 1;
}
.box-ordinal-group2 {
	-moz-box-ordinal-group: 2;
	-webkit-box-ordinal-group: 2;
	-o-box-ordinal-group: 2;
	-ms-box-ordinal-group: 2;
	box-ordinal-group: 2;
}
.box-ordinal-group3 {
	-moz-box-ordinal-group: 3;
	-webkit-box-ordinal-group: 3;
	-o-box-ordinal-group: 3;
	-ms-box-ordinal-group: 3;
	box-ordinal-group: 3;
}

/*?????????-????*/
.box-orient-vertical {
	-moz-box-orient: vertical;
	-webkit-box-orient: vertical;
	-o-box-orient: vertical;
	-ms-box-orient: vertical;
	box-orient: vertical;
}

/*?????????-????*/
.box-orient-vertical {
	-moz-box-orient: horizontal;
	-webkit-box-orient: horizontal;
	-o-box-orient: horizontal;
	-ms-box-orient: horizontal;
	box-orient: horizontal;
}

/*/???*/

/*???????*/
.line-clamp1{
	display: -webkit-box;
	display: -moz-box;
	display: -o-box;
	display: -ms-flexbox;
	display: box;
  text-overflow: ellipsis;
	-webkit-box-orient: vertical;  
	overflow: hidden;	
	
	-webkit-line-clamp: 1;
}
.line-clamp2{
	display: -webkit-box;
	display: -moz-box;
	display: -o-box;
	display: -ms-flexbox;
	display: box;
  text-overflow: ellipsis;
	-webkit-box-orient: vertical;  
	overflow: hidden;	
	
	-webkit-line-clamp: 2;
}
.line-clamp3{
	display: -webkit-box;
	display: -moz-box;
	display: -o-box;
	display: -ms-flexbox;
	display: box;
  text-overflow: ellipsis;
	-webkit-box-orient: vertical;  
	overflow: hidden;	
	
	-webkit-line-clamp: 3;	
}
.line-clamp4{
	display: -webkit-box;
	display: -moz-box;
	display: -o-box;
	display: -ms-flexbox;
	display: box;
  text-overflow: ellipsis;
	-webkit-box-orient: vertical;  
	overflow: hidden;	
	
	-webkit-line-clamp: 4;	
}
.line-clamp5{
	display: -webkit-box;
	display: -moz-box;
	display: -o-box;
	display: -ms-flexbox;
	display: box;
  text-overflow: ellipsis;
	-webkit-box-orient: vertical;  
	overflow: hidden;	
	
	-webkit-line-clamp: 5;	
}
/*/???????*/

/*????*/
.width-calc1 {
	width: -moz-calc(100% - 40px);
	width: -webkit-calc(100% - 40px);
	width: -o-calc(100% - 40px);
	width: -ms-calc(100% - 40px);
	width: calc(100% - 40px);
}
.height-calc1 {
	height: -moz-calc(100% - 30px);
	height: -webkit-calc(100% - 30px);
	height: -o-calc(100% - 30px);
	height: -ms-calc(100% - 30px);
	height: calc(100% - 30px);
}

/*????*/
.transform1 {
	-moz-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.transform2 {
	-moz-transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}
.transform3 {
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.transform4 {
	-moz-transform: translate(50%, 50%);
	-webkit-transform: translate(50%, 50%);
	-o-transform: translate(50%, 50%);
	-ms-transform: translate(50%, 50%);
	transform: translate(50%, 50%);
}

/*????????????????*/
.vertical-align-middle {
	vertical-align: middle;
}
.display-inline-block-middle {
	display-inline-block;
	vertical-align: middle;
}
.display-inline-block-align-q * {
	display-inline-block;
	vertical-align: middle;
}

/*??placeholder???????*/
.placeholder-color1:-moz-placeholder {
	color: #FFD095;
}
.placeholder-color1::-moz-placeholder {
	color: #FFD095;
}
.placeholder-color1:-ms-input-placeholder {
	color: #FFD095;
}
.placeholder-color1::-webkit-input-placeholder {
	color: #FFD095;
}
/*/????*/



/*????*/
body {
	min-width: 320px; /*?????????320??*/
	margin: 0 auto;
	font-family: '????', 'Helvetica Neue', Helvetica, 'Microsoft Yahei', 'Hiragino Sans GB', 'WenQuanYi Micro Hei', sans-serif;
	line-height: 1; /*????1?*/
	font-size: 15px;
	background-color: #FFF;
	position: relative;
	color: #000;
}

/*????*/
.float-left { float: left;} /*????????*/
.float-right { float: right;} /*????????*/

/*????*/
.clear-left { clear: left;} /*?????????*/
.clear-right { clear: right;} /*?????????*/
.clear-both { clear: both;} /*????????????*/


/*??*/
.overflow-hidden { overflow: hidden;} /*?????????????*/
.visibility-hidden { visibility: hidden;} /*????????,??????????*/
.visibility-visible { visibility: visible;} /*???????*/
.display-block { display: block;} /*??????????*/
.display-none { display: none;} /*???????*/
.display-inline { display: inline;} /*???????*/
.display-inline-block { display: inline-block;} /*?????????,????????????*/
.text-align-center { text-align: center;} /*????*/
.text-align-left { text-align: left;} /*?????*/
.text-align-right { text-align: right;} /*?????*/
.font-weight-bold { font-weight: bold;} /*????*/
.font-weight-normal { font-weight: normal;} /*?????*/
.cursor-pointer { cursor: pointer} /*????????????????*/
.text-decoration-underline{ text-decoration: underline;} 

/*???*/
.display-box {
	display: -webkit-box !important;
	display: -moz-box !important;
	display: -o-box !important;
	display: -ms-flexbox !important;
	display: box !important;	
}

.display-box2 {
	display: -webkit-box;
	display: -moz-box;
	display: -o-box;
	display: -ms-flexbox;
	display: box;
}


/*????-????*/
.box-align-center {
	-webkit-box-align: center;
	-moz-box-align: center;
	-o-box-align: center;
	-ms-flex-align: center;
	box-align: center;
}
.box-align-center>* {
	display: block;
}

/*????-????*/
.box-align-start {
	-moz-box-align: start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	-o-box-align: start;
	box-align: start;
}

/*????-????*/
.box-align-end {
	-moz-box-align: end;
	-webkit-box-align: end;
	-o-box-align: end;
	-ms-flex-align: end;
	box-align: end;
}

/*????-????*/
.box-pack-center {
	-moz-box-pack: center;
	-webkit-box-pack: center;
	-o-box-pack: center;
	-ms-flex-pack: center;
	box-pack: center;
}

/*????-????*/
.box-pack-start {
	-moz-box-pack: start;
	-webkit-box-pack: start;
	-o-box-pack: start;
	-ms-flex-pack: start;
	box-pack: start;
}

/*????-????*/
.box-pack-end {
	-moz-box-pack: end;
	-webkit-box-pack: end;
	-o-box-pack: end;
	-ms-flex-pack: end;
	box-pack: end;
}

/*??2???*/
.display-flex-justify{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
		
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;	
}

/*????????*/
.box-flex {
	-moz-box-flex: 1;
	-webkit-box-flex: 1;
	-o-box-flex: 1;
	-ms-flex: 1;
	box-flex: 1;
}
.box-flex2 {
	-moz-box-flex: 0.1;
	-webkit-box-flex: 0.1;
	-o-box-flex: 0.1;
	-ms-flex: 0.1;
	box-flex: 0.1;
}

/*????????????-???????*/
.box-ordinal-group1 {
	-moz-box-ordinal-group: 1;
	-webkit-box-ordinal-group: 1;
	-o-box-ordinal-group: 1;
	-ms-box-ordinal-group: 1;
	box-ordinal-group: 1;
}
.box-ordinal-group2 {
	-moz-box-ordinal-group: 2;
	-webkit-box-ordinal-group: 2;
	-o-box-ordinal-group: 2;
	-ms-box-ordinal-group: 2;
	box-ordinal-group: 2;
}
.box-ordinal-group3 {
	-moz-box-ordinal-group: 3;
	-webkit-box-ordinal-group: 3;
	-o-box-ordinal-group: 3;
	-ms-box-ordinal-group: 3;
	box-ordinal-group: 3;
}

/*?????????-????*/
.box-orient-vertical {
	-moz-box-orient: vertical;
	-webkit-box-orient: vertical;
	-o-box-orient: vertical;
	-ms-box-orient: vertical;
	box-orient: vertical;
}

/*?????????-????*/
.box-orient-vertical {
	-moz-box-orient: horizontal;
	-webkit-box-orient: horizontal;
	-o-box-orient: horizontal;
	-ms-box-orient: horizontal;
	box-orient: horizontal;
}

/*/???*/



/*???????*/
.line-clamp1{
	display: -webkit-box;
	display: -moz-box;
	display: -o-box;
	display: -ms-flexbox;
	display: box;
  text-overflow: ellipsis;
	-webkit-box-orient: vertical;  
	overflow: hidden;	
	
	-webkit-line-clamp: 1;
}
.line-clamp2{
	display: -webkit-box;
	display: -moz-box;
	display: -o-box;
	display: -ms-flexbox;
	display: box;
  text-overflow: ellipsis;
	-webkit-box-orient: vertical;  
	overflow: hidden;	
	
	-webkit-line-clamp: 2;
}
.line-clamp3{
	display: -webkit-box;
	display: -moz-box;
	display: -o-box;
	display: -ms-flexbox;
	display: box;
  text-overflow: ellipsis;
	-webkit-box-orient: vertical;  
	overflow: hidden;	
	
	-webkit-line-clamp: 3;	
}
.line-clamp4{
	display: -webkit-box;
	display: -moz-box;
	display: -o-box;
	display: -ms-flexbox;
	display: box;
  text-overflow: ellipsis;
	-webkit-box-orient: vertical;  
	overflow: hidden;	
	
	-webkit-line-clamp: 4;	
}
.line-clamp5{
	display: -webkit-box;
	display: -moz-box;
	display: -o-box;
	display: -ms-flexbox;
	display: box;
  text-overflow: ellipsis;
	-webkit-box-orient: vertical;  
	overflow: hidden;	
	
	-webkit-line-clamp: 5;	
}
/*/???????*/

/*????*/
.width-calc1 {
	width: -moz-calc(100% - 40px);
	width: -webkit-calc(100% - 40px);
	width: -o-calc(100% - 40px);
	width: -ms-calc(100% - 40px);
	width: calc(100% - 40px);
}
.height-calc1 {
	height: -moz-calc(100% - 30px);
	height: -webkit-calc(100% - 30px);
	height: -o-calc(100% - 30px);
	height: -ms-calc(100% - 30px);
	height: calc(100% - 30px);
}

/*????*/
.transform1 {
	-moz-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.transform2 {
	-moz-transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}
.transform3 {
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.transform4 {
	-moz-transform: translate(50%, 50%);
	-webkit-transform: translate(50%, 50%);
	-o-transform: translate(50%, 50%);
	-ms-transform: translate(50%, 50%);
	transform: translate(50%, 50%);
}

/*????????????????*/
.vertical-align-middle {
	vertical-align: middle;
}
.display-inline-block-middle {
	display-inline-block;
	vertical-align: middle;
}
.display-inline-block-align-q * {
	display-inline-block;
	vertical-align: middle;
}

/*??placeholder???????*/
.placeholder-color1:-moz-placeholder {
	color: #B7B7B7;
}
.placeholder-color1::-moz-placeholder {
	color: #B7B7B7;
}
.placeholder-color1:-ms-input-placeholder {
	color: #B7B7B7;
}
.placeholder-color1::-webkit-input-placeholder {
	color: #B7B7B7;
}
/*/????*/



/*????*/
.float-left { float: left;} /*????????*/
.float-right { float: right;} /*????????*/

/*????*/
.clear-left { clear: left;} /*?????????*/
.clear-right { clear: right;} /*?????????*/
.clear-both { clear: both;} /*????????????*/


/*??*/
.overflow-hidden { overflow: hidden;} /*?????????????*/
.visibility-hidden { visibility: hidden;} /*????????,??????????*/
.visibility-visible { visibility: visible;} /*???????*/
.display-block { display: block;} /*??????????*/
.display-none { display: none;} /*???????*/
.display-inline { display: inline;} /*???????*/
.display-inline-block { display: inline-block;} /*?????????,????????????*/
.text-align-center { text-align: center;} /*????*/
.text-align-left { text-align: left;} /*?????*/
.text-align-right { text-align: right;} /*?????*/
.font-weight-bold { font-weight: bold;} /*????*/
.font-weight-normal { font-weight: normal;} /*?????*/
.cursor-pointer { cursor: pointer} /*????????????????*/
.text-decoration-underline{ text-decoration: underline;} 




/*--------------------------------?????--------------------------------*/

/*????*/
.transition {
	transition: all .25s linear;
}

/*????-??*/
.transition-img {
	transition: transform 0.25s linear;
}
.transition:hover .transition-img{
	transform:scale(1.07);
}

/*????-??*/
.transition-color {
	transition: color 0.3s linear;
}
.transition:hover.transition-color,
.transition:hover .transition-color{
	color: #C1162A;
}
.transition:hover.color1,
.transition:hover .color1{
	color: #C1162A;
}

.transition:hover.color2,
.transition:hover .color2{
	color: #FFF;
}

/*????-???*/
.transition-background {
	transition: background-color 0.3s linear;
}
.transition:hover.transition-background,
.transition:hover .transition-background{
	background-color: #293256;
}
.transition:hover.transition-background1,
.transition:hover .transition-background1{
	background-color: #293256;
}

/*--------------------------------/?????--------------------------------*/



.navbar-brand {
  float: none;
  line-height: 0;
}
.mobile-con {
  display: none;
}
.header .header-top {
  height: 45px;
  background: #081c1a;
  line-height: 45px;
}
.header .header-top p {
  font-size: 1.4rem;
  color: #999;
  margin: 0;
}
.header .header-top .lf {
  float: left;
}
.header .header-top .rt {
  float: right;
  line-height: 45px;
}
.header .header-top .rt .language {
  float: right;
  position: relative;
}
.header .header-top .rt .language a {
  font-size: 1.4rem;
  color: #1b6f68;
  border-left: 1px solid #1b6f68;
  padding-left: 10px;
}
.header .header-top .rt .search {
  line-height: 45px;
  float: right;
  position: relative;
  margin-right: 10px;
}
.header .header-top .rt .search select {
  height: 36px;
  margin-right: -4px;
  border-radius: 30px 0 0 30px;
  border-color: transparent;
  color: #fff;
  background: #354544;
  padding-left: 9px;
}
.header .header-top .rt .search .txt {
  border: none;
  border-radius: 0 30px 30px 0;
  background: #354544;
  padding: 0 10px;
  width: 220px;
  height: 36px;
  padding: 0 20px 0 10px;
  color: #fff;
}
.header .header-top .rt .search .submit {
  border: none;
  position: absolute;
  top: 6px;
  right: 5px;
  width: 36px;
  height: 36px;
  background: url("../images/search-btn_03.jpg") no-repeat center;
}
.header .header-box {
  background: #fff;
  height: 100px;
  line-height: 100px;
  width: 100%;
  z-index: 999;
}
.header .header-box .container {
  position: relative;
}
.header .header-box .logo {
  float: left;
}
@media (max-width: 992px) {
  .header .header-box .logo img {
    width: 150px;
  }
}
.header .header-box .lang {
  position: absolute;
  top: 37px;
  right: 0;
  display: block;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  background: #1b6f68;
}
.header .header-box .lang a {
  color: #fff;
  display: block;
}
@media (max-width: 992px) {
  .header .header-box .lang {
    right: 15px;
  }
}
.header .header-box .nav-con {
  width: 68.5%;
  margin: 0 auto;
  float: right;
}
@media (max-width: 992px) {
  .header .header-box .nav-con {
    width: 78.5%;
  }
}
.header .header-box .nav-con #nav {
  width: 100%;
  float: right;
  margin-bottom: 0;
}
.header .header-box .nav-con #nav .sub-nav {
  text-align: center;
  line-height: 100px;
  transition: 0.3s;
  position: relative;
  margin: 0 0.8rem;
  text-transform: uppercase;
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
@media (max-width: 1200px) {
  .header .header-box .nav-con #nav .sub-nav {
    margin: 0 0.2rem;
  }
}
@media (max-width: 992px) {
  .header .header-box .nav-con #nav .sub-nav {
    margin: 0;
  }
}
.header .header-box .nav-con #nav .sub-nav:hover a {
  color: #fff;
  background: #1b6f68;
}
.header .header-box .nav-con #nav .sub-nav a {
  color: #121212;
  font-size: 1.6rem;
  display: block;
  height: 100%;
  padding: 0 1rem;
  position: relative;
}
.header .header-box .nav-con #nav .sub-nav .drop-down {
  z-index: 999;
  position: absolute;
  top: 49px;
  left: -15%;
  display: none;
}
.header .header-box .nav-con #nav .sub-nav .drop-down {
  width: 130%;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
}
.header .header-box .nav-con #nav .sub-nav .drop-down li {
  line-height: 45px;
  border-bottom: 1px solid #f6f6f6;
}
.header .header-box .nav-con #nav .sub-nav .drop-down li a {
  font-size: 1.5rem;
  display: block;
  color: #333!important;
  background: none!important;
  margin: 0;
}
.header .header-box .nav-con #nav .sub-nav .drop-down li a:hover {
  background: #ffffff !important;
  color: #1b6f68!important;
}
.header .header-box .nav-con #nav .sub-nav:last-child a {
  margin-right: 0;
}
.header .header-box .nav-con #nav .active a {
  background: #1b6f68;
  color: #fff;
}
.header .header-box .search-con .toggle-btn {
  position: absolute;
  top: 35px;
  right: 15px;
  width: 22px;
  height: 25px;
  cursor: pointer;
  background: url("../images/search-btn_03.jpg") no-repeat center;
}
.header .header-box .search-con .search {
  display: none;
  position: absolute;
  right: 15px;
  top: 99px;
  width: 260px;
  height: 60px;
  border-top: 4px solid #ff3e2a;
  background-color: #fff;
  z-index: 10;
  line-height: 60px;
}
.header .header-box .search-con .search .txt {
  margin: 8px 7px;
  width: 246px;
  height: 43px;
  border: none;
  padding: 0 14px ;
  background-color: #f4f4f4;
}
.header .header-box .search-con .search .submit {
  width: 58px;
  height: 39px;
  border: none;
  background-color: #ff3e2a;
  position: absolute;
  top: 10px;
  right: 8px;
  text-align: center;
  line-height: 39px;
  border-radius: 2px;
  color: #fff;
}
.header .header-box .language {
  position: absolute;
  right: 15px;
  top: 0px;
}
.header .header-box .language a {
  font-size: 1.4rem;
  color: #c3c3c3;
}
.header .header-box .language a:hover {
  color: #fff;
}
.header .mobile-con .navbar-default .navbar-nav > li > a:hover,
.header .mobile-con .navbar-default .navbar-nav > li > a:focus {
  color: #1b6f68;
}
.header .mobile-con .navbar-default {
  background: #fff;
}
.header .mobile-con .navbar-header .navbar-brand {
  float: none;
  line-height: 0;
  padding: 0;
}
.header .mobile-con .navbar-brand > img {
  margin: 10px 0 0 3%;
  width: 138px;
}
.header .mobile-con .form-group{
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 59px);
}
.header .mobile-con .form-group select {
  height: 34px;
  margin-right: -4px;
  border-color: transparent;
  width: 56px;
  display: inline-block;
  vertical-align: middle;
  *display: inline;
  *zoom: 1;
  float: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-right: 2px;
}
.navbar-form.navbar-left .btn.btn-default{
	width: 54px;
	vertical-align: top;
}
.header .mobile-con .form-group input {
  width: calc(100% - 64px);
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
  float: none;
}
.header .mobile-con .navbar-brand span {
  display: inline-block;
  position: absolute;
  left: 116px;
  top: 31px;
  font-size: 16px;
  color: #333;
}
.header .mobile-con .nivo-directionNav {
  display: none;
}
.header .mobile-con .box .nivo-controlNav {
  margin-left: -16px;
  bottom: -6px;
}
.header .mobile-con .nivo-controlNav a {
  width: 6px;
  height: 6px;
  margin: 0 3px;
}
.header .mobile-con .navbar-toggle {
  margin-top: 11px;
}
.header .mobile-con .language {
  display: inline-block;
  position: relative;
  margin: 17px 12px 0 0;
  float: right;
  color: #c3c3c3;
}
.header .mobile-con .language a {
  font-size: 14px;
  padding: 0px 6px;
  color: #c3c3c3;
}
.header .mobile-con .language a:hover {
  color: #fff;
}
.header .mobile-con .language .active {
  color: #fff;
}
.header .mobile-con .navbar-nav {
  height: auto;
  overflow: auto;
}
.header .mobile-con .dropdown .txt {
  margin-left: 20px;
}
.header .mobile-con .dropdown .txt h6 {
  font-size: 14px;
}
.header .mobile-con .dropdown .txt a {
  font-size: 13px;
  display: inline-block;
  margin: 4px 12px;
  color: #666;
}
.header .mobile-con .dropdown .txt a:hover {
  color: #1b75cf;
}
/*mobile-header*/
@media (max-width: 768px) {
  .pc-con {
    display: none!important;
  }
  .mobile-con {
    display: block!important;
  }
}
/*main*/
.main {
  clear: both;
}
@media (max-width: 768px) {
  .main {
    margin-top: 55px;
  }
}
.main .ad-box-pc {
  margin-top: -1px;
}
.main .ad-box-pc .swiper-container-pc {
  overflow: hidden;
  position: relative;
}
.main .ad-box-pc .swiper-container-pc:hover .swiper-button-next-pc {
  opacity: 1;
}
.main .ad-box-pc .swiper-container-pc:hover .swiper-button-prev-pc {
  opacity: 1;
}
.main .ad-box-pc .top-banner {
  width: 100%;
  position: relative;
}
.main .ad-box-pc .swiper-slide {
  overflow: hidden;
}
.main .ad-box-pc .swiper-slide img {
  width: 100%;
  transition: 2.5s linear;
  transform: scale(1.06);
}
.main .ad-box-pc .swiper-slide-active img {
  transform: scale(1);
}
.main .ad-box-pc .swiper-pagination {
  position: absolute;
  bottom: 5%;
  z-index: 99;
}
.main .ad-box-pc .swiper-pagination-bullet {
  border-radius: 10px;
  border: 1px solid #fff;
  background: transparent;
  height: 9px;
  width: 9px;
  opacity: 1;
}
.main .ad-box-pc .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}
.main .ad-box-pc .swiper-button-next-pc {
  width: 26px;
  height: 51px;
  cursor: pointer;
  position: absolute;
  right: 5%;
  top: 50%;
  margin-top: -26px;
  background: url("../images/next_03.png") no-repeat center;
  z-index: 6;
  opacity: 0.5;
}
.main .ad-box-pc .swiper-button-prev-pc {
  width: 26px;
  height: 51px;
  cursor: pointer;
  position: absolute;
  left: 5%;
  top: 50%;
  margin-top: -26px;
  background: url("../images/prev_03.png") no-repeat center;
  z-index: 6;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .main .ad-box-pc .swiper-pagination {
    position: absolute;
    bottom: 3%;
    z-index: 99;
  }
  .main .ad-box-pc .swiper-pagination-bullet {
    border-radius: 10px;
    border: 1px solid #fff;
    background: transparent;
    height: 5px;
    width: 5px;
    opacity: 1;
  }
  .main .ad-box-pc .swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
  }
}
.main .service {
  padding: 1.5% 0;
}
.main .service .service-tit {
  width: 11.2%;
  float: left;
}
.main .service .service-tit h5 {
  font-size: 1.8rem;
  color: #333;
  margin-top: 20px;
}
.main .service .service-tit p {
  font-size: 1.2rem;
  color: #666;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 768px) {
  .main .service .service-tit {
    width: 100%;
    text-align: center;
  }
  .main .service .service-tit h5 {
    font-size: 2.5rem;
    margin-top: 10px;
    color: #081c1a;
  }
  .main .service .service-tit p {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}
.main .service .content {
  width: 88.8%;
  float: right;
}
@media (max-width: 768px) {
  .main .service .content {
    width: 100%;
  }
}
.main .service .content li {
  width: 24%;
  float: left;
  margin-right: 1.333333%;
  overflow: hidden;
  position: relative;
  height: 92px;
  border: 1px solid #eee;
  text-align: center;
}
@media (max-width: 768px) {
  .main .service .content li {
    width: 49%;
    margin: 0 2% 2% 0;
  }
}
.main .service .content li:hover .masking {
  top: 0;
}
.main .service .content li img {
  margin: 19px 0 10px;
}
.main .service .content li p {
  font-size: 1.4rem;
  color: #081c1a;
}
.main .service .content li span {
  font-size: 1.4rem;
  color: #081c1a;
  position: absolute;
  top: 5px;
  right: 5px;
}
.main .service .content li .masking {
  width: 100%;
  text-align: center;
  height: 100%;
  top: -100%;
  background: #1b6f68;
  color: #fff;
  position: absolute;
  transition: 0.2s;
}
.main .service .content li .masking h6 {
  font-size: 1.8rem;
  margin: 25px 0 10px;
}
.main .service .content li .masking p {
  font-size: 1.4rem;
  color: #fff;
}
.main .service .content li:nth-child(4) {
  margin-right: 0;
}
@media (max-width: 768px) {
  .main .service .content li:nth-child(2) {
    margin-right: 0;
  }
}
.main .product {
  background: #081c1a;
  padding: 2% 0 0.5%;
}
.main .product .slideTxtBox .hd {
  width: 17%;
  float: right;
  text-align: center;
}
.main .product .slideTxtBox .hd ul li {
  cursor: pointer;
  height: 86px;
  line-height: 86px;
  background: #1b6f68;
  color: #fff;
  font-size: 1.6rem;
  border-bottom: 1px solid #155650;
}
@media (max-width: 1200px) {
  .main .product .slideTxtBox .hd ul li {
    height: 69px;
    line-height: 69px;
  }
}
@media (max-width: 992px) {
  .main .product .slideTxtBox .hd ul li {
    height: 53px;
    line-height: 53px;
  }
}
.main .product .slideTxtBox .hd ul li.on {
  color: #000;
  background: url("../images/pro-active_03.jpg") no-repeat center;
}
.main .product .slideTxtBox .bd {
  float: left;
  width: 83%;
}
.main .product .slideTxtBox .bd li .swiper-container-product {
  overflow: hidden;
}
.main .product .slideTxtBox .bd li .swiper-container-product .swiper-slide img {
  width: 100%;
}
.main .product .slideTxtBox .bd li .swiper-pagination-product {
  text-align: center;
  margin: 2% 0 0;
}
.main .product .slideTxtBox .bd li .swiper-pagination-bullet {
  border-radius: 10px;
  background: #e3f1f3;
  height: 9px;
  width: 9px;
  opacity: 1;
}
.main .product .slideTxtBox .bd li .swiper-pagination-bullet-active {
  background: #f4e600;
  opacity: 1;
}
@media (max-width: 768px) {
  .main .product {
    background: #081c1a;
    padding: 2% 0 0.5%;
  }
  .main .product .slideTxtBox .hd {
    width: 100%;
    float: right;
    text-align: center;
    margin-bottom: 10px;
  }
  .main .product .slideTxtBox .hd ul li {
    cursor: pointer;
    height: 36px;
    line-height: 36px;
    background: #1b6f68;
    color: #fff;
    font-size: 1.6rem;
    border-bottom: 1px solid #155650;
    float: left;
    width: 33.33333%;
  }
  .main .product .slideTxtBox .hd ul li.on {
    color: #000;
    background: url("../images/pro-active_03.jpg") no-repeat center;
  }
  .main .product .slideTxtBox .bd {
    float: left;
    width: 100%;
  }
  .main .product .slideTxtBox .bd li .swiper-container-product {
    overflow: hidden;
  }
  .main .product .slideTxtBox .bd li .swiper-container-product .swiper-slide img {
    width: 100%;
  }
  .main .product .slideTxtBox .bd li .swiper-pagination-product {
    text-align: center;
    margin: 2% 0 0;
  }
  .main .product .slideTxtBox .bd li .swiper-pagination-bullet {
    border-radius: 10px;
    background: #e3f1f3;
    height: 9px;
    width: 9px;
    opacity: 1;
  }
  .main .product .slideTxtBox .bd li .swiper-pagination-bullet-active {
    background: #f4e600;
    opacity: 1;
  }
}
.main .about {
  padding: 4% 0 5%;
}
.main .about .about-tit {
  margin-bottom: 4%;
  height: 49px;
  background: url("../images/about-tit_02.jpg") no-repeat center;
}
@media (max-width: 768px) {
  .main .about .about-tit {
    background: none;
  }
}
.main .about .about-tit div {
  text-align: center;
}
.main .about .about-tit h5 {
  font-size: 3rem;
  color: #081c1a;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.main .about .about-tit p {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 1.6rem;
  color: #1b6f68;
  padding-bottom: 5px;
  border-bottom: 2px solid #1b6f68;
}
.main .about .img {
  width: 48.7%;
  float: left;
  overflow: hidden;
}
@media (max-width: 768px) {
  .main .about .img {
    width: 100%;
  }
}
.main .about .img img {
  width: 100%;
}
.main .about .txt-box {
  width: 48.7%;
  float: right;
}
@media (max-width: 768px) {
  .main .about .txt-box {
    width: 100%;
    margin-top: 15px;
  }
}
.main .about .txt-box .txt {
  border-bottom: 1px dotted #d4d4d4;
}
.main .about .txt-box .txt h5 {
  width: 120px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #1b6f68;
  color: #fff;
  font-size: 2rem;
  margin-top: 0;
}
.main .about .txt-box .txt p {
  font-size: 1.4rem;
  color: #666;
  line-height: 180%;
  margin: 2.7% 0;
}
.main .about .txt-box ul {
  margin: 4% 0 3%;
}
.main .about .txt-box ul li {
  font-size: 1.4rem;
  color: #666;
  line-height: 220%;
}
.main .about .txt-box ul li span {
  color: #081c1a;
  font-weight: 600;
}
.main .center-ad {
  height: 518px;
  background: url("../images/center-ad_02.jpg") no-repeat center;
}
.main .center-ad .txt {
  text-align: center;
}
.main .center-ad .txt h5 {
  font-size: 3.4rem;
  color: #fff000;
  padding: 37px 0 0 0;
}
@media (max-width: 768px) {
  .main .center-ad .txt h5 {
    font-size: 2.8rem;
  }
}
.main .center-ad .txt b {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 65px;
  height: 3px;
  background: #fff000;
}
.main .center-ad .txt p {
  font-size: 1.6rem;
  color: #e3f1f3;
  margin-top: 25px;
}
@media (max-width: 768px) {
  .main .center-ad .txt p {
    margin: 25px 5% 0;
    line-height: 180%;
  }
}
.main .center-ad .txt a {
  display: block;
  width: 142px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background: #e3f1f3;
  font-size: 1.6rem;
  color: #1b6f68;
  margin: 25px auto 0;
}
.main .business {
  padding: 4% 0;
}
.main .business .business-tit {
  text-align: center;
}
.main .business .business-tit h5 {
  font-size: 3rem;
  color: #081c1a;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.main .business .business-tit p {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 1.6rem;
  color: #1b6f68;
  padding-bottom: 5px;
  border-bottom: 2px solid #1b6f68;
}
.main .business .content {
  margin-top: 3%;
}
.main .business .content .partner .swiper-container-partner {
  overflow: hidden;
  margin-top: 30px;
}
.main .business .content .partner .swiper-container-partner .swiper-slide img {
  width: 100%;
}
.main .news {
  height: 598px;
  background: url("../images/news-bg_02.jpg") no-repeat center;
}
@media (max-width: 1200px) {
  .main .news {
    height: 509px;
  }
}
@media (max-width: 992px) {
  .main .news {
    height: 439px;
    background: #1b6f68;
  }
}
.main .news .news-tit {
  width: 26%;
  float: left;
  margin-top: 16%;
}
.main .news .news-tit img {
  max-width: 100%;
}
.main .news .news-tit p {
  font-size: 1.4rem;
  color: #fff;
  line-height: 180%;
  margin-top: 15%;
}
.main .news .list-box {
  width: 71%;
  float: right;
  margin-top: 6%;
}
.main .news .list-box li {
  background: #fff;
  padding: 2%;
  border-bottom: 1px dashed #d9d9d9;
}
.main .news .list-box li:hover {
  background: #e3f1f3;
}
.main .news .list-box li:hover a .txt h6 {
  color: #1b6f68;
}
.main .news .list-box li a .img {
  width: 29%;
  float: left;
}
.main .news .list-box li a .img img {
  width: 100%;
}
.main .news .list-box li a .txt {
  width: 58%;
  float: left;
  margin-left: 3%;
}
.main .news .list-box li a .txt h6 {
  font-size: 1.8rem;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.main .news .list-box li a .txt p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 1.4rem;
  color: #666;
  line-height: 180%;
}
.main .news .list-box li a .date {
  width: 9%;
  float: right;
}
.main .news .list-box li a .date img {
  margin: 10px 0;
  width: 40px;
  border-radius: 40px;
}
.main .news .list-box li a .date p {
  font-size: 1.4rem;
  color: #999;
}
@media (max-width: 768px) {
  .main .news {
    height: auto;
    background: #1b6f68;
  }
  .main .news .news-tit {
    width: 100%;
    float: left;
    margin-top: 8%;
  }
  .main .news .news-tit img {
    max-width: 100%;
    width: 150px;
  }
  .main .news .news-tit p {
    font-size: 1.4rem;
    color: #fff;
    line-height: 180%;
    margin-top: 7%;
  }
  .main .news .list-box {
    width: 100%;
    float: right;
    margin-top: 6%;
  }
  .main .news .list-box li {
    background: #fff;
    padding: 3%;
    border-bottom: 1px dashed #d9d9d9;
  }
  .main .news .list-box li:hover {
    background: #e3f1f3;
  }
  .main .news .list-box li:hover a .txt h6 {
    color: #1b6f68;
  }
  .main .news .list-box li a .img {
    width: 22%;
    float: left;
    display: none;
  }
  .main .news .list-box li a .img img {
    width: 100%;
  }
  .main .news .list-box li a .txt {
    width: 77%;
    float: left;
    margin-left: 3%;
  }
  .main .news .list-box li a .txt h6 {
    font-size: 1.8rem;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .main .news .list-box li a .txt p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 1.4rem;
    color: #666;
    line-height: 180%;
  }
  .main .news .list-box li a .date {
    width: 20%;
    float: right;
    text-align: right;
  }
  .main .news .list-box li a .date img {
    margin: 10px 0;
    width: 40px;
    border-radius: 40px;
  }
  .main .news .list-box li a .date p {
    font-size: 1.4rem;
    color: #999;
  }
}
.main .contact {
  padding: 4% 0;
}
.main .contact .contact-tit {
  text-align: center;
}
.main .contact .contact-tit h5 {
  font-size: 3rem;
  color: #081c1a;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.main .contact .contact-tit p {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 1.6rem;
  color: #1b6f68;
  padding-bottom: 5px;
  border-bottom: 2px solid #1b6f68;
}
.main .contact .content {
  margin-top: 2%;
}
.main .contact .content .list-box {
  width: 23.4%;
  float: left;
  border-right: 1px solid #ebebeb;
}
.main .contact .content .list-box li {
  padding: 0 13px;
  margin-bottom: 8%;
  background: url("../images/list-line_03.jpg") no-repeat left top;
}
.main .contact .content .list-box li h6 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 6px;
}
.main .contact .content .list-box li p {
  font-size: 1.4rem;
  color: #999;
  line-height: 180%;
  margin-bottom: 2px;
}
.main .contact .content .list-box li:nth-child(2) {
  margin-bottom: 0;
}
.main .contact .content .form-box {
  float: right;
  width: 69.5%;
}
.main .contact .content .form-box ul:nth-child(1) {
  width: 43%;
  float: left;
}
.main .contact .content .form-box ul:nth-child(1) input {
  width: 100%;
  padding: 0 8px;
  margin-bottom: 14px;
  height: 50px;
  line-height: 50px;
  border: 1px solid #e5e5e5;
}
.main .contact .content .form-box ul:nth-child(2) {
  float: right;
  width: 55.4%;
}
.main .contact .content .form-box ul:nth-child(2) textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 14px;
  height: 114px;
  border: 1px solid #e5e5e5;
}
.main .contact .content .form-box ul:nth-child(3) input {
  width: 100%;
  margin-top: -18px;
  height: 114px;
  border: none;
  height: 50px;
  background: #1b6f68;
  cursor: pointer;
  font-size: 1.6rem;
  color: #ebebeb;
}
@media (max-width: 768px) {
  .main .contact {
    padding: 4% 0;
  }
  .main .contact .contact-tit {
    text-align: center;
  }
  .main .contact .contact-tit h5 {
    font-size: 3rem;
    color: #081c1a;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .main .contact .contact-tit p {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    font-size: 1.6rem;
    color: #1b6f68;
    padding-bottom: 5px;
    border-bottom: 2px solid #1b6f68;
  }
  .main .contact .content {
    margin-top: 2%;
  }
  .main .contact .content .list-box {
    width: 100%;
    float: left;
    border-right: none;
  }
  .main .contact .content .list-box li {
    padding: 0 13px;
    margin-bottom: 11px;
    background: url("../images/list-line_03.jpg") no-repeat left top;
  }
  .main .contact .content .list-box li h6 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 6px;
  }
  .main .contact .content .list-box li p {
    font-size: 1.4rem;
    color: #999;
    line-height: 180%;
    margin-bottom: 2px;
  }
  .main .contact .content .list-box li:nth-child(2) {
    margin-bottom: 0;
  }
  .main .contact .content .form-box {
    float: right;
    width: 100%;
  }
  .main .contact .content .form-box ul:nth-child(1) {
    width: 100%;
    float: left;
  }
  .main .contact .content .form-box ul:nth-child(1) input {
    width: 100%;
    padding: 0 8px;
    margin-bottom: 8px;
    height: 50px;
    line-height: 50px;
    border: 1px solid #e5e5e5;
  }
  .main .contact .content .form-box ul:nth-child(2) {
    float: right;
    width: 100%;
  }
  .main .contact .content .form-box ul:nth-child(2) textarea {
    width: 100%;
    padding: 8px;
    margin: -10px 0 10px;
    height: 114px;
    border: 1px solid #e5e5e5;
  }
  .main .contact .content .form-box ul:nth-child(3) input {
    width: 100%;
    margin-top: -18px;
    height: 114px;
    border: none;
    height: 50px;
    background: #1b6f68;
    cursor: pointer;
    font-size: 1.6rem;
    color: #ebebeb;
  }
}
.footer {
  background: #8a8a8a;
}
.footer .footer-content {
  height: 230px;
  position: relative;
}
.footer .footer-content .footer-logo {
  height: 250px;
  margin-top: -20px;
  float: left;
  width: 18.8%;
  padding: 3%;
  background: #0f312e66;
}
.footer .footer-content .footer-logo img {
  max-width: 100%;
}
.footer .footer-content .footer-logo p {
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  margin-top: 16px;
}
.footer .footer-content .list {
  padding-top: 46px;
  float: left;
  width: 14.87%;
}
.footer .footer-content .list h5 {
  font-size: 1.6rem;
  color: #fff;
}
.footer .footer-content .list ul {
  margin-top: 18px;
}
.footer .footer-content .list li {
  font-size: 1.4rem;
  line-height: 200%;
}
.footer .footer-content .list li a {
  color: #fff;
}
.footer .footer-content .list li a:hover {
  color: #ccc;
}
.footer .footer-content .list:nth-child(2) {
  margin-left: 5%;
}
.footer .footer-content .list:nth-child(5) {
  width: 27.77777%;
}
.footer .footer-content .partner .swiper-container-partner {
  overflow: hidden;
  margin-top: 30px;
}
.footer .footer-content .partner .swiper-container-partner .swiper-slide img {
  width: 100%;
}
.footer .footer-bot {
  height: 40px;
  border-top: 1px solid #989898;
  text-align: center;
}
.footer .footer-bot .container {
  position: relative;
}
.footer .footer-bot p {
  margin: 0;
  font-size: 1.4rem;
  color: #dcdcdc;
  line-height: 39px;
}
.footer .footer-bot p a {
  color: #a1a1a1;
}
.footer .footer-bot p a:hover {
  color: #1b6f68;
}
@media (max-width: 768px) {
  .footer .footer-content {
    height: 230px;
    position: relative;
  }
  .footer .footer-content .footer-logo {
    height: 250px;
    margin-top: -20px;
    float: left;
    width: 18.8%;
    padding: 3%;
    background: #0f312e66;
    display: none;
  }
  .footer .footer-content .footer-logo img {
    max-width: 100%;
  }
  .footer .footer-content .footer-logo p {
    font-size: 1.6rem;
    color: #fff;
    text-align: center;
    margin-top: 16px;
  }
  .footer .footer-content .list {
    padding-top: 26px;
    float: left;
    width: 33.333333%;
  }
  .footer .footer-content .list h5 {
    font-size: 1.6rem;
    color: #fff;
  }
  .footer .footer-content .list ul {
    margin-top: 18px;
  }
  .footer .footer-content .list li {
    font-size: 1.4rem;
    line-height: 200%;
  }
  .footer .footer-content .list li a {
    color: #fff;
  }
  .footer .footer-content .list li a:hover {
    color: #ccc;
  }
  .footer .footer-content .list:nth-child(2) {
    margin-left: 0%;
  }
  .footer .footer-content .list:nth-child(5) {
    width: 100%;
    padding-top: 6px;
  }
  .footer .footer-content .partner .swiper-container-partner {
    overflow: hidden;
    margin: 15px 0;
  }
  .footer .footer-content .partner .swiper-container-partner .swiper-slide img {
    width: 100%;
  }
  .footer .footer-bot {
    height: auto;
    background: #202020;
    text-align: center;
  }
  .footer .footer-bot .container {
    position: relative;
  }
  .footer .footer-bot p {
    margin: 0;
    font-size: 1.4rem;
    color: #a1a1a1;
    line-height: 26px;
  }
  .footer .footer-bot p a {
    color: #a1a1a1;
  }
  .footer .footer-bot p a:hover {
    color: #1b6f68;
  }
  .footer .footer-bot .lf {
    float: none;
  }
  .footer .footer-bot .rt {
    float: none;
  }
}
.footer .returnTop {
  z-index: 99;
  display: block;
  cursor: pointer;
  position: fixed;
  bottom: 90px;
  right: 30px;
  opacity: 1;
  width: 48px;
  height: 48px;
  background: url("../images/return-top.jpg") no-repeat center;
}
.rt-tel {
  height: 60px;
  line-height: 60px;
  position: fixed;
  right: 0;
  bottom: 30px;
  padding: 0 53px 0 53px;
  background: #f0a60c url("../images/rt-tel_03.jpg") no-repeat 10px center;
  font-size: 2rem;
  color: #fff;
  z-index: 99;
}




.footer{
	background-color: #414141;
}	
.footer .footer-bot p{
	color: #B1B1B1;
	font-size: 16px;
}
.footer .footer-bot{
	border-top: 1px solid #606060;
	padding-top: 15px;
	padding-bottom: 15px;
	height: auto;
}
.footer .footer-content .footer-logo{
	background-color: transparent;
	float: right;
	margin-top: 28px;
	padding: 0;
}
.footer .footer-content .footer-logo img{
	margin: 0 auto;
	display: block;
}
.footer .footer-content .list:nth-child(2) {
  margin-left: 1.5%;
}
@media (max-width: 768px){
	.footer .footer-content .list:nth-child(2) {
	  margin-left: 0;
	}	
	.footer .footer-bot p{
		font-size: 14px;
		line-height: 20px;
	}
}







/*ins-style*/
@media (max-width: 768px) {
  .ins-main {
    margin-top: 55px;
  }
}
.ins-main .ins-ad img {
  width: 100%;
}
.ins-main .ins-tit {
  text-align: center;
  background: #ebebeb;
  padding: 1.5% 0;
}
.ins-main .ins-tit h4 {
  font-size: 3rem;
  color: #081c1a;
  font-weight: 600;
}
@media (max-width: 768px) {
  .ins-main .ins-tit h4 {
    font-size: 2.5rem;
  }
}
.ins-main .ins-nav {
  height: 58px;
  line-height: 58px;
  border-bottom: 1px solid #f5f5f5;
}
.ins-main .ins-nav .rt-nav {
  float: right;
}
.ins-main .ins-nav .rt-nav p {
  margin: 0;
  padding-left: 26px;
  background: url("../images/location_03.jpg") no-repeat left center;
  font-size: 1.4rem;
  color: #333;
}
.ins-main .ins-nav .rt-nav p a {
  color: #333;
}
.ins-main .ins-nav .rt-nav p a:hover {
  color: #0187e8;
}
.ins-main .ins-nav .rt-nav p .active {
  color: #0187e8;
}
@media (max-width: 768px) {
  .ins-main .ins-nav {
    height: auto;
    line-height: 40px;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 15px;
  }
  .ins-main .ins-nav .rt-nav {
    float: none;
  }
  .ins-main .ins-nav .rt-nav p {
    margin: 0;
    padding-left: 26px;
    background: url("../images/location_03.jpg") no-repeat left center;
    font-size: 1.4rem;
    color: #333;
  }
  .ins-main .ins-nav .rt-nav p a {
    color: #333;
  }
  .ins-main .ins-nav .rt-nav p a:hover {
    color: #0187e8;
  }
  .ins-main .ins-nav .rt-nav p .active {
    color: #0187e8;
  }
}
.ins-main .list-nav {
  margin-bottom: 5%;
}
.ins-main .list-nav ul {
  margin: 0;
}
.ins-main .list-nav li {
  font-size: 1.6rem;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  position: relative;
  width: 130px;
  text-align: center;
  line-height: 40px;
  border-radius: 4px;
  margin-right: 5px;
}
@media (max-width: 768px) {
  .ins-main .list-nav li {
    width: 100px;
  }
}
.ins-main .list-nav li a {
  transition: 0.3s;
  display: block;
  font-size: 1.6rem;
  background: #666;
  border-radius: 4px;
  color: #fff;
}
.ins-main .list-nav li a:hover {
  background: #1b6f68;
  color: #fff;
}
.ins-main .list-nav .active a {
  background: #1b6f68;
  color: #fff;
}
.ins-main .ins-profile {
  padding: 3% 0;
}
.ins-main .ins-profile .content .img {
  width: 47%;
  float: left;
}
.ins-main .ins-profile .content .img img {
  width: 100%;
}
@media (max-width: 768px) {
  .ins-main .ins-profile .content .img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.ins-main .ins-profile .content .txt {
  width: 49%;
  float: right;
}
@media (max-width: 768px) {
  .ins-main .ins-profile .content .txt {
    width: 100%;
  }
}
.ins-main .ins-profile .content .txt h5 {
  font-size: 2.6rem;
  color: #222;
  margin-bottom: 6%;
}
.ins-main .ins-profile .content .txt p {
  font-size: 1.4rem;
  color: #666;
  line-height: 220%;
  margin-bottom: 4%;
}
.ins-main .ins-huanjing {
  padding: 3% 0;
}
.ins-main .ins-huanjing .content li {
  width: 31.833333%;
  float: left;
  margin-right: 2%;
  margin-bottom: 2%;
}
.ins-main .ins-huanjing .content li img {
  width: 100%;
  cursor: pointer;
}
.ins-main .ins-huanjing .content li p {
  font-size: 1.6rem;
  color: #222;
  text-align: center;
  line-height: 40px;
  background: #f4f4f4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0;
}
.ins-main .ins-huanjing .content li:nth-child(3n+3) {
  margin-right: 0;
}
@media (max-width: 768px) {
  .ins-main .ins-huanjing {
    padding: 3% 0;
  }
  .ins-main .ins-huanjing .content li {
    width: 49%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
  }
  .ins-main .ins-huanjing .content li img {
    width: 100%;
    cursor: pointer;
  }
  .ins-main .ins-huanjing .content li p {
    font-size: 1.6rem;
    color: #222;
    text-align: center;
    line-height: 40px;
    background: #f4f4f4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
  }
  .ins-main .ins-huanjing .content li:nth-child(3n+3) {
    margin-right: 2%;
  }
  .ins-main .ins-huanjing .content li:nth-child(2n+2) {
    margin-right: 0%;
  }
}
.ins-main .product-center {
  background: #f7f7f7;
  padding: 4% 0;
}
.ins-main .product-center .pro-tit {
  text-align: center;
  margin-bottom: 5%;
}
.ins-main .product-center .content li {
  width: 49%;
  float: left;
  margin-right: 2%;
}
.ins-main .product-center .content li:hover .img img {
  transform: scale(1.05);
}
.ins-main .product-center .content li:hover .txt {
  background: #ff3e2a;
}
.ins-main .product-center .content li:hover .txt p {
  color: #fff;
}
.ins-main .product-center .content li:hover .txt span {
  color: #1f1f1f;
  background: #fff;
}
.ins-main .product-center .content li .img {
  overflow: hidden;
}
.ins-main .product-center .content li .img img {
  width: 100%;
  transition: 0.4s;
}
.ins-main .product-center .content li .txt {
  padding: 0 5%;
  height: 128px;
  line-height: 128px;
  background: #fff;
  transition: 0.4s;
  margin-top: 1px;
}
.ins-main .product-center .content li .txt p {
  font-size: 1.6rem;
  color: #555;
  float: left;
}
.ins-main .product-center .content li .txt span {
  display: block;
  float: right;
  width: 130px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 1.6rem;
  color: #fff;
  background: #ff3e2a;
  margin-top: 36px;
}
.ins-main .product-center .content li:nth-child(2n+2) {
  margin-right: 0;
}
@media (max-width: 768px) {
  .ins-main .product-center {
    background: #f7f7f7;
    padding: 4% 0;
  }
  .ins-main .product-center .pro-tit {
    text-align: center;
    margin-bottom: 5%;
  }
  .ins-main .product-center .pro-tit img {
    width: 150px;
  }
  .ins-main .product-center .content li {
    width: 49%;
    float: left;
    margin-right: 2%;
    margin-bottom: 3%;
  }
  .ins-main .product-center .content li .img {
    overflow: hidden;
  }
  .ins-main .product-center .content li .img img {
    width: 100%;
    transition: 0.4s;
  }
  .ins-main .product-center .content li .txt {
    padding: 0 5%;
    height: 38px;
    line-height: 38px;
    background: #fff;
    transition: 0.4s;
    margin-top: 1px;
  }
  .ins-main .product-center .content li .txt p {
    font-size: 1.6rem;
    color: #555;
    float: none;
    text-align: center;
  }
  .ins-main .product-center .content li .txt span {
    display: none;
  }
  .ins-main .product-center .content li:nth-child(2n+2) {
    margin-right: 0;
  }
}
.ins-main .ins-contact {
  padding: 4% 0;
}
.ins-main .ins-contact .txt-box {
  width: 47%;
  float: left;
  margin-top: 8%;
}
.ins-main .ins-contact .txt-box h4 {
  font-size: 2.4rem;
  color: #081c1a;
  font-weight: 600;
}
.ins-main .ins-contact .txt-box p {
  font-size: 1.4rem;
  color: #081c1a;
  margin-top: 4%;
}
.ins-main .ins-contact .map {
  width: 50%;
  float: right;
}
.ins-main .ins-contact .map .my-map {
  margin: 0 auto;
  width: 100%;
  height: 400px;
}
.ins-main .ins-contact .map .my-map .icon {
  background: url(http://lbs.amap.com/console/public/show/marker.png) no-repeat;
}
.ins-main .ins-contact .map .my-map .icon-cir {
  height: 31px;
  width: 28px;
}
.ins-main .ins-contact .map .my-map .icon-cir-red {
  background-position: -11px -5px;
}
.ins-main .ins-contact .map .amap-container {
  height: 100%;
}
@media (max-width: 768px) {
  .ins-main .ins-contact {
    padding: 4% 0;
  }
  .ins-main .ins-contact .txt-box {
    width: 100%;
    float: left;
    margin: 6% 0;
  }
  .ins-main .ins-contact .txt-box h4 {
    font-size: 2.4rem;
    color: #081c1a;
    font-weight: 600;
  }
  .ins-main .ins-contact .txt-box p {
    font-size: 1.4rem;
    color: #081c1a;
    margin-top: 4%;
  }
  .ins-main .ins-contact .map {
    width: 100%;
    float: right;
  }
  .ins-main .ins-contact .map .my-map {
    margin: 0 auto;
    width: 100%;
    height: 300px;
  }
}
.ins-main .ins-question {
  background: #f7f7f7;
  padding: 4% 0;
}
.ins-main .ins-question .wenda-tit {
  text-align: center;
  margin-bottom: 5%;
}
.ins-main .ins-question .content li {
  background: #fff;
  padding: 2%;
  margin-bottom: 3%;
}
.ins-main .ins-question .content li:hover {
  background: #ff3d29;
}
.ins-main .ins-question .content li:hover h6 {
  color: #fff;
  background: url("../images/wenda-lit_08.jpg") no-repeat left center;
}
.ins-main .ins-question .content li:hover p {
  color: #fff;
  background: url("../images/wenda-lit_10.jpg") no-repeat left 5px;
}
.ins-main .ins-question .content li h6 {
  height: 35px;
  line-height: 35px;
  font-size: 1.6rem;
  font-weight: 600;
  padding-left: 63px;
  background: url("../images/wenda-lit_03.jpg") no-repeat left center;
}
.ins-main .ins-question .content li p {
  font-size: 1.4rem;
  color: #5e5e5e;
  line-height: 180%;
  padding-left: 63px;
  background: url("../images/wenda-lit_06.jpg") no-repeat left 5px;
}
@media (max-width: 768px) {
  .ins-main .ins-question {
    background: #f7f7f7;
    padding: 4% 0;
  }
  .ins-main .ins-question .wenda-tit {
    text-align: center;
    margin-bottom: 5%;
  }
  .ins-main .ins-question .wenda-tit img {
    width: 150px;
  }
  .ins-main .ins-question .content li {
    background: #fff;
    padding: 2%;
    margin-bottom: 3%;
  }
  .ins-main .ins-question .content li:hover {
    background: #ff3d29;
  }
  .ins-main .ins-question .content li:hover h6 {
    color: #fff;
    background: url("../images/wenda-lit_08.jpg") no-repeat left center;
  }
  .ins-main .ins-question .content li:hover p {
    color: #fff;
    background: url("../images/wenda-lit_10.jpg") no-repeat left 5px;
  }
  .ins-main .ins-question .content li h6 {
    height: 35px;
    line-height: 35px;
    font-size: 1.6rem;
    font-weight: 600;
    padding-left: 53px;
    background: url("../images/wenda-lit_03.jpg") no-repeat left center;
  }
  .ins-main .ins-question .content li p {
    font-size: 1.4rem;
    color: #5e5e5e;
    line-height: 180%;
    padding-left: 53px;
    background: url("../images/wenda-lit_06.jpg") no-repeat left 5px;
  }
}
.ins-main .service-list {
  text-align: center;
  background: url("../images/service-line_03.jpg") repeat-x center 33px;
}
.ins-main .service-list li {
  width: 31.333333%;
  float: left;
  margin-right: 3%;
  text-align: center;
  font-size: 1.8rem;
  padding-bottom: 16px;
}
.ins-main .service-list li a {
  color: #666;
}
.ins-main .service-list li:nth-child(3) {
  margin-right: 0;
}
.ins-main .service-list .active {
  background: url("../images/download-lit_03.jpg") no-repeat center bottom;
}
.ins-main .ins-download {
  padding: 4% 0;
}
.ins-main .ins-download .content {
  padding: 3% 0;
}
.ins-main .ins-download .content li {
  height: 150px;
  width: 24%;
  float: left;
  margin-right: 1.3333333%;
  margin-bottom: 1.5%;
  padding: 1.7% 3%;
  background: #eee;
  transition: 0.3s;
}
.ins-main .ins-download .content li:hover {
  background: #1b6f68;
}
.ins-main .ins-download .content li:hover .txt h6 {
  color: #fff;
}
.ins-main .ins-download .content li:hover .txt p {
  color: #fff;
}
.ins-main .ins-download .content li:hover span {
  color: #fff;
  background: #000;
  border-color: #000;
}
.ins-main .ins-download .content li .img {
  width: 35%;
  float: left;
}
.ins-main .ins-download .content li .img img {
  width: 100%;
}
.ins-main .ins-download .content li .txt {
  width: 55%;
  float: right;
}
.ins-main .ins-download .content li .txt h6 {
  font-size: 1.4rem;
  color: #333;
}
.ins-main .ins-download .content li .txt p {
  font-size: 1.4rem;
  color: #333;
}
.ins-main .ins-download .content li span {
  height: 32px;
  line-height: 32px;
  text-align: center;
  width: 65%;
  margin: 5% auto 0;
  border: 1px solid #d2d2d2;
  border-radius: 5px;
  font-size: 1.4rem;
  color: #abaaaa;
  display: block;
  transition: 0.3s;
}
.ins-main .ins-download .content li:nth-child(4n+4) {
  margin-right: 0;
}
@media (max-width: 768px) {
  .ins-main .service-list {
    text-align: center;
    background: url("../images/service-line_03.jpg") repeat-x center 33px;
  }
  .ins-main .service-list li {
    width: 31.333333%;
    float: left;
    margin-right: 3%;
    text-align: center;
    font-size: 1.8rem;
    padding-bottom: 21px;
  }
  .ins-main .service-list li a {
    color: #666;
  }
  .ins-main .service-list li:nth-child(3) {
    margin-right: 0;
  }
  .ins-main .service-list .active {
    background: url("../images/download-lit_03.jpg") no-repeat center bottom;
  }
  .ins-main .ins-download {
    padding: 4% 0;
  }
  .ins-main .ins-download .content {
    padding: 3% 0;
  }
  .ins-main .ins-download .content li {
    height: 115px;
    width: 49%;
    float: left;
    margin-right: 2%;
    margin-bottom: 1.5%;
    padding: 1.7% 3%;
    background: #eee;
    transition: 0.3s;
  }
  .ins-main .ins-download .content li:hover {
    background: #1b6f68;
  }
  .ins-main .ins-download .content li:hover .txt h6 {
    color: #fff;
  }
  .ins-main .ins-download .content li:hover .txt p {
    color: #fff;
  }
  .ins-main .ins-download .content li:hover span {
    color: #fff;
    background: #000;
    border-color: #000;
  }
  .ins-main .ins-download .content li .img {
    width: 35%;
    float: left;
  }
  .ins-main .ins-download .content li .img img {
    width: 100%;
  }
  .ins-main .ins-download .content li .txt {
    width: 55%;
    float: right;
  }
  .ins-main .ins-download .content li .txt h6 {
    font-size: 1.4rem;
    color: #333;
  }
  .ins-main .ins-download .content li .txt p {
    font-size: 1.4rem;
    color: #333;
  }
  .ins-main .ins-download .content li span {
    height: 32px;
    line-height: 32px;
    text-align: center;
    width: 65%;
    margin: 5% auto 0;
    border: 1px solid #d2d2d2;
    border-radius: 5px;
    font-size: 1.4rem;
    color: #abaaaa;
    display: block;
    transition: 0.3s;
  }
  .ins-main .ins-download .content li:nth-child(4n+4) {
    margin-right: 0;
  }
  .ins-main .ins-download .content li:nth-child(2n+2) {
    margin-right: 0;
  }
}
.ins-main .ins-anzhuang {
  padding-top: 3%;
}
.ins-main .ins-anzhuang .form-box {
  width: 500px;
  margin: 116px auto;
}
.ins-main .ins-anzhuang .form-box .txt {
  padding: 0 15px;
  height: 48px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #dcdcdc;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.ins-main .ins-anzhuang .form-box .submit {
  line-height: 48px;
  width: 164px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 1.5rem;
  background: #000;
}
@media (max-width: 768px) {
  .ins-main .ins-anzhuang .form-box {
    width: 100%;
    margin: 30px auto;
  }
  .ins-main .ins-anzhuang .form-box .txt {
    padding: 0 15px;
    height: 48px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #dcdcdc;
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
  .ins-main .ins-anzhuang .form-box .submit {
    line-height: 48px;
    width: 164px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1.5rem;
    background: #000;
  }
}
.ins-main .ins-shouhou {
  padding: 3% 0;
}
.ins-main .ins-shouhou .content {
  margin-top: 3%;
}
.ins-main .ins-shouhou .content h5 {
  font-size: 1.8rem;
  color: #1b6f68;
  font-weight: 600;
}
.ins-main .ins-shouhou .content h6 {
  font-size: 1.6rem;
  color: #333333;
  font-weight: 600;
}
.ins-main .ins-shouhou .content p {
  font-size: 1.4rem;
  color: #333;
  line-height: 200%;
}
.ins-main .ins-jinqi {
  padding: 3% 0;
}
.ins-main .ins-jinqi .top-nav {
  text-align: center;
  margin-bottom: 3%;
}
.ins-main .ins-jinqi .top-nav li {
  width: 24%;
  text-align: center;
  line-height: 60px;
  margin-right: 1.33333333%;
  float: left;
  background: #f4f4f4;
}
.ins-main .ins-jinqi .top-nav li:hover {
  background: #1b6f68;
}
.ins-main .ins-jinqi .top-nav li:hover a {
  color: #fff;
}
.ins-main .ins-jinqi .top-nav li a {
  font-size: 1.4rem;
  color: #333;
  display: block;
}
.ins-main .ins-jinqi .top-nav li:nth-child(4) {
  margin-right: 0;
}
.ins-main .ins-jinqi .top-nav .active {
  background: #1b6f68;
}
.ins-main .ins-jinqi .top-nav .active a {
  color: #fff;
}
.ins-main .ins-jinqi .content li {
  width: 31.83333333%;
  float: left;
  margin-right: 2.25%;
  margin-bottom: 2%;
  position: relative;
}
.ins-main .ins-jinqi .content li:hover .img img {
  transform: scale(1.1);
}
.ins-main .ins-jinqi .content li:hover p {
  color: #1b6f68;
}
.ins-main .ins-jinqi .content li .img {
  overflow: hidden;
}
.ins-main .ins-jinqi .content li .img img {
  width: 100%;
  transition: 0.3s;
}
.ins-main .ins-jinqi .content li p {
  font-size: 1.4rem;
  color: #666;
  height: 48px;
  line-height: 48px;
  transition: 0.3s;
  margin: 0;
  border-bottom: 1px solid #ebebeb;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ins-main .ins-jinqi .content li .bot {
  line-height: 50px;
}
.ins-main .ins-jinqi .content li .bot span {
  font-size: 1.4rem;
  color: #999;
}
.ins-main .ins-jinqi .content li .bot img {
  width: 43px;
  height: 43px;
  border-radius: 43px;
  float: right;
  margin-top: 5px;
}
.ins-main .ins-jinqi .content li:nth-child(3n+3) {
  margin-right: 0;
}
@media (max-width: 768px) {
  .ins-main .ins-jinqi {
    padding: 3% 0;
  }
  .ins-main .ins-jinqi .top-nav {
    text-align: center;
    margin-bottom: 3%;
  }
  .ins-main .ins-jinqi .top-nav li {
    width: 49%;
    text-align: center;
    line-height: 40px;
    margin-right: 2%;
    float: left;
    background: #f4f4f4;
    margin-bottom: 2%;
  }
  .ins-main .ins-jinqi .top-nav li:hover {
    background: #1b6f68;
  }
  .ins-main .ins-jinqi .top-nav li:hover a {
    color: #fff;
  }
  .ins-main .ins-jinqi .top-nav li a {
    font-size: 1.4rem;
    color: #333;
    display: block;
  }
  .ins-main .ins-jinqi .top-nav li:nth-child(2) {
    margin-right: 0;
  }
  .ins-main .ins-jinqi .top-nav li:nth-child(4) {
    margin-right: 0;
  }
  .ins-main .ins-jinqi .top-nav .active {
    background: #1b6f68;
  }
  .ins-main .ins-jinqi .top-nav .active a {
    color: #fff;
  }
  .ins-main .ins-jinqi .content li {
    width: 100%;
    float: left;
    margin-right: 0%;
    margin-bottom: 4%;
    position: relative;
  }
  .ins-main .ins-jinqi .content li:hover .img img {
    transform: scale(1.1);
  }
  .ins-main .ins-jinqi .content li:hover p {
    color: #1b6f68;
  }
  .ins-main .ins-jinqi .content li .img {
    overflow: hidden;
  }
  .ins-main .ins-jinqi .content li .img img {
    width: 100%;
    transition: 0.3s;
  }
  .ins-main .ins-jinqi .content li p {
    font-size: 1.4rem;
    color: #666;
    height: 48px;
    line-height: 48px;
    transition: 0.3s;
    margin: 0;
    border-bottom: 1px solid #ebebeb;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .ins-main .ins-jinqi .content li .bot {
    line-height: 50px;
  }
  .ins-main .ins-jinqi .content li .bot span {
    font-size: 1.4rem;
    color: #999;
  }
  .ins-main .ins-jinqi .content li .bot img {
    width: 43px;
    height: 43px;
    border-radius: 43px;
    float: right;
    margin-top: 5px;
  }
  .ins-main .ins-jinqi .content li:nth-child(3n+3) {
    margin-right: 0;
  }
}
.ins-main .ins-product {
  padding: 3% 0;
}
.ins-main .ins-product .top-nav {
  text-align: center;
  margin-bottom: 3%;
}
.ins-main .ins-product .top-nav li {
  width: 98px;
  text-align: center;
  line-height: 32px;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  border: 1px solid transparent;
}
.ins-main .ins-product .top-nav li:hover {
  border: 1px solid #1b6f68;
}
.ins-main .ins-product .top-nav li:hover a {
  color: #1b6f68;
}
.ins-main .ins-product .top-nav li a {
  font-size: 1.4rem;
  color: #222222;
  display: block;
}
.ins-main .ins-product .top-nav .active {
  border: 1px solid #1b6f68;
}
.ins-main .ins-product .top-nav .active a {
  color: #1b6f68;
}
.ins-main .ins-product .content li {
  width: 31.83333333%;
  float: left;
  margin-right: 2.25%;
  margin-bottom: 2%;
  position: relative;
}
.ins-main .ins-product .content li:hover .img img {
  transform: scale(1.1);
}
.ins-main .ins-product .content li:hover p {
  color: #fff;
  background: #1b6f68;
}
.ins-main .ins-product .content li .img {
  overflow: hidden;
}
.ins-main .ins-product .content li .img img {
  width: 100%;
  transition: 0.3s;
}
.ins-main .ins-product .content li p {
  font-size: 1.4rem;
  color: #666;
  text-align: center;
  height: 48px;
  line-height: 48px;
  transition: 0.3s;
  margin: 0;
}
@media (max-width: 768px) {
  .ins-main .ins-product .content li p {
    height: 38px;
    line-height: 38px;
  }
}
.ins-main .ins-product .content li:nth-child(3n+3) {
  margin-right: 0;
}
@media (max-width: 768px) {
  .ins-main .ins-product {
    padding: 2% 0;
  }
  .ins-main .ins-product .content li {
    width: 30%;
    float: left;
    margin-right: 5%;
    margin-bottom: 2%;
    position: relative;
  }
  .ins-main .ins-product .content li:nth-child(3n) {
    margin-right: 0;
  }
  .ins-main .ins-product .content li:nth-child(2n+2) {
    /* margin-right: 0%; */
  }
}
.ins-main .ins-news {
  padding: 3% 0;
}
.ins-main .ins-news li {
  padding: 2%;
  border: 3px solid transparent;
  transition: 0.3s;
  margin-bottom: 1%;
}
.ins-main .ins-news li:hover {
  border: 3px solid #1b6f68;
}
.ins-main .ins-news li:hover .img img {
  transform: scale(1.05);
}
.ins-main .ins-news li .txt {
  width: 47%;
  float: left;
}
.ins-main .ins-news li .txt .number {
  width: 36px;
  text-align: center;
  height: 36px;
  line-height: 36px;
  font-size: 1.6rem;
  color: #1b6f68;
  background: #e3f1f3;
}
.ins-main .ins-news li .txt h6 {
  font-size: 1.8rem;
  color: #333;
  padding: 7% 0;
  border-bottom: 1px solid #ebebeb;
}
.ins-main .ins-news li .txt p {
  font-size: 1.4rem;
  color: #666666;
  line-height: 220%;
  margin: 5% 0;
}
.ins-main .ins-news li .txt span {
  width: 90px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  background: #081c1a;
  color: #fff;
  font-size: 1.4rem;
  float: right;
}
.ins-main .ins-news li .img {
  width: 50%;
  float: right;
  overflow: hidden;
}
.ins-main .ins-news li .img img {
  width: 100%;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .ins-main .ins-news {
    padding: 3% 0;
  }
  .ins-main .ins-news li {
    padding: 2%;
    border: 3px solid transparent;
    transition: 0.3s;
    margin-bottom: 1%;
  }
  .ins-main .ins-news li:hover {
    border: 3px solid #1b6f68;
  }
  .ins-main .ins-news li:hover .img img {
    transform: scale(1.05);
  }
  .ins-main .ins-news li .txt {
    width: 100%;
    float: left;
  }
  .ins-main .ins-news li .txt .number {
    width: 36px;
    text-align: center;
    height: 36px;
    line-height: 36px;
    font-size: 1.6rem;
    color: #1b6f68;
    background: #e3f1f3;
  }
  .ins-main .ins-news li .txt h6 {
    font-size: 1.8rem;
    color: #333;
    padding: 7% 0;
    border-bottom: 1px solid #ebebeb;
  }
  .ins-main .ins-news li .txt p {
    font-size: 1.4rem;
    color: #666666;
    line-height: 220%;
    margin: 5% 0;
  }
  .ins-main .ins-news li .txt span {
    width: 90px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    background: #081c1a;
    color: #fff;
    font-size: 1.4rem;
    float: right;
  }
  .ins-main .ins-news li .img {
    width: 100%;
    float: right;
    display: none;
    overflow: hidden;
  }
  .ins-main .ins-news li .img img {
    width: 100%;
    transition: 0.3s;
  }
}
.ins-main .news-show {
  padding: 4%;
  background: #fff;
}
.ins-main .news-show .content .tit {
  text-align: center;
  border-bottom: 1px solid #eee;
}
.ins-main .news-show .content .tit h5 {
  font-size: 2.4rem;
  color: #242424;
  text-align: center;
  margin: 2% 0;
}
.ins-main .news-show .content .tit p {
  font-size: 1.6rem;
  color: #a5a5a5;
  text-transform: uppercase;
}
.ins-main .news-show .content .txt {
  margin-top: 2.5%;
}
.ins-main .news-show .content .txt img {
  max-width: 100%!important;
  height: auto!important;
  width: auto!important;
}
.ins-main .news-show .content .txt .img {
  margin: 3% 0;
  text-align: center;
}
.ins-main .news-show .content .txt .img img {
  max-width: 100%!important;
}
.ins-main .news-show .content .txt p {
  font-size: 1.6rem;
  color: #6b6b6b;
  line-height: 160%;
  margin-bottom: 2%;
}
.ins-main .news-show .content .txt p img {
  text-align: center;
}
.ins-main .news-show .content .txt table {
  margin: 0 auto;
  overflow: auto;
  height: auto!important;
  text-align: left;
}
.ins-main .news-show .content .txt table td {
  text-align: left!important;
}
.ins-main .news-show .link {
  margin: 5% 0;
}
.ins-main .news-show .link .left {
  width: 50%;
  float: left;
  height: 50px;
  line-height: 50px;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  font-size: 1.6rem;
  color: #6b6b6b;
  background: #eee;
  padding-left: 20px;
}
.ins-main .news-show .link .left:hover {
  color: #fff;
  background: #1b6f68;
}
.ins-main .news-show .link .right {
  width: 50%;
  float: right;
  height: 50px;
  line-height: 50px;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  font-size: 1.6rem;
  color: #6b6b6b;
  background: #eee;
  padding-right: 20px;
}
.ins-main .news-show .link .right:hover {
  color: #fff;
  background: #1b6f68;
}
@media (max-width: 768px) {
  .ins-main .news-show {
    padding: 4%;
    background: #fff;
  }
  .ins-main .news-show .content .tit {
    text-align: center;
    border-bottom: 1px solid #eee;
  }
  .ins-main .news-show .content .tit h5 {
    font-size: 2.4rem;
    color: #242424;
    text-align: center;
    margin: 2% 0;
  }
  .ins-main .news-show .content .tit p {
    font-size: 1.6rem;
    color: #a5a5a5;
    text-transform: uppercase;
  }
  .ins-main .news-show .content .txt {
    margin-top: 2.5%;
  }
  .ins-main .news-show .content .txt img {
    max-width: 100%!important;
    height: auto!important;
    width: auto!important;
  }
  .ins-main .news-show .content .txt .img {
    margin: 3% 0;
    text-align: center;
  }
  .ins-main .news-show .content .txt .img img {
    max-width: 100%!important;
  }
  .ins-main .news-show .content .txt p {
    font-size: 1.6rem;
    color: #6b6b6b;
    line-height: 160%;
    margin-bottom: 2%;
  }
  .ins-main .news-show .content .txt p img {
    text-align: center;
  }
  .ins-main .news-show .content .txt table {
    margin: 0 auto;
    overflow: auto;
    height: auto!important;
    text-align: left;
  }
  .ins-main .news-show .content .txt table td {
    text-align: left!important;
  }
  .ins-main .news-show .link {
    margin: 5% 0;
  }
  .ins-main .news-show .link .left {
    width: 100%;
    float: left;
    height: 50px;
    line-height: 50px;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    font-size: 1.6rem;
    color: #6b6b6b;
    background: #eee;
    padding-left: 20px;
  }
  .ins-main .news-show .link .left:hover {
    color: #fff;
    background: #1b6f68;
  }
  .ins-main .news-show .link .right {
    width: 100%;
    float: right;
    height: 50px;
    line-height: 50px;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    font-size: 1.6rem;
    color: #6b6b6b;
    background: #eee;
    padding-left: 20px;
  }
  .ins-main .news-show .link .right:hover {
    color: #fff;
    background: #1b6f68;
  }
}
.ins-main .ins-honor {
  background: #f7f7f7;
  padding: 4% 0 2%;
}
.ins-main .ins-honor .honor-tit {
  text-align: center;
  margin-bottom: 5%;
}
.ins-main .ins-honor .content li {
  width: 19%;
  float: left;
  margin-right: 1.25%;
  position: relative;
  margin-bottom: 1.25%;
}
.ins-main .ins-honor .content li:hover .masking {
  opacity: 1;
}
.ins-main .ins-honor .content li .img-box img {
  width: 100%;
}
.ins-main .ins-honor .content li .masking {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s;
  cursor: pointer;
}
.ins-main .ins-honor .content li .masking img {
  width: 100%;
}
.ins-main .ins-honor .content li:nth-child(5n+5) {
  margin-right: 0;
}
@media (max-width: 768px) {
  .ins-main .ins-honor {
    background: #f7f7f7;
    padding: 4% 0;
  }
  .ins-main .ins-honor .honor-tit {
    text-align: center;
    margin-bottom: 5%;
  }
  .ins-main .ins-honor .honor-tit img {
    width: 150px;
  }
  .ins-main .ins-honor .content li {
    width: 49%;
    float: left;
    margin-right: 2%;
    position: relative;
    margin-bottom: 2%;
  }
  .ins-main .ins-honor .content li:hover .masking {
    opacity: 1;
  }
  .ins-main .ins-honor .content li .img-box img {
    width: 100%;
  }
  .ins-main .ins-honor .content li .masking {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.3s;
    cursor: pointer;
  }
  .ins-main .ins-honor .content li .masking img {
    width: 100%;
  }
  .ins-main .ins-honor .content li:nth-child(5n+5) {
    margin-right: 2%;
  }
  .ins-main .ins-honor .content li:nth-child(2n+2) {
    margin-right: 0%;
  }
}
.ins-main .ins-about .jianjie-top {
  padding: 3.5% 0;
}
.ins-main .ins-about .jianjie-top img {
  width: 100%;
}
.ins-main .ins-about .jianjie-top .txt {
  margin: 3% 0 0;
}
.ins-main .ins-about .jianjie-top p {
  font-size: 1.4rem;
  color: #081c1a;
}
.ins-main .ins-about .liucheng {
  padding: 3% 0 5%;
  background: #f4f4f4;
}
.ins-main .ins-about .liucheng .liucheng-tit {
  text-align: center;
}
.ins-main .ins-about .liucheng .liucheng-tit h5 {
  font-size: 3rem;
  color: #333;
}
.ins-main .ins-about .liucheng .liucheng-tit b {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 80px;
  height: 3px;
  background: #313131;
}
.ins-main .ins-about .liucheng .content li {
  width: 25%;
  float: left;
  text-align: center;
  margin: 5% 0 0;
}
.ins-main .ins-about .liucheng .content li h6 {
  font-size: 1.6rem;
  color: #161f37;
}
.ins-main .ins-about .liucheng .content li p {
  font-size: 1.2rem;
  color: #666666;
  margin: 0 15%;
  height: 34px;
}
.ins-main .ins-about .liucheng .content li:nth-child(5) {
  margin-left: 12.5%;
}
@media (max-width: 768px) {
  .ins-main .ins-about .jianjie-top {
    padding: 3.5% 0;
  }
  .ins-main .ins-about .jianjie-top img {
    width: 100%;
  }
  .ins-main .ins-about .jianjie-top .txt {
    margin: 3% 0 0;
  }
  .ins-main .ins-about .jianjie-top p {
    font-size: 1.5rem;
    color: #081c1a;
  }
  .ins-main .ins-about .liucheng {
    padding: 3% 0 5%;
    background: #f4f4f4;
  }
  .ins-main .ins-about .liucheng .liucheng-tit {
    text-align: center;
  }
  .ins-main .ins-about .liucheng .liucheng-tit h5 {
    font-size: 3rem;
    color: #333;
  }
  .ins-main .ins-about .liucheng .liucheng-tit b {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    width: 80px;
    height: 3px;
    background: #313131;
  }
  .ins-main .ins-about .liucheng .content li {
    width: 50%;
    float: left;
    text-align: center;
    margin: 5% 0 0;
  }
  .ins-main .ins-about .liucheng .content li img {
    width: 90px;
  }
  .ins-main .ins-about .liucheng .content li h6 {
    font-size: 1.6rem;
    color: #161f37;
  }
  .ins-main .ins-about .liucheng .content li p {
    font-size: 1.2rem;
    color: #666666;
    margin: 0 15%;
    height: 44px;
  }
  .ins-main .ins-about .liucheng .content li:nth-child(5) {
    margin-left: 0%;
  }
}
.ins-main .ins-culture .top-con {
  padding: 3% 0;
}
.ins-main .ins-culture .top-con li {
  /*margin-bottom: 2.5%;*/
  font-size: 1.4rem;
  color: #081c1a;
}
.ins-main .ins-culture .top-con li span.kanmrtx {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 90px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  background: #1b6f68;
  color: #fff;
  font-size: 1.4rem;
  margin-right: 13px;

  position: relative;
  top: 28px;

}

@media (max-width: 768px){
.ins-main .ins-culture .top-con li span.kanmrtx {
  top: 0;
}
}

.ins-main .ins-culture .top-con li p {
  font-size: 1.4rem;
  color: #666666;
  margin: 8px 0;
  padding-left: 103px;
}
.ins-main .ins-culture .team {
  padding: 3% 0 5%;
  background: #f4f4f4;
}
.ins-main .ins-culture .team .team-tit {
  text-align: center;
}
.ins-main .ins-culture .team .team-tit h5 {
  font-size: 3rem;
  color: #333;
}
.ins-main .ins-culture .team .team-tit b {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  height: 3px;
  background: #313131;
  width: 80px;
}
.ins-main .ins-culture .team .slideTxtBox .hd {
  margin: 3% 0;
  height: 34px;
  line-height: 34px;
  position: relative;
  text-align: center;
}
.ins-main .ins-culture .team .slideTxtBox .hd ul li {
  width: 97px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  border: 1px solid #dcdcdc;
  cursor: pointer;
  font-size: 1.4rem;
  color: #333;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  margin: 0 1% 1% 1%;
  position: relative;
}
.ins-main .ins-culture .team .slideTxtBox .hd ul li.on {
  background: #1b6f68;
  color: #fff;
}
.ins-main .ins-culture .team .slideTxtBox .hd ul li.on:after {
  content: '';
  width: 12px;
  height: 6px;
  background: url("../images/team-angle_03.jpg") no-repeat center;
  position: absolute;
  top: 30px;
  left: 50%;
  margin-left: -6px;
}
.ins-main .ins-culture .team .slideTxtBox .bd ul {
  zoom: 1;
}
.ins-main .ins-culture .team .slideTxtBox .bd li {
  width: 23%;
  float: left;
  margin-right: 2.6666666%;
  margin-bottom: 2.6666666%;
}
.ins-main .ins-culture .team .slideTxtBox .bd li .img-box {
  position: relative;
}
.ins-main .ins-culture .team .slideTxtBox .bd li .img-box .img img {
  width: 100%;
}
.ins-main .ins-culture .team .slideTxtBox .bd li .img-box span {
  position: absolute;
  bottom: 5px;
  right: 5px;
}
.ins-main .ins-culture .team .slideTxtBox .bd li p {
  text-align: center;
  font-size: 1.4rem;
  color: #333;
  margin: 10px 0 0;
}
.ins-main .ins-culture .team .slideTxtBox .bd li:nth-child(4n+4) {
  margin-right: 0;
}
@media (max-width: 768px) {
  .ins-main .ins-culture .top-con {
    padding: 3% 0;
  }
  .ins-main .ins-culture .top-con li {
    margin-bottom: 2.5%;
    font-size: 1.4rem;
    color: #081c1a;
  }
  .ins-main .ins-culture .top-con li span {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    width: 90px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    background: #1b6f68;
    color: #fff;
    font-size: 1.4rem;
    margin-right: 13px;
  }

@media (max-width: 768px){
 .ins-main .ins-culture .top-con li p span{
background-color: #FFF;
width: 100%;
text-align: left;
}
.ins-main .ins-culture .top-con li{
 margin-top: 25px;
}
}

  .ins-main .ins-culture .top-con li p {
    font-size: 1.4rem;
    color: #666666;
    margin: 8px 0;
    padding-left: 0px;
  }
  .ins-main .ins-culture .team {
    padding: 3% 0 5%;
    background: #f4f4f4;
  }
  .ins-main .ins-culture .team .team-tit {
    text-align: center;
  }
  .ins-main .ins-culture .team .team-tit h5 {
    font-size: 3rem;
    color: #333;
  }
  .ins-main .ins-culture .team .team-tit b {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    height: 3px;
    background: #313131;
    width: 80px;
  }
  .ins-main .ins-culture .team .slideTxtBox .hd {
    margin: 3% 0;
    height: auto;
    line-height: 34px;
    position: relative;
    text-align: center;
  }
  .ins-main .ins-culture .team .slideTxtBox .hd ul li {
    width: 97px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    border: 1px solid #dcdcdc;
    cursor: pointer;
    font-size: 1.4rem;
    color: #333;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    margin: 0 1% 1% 1%;
    position: relative;
  }
  .ins-main .ins-culture .team .slideTxtBox .hd ul li.on {
    background: #1b6f68;
    color: #fff;
  }
  .ins-main .ins-culture .team .slideTxtBox .hd ul li.on:after {
    display: none;
  }
  .ins-main .ins-culture .team .slideTxtBox .bd ul {
    zoom: 1;
  }
  .ins-main .ins-culture .team .slideTxtBox .bd li {
    width: 49%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2.6666666%;
  }
  .ins-main .ins-culture .team .slideTxtBox .bd li .img-box {
    position: relative;
  }
  .ins-main .ins-culture .team .slideTxtBox .bd li .img-box .img img {
    width: 100%;
  }
  .ins-main .ins-culture .team .slideTxtBox .bd li .img-box span {
    position: absolute;
    bottom: 5px;
    right: 5px;
  }
  .ins-main .ins-culture .team .slideTxtBox .bd li p {
    text-align: center;
    font-size: 1.4rem;
    color: #333;
    margin: 10px 0 0;
  }
  .ins-main .ins-culture .team .slideTxtBox .bd li:nth-child(2n+2) {
    margin-right: 0;
  }
}
.ins-main .ins-business {
  padding: 3% 0;
}
.ins-main .ins-business li {
  width: 31.333333%;
  float: left;
  margin: 0 3% 3% 0;
}
.ins-main .ins-business li:hover .img img {
  transform: scale(1.07);
}
.ins-main .ins-business li .img {
  overflow: hidden;
}
.ins-main .ins-business li .img img {
  transition: 0.3s;
  overflow: hidden;
}
.ins-main .ins-business li p {
  font-size: 1.4rem;
  color: #333;
  text-align: center;
  margin: 10px 0 0 0;
}
.ins-main .ins-business li:nth-child(3n+3) {
  margin-right: 0;
}
@media (max-width: 768px) {
  .ins-main .ins-business {
    padding: 3% 0;
  }
  .ins-main .ins-business li {
    width: 100%;
    float: left;
    margin: 0 0% 3% 0;
  }
  .ins-main .ins-business li:hover .img img {
    transform: scale(1.07);
  }
  .ins-main .ins-business li .img {
    overflow: hidden;
  }
  .ins-main .ins-business li .img img {
    transition: 0.3s;
    overflow: hidden;
  }
  .ins-main .ins-business li p {
    font-size: 1.4rem;
    color: #333;
    text-align: center;
    margin: 10px 0 0 0;
  }
  .ins-main .ins-business li:nth-child(3n+3) {
    margin-right: 0;
  }
}
.ins-main .ins-recruit {
  padding: 3% 0;
}
.ins-main .ins-recruit .panel {
  margin-bottom: 2.56%;
  box-shadow: none;
}
.ins-main .ins-recruit .panel-heading {
  position: relative;
  background-color: #f4f4f4;
  border: 0;
  border-radius: 0;
  padding: 0;
}
.ins-main .ins-recruit .panel-heading .panel-title ul {
  margin: 0;
  display: inline-block;
  vertical-align: middle;
  width: 45%;
  padding-left: 3%;
  padding-right: 10%;
  border-right: 1px solid #dcdcdc;
  padding-top: 2.5%;
  padding-bottom: 2.5%;
}
.ins-main .ins-recruit .panel-heading .panel-title ul li {
  color: #666;
  border-bottom: 1px solid #e5e5e5;
  padding-top: 5.5%;
  padding-bottom: 4%;
}
.ins-main .ins-recruit .panel-heading .panel-title ul li b {
  color: #000;
  font-weight: normal;
  margin-right: 20%;
}
.ins-main .ins-recruit .panel-heading .panel-title ul li:last-child {
  border-bottom: 0;
}
.ins-main .ins-recruit .panel-heading .panel-title .b_box {
  float: right;
  display: inline-block;
  vertical-align: middle;
  width: 55%;
  padding: 4.5% 0 0 12%;
}
.ins-main .ins-recruit .panel-heading .panel-title .b_box .box {
  display: inline-block;
  text-align: center;
}
.ins-main .ins-recruit .panel-heading .panel-title .b_box .box h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.ins-main .ins-recruit .panel-heading .panel-title .b_box .box i {
  display: inline-block;
  width: 90px;
  height: 25px;
  background: #1b6f68;
  line-height: 25px;
  text-align: center;
  color: #fff;
  border-radius: 3px;
  font-style: normal;
  cursor: pointer;
}
.ins-main .ins-recruit .panel-collapse .list-group {
  border: 1px solid #efefef;
  border-bottom: 2px solid #1b6f68;
}
.ins-main .ins-recruit .panel-collapse .list-group .list-group-item {
  position: relative;
  padding: 40px 30px 30px;
}
.ins-main .ins-recruit .panel-collapse .list-group .list-group-item h1 {
  position: relative;
  font-size: 1.8rem;
  color: #000;
  margin-bottom: 35px;
}
.ins-main .ins-recruit .panel-collapse .list-group .list-group-item h1:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2px;
  display: block;
  width: 20px;
  height: 4px;
}
.ins-main .ins-recruit .panel-collapse .list-group .list-group-item p {
  color: #666;
  line-height: 185%;
}
.ins-main .ins-recruit .panel-collapse .list-group .list-group-item a {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 140px;
  height: 35px;
  line-height: 35px;
}








@media (max-width: 768px) {
  .ins-main .ins-recruit {
    padding: 3% 0;
  }
  .ins-main .ins-recruit .panel {
    margin-bottom: 2.56%;
    box-shadow: none;
  }
  .ins-main .ins-recruit .panel-heading {
    position: relative;
    background-color: #f4f4f4;
    border: 0;
    border-radius: 0;
    padding: 0;
  }
  .ins-main .ins-recruit .panel-heading .panel-title ul {
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    border-right: none;
    padding: 5%;
  }
  .ins-main .ins-recruit .panel-heading .panel-title ul li {
    color: #666;
    border-bottom: 1px solid #e5e5e5;
    padding-top: 5.5%;
    padding-bottom: 4%;
  }
  .ins-main .ins-recruit .panel-heading .panel-title ul li b {
    color: #000;
    font-weight: normal;
    margin-right: 20%;
  }
  .ins-main .ins-recruit .panel-heading .panel-title ul li:last-child {
    border-bottom: 0;
  }
  .ins-main .ins-recruit .panel-heading .panel-title .b_box {
    float: none;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    text-align: center;
    padding: 0% 0 4% 0%;
  }
  .ins-main .ins-recruit .panel-heading .panel-title .b_box .box {
    display: inline-block;
    text-align: center;
  }
  .ins-main .ins-recruit .panel-heading .panel-title .b_box .box h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  .ins-main .ins-recruit .panel-heading .panel-title .b_box .box i {
    display: inline-block;
    width: 90px;
    height: 25px;
    background: #1b6f68;
    line-height: 25px;
    text-align: center;
    color: #fff;
    border-radius: 3px;
    font-style: normal;
    cursor: pointer;
  }
  .ins-main .ins-recruit .panel-collapse .list-group {
    border: 1px solid #efefef;
    border-bottom: 2px solid #1b6f68;
  }
  .ins-main .ins-recruit .panel-collapse .list-group .list-group-item {
    position: relative;
    padding: 40px 30px 30px;
  }
  .ins-main .ins-recruit .panel-collapse .list-group .list-group-item h1 {
    position: relative;
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 35px;
  }
  .ins-main .ins-recruit .panel-collapse .list-group .list-group-item h1:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -2px;
    display: block;
    width: 20px;
    height: 4px;
  }
  .ins-main .ins-recruit .panel-collapse .list-group .list-group-item p {
    color: #666;
    line-height: 185%;
  }
  .ins-main .ins-recruit .panel-collapse .list-group .list-group-item a {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 140px;
    height: 35px;
    line-height: 35px;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
.ins-main .ins-culture .team .slideTxtBox .hd ul{
	font-size: 0;
}
.ins-main .ins-culture .team .slideTxtBox .hd ul li{
	width: 31% !important;
    margin: 0 1% 1% 1% !important;	
}  
.ins-main .list-nav ul {
   font-size: 0;
   text-align: left !important;	
}
.ins-main .list-nav li {
   width: 31% !important;
   margin: 0 1% 1% 1% !important;	
}












  
}
.ins-main .ins-solution {
  padding: 4% 0;
  background: #f8f8f8;
}
.ins-main .ins-solution .content li {
  margin-bottom: 4%;
}
.ins-main .ins-solution .content li .img {
  width: 50%;
  float: left;
}
.ins-main .ins-solution .content li .img img {
  width: 100%;
}
.ins-main .ins-solution .content li .txt {
  width: 42%;
  float: right;
  margin-right: 3%;
}
.ins-main .ins-solution .content li .txt h6 {
  font-size: 1.8rem;
  color: #010101;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 15px 0;
}
.ins-main .ins-solution .content li .txt p {
  font-size: 1.4rem;
  color: #626262;
  line-height: 200%;
  margin: 10% 0 12%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
}
.ins-main .ins-solution .content li .txt a {
  display: block;
  width: 100px;
  line-height: 30px;
  height: 30px;
  text-align: center;
  background: #0187e8;
  font-size: 1.4rem;
  color: #fff;
}
.ins-main .ins-solution .content li:nth-child(even) {
  margin-bottom: 4%;
}
.ins-main .ins-solution .content li:nth-child(even) .img {
  width: 50%;
  float: right;
}
.ins-main .ins-solution .content li:nth-child(even) .img img {
  width: 100%;
}
.ins-main .ins-solution .content li:nth-child(even) .txt {
  width: 42%;
  float: left;
  margin-left: 3%;
}
@media (max-width: 768px) {
  .ins-main .ins-solution {
    padding: 4% 0;
    background: #f8f8f8;
  }
  .ins-main .ins-solution .content li {
    margin-bottom: 4%;
  }
  .ins-main .ins-solution .content li .img {
    width: 100%;
    float: left;
  }
  .ins-main .ins-solution .content li .img img {
    width: 100%;
  }
  .ins-main .ins-solution .content li .txt {
    width: 100%;
    float: right;
    margin-right: 0%;
    margin: 20px 0;
  }
  .ins-main .ins-solution .content li .txt h6 {
    font-size: 1.8rem;
    color: #010101;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 15px 0;
  }
  .ins-main .ins-solution .content li .txt p {
    font-size: 1.4rem;
    color: #626262;
    line-height: 200%;
    margin: 15px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
  }
  .ins-main .ins-solution .content li .txt a {
    display: block;
    width: 100px;
    line-height: 30px;
    height: 30px;
    text-align: center;
    background: #0187e8;
    font-size: 1.4rem;
    color: #fff;
  }
  .ins-main .ins-solution .content li:nth-child(even) {
    margin-bottom: 4%;
  }
  .ins-main .ins-solution .content li:nth-child(even) .img {
    width: 100%;
    float: right;
  }
  .ins-main .ins-solution .content li:nth-child(even) .img img {
    width: 100%;
  }
  .ins-main .ins-solution .content li:nth-child(even) .txt {
    width: 100%;
    float: left;
    margin-left: 0%;
  }
}
.ins-main .ins-case {
  padding: 3% 0;
}
.ins-main .ins-case li {
  width: 31.33333%;
  float: left;
  margin-right: 3%;
  margin-bottom: 3%;
}
.ins-main .ins-case li:hover .img img {
  transform: scale(1.05);
}
.ins-main .ins-case li:hover p {
  color: #fff;
  background: #1b6f68;
}
.ins-main .ins-case li .img {
  overflow: hidden;
}
.ins-main .ins-case li .img img {
  width: 100%;
  transition: 0.4s;
}
.ins-main .ins-case li p {
  line-height: 50px;
  text-align: center;
  background: #ebebeb;
  color: #000;
  font-size: 1.6rem;
  margin: 0;
}
.ins-main .ins-case li:nth-child(3n+3) {
  margin-right: 0;
}
@media (max-width: 768px) {
  .ins-main .ins-case {
    padding: 3% 0;
  }
  .ins-main .ins-case li {
    width: 49%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
  }
  .ins-main .ins-case li:hover .img img {
    transform: scale(1.05);
  }
  .ins-main .ins-case li:hover p {
    color: #fff;
    background: #1b6f68;
  }
  .ins-main .ins-case li .img {
    overflow: hidden;
  }
  .ins-main .ins-case li .img img {
    width: 100%;
    transition: 0.4s;
  }
  .ins-main .ins-case li p {
    line-height: 40px;
    text-align: center;
    background: #ebebeb;
    color: #000;
    font-size: 1.6rem;
  }
  .ins-main .ins-case li:nth-child(3n+3) {
    margin-right: 2%;
  }
  .ins-main .ins-case li:nth-child(2n+2) {
    margin-right: 0%;
  }
}
.ins-main .case-show {
  background: #f7f7f7;
  padding: 4% 0;
}
.ins-main .case-show .content {
  padding: 2%;
  background: #fff;
}
.ins-main .case-show .content .img img {
  width: 100%;
}
.ins-main .case-show .content .case-tit {
  margin: 4% 0;
  text-align: center;
}
.ins-main .case-show .content .case-tit h5 {
  font-size: 2.4rem;
  color: #222;
  margin-bottom: 18px;
}
.ins-main .case-show .content .case-tit b {
  display: block;
  width: 45px;
  height: 1px;
  background: #ff3e2a;
  margin: 0 auto;
}
.ins-main .case-show .content .case-txt {
  padding-bottom: 2%;
  border-bottom: 1px solid #eee;
}
.ins-main .case-show .content .case-txt p {
  font-size: 1.4rem;
  color: #505050;
  line-height: 240%;
}
.ins-main .case-show .lunbo {
  margin: 4% 0;
  position: relative;
}
.ins-main .case-show .lunbo .swiper-container-show {
  overflow: hidden;
}
.ins-main .case-show .lunbo .swiper-container-show .swiper-slide:hover .img img {
  transform: scale(1.05);
}
.ins-main .case-show .lunbo .swiper-container-show .swiper-slide:hover .txt {
  background: #ff3e2a;
}
.ins-main .case-show .lunbo .swiper-container-show .swiper-slide:hover .txt p {
  color: #fff;
}
.ins-main .case-show .lunbo .swiper-container-show .swiper-slide:hover .txt h6 {
  color: #fff;
}
.ins-main .case-show .lunbo .swiper-container-show .swiper-slide .img {
  overflow: hidden;
}
.ins-main .case-show .lunbo .swiper-container-show .swiper-slide .img img {
  width: 100%;
  transition: 0.4s;
}
.ins-main .case-show .lunbo .swiper-container-show .swiper-slide .txt {
  padding: 0 5%;
  height: 100px;
  text-align: center;
  background: #fff;
  transition: 0.4s;
  margin-top: 1px;
}
.ins-main .case-show .lunbo .swiper-container-show .swiper-slide .txt h6 {
  font-size: 2.4rem;
  color: #171717;
  margin-top: 0;
  padding-top: 24px;
}
.ins-main .case-show .lunbo .swiper-container-show .swiper-slide .txt p {
  font-size: 1.6rem;
  color: #555;
}
.ins-main .case-show .lunbo .swiper-button-prev-show {
  cursor: pointer;
  width: 21px;
  height: 40px;
  position: absolute;
  left: 30px;
  top: 50%;
  margin-top: -20px;
  background: url("../images/lunbo-btn_03.png") no-repeat center;
  z-index: 3;
}
.ins-main .case-show .lunbo .swiper-button-prev-show:hover {
  background: url("../images/lunbo-btn_09.png") no-repeat center;
}
.ins-main .case-show .lunbo .swiper-button-next-show {
  cursor: pointer;
  width: 21px;
  height: 40px;
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -20px;
  background: url("../images/lunbo-btn_05.png") no-repeat center;
  z-index: 3;
}
.ins-main .case-show .lunbo .swiper-button-next-show:hover {
  background: url("../images/lunbo-btn_10.png") no-repeat center;
}
.ins-main .product-show {
  padding: 3% 0 5%;
}
.ins-main .product-show .top-show {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.ins-main .product-show .top-show .view .swiper-container {
  height: 100%;
  margin: 0 ;
  position: relative;
}
.ins-main .product-show .top-show .view .swiper-container .swiper-slide {
  width: 100%;
}
.ins-main .product-show .top-show .view .swiper-container .swiper-slide img {
  width: 100%;
  border: 1px solid #f0f0f0;
}
.ins-main .product-show .top-show .preview {
  width: 100%;
  padding: 1% 0% 0;
  position: relative;
  border-top: none;
}
.ins-main .product-show .top-show .preview .swiper-container {
  width: 100%;
  margin: 0 auto;
}
.ins-main .product-show .top-show .preview .arrow-left {
  position: absolute;
  left: 10px;
  top: 40%;
  width: 23px;
  height: 38px;
  background: url("../images/show-btn_06.png") no-repeat center;
}
.ins-main .product-show .top-show .preview .arrow-right {
  position: absolute;
  right: 10px;
  top: 40%;
  width: 23px;
  height: 38px;
  background: url("../images/show-btn_03.png") no-repeat center;
}
.ins-main .product-show .top-show .preview .swiper-slide {
  float: left;
  width: auto;
  box-sizing: border-box;
  border: 1px solid transparent;
}
.ins-main .product-show .top-show .preview .swiper-slide img {
  width: 100%;
  cursor: pointer;
  border: 2px solid transparent;
}
.ins-main .product-show .top-show .preview .active-nav img {
  border: 2px solid #1b6f68;
}
.ins-main .product-show .txt-box {
  margin-top: 3.5%;
}
.ins-main .product-show .txt-box p {
  font-size: 1.4rem;
  color: #666;
  line-height: 220%;
}
.page-num {
  clear: both;
  text-align: center;
  vertical-align: middle;
  line-height: 20px;
  padding: 3% 0 3%;
}
.page-num span {
  display: inline-block;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  margin: 0 2px;
  background-color: #1b6f68;
  color: #fff;
  font-size: 14px;
}
.page-num a {
  display: inline-block;
  padding: 0 12px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  margin: 0 2px;
  background-color: #f1f1f1;
  color: #333;
  font-size: 14px;
}
.page-num a:hover {
  color: #fff;
  border-color: #1b6f68;
  background-color: #1b6f68;
}
@media (max-width: 768px) {
  .page-num {
    clear: both;
    text-align: center;
    vertical-align: middle;
    line-height: 20px;
    padding: 4% 0 4%;
  }
  .page-num span {
    display: inline-block;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    margin: 0 2px;
    background-color: #1b6f68;
    color: #fff;
    font-size: 14px;
    margin-bottom: 1%;
  }
  .page-num a {
    display: inline-block;
    padding: 0 12px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    margin: 0 2px;
    background-color: #f1f1f1;
    color: #333;
    font-size: 14px;
    margin-bottom: 1%;
  }
  .page-num a:hover {
    color: #fff;
    border-color: #1b6f68;
    background-color: #1b6f68;
  }
}
.ins-service .img img {
  width: 100%;
  margin-bottom: 3%;
}
.nav-shadow {
  box-shadow: 0 0 15px #cdcbcb;
}
.liucheng {
  padding: 3% 0 5%;
  background: #f4f4f4;
}
.liucheng .liucheng-tit {
  text-align: center;
}
.liucheng .liucheng-tit h5 {
  font-size: 3rem;
  color: #333;
}
.liucheng .liucheng-tit b {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 80px;
  height: 3px;
  background: #313131;
}
.liucheng .content li {
  width: 25%;
  float: left;
  text-align: center;
  margin: 5% 0 0;
}
.liucheng .content li h6 {
  font-size: 1.6rem;
  color: #161f37;
}
.liucheng .content li p {
  font-size: 1.2rem;
  color: #666666;
  margin: 0 15%;
  height: 34px;
  line-height: 1.4; 
}
.liucheng .content li:nth-child(5) {
  margin-left: 12.5%;
}
@media (max-width: 768px) {
  .liucheng {
    padding: 3% 0 5%;
    background: #f4f4f4;
  }
  .liucheng .liucheng-tit {
    text-align: center;
  }
  .liucheng .liucheng-tit h5 {
    font-size: 3rem;
    color: #333;
  }
  .liucheng .liucheng-tit b {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    width: 80px;
    height: 3px;
    background: #313131;
  }
  .liucheng .content li {
    width: 50%;
    float: left;
    text-align: center;
    margin: 5% 0 0;
  }
  .liucheng .content li img {
    width: 90px;
  }
  .liucheng .content li h6 {
    font-size: 1.6rem;
    color: #161f37;
  }
  .liucheng .content li p {
    font-size: 1.2rem;
    color: #666666;
    margin: 0 15%;
    height: 44px;
  }
  .liucheng .content li:nth-child(5) {
    margin-left: 0%;
  }
}


.thuamzb{
	height: 100%;
}


.ins-main .ins-culture .team .slideTxtBox .drnmsb li .img-box .img img {
	max-width: 80%;
	margin: 0 auto;
	display: block;
	border-radius: 50%;
	overflow: hidden;	
}
.ins-main .ins-culture .team .slideTxtBox .drnmsb li p {
	text-align: center !important;
	font-size: 1.5rem;
	line-height: 1.5;
}
.ins-main .ins-culture .team .slideTxtBox .drnmsb li p strong{
	font-size: 1.5rem;
	display: block;
	padding-top: 1rem;
	padding-bottom: .5rem;
}


.ins-main .ins-about .jianjie-top .txt {
    line-height: 2;
}


@media (max-width: 767px) {
	.shnrtg  p{
		display: none !important;
	}	
	.shnrtg h5 {
		font-size: 16px !important;
		padding-bottom: 0 !important;
	}	
}

