/* CSS Document */

body {
  position: relative;
  overflow-x: hidden;
}
body,
html {
  height: 100%;
}
.nav .open > a {
  background-color: transparent;
}
.nav .open > a:hover {
  background-color: transparent;
}
.nav .open > a:focus {
  background-color: transparent;
}
/*-------------------------------*/
/*           Wrappers            */
/*-------------------------------*/
#wrapper {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  padding-left: 0;
	padding-right: 0;
  transition: all 0.5s ease;
	height: 100%;
	
	
}
#wrapper.toggled {

}
#wrapper.toggled #sidebar-wrapper {
  width: 100px;
}
#wrapper.toggled #page-content-wrapper {
  margin-left: -100px;
  position: absolute;
}
#sidebar-wrapper {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  background: #252525;
  /*height: 100%;*/
  right: 0;
  left: auto;
  margin-left: 0;
  overflow-x: hidden;
  overflow-y: auto;
  transition: all 0.5s ease;
  width: 100px;
  z-index: 10000;
  bottom: 168px;
  border: none;
}
#sidebar-wrapper::-webkit-scrollbar {
  display: none;
}
#page-content-wrapper {
  width: 100%;
	height: 100%;
	padding-right: 100px;
	
}
/*-------------------------------*/
/*     Sidebar nav styles        */
/*-------------------------------*/
.sidebar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100px;
}
.sidebar-nav li {
  display: inline-block;
  line-height: 20px;
  position: relative;
  width: 100%;
}
.sidebar-nav li:before {
  background-color: #111111;
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: width 0.2s ease-in;
  transition: width 0.2s ease-in;
  width: 0px;
  z-index: -1;
}
.sidebar-nav li:hover:before, .sidebar-nav li.open:before {
  -webkit-transition: width 0.2s ease-in;
  transition: width 0.2s ease-in;
  width: 100%;
}
.sidebar-nav li a {
  color: #dddddd;
  display: block;
  padding: 25px 8px;
  text-decoration: none;
  text-align: center;
}
.sidebar-nav li.open:hover before {
  -webkit-transition: width 0.2s ease-in;
  transition: width 0.2s ease-in;
  width: 100%;
}
.sidebar-nav .dropdown-menu {
  background-color: #222222;
  border-radius: 0;
  border: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
  display: none;
  position: relative;
  width: 100%;
}
.sidebar-nav li a:hover,
.sidebar-nav li a:active,
.sidebar-nav li a:focus,
.sidebar-nav li.open a:hover,
.sidebar-nav li.open a:active,
.sidebar-nav li.open a:focus{
  background-color: transparent;
  color: #ffffff;
  text-decoration: none;
}
.sidebar-nav > .sidebar-brand {
  font-size: 20px;
  height: 65px;
  line-height: 44px;
}
/*-------------------------------*/
/*       Hamburger-Cross         */
/*-------------------------------*/
.hamburger {
    background: transparent;
    border: none;
    /*display: none;*/
    height: 32px;
    margin-right: 15px;
    position: fixed;
    top: 20px;
    right: 0;
    width: 32px;
    z-index: -1;
	 -webkit-transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
	
}
.hamburger.is-open{
	right: 100px;
}
.hamburger:hover {
  outline: none;
}
.hamburger:focus {
  outline: none;
}
.hamburger:active {
  outline: none;
}
.hamburger.is-closed:before {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
  color: #ffffff;
  content: '';
  display: block;
  font-size: 14px;
  line-height: 32px;
  opacity: 0;
  text-align: center;
  width: 100px;
}
.hamburger.is-closed:hover before {
  -webkit-transform: translate3d(-100px, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
  display: block;
  opacity: 1;
}
.hamburger.is-closed:hover .hamb-top {
  -webkit-transition: all 0.35s ease-in-out;
  top: 0;
}
.hamburger.is-closed:hover .hamb-bottom {
  -webkit-transition: all 0.35s ease-in-out;
  bottom: 0;
}
.hamburger.is-closed .hamb-top {
  -webkit-transition: all 0.35s ease-in-out;
  background-color: #252525;
  top: 5px;
}
.hamburger.is-closed .hamb-middle {
  background-color: #252525;
  margin-top: -2px;
  top: 50%;
}
.hamburger.is-closed .hamb-bottom {
  -webkit-transition: all 0.35s ease-in-out;
  background-color: #252525;
  bottom: 5px;
}
.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom,
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  height: 4px;
  left: 0;
  position: absolute;
  width: 100%;
}
.hamburger.is-open .hamb-top {
  -webkit-transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
  background-color: #252525;
  margin-top: -2px;
  top: 50%;
}
.hamburger.is-open .hamb-middle {
  background-color: #252525;
  display: none;
}
.hamburger.is-open .hamb-bottom {
  -webkit-transform: rotate(-45deg);
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
  background-color: #252525;
  margin-top: -2px;
  top: 50%;
}
.hamburger.is-open:before {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
  color: #252525;
  content: '';
  display: block;
  font-size: 14px;
  line-height: 32px;
  opacity: 0;
  text-align: center;
  width: 100px;
}
.hamburger.is-open:hover before {
  -webkit-transform: translate3d(-100px, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
  display: block;
  opacity: 1;
}
/*-------------------------------*/
/*          Dark Overlay         */
/*-------------------------------*/
.overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 99;
}
/* SOME DEMO STYLES - NOT REQUIRED */

.nav-slide{
	overflow-x: hidden;
    overflow-y: auto;
}
.nav-slide::-webkit-scrollbar {
    display: none;
}
.nav-slide {
    position: fixed;
    right: 100px;
    top: 0;
    width: 130px;
    height: 100%;
    background: #ffffff;
    transform: rotateY(120deg);
    -webkit-transform: rotateY(120deg);
    -moz-transform: rotateY(120deg);
    -o-transform: rotateY(120deg);
    -ms-transform: rotateY(120deg);
    z-index: 99;
    visibility: hidden;
    transform-origin: 0 0;
    -webkit-transform-origin: 100% 100%;
    -moz-transform-origin: 100% 100%;
    -o-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition-timing-function: cubic-bezier(.08,.72,.71,.96);
    -webkit-transition-timing-function: cubic-bezier(.08,.72,.71,.96);
}
.nav-slide.hover {
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    z-index: 10000;
    visibility: visible;
}
.nav-slide-o li{
	list-style: none;
}
.nav-slide-o li a {
	position: relative;
	display: block;
	overflow: hidden;
	padding: 0 35px;
	text-align: left;
	font-size: 14px;
	line-height: 50px;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}



.nav-slide-o li a:hover {
	background: #333333;
	color: #ffffff;
	text-decoration: none;
}

.nav-slide-o li a span {
	position: relative;
	z-index: 1;
}

.nav-slide-o {
	display: none;
}
.nav-slide-o ul{ padding-left: 0;}
#grey-nav {
    margin: 0;
    padding: 0;
    list-style: none;
    position: fixed;
    width: 100px;
    right: 0;
    bottom: 0;
	z-index: 999;
 -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#grey-nav>li {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
	height: 36px;
}
#grey-nav>li.ewm {

	height: auto;
	    padding: 5px 13px 5px 15px;
    background: #252525;
}
#grey-nav>li>a {
    display: block;
    padding: 5px;
    color: #fff;
    height: 36px;
    text-align: center;
    text-decoration: none;
    font-size: 22px;
}
#grey-nav>li.language>a>span {
	font-size: 13px;
}
#grey-nav>li.language>a {
	font-size: 14px;
}
#grey-nav>li.language {
    background-color: #353535;
}
#grey-nav>li.email {
    background-color: #666;
}

@media only screen and (max-width:1200px) {
	#sidebar-wrapper {
		width: 0;
	}
	#grey-nav {
		width: 0;
	}
	#grey-nav .sb-search{
		min-width: 0;
		width: 0;
	}
	.hamburger {
		z-index:100;
	}
	#page-content-wrapper{ 
		padding-right: 0px;
		-moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;}
	
	#wrapper.toggled #grey-nav {
    width: 100px;
}
	#wrapper.toggled #grey-nav .sb-search{
    width: 100px;
}
}


 .swiper-container {
            width: 100%;
            height: 100%;
            margin-left: auto;
            margin-right: auto;
        }

        .swiper-slide {


        }

.footer {
            height: auto !important;
        }
.left-container{ height: 100%;}



#owl-demo{ position: relative;}
    #owl-demo .item img{
        display: block;
        width: 100%;
        height: auto;
    }
#owl-demo .owl-pagination{ position: absolute; bottom: 0; right: 0;    z-index: 1000000;}
#owl-demo .owl-buttons .owl-prev{ position: absolute;top: 50%; left: 0; width: 40px; height: 40px; background: #878787; border: 3px solid #ffffff; border-radius: 50%; padding: 3px; line-height: 30px; font-size: 14px;}
#owl-demo .owl-buttons .owl-next{ position: absolute;top: 50%; right: 0;width: 40px; height: 40px; background: #878787; border: 3px solid #ffffff;border-radius: 50%; padding: 3px; line-height: 30px; font-size: 14px;}

.index-pro{ margin-top: -10px; z-index: 1000; position: relative;}
.index-pro-ul{ text-align: center; margin-left:0;}
.index-pro-ul .index-pro-li{ list-style: none; display: inline-block; margin: 5px;vertical-align: bottom;}
.index-pro-ul .index-pro-li a.popup-with-zoom-anim{width: 100px; height: 100px; display: block;text-align: center; color: #333333;}
.index-pro-ul .index-pro-li a.popup-with-zoom-anim>span{ margin-top: 8px; display: block;}
.index-pro-ul .index-pro-li a.popup-with-zoom-anim:hover{ text-decoration: none;}
.index-pro-ul .index-pro-li a.popup-with-zoom-anim .index-pro-img{width: 100%;}

.index-pro-more {
    text-align: center;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
}
.index-pro-more a{ background: #d1d1d1; color: #333333; font-weight:bold; display:block; width:100%; padding: 5px 25px;}
.index-pro-more a:hover{ text-decoration: none; background: #f2d000;}

.index-honor{ position: absolute; bottom: 20px; width: 100%;}
.index-honor-con{ text-align: right;}
.index-honor .img-1{ display: inline-block;}
.index-honor .img-2{ display: none;}
.index-contain{ min-height: 680px;}

.footer-con{ padding-top: 10px; padding-bottom: 10px; position: relative;}
.footer-con a{ color: #333333; }
.footer-con a:hover{ text-decoration: none; color: #111111;}

.footer-con-r{ position: absolute; top: 50%; margin-top: -10px; right: 10px;}
.footer-con-r ul li{ list-style: none; display: inline-block; margin:0 5px;}
.footer-con-r ul li a{ display: block;}
.footer-con-r ul li a:hover{ opacity: 0.9; }
.foot-sina{ display: block; width: 24px; height: 20px; background: url(../images/foot-link-1_03.jpg) no-repeat;}
.foot-wechat{ display: block; width: 24px; height: 20px; background: url(../images/foot-link-2_03.jpg) no-repeat;}
.foot-taobao{ display: block; width: 24px; height: 20px; background: url(../images/foot-link-3_03.jpg) no-repeat;}
.footer-con-l br{ display: none;}

.contain-con{ background: url(../images/contain-bg.jpg) no-repeat; background-size: cover; padding-top: 100px; padding-bottom: 50px; min-height:0 !important;height: 100% !important;}

.contain-con-logo{ position: absolute; left: 0; left: 15px; top:15px; }
.contain-conner{ background: #ffffff; width: 90%; margin: auto; height: 100%; padding: 30px; position: relative; }
.contain-conner-l{ width: 20%; overflow: hidden; background: #ffffff; z-index: 100000; float: left; height: 100%; border-right: 2px solid #666666;
	-moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;}

.contain-conner-l.toggled {width: 200px; position: absolute; }


.contain-conner-l-con{ padding-left: 10px; padding-right: 10px; height: 100%;}
.contain-conner-l-con::-webkit-scrollbar {
    display: none;
}
.contain-l-title{ margin-bottom: 15px;}
.contain-l-title h2{ font-size: 20px; font-weight: bold; margin: 0; padding: 0; }
.contain-l-title h2 span{ margin-right: 15px; }
.contain-l-title h2 a{ color:#333333; }
.contain-l-title h2 a:hover{ text-decoration:none; }
.contain-l-conner{ padding-left: 5px;}
.contain-l-conner ul{ padding-left: 0;}
.contain-l-conner ul li{ list-style: none;}
.contain-l-conner ul li>span.fa{ margin-right: 15px; color: #111111; }
.contain-l-conner ul li a:hover,.contain-l-conner ul li a.active{ text-decoration: none; font-weight: bold; color: #111111;}

/*-------------------------------*/
/*       Hamburger-Cross         */
/*-------------------------------*/
.hamburger-left {
    background: transparent;
    border: none;
    position: absolute; display: none;
    height: 40px;
    margin-right: 15px;
    width: 40px;
	background: #252525;
    z-index: 100000;
	-moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
	left: 0px;
	top: 0px;
	
}
.hamburger-left.is-open{
	left: 200px;
}
.hamburger-left:hover {
  outline: none;
}
.hamburger-left:focus {
  outline: none;
}
.hamburger-left:active {
  outline: none;
}
.hamburger-left.is-closed:before {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
  color: #ffffff;
  content: '';
  display: block;
  font-size: 14px;
  line-height: 32px;
  opacity: 0;
  text-align: center;
  width: 100px;
}
.hamburger-left.is-closed:hover before {
  -webkit-transform: translate3d(-100px, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
  display: block;
  opacity: 1;
}
/*.hamburger-left.is-closed:hover .hamb-top {
  -webkit-transition: all 0.35s ease-in-out;
  top: 0;
}*/
.hamburger.is-closed:hover .hamb-bottom {
  -webkit-transition: all 0.35s ease-in-out;
  bottom: 0;
}
.hamburger-left.is-closed .hamb-top {
  -webkit-transition: all 0.35s ease-in-out;
  background-color: #ffffff;
  top: 5px;
}
.hamburger-left.is-closed .hamb-middle {
  background-color: #ffffff;
  margin-top: -2px;
  top: 50%;
}
.hamburger-left.is-closed .hamb-bottom {
  -webkit-transition: all 0.35s ease-in-out;
  background-color: #ffffff;
  bottom: 5px;
}
.hamburger-left.is-closed .hamb-top,
.hamburger-left.is-closed .hamb-middle,
.hamburger-left.is-closed .hamb-bottom,
.hamburger-left.is-open .hamb-top,
.hamburger-left.is-open .hamb-middle,
.hamburger-left.is-open .hamb-bottom {
  height: 4px;
  left: 10%;
  position: absolute;
  width: 80%;
}
.hamburger-left.is-open .hamb-top {
  -webkit-transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
  background-color: #ffffff;
  margin-top: -2px;
  top: 50%;
}
.hamburger-left.is-open .hamb-middle {
  background-color: #ffffff;
  display: none;
}
.hamburger-left.is-open .hamb-bottom {
  -webkit-transform: rotate(-45deg);
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
  background-color: #ffffff;
  margin-top: -2px;
  top: 50%;
}
.hamburger-left.is-open:before {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
  color: rgba(6, 157, 58,0.7);
  content: '';
  display: block;
  font-size: 14px;
  line-height: 32px;
  opacity: 0;
  text-align: center;
  width: 100px;
}
.hamburger-left.is-open:hover before {
  -webkit-transform: translate3d(-100px, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
  display: block;
  opacity: 1;
}

.contain-conner-r{ width: 80%; float: right; height: 100%; padding-left: 30px;padding-bottom: 30px; position: relative;}
.contain-conner-r-title{ margin-bottom: 15px;}
.contain-conner-r-title h1{ font-family: 'swis-blkcn'; color: #221816; margin: 0; padding: 0; font-size: 26px;}

    .swiper-slide {
      height: auto;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
    }

.scrollbox{ height: 100%;}
.scrollbox-l{ height: 100%; padding-bottom: 30px;}
.scrollbox-l .mCSB_scrollTools .mCSB_draggerRail{ display: none;}

.contain-feedback{ margin-top:3em;}
.feedback-title h2{ font-size: 20px; font-weight: bold; color: #221816;}

.feedback-con .row{ margin-left: -10px; margin-right: -10px;}
.feedback-con .row .col-md-3,.feedback-con .row .col-md-12{padding: 5px 10px;}
.feedback-con .form-group{
	margin-bottom:0px;
}
.feedback-con .form-group label{
	margin-bottom:0px;
}
.feedback-con .feedback-title{
	font-size:1em;
	color:#111111;
	font-weight:normal;
	margin-top:3px;
}
.feedback-con .feedback-control {
display: block;
width: 100%;
height: 24px;
padding: 6px 12px;
font-size: 13px;
line-height: 1.42857143;
color: #727272;
background-color: #fff;
background-image: none;
border: 1px solid #a9a9a9;
}	
.feedback-con .feedback-textfield{
	width: 100%;
	padding: 2px 5px;
	margin: 0px;
	height: 220px;
	border: 1px solid #a9a9a9;
	padding: 6px 12px;
	color: #727272;
}
.feedback-con input[type="submit"] {
padding:5px 15px;
color: #ffffff;
background-color: #c4c3c2;
border-radius: 2px;
cursor: pointer;
width: 100%;
}
.feedback-con input[type="submit"]:hover {

background-color: #f2d000;

}

.window-next {
    position: absolute;
    left: 50%;
    width: 100px;
    margin-left: -40px;
    text-align: center;
    padding-bottom: 22px;
    color: #727272;
    font-size: 40px;
    cursor: pointer;
    -webkit-animation: -webkit-scroll 3s infinite ease-in-out;
    -moz-animation: -moz-scroll 3s infinite ease-in-out;
    transition: .2s;
    -moz-transition: .2s;
    -ms-transition: .2s;
    -o-transition: .2s;
    -webkit-transition: .2s;
}
.window-next a:hover{text-decoration:none;}
@keyframes -webkit-scroll{0%,40%{opacity:0;-webkit-transform:translateY(-8px);}
 60%,90%{opacity:1;-webkit-transform:translateY(0);}
 100%{opacity:0;-webkit-transform:translateY(4px);}
 }
 @keyframes -moz-scroll{0%,40%{opacity:0;-moz-transform:translateY(-8px);}
 60%,90%{opacity:1;-moz-transform:translateY(0);}
 100%{opacity:0;-moz-transform:translateY(4px);}
 }


.jobs-title{ font-size: 17px; font-weight: bold; color: #221816;}
.jobs-p { margin: 10px 0;}

.job-title{ background: #ededed; color: #111111; padding: 5px 15px;}
.job-title .td{ text-align: center; font-weight: bold; }
.job-con .td{ text-align: left; line-height: 24px; }
.job-con .td1{ text-align: left; }
.container-jobs .panel-group {
    padding: 0;
}
.container-jobs .panel-group .panel .panel-title{
    font-size: 13px;
}
.container-jobs .panel {
	border: 0;
	border-bottom: 1px solid #f2f2f2;
  background: none;
  box-shadow: none;
}

.container-jobs .panel:last-child {
  border-bottom: auto;
}

.container-jobs .panel-group > .panel:first-child .panel-heading {
  border-radius: 4px 4px 0 0;
}

.container-jobs .panel-group .panel {
  border-radius: 0;
}

.container-jobs .panel-group .panel + .panel {
  margin-top: 0px;
}

.container-jobs .panel-heading {
  border-radius: 0;
  border: none;
  color: #333333;
  padding: 0;
}

.container-jobs .panel-title a {
  display: block;
  color: #333333;
  padding: 10px 15px;
  position: relative;
  font-weight: 400;
	
}

.container-jobs .panel-title a:hover,.container-jobs .panel-title a:active, .container-jobs .panel-title a:visited, .container-jobs .panel-title a:focus {
	text-decoration: none;
}
.container-jobs .panel-title a .job-con .td4,.container-jobs .panel-title a .job-con .td4, .container-jobs .panel-title a .job-con .td4, .container-jobs panel-title a .job-con .td4 {
	background: #221816; color: #ffffff; display:inline-block; padding: 5px 25px; font-size: 11px; line-height: 13px;text-align: center;
}
.container-jobs .panel-title a .job-con .td3{
	text-align:center;
}
.container-jobs .panel-title a:hover .job-con .td4,.container-jobs .panel-title a:active .job-con .td4, .container-jobs .panel-title a:visited .job-con .td4, .container-jobs panel-title a:focus .job-con .td4 {
	background: #f2d000;
}
.container-jobs .panel-heading.active .panel-title .job-con .td4 {
 color: #ffffff;background: #f2d000; 
}
.container-jobs .panel-body {
  background: #fafafa;
}

.news-con{ margin-bottom: 10px;}
.news-con a{ display:block;position: relative; min-height: 130px; }
.news-con a:hover{ text-decoration:none; }
.news-img{ width: 215px; position: absolute;}
.news-conner{ position: relative; padding-left: 245px; padding-top: 10px;}
.news-con a:hover .news-title{color: #f2d000;}
.news-title{ font-size: 16px; font-weight: bold; color: #221816;}
.news-title span{ font-size: 13px; font-weight: normal; margin-left: 15px;}
.news-jj{ margin: 10px 0; color: #333333;}
.news-more{ text-align: right;}
.news-more a{ background: #221816; color: #ffffff; display:inline-block; padding: 0 25px;}
.news-more a:hover{ text-decoration: none; background: #f2d000;}

.news-view-title{ font-size: 22px; text-align: center; font-weight: bold;}
.news-view-time{ text-align: right; font-weight: bold; margin: 10px;}

.event-img{ margin-bottom: 30px;}

.list-name-1{ font-weight: bold; font-size: 15px;}
.pro-list-ul li ul.pro-list-ul-2{ padding-left: 20px; padding-top: 3px;}
.pro-list-ul>li{ border-bottom: 1px solid #e6e6e6; padding-bottom: 10px; margin-bottom: 10px;}
.pro-list-ul>li span.pro-list-icon{ cursor: pointer;}
.pro-list-ul>li span.pro-list-icon-1{ /* Rotate div */
transform:rotate(-90deg);
-ms-transform:rotate(-90deg); /* Internet Explorer */
-moz-transform:rotate(-90deg); /* Firefox */
-webkit-transform:rotate(-90deg); /* Safari 和 Chrome */
-o-transform:rotate(-90deg); /* Opera */}
.pro-list-ul>li.current .pro-list-ul-2{ display:none;}
.pro-list-ul>li.current span.pro-list-icon{/* Rotate div */
transform:rotate(-90deg);
-ms-transform:rotate(-90deg); /* Internet Explorer */
-moz-transform:rotate(-90deg); /* Firefox */
-webkit-transform:rotate(-90deg); /* Safari 和 Chrome */
-o-transform:rotate(-90deg); /* Opera */}
.pro-con{ margin-left: -15px; margin-right: -15px;}
.pro-conner{ float: left; width: 25%; padding:0 15px; }
.pro-conner a{ display: block; text-align: center}
.pro-conner a .pro-img img{ width: 100%;}
.pro-conner a .pro-title{ padding: 5px;}
.pro-conner a:hover{ text-decoration: none; color: #333333; font-weight: bold;}
.clear1{ display: block;}
.clear2{ display: none;}
.clear3{ display: none;}

.pro-view-jj-l{ width: 50%; float: left;}
.pro-view-jj-r{ width: 50%; float: left;}



#owl-demo-2 .owl-pagination{ position: absolute; bottom: 0; right: 0;    z-index: 1000000;}
#owl-demo-2 .owl-buttons .owl-prev{ position: absolute;top: 50%; left: 0; background: none; border-radius: 50%; padding: 3px; line-height: 30px; font-size: 50px; color: #b9bbb6; margin-top: -25px;}
#owl-demo-2 .owl-buttons .owl-next{ position: absolute;top: 50%; right: 0;background: none; border-radius: 50%; padding: 3px; line-height: 30px; font-size: 50px; color: #b9bbb6; margin-top: -25px;}

.pro-view-jj-r{ padding-left: 30px;}
.pro-view-title h2{ font-size: 22px; margin-top: 5px; font-weight: bold; color: #221816;}

.pro-view-detail{ margin-top: 10px;}
.pro-view-relative{ margin-top: 25px;}
.pro-view-relative-con{ margin-left: -15px; margin-right: -15px; margin-top: 15px;}
.pro-view-relative-title{ position: relative; text-align: center;}
.pro-view-relative-title h2{ font-size: 22px; font-weight: bold; display: inline-block; margin: 0; padding: 0; background: #ffffff; padding: 5px 20px; }
.pro-view-relative-title hr{  margin: 0; padding: 0; position: absolute; top: 50%; width: 100%; z-index: -1;}

.magnify-modal {
    box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.3);
  }

  .magnify-header .magnify-toolbar {
    background-color: rgba(0, 0, 0, .5);
  }

  .magnify-stage {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-width: 0;
  }

  .magnify-footer .magnify-toolbar {
    background-color: rgba(0, 0, 0, .5);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }

  .magnify-header,
  .magnify-footer {
    pointer-events: none;
  }

  .magnify-button {
    pointer-events: auto;
  }
  
  
  #small-dialog-feedback .contain-feedback{ margin-top:0;}
  #small-dialog-feedback .contain-feedback .feedback-title h2 { margin-top:0;}
  .pro-list-conner-ul { padding-left:0;}
  .pro-list-conner-ul li{ list-style:none;}
  
  .pro-list-conner-li{ margin-bottom:15px;}
  .pro-list-conner-li a{ display:block; position:relative; min-height:40px;}
  .pro-list-conner-name{ position:absolute; bottom:0; font-weight:bold; text-align:center; width:100%; background:rgba(255,255,255,0.8); font-size:15px; padding: 5px 15px;}
  .pro-list-conner-li a:hover .pro-list-conner-name{ background:rgba(255,255,255,0.9); color:#111111;} 

  
  .grid-gallery{ margin-left:-15px; margin-right:-15px;}
  
  .pro-banner{ margin-bottom:15px;}
  
  .feedback-img{ margin-bottom:10px;}
  @media only screen and (max-width:1280px) {
	.index-honor{ bottom: 25px;}
}
@media only screen and (max-width:1200px) {
	.hamburger-left{ display: block;}
	.contain-conner-l{ width: 0%; border-right-color: #252525; float: none; position: absolute; top: 0; left: 0;}
	.contain-conner-r{ width: 100%; float: none;}
	.contain-l-title {
    margin-top: 20px;
}
}
@media only screen and (max-width:1100px) {
	.footer-con-r{ position: relative; margin-top: 10px; }
}
@media only screen and (max-width:968px) {
	.index-pro{ margin-top: 0px; }
	.index-contain{ min-height: 550px;}
	
	.pro-conner{ width: 33.3333%; }
	.clear1{ display: none;}
.clear2{ display: block;}
.clear3{ display: none;}
	
	
}

@media only screen and (max-width:680px) {
	.index-contain{ min-height: 680px;}
	.footer-con{ text-align: center;}
	.footer-con-l br{ display: block;}
	.index-honor .img-1{ display: none;}
	.index-honor .img-2{ display: inline-block;}
	.index-honor-con{ text-align: center;}
	
	
	
	.news-img{ width: 100%; position: relative;}
.news-conner{ position: relative; padding-left: 0px; padding-top: 10px;}
	
		.pro-conner{ width: 50%; padding: 0 5px; }
	.clear1{ display: none;}
.clear2{ display: none;}
.clear3{ display: block;}
	
	
	.pro-view-jj-l{ width: 100%; float: none;}
.pro-view-jj-r{ width: 100%; float: none; padding-left: 0; margin-top: 20px;}
}
