@font-face {
    font-family: 'Florencesans Bold';
    src: url('../fonts/Florencesans Bold.eot');
    src: url('../fonts/Florencesans Bold.eot') format('embedded-opentype'),
         url('../fonts/Florencesans Bold.woff2') format('woff2'),
         url('../fonts/Florencesans Bold.woff') format('woff'),
         url('../fonts/Florencesans Bold.ttf') format('truetype'),
         url('../fonts/Florencesans Bold.svg#Florencesans Bold') format('svg');
}

html{
	height: 100%;
	overflow-x: hidden;
}
body{
	height: 100%;
}
body{
	font-family: 'Florencesans Bold', Arial, Helvetica, sans-serif;
	color: #333333;
	font-size: 14px;
	line-height: 1.5;
}
ul,ol,li,dl,dt,dd {
	margin: 0;
	padding: 0;
	list-style: none;
}
a {
	color: #333;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	text-decoration: none;
}
a:hover {
	color: #449a99;
	text-decoration: none;
}
a:focus,
a:active {
	outline: none;
	text-decoration: none;
}
section{
	padding: 15px 0;
}
@media (min-width: 768px) {
	body > section {
  		padding: 30px 0;
	}
}

/******************
 * 加载
 *****************/
.loader-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999;
    height: 100%;
    width: 100%;
    overflow: hidden !important;
}
.loader {
    width: 64px;
    height: 64px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-image: url(../images/load.gif);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    -webkit-background-size: cover;
            background-size: cover;
    margin: -32px 0 0 -32px;
}

/******************
 * 一键置顶
 *****************/
.scrollToTop {
	color: #fff;
	position: fixed;
	bottom: 5px;
	right: 5px;
	width: 30px;
	height: 30px;
	text-align: center;
	cursor: pointer;
	background-color: #449a99;
	z-index: 1005;
	display: none;
	border-radius:5px;
}
.scrollToTop i {
	line-height: 30px;
	font-size: 16px;
}
.scrollToTop:hover{
	opacity:0.9;
}

/******************
 * 顶栏
 *****************/
.lang-bar{
	height: 24px;
	line-height: 24px;
	overflow: hidden;
	margin-top: 15px;
	margin-bottom: 15px;
	font-size: 12px;
}
.lang-bar a{
	display: inline-block;
	height: 24px;
	line-height: 24px;
	color: #4d4d4d;
	padding-left: 30px;
	background-repeat: no-repeat;
	background-position: 0 50%;
	margin: 0 5px;
}
.lang-bar a.en{
	background-image: url(../images/en.png);
}
.lang-bar a.py{
	background-image: url(../images/py.png);
}
.lang-bar a:hover{
	color: #449a99;
}
@media (min-width:992px) {
	.lang-bar{
		text-align: right;
		margin-bottom: 0px;
	}
}

/******************
 * 导航   *
 *****************/
.fixed{
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	z-index: 9999;
}
.navbar-nav{
	margin-top: 0px;
	margin-bottom: 0px;
}
/* first level menu */
.navbar.navbar-default {
	margin: 5px 0px;
	border: none;
	background-color: transparent;
}
.navbar.navbar-default .navbar-nav{
	background-color: #fafafa;
}
/* first level menu items */
.navbar-default .navbar-nav > li > a {
	font-size: 12px;
	color: #696969;
	z-index: 102;
}
.navbar-default .navbar-nav > li > a:hover {
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
/* first level active menu items on hover/focus */
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
	color: #449a99;
	background-color: transparent;
	border-bottom-color: #449a99;
}
/* first level active menu items when opened */
.main-navigation .navbar-nav > .open > a,
.main-navigation .navbar-nav > .open > a:hover,
.main-navigation .navbar-nav > .open > a:focus {
	color: #449a99;
	background-color: transparent;
	border-bottom-color: #449a99;
}
/* first level active menu items when clicked */
.main-navigation .navbar-nav > .open > a:active,
.main-navigation .navbar-nav > .open.active > a:active {
	background-color: #ffffff;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #449A99;
	border-color: #449a99;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	-ms-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
.main-navigation .navbar-nav > .open > a:active + ul,
.main-navigation .navbar-nav > .open.active > a:active + ul {
	display: none;
}
/* second level menu */
.dropdown-menu {
	min-width: 180px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	padding: 0;
	margin: 0;
	background-color: rgba(240,240,240,0.95);
	-webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08);
	z-index: 101;
}
/* second level menu items */
.dropdown-menu > li > a {
	padding: 10px 10px;
	font-size: 12px;
	color: #666666;
	border-bottom: 1px solid #DDDDDD;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	-ms-transition: none;
	transition: none;
}
/* second level menu items on focus/hover and when opened */
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus,
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus,
.dropdown-menu .menu > .active > a,
.dropdown-menu .menu > .active > a:hover,
.dropdown-menu .menu > .active > a:focus {
	color: #449a99;
}
/* third level menu */
.dropdown-menu .dropdown-menu {
	top: -1px;
	left: 100% !important;
	padding-top: 0;
	margin-left: 1px;
	border-left: none;
	-webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
	border-top: 1px solid #f1f1f1;
}
/* dropdown animations */
.animated.main-navigation .open .dropdown-menu,
.open .dropdown-animation {
	-webkit-animation-duration: 0.2s;
	animation-duration: 0.2s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeInUpSmall;
	animation-name: fadeInUpSmall;
}
.open .dropdown-animation {
	-webkit-animation-duration: 0.3s;
	animation-duration: 0.3s;
}
.animated.main-navigation .dropdown-menu .open .dropdown-menu {
	-webkit-animation-name: fadeInLeftSmall;
	animation-name: fadeInLeftSmall;
}
/* mobile menu toggle button */
.navbar-default .navbar-toggle {
	border: none;
}
/* mobile menu toggle button on hover/focus */
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
	background-color: transparent;
}
.navbar-default .navbar-toggle .icon-bar {
	background-color: #449a99;
}
.navbar-default .navbar-toggle:hover .icon-bar,
.navbar-default .navbar-toggle:focus .icon-bar {
	background-color: #449a99;
}
.main-navigation .navbar-brand{
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
}
.main-navigation .navbar-brand img{
	height: 40px;
}
/**** animations **/
@-webkit-keyframes fadeInUpSmall {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpSmall {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    -ms-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInUpSmall {
  -webkit-animation-name: fadeInUpSmall;
  animation-name: fadeInUpSmall;
}
/**** fadeInDownSmall *****/
@-webkit-keyframes fadeInDownSmall {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownSmall {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    -ms-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/*** fadeInLeftSmall ***/
@-webkit-keyframes fadeInLeftSmall {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftSmall {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0, 0);
    -ms-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
/* Small devices (tablets, 768px and up) */
@media (min-width:768px) {
	.navbar.navbar-default{

		/*background-color: transparent;
		border-color: transparent;*/
		border-radius: 0px;
		border: none;
	}
	.navbar.navbar-default .navbar-nav{
		float: none;
	}
	/*.navbar-collapse {
		padding-right: 0px;
		padding-left: 0px;
	}*/
	/*.main-navigation .navbar-right .dropdown-menu {
		right: auto;
		left: 0;
	}
	.main-navigation .navbar-right > li:last-child > .dropdown-menu {
		right: 0;
		left: auto;
	}
	.navbar-nav li.dropdown a:hover{
		background: none;
	}*/
	/*.main-navigation .navbar-nav {
		float: right;
	}*/
	.navbar-default .navbar-nav > li{
		float: none;
		display: block;
	}

	/*.navbar-default .navbar-nav > li:before,
	.navbar-default .navbar-nav > li:after{
		display: table;
  		content: " ";
	}
	.navbar-default .navbar-nav > li:after{
		clear: both;
	}*/
	/*.navbar-default .navbar-nav > li > a{
		line-height: 40px;
		padding-left: 2px;
		padding-right: 2px;
	}
	.navbar-default .navbar-nav > li > a:focus,
	.navbar-default .navbar-nav > li > a:hover{
		color: #33cc33;
	}*/
	.main-navigation .navbar-header{
		float: none !important;
	}
	/*.main-navigation .navbar-header .logo{
		float: left;
	}*/
	/*.main-navigation .navbar-brand{
		padding-top: 15px;
		padding-bottom: 15px;
		padding-left: 15px;
		height: 80px;
	}*/
	/*.main-navigation .navbar-brand img{
		height: 50px;
	}*/
	.main-navigation .navbar-toggle{
		display: block;
	}
	.navbar-collapse.collapse{
		display: none !important;
	}
	.collapse.in{
		display: block !important;
	}
}
/* Medium desktop devices */
@media (min-width:992px) {
	.main-navigation .navbar-toggle{
		display: none;
	}
	.navbar-collapse.collapse{
		display: block !important;
	}
	.navbar.navbar-default{
		margin: 0px;
		background-color: transparent;
		border-color: transparent;
		border-radius: 0px;
		border: none;
	}
	.navbar.navbar-default .navbar-nav{
		background-color: transparent;
		float: right;
		margin-top: 5px;
	}
	.navbar-collapse {
		padding-right: 0px;
		padding-left: 0px;
	}
	.main-navigation .navbar-right .dropdown-menu {
		right: auto;
		left: 0;
	}
	.main-navigation .navbar-right > li:last-child > .dropdown-menu {
		right: 0;
		left: auto;
	}
	.navbar-nav li.dropdown a:hover{
		background: none;
	}
	.main-navigation .navbar-nav {
		float: right;
	}
	.navbar-default .navbar-nav > li{
		float: left;
	}
	.navbar-default .navbar-nav > li:before,
	.navbar-default .navbar-nav > li:after{
		display: table;
  		content: " ";
	}
	.navbar-default .navbar-nav > li:after{
		clear: both;
	}
	.navbar-default .navbar-nav > li > a{
		line-height: 30px;
		padding-left: 10px;
		padding-right: 10px;
		font-size: 13px;
		padding-top: 0;
		padding-bottom: 0;
		margin-left: 1px;
		margin-right: 0;
		/*border-bottom: 1px solid transparent;*/
		border-bottom: none;
	}
	.navbar-default .navbar-nav > li > a:focus,
	.navbar-default .navbar-nav > li > a:hover{
		color: #696969;
		background-color: transparent;
	}
	.navbar-default .navbar-nav > .active > a,
	.navbar-default .navbar-nav > .active > a:hover,
	.navbar-default .navbar-nav > .active > a:focus {
		color: #696969;
		background-color: transparent;
	}
	/* first level active menu items when opened */
	.main-navigation .navbar-nav > .open > a,
	.main-navigation .navbar-nav > .open > a:hover,
	.main-navigation .navbar-nav > .open > a:focus {
		color: #696969;
		background-color: transparent;
	}
	/* first level active menu items when clicked */
	.main-navigation .navbar-nav > .open > a:active,
	.main-navigation .navbar-nav > .open.active > a:active {
		background-color: transparent;
		-webkit-box-shadow: none;
		box-shadow: none;
		-webkit-transition: all 0.1s ease-in-out;
		-moz-transition: all 0.1s ease-in-out;
		-o-transition: all 0.1s ease-in-out;
		-ms-transition: all 0.1s ease-in-out;
		transition: all 0.1s ease-in-out;
	}
	.main-navigation .navbar-header{
		float: none !important;
	}
	.main-navigation .navbar-header .logo{
		float: left;
	}
	.main-navigation .navbar-brand{
		padding-top: 15px;
		padding-bottom: 15px;
		padding-left: 15px;
		height: 90px;
	}
	.main-navigation .navbar-brand img{
		height: 60px;
	}
}
/* Large devices (Large desktops 1200px and up) */
@media (min-width:1200px) {
	.main-navigation .navbar-brand{
		height: 114px;
	}
	.navbar.navbar-default .navbar-nav{
		margin-top: 20px;
	}
	.main-navigation .navbar-brand img{
		height: 84px;
	}
	.main-navigation .navbar-nav > li >a {
		font-size: 15px;
		padding-left: 15px;
		padding-right: 15px;
	}
}
@media (max-width:992px) {
	.navbar-nav .open .dropdown-menu{
		position: static;
		float: none;
		width: auto;
		margin-top: 0;
		background-color: transparent;
		border: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
	.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
	.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
		color: #449a99;
		background-color: transparent;
	}
	.navbar-default .navbar-nav > li > a {
		border-bottom: 1px solid #f1f1f1;
	}
	.navbar-default .navbar-nav > li:last-child > a {
		border-bottom: 1px solid transparent;
	}
	.main-navigation .navbar-nav > .open > a,
	.main-navigation .navbar-nav > .open > a:hover,
	.main-navigation .navbar-nav > .open > a:focus {
		border-color: #449a99;
		-moz-box-shadow: none;
		-o-box-shadow: none;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	.navbar-default .navbar-nav > li > a:hover,
	.navbar-default .navbar-nav > li > a:focus,
	.navbar-default .navbar-nav > .active > a:hover,
	.navbar-default .navbar-nav > .active > a:focus {
		color: #449a99;
	}
	.navbar-default .navbar-nav .open .dropdown-menu {
		background-color: #ffffff;
	}
	.navbar-default .navbar-nav .open .dropdown-menu > li > a,
	.navbar-default .navbar-nav .open .dropdown-menu .dropdown-header {
		padding: 12px 15px 12px 30px;
		color: #666666;
		border-color: #fafafa;
	}
	.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
	.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
		color: #449a99;
	}
	.navbar-nav .open .dropdown-menu .dropdown-menu > li > a {
		padding-left: 40px;
	}
	.navbar-nav .open .dropdown-menu .dropdown-menu .dropdown-menu > li > a {
		padding-left: 60px;
	}
	.dropdown>a:before {
		right: 32px;
	}
	.dropdown .dropdown>a:before {
		right: 36px;
	}
}
/******************
 * 顶部弹出搜索表单
 *****************/
/******************
 * 顶部弹出搜索表单
 *****************/
.top-search{
	padding: 10px;
}
.top-form{
	width: 100%;
	height: 30px;
	background-color: transparent;
	position: relative;
	margin-top: 0px;
	margin-bottom: 0px;
}
.top-form .form-control{
	height: 30px;
	line-height: 30px;
	background-color: #FFFFFF;
	padding-top: 0px;
	padding-bottom: 0;
	padding-left: 12px;
	padding-right: 30px;
	color: #929292;
	font-size: 12px;
	border: none;
	border: 1px solid #d4d4d4;
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	box-shadow: 0 0 5px #D4D4D4 inset;
	-webkit-box-shadow: 0 0 5px #D4D4D4 inset;
}
.top-form .form-control:focus{
	border-color: #449A99;
	box-shadow: 0 0 5px #449a99 inset;
	-webkit-box-shadow: 0 0 5px #449a99 inset;
}
.top-form button{
	display: block;
	width: 30px;
	height: 30px;
	position: absolute;
	top: 0;
	right: 0;
	text-align: center;
	line-height: 30px;
	border: none;
	background-color: #399493;
	padding: 0;
	margin: 0;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
}
.top-form button i{
	line-height: 30px;
	font-size: 14px;
	color: #FFFFFF;
}
.top-form .form-control::-moz-placeholder {
	color: #b7b7b7;
	opacity: 1;
}
.top-form .form-control:-ms-input-placeholder {
  	color: #b7b7b7;
}
.top-form .form-control::-webkit-input-placeholder {
  	color: #b7b7b7;
}
@media (min-width:768px) {

}
@media (min-width:992px) {
	.top-search{
		margin-left: 10px;
		padding: 0;
	}
	.top-form{
		width: 150px;
		margin-top: 0px;
		margin-bottom: 0px;
	}
}
@media (min-width:1200px) {
	.top-form{
		width: 180px;
	}
}

/******************
 * 幻灯样式   *
 *****************/
.section-banner{
	padding: 0;
	position: relative;
}
/******************
 * 底部和版权
 *****************/
footer{
	display: block;
	padding-top: 15px;
	background-color: #3e3e3e;
}
.col-foot-x1,
.col-foot-x2,
.col-foot-x3,
.col-foot-x4,
.col-foot-x5{
	position: relative;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
	float: left;
}
.col-foot-x1,
.col-foot-x2,
.col-foot-x3,
.col-foot-x4{
	width: 100%;
}
.col-foot-x5{
	width: 100%;
}
.foot-wrap{
	margin-bottom: 15px;
	position: relative;
}
.foot-title{
	color: #fff;
	font-size: 12px;
	margin-bottom: 15px;
	position: relative;
	padding-bottom: 10px;
	border-bottom: 1px solid #545454;
}
.foot-list{
	overflow: hidden;
}
.foot-list li{
	padding: 6px 0;
	font-size: 13px;
	line-height: 1.2;
	color: #C9C9C9;
}
.foot-list li a{
	color: #c9c9c9;
}
.foot-list li a:hover{
	color: #fff;
}
.foot-contact-info{
	position: relative;
}
.foot-contact-info ul li{
	color: #FFFFFF;
	font-size: 14px;
	line-height: 23px;
	padding-left: 30px;
	background-repeat: no-repeat;
	background-position: 0 0;
	margin-bottom: 10px;
}
.foot-contact-info ul li.phone{
	background-image: url(../images/phone.jpg);
}
.foot-contact-info ul li.fax{
	background-image: url(../images/fax.jpg);
}
.foot-contact-info ul li.mail{
	background-image: url(../images/mail.jpg);
}
.foot-contact-info ul li.web{
	background-image: url(../images/web.jpg);
}
.foot-contact-info ul li.ali{
	background-image: url(../images/ali.jpg);
}
.full-copyright{
	background-color: #565656;
	padding: 12px 0;
}
.copyright{
	color: #878787;
	font-size: 14px;
	line-height: 1.45;
	text-align: center;
	margin-top: 20px;
	border-top: 1px solid #545454;
	padding: 15px 10px;
}
.web-support{
	text-align: right;
	font-size: 14px;
	line-height: 1.45;
}
.web-support a{
	color: #919191;
}
.web-support a:hover{
	color: #fff;
}
.foot-wechat{
	overflow: hidden;
	position: relative;
	margin-top: 25px;
}
.foot-wechat img{
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}
.foot-wechat span{
	display: block;
	text-align: center;
	margin-top: 10px;
	color: #FFFFFF;
	font-size: 14px;
}
.foot-links{
	padding: 10px 0;
	border-top: 1px solid #4347a0;
	border-bottom: 1px solid #4347a0;
	margin-top: 20px;
}
.foot-links ul li{
	display: inline-block;
	float: left;
	color: #FFFFFF;
	font-size: 18px;
	line-height: 28px;
}
.foot-links ul li a{
	color: #FFFFFF;
	font-size: 14px;
	margin: 0 5px;
}

.foot-social{
	font-size: 14px;
}
.foot-social a{
	display: inline-block;
	width: 24px;
	height: 24px;
	text-align: center;
	line-height: 24px;
	color: #C9C9C9;
	border: 1px solid #c9c9c9;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	margin-right: 5px;
}
.foot-social a:hover{
	color: #fff;
	background-color: #449A99;
	border-color: #449A99;
}
.foot-pcth{
	margin-top: 40px;
	height: auto;
	overflow: hidden;
}
.foot-pcth img{
	display: block;
	max-width: 100%;
	height: auto;
}

@media (min-width:768px) {
	footer{
		padding-top: 30px;
	}
	.col-foot-x1{
		width: 33.333333%;
	}
	.col-foot-x2{
		width: 33.333333%;
	}
	.col-foot-x3{
		width: 33.333333%;
	}
	.col-foot-x4{
		width: 50%;
	}
	.col-foot-x5{
		width: 50%;
	}
	.foot-wrap{
		min-height: 170px;
	}
	.foot-title{
		font-size: 14px;
	}
}
@media (min-width:992px) {
	.col-foot-x1{
		width: 20%;
	}
	.col-foot-x2{
		width: 20%;
	}
	.col-foot-x3{
		width: 20%;
	}
	.col-foot-x4{
		width: 20%;
	}
	.col-foot-x5{
		width: 20%;
	}
	.foot-title{
		font-size: 18px;
	}
}
/******************
 * owl滚动
 *****************/
.owl-wrap{
	overflow: hidden;
}
.owl-wrap a{
	display: block;
}
.owl-pic{
	overflow: hidden;
}
.owl-title{
	text-align: center;
	height: 40px;
	line-height: 40px;
	overflow: hidden;
	margin-top: 5px;
	font-size: 16px;
}
.owl-carousel .owl-stage-outer{
	z-index: 15;
}
.owl-zs .owl-controls{
	position: relative;
	height: 30px;
	margin-top: 0px;
	margin-bottom: 15px;
}
.owl-zs.owl-theme .owl-controls .owl-nav div{
	width: 20px;
	height: 30px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	padding: 0px;
	background-color: #939393;
	text-align: center;
	line-height: 30px;
	margin: 0px;
	position: absolute;
	top: 0;
	font-size: 0px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}
.owl-zs.owl-theme .owl-controls .owl-nav div.owl-prev{
	background-image: url(../images/prev.png);
	left: 50%;
	margin-left: -25px;
}
.owl-zs.owl-theme .owl-controls .owl-nav div.owl-next{
	background-image: url(../images/next.png);
	right: 50%;
	margin-right: -25px;
}
@media (min-width:768px) {
	.owl-zs .owl-controls{
		width: 100%;
		position: absolute;
		left: 0px;
		top: 40%;
		margin-top: -15px;
		z-index: 10;
	}
	.owl-zs.owl-theme .owl-controls .owl-nav div.owl-prev{
		left: -30px;
	}
	.owl-zs.owl-theme .owl-controls .owl-nav div.owl-next{
		right: -30px;
	}
}
/******************
 * 首页代码
 *****************/
.new-pro-top{
	text-align: center;
	color: #000;
	font-size: 14px;
	text-transform: uppercase;
	position: relative;
	padding-top: 8px;
	letter-spacing: 1px;
}
.new-pro-top:before{
	width: 40px;
	height: 2px;
	position: absolute;
	background-color: #d92218;
	left: 50%;
	margin-left: -20px;
	top: 0;
}
.new-pro-sml{
	text-align: center;
	color: #000;
	font-size: 24px;
	margin-bottom: 30px;
	text-transform: uppercase;
	margin-top: 10px;
}
.sort-list{
	height: auto;
	overflow: hidden;
	text-align: center;
	margin-bottom: 25px;
}
.sort-list ul li{
	display: inline-block;
	*display: inline;
	font-size: 12px;
	margin: 5px 3px;
}
.sort-list ul li a{
	display: inline-block;
	color: #FFFFFF;
	background-color: #616060;
	padding: 5px 20px;
}
.sort-list ul li a:hover{
	background-color: #d92017;
}
.sort-list ul li a.cur{
	background-color: #d92017;
}
.pro-box{
	height: auto;
	overflow: hidden;
	position: relative;
	margin-bottom: 30px;
}
.pro-box a{
	display: block;
}
.pro-img{
	height: auto;
	overflow: hidden;
}
.pro-img img{
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}
.pro-cover{
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
	position: absolute;
	top: 0;
	left: 0;
	visibility: hidden;
	opacity: 0;
	transition: all ease-in-out .3s;
	-webkit-transition: all ease-in-out .3;
	-moz-transition: all ease-in-out .3s;
	-ms-transition: all ease-in-out .3s;
}
.pro-table{
	display: table;
	width: 100%;
	height: 100%;
	padding: 15px;
	text-align: center;
}
.pro-tabcel{
	display: table-cell;
	width: 100%;
	height: 100%;
	vertical-align: middle;
}
.pro-fa{
	color: #FFFFFF;
	font-size: 20px;
	position: relative;
	top: -20px;
	transition: all ease-in-out .3s;
	-webkit-transition: all ease-in-out .3;
	-moz-transition: all ease-in-out .3s;
	-ms-transition: all ease-in-out .3s;
}
.pro-name{
	font-size: 16px;
	margin-top: 5px;
	color: #FFFFFF;
	position: relative;
	bottom: -20px;
	transition: all ease-in-out .3s;
	-webkit-transition: all ease-in-out .3;
	-moz-transition: all ease-in-out .3s;
	-ms-transition: all ease-in-out .3s;
}
.pro-box:hover .pro-cover{
	opacity: 1;
	visibility: visible;
}
.pro-box:hover .pro-fa{
	top: 0;
}
.pro-box:hover .pro-name{
	bottom: 0;
}
@media (min-width:768px) {
	.new-pro-sml{
		font-size: 30px;
	}
	.sort-list ul li{
		font-size: 14px;
	}
}

.full-about{
	padding-bottom: 30px;
	background-color: #fff;
}
.about-intro{
	margin-top: 20px;
	color: #515151;
	font-size: 14px;
	line-height: 2;
	text-align: left;
	margin-bottom: 30px;
}
.fac-wrap{
	height: auto;
	overflow: hidden;
	position: relative;
	cursor: all-scroll;
	margin-bottom: 20px;
}
.fac-pic{
	height: auto;
	overflow: hidden;
}
.fac-pic img{
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}
.fac-cover{
	width: 100%;
	height: auto;
	overflow: hidden;
	position: absolute;
	left: 0;
	bottom: -119px;
	background-color: rgba(217,32,23,1);
	padding: 25px 15px;
	transition: all ease-in-out .3s;
	-webkit-transition: all ease-in-out .3;
	-moz-transition: all ease-in-out .3s;
	-ms-transition: all ease-in-out .3s;
}
.fac-intro{
	color: #FFFFFF;
	font-size: 14px;
	line-height: 28px;
	height: 84px;
	overflow: hidden;
}
.fac-wrap:hover .fac-cover{
	background-color: rgba(217,32,23,.6);
	bottom: 0;
}

@media (min-width: 768px ) {
	#fac-row.row{
		margin-left: -10px;
		margin-right: -10px;
	}
	#fac-row.row .col-sm-3,
	#fac-row.row .col-md-3{
		padding-left: 10px;
		padding-right: 10px;
	}

}

.full-ads{
	padding: 100px 0;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	background-attachment: fixed;
}
.ads-bg1{
	background-image: url(../images/hs_53.jpg);
}
.ads-bg2{
	background-image: url(../images/hs_44.jpg);
}
.ads-top{
	text-align: right;
	color: #FFFFFF;
	font-size: 24px;
	position: relative;
	padding-top: 15px;
}
.ads-top:before{
	width: 90px;
	height: 3px;
	background-color: #FFFFFF;
	position: absolute;
	top: 0;
	right: 0;
}
.ads-intro{
	text-align: right;
	color: #FFFFFF;
	font-size: 14px;
	margin-top: 20px;
}
.ads-more{
	text-align: right;
	margin-top: 30px;
	font-size: 14px;
}
.ads-more a{
	display: inline-block;
	border: 1px solid #FFFFFF;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	color: #FFFFFF;
	padding: 8px 25px;
	background-color: rgba(255,255,255,0.4);
}
@media (min-width: 768px ) {
	.full-ads{
		padding: 150px 0;
	}
	.ads-top{
		font-size: 30px;
	}
	.ads-intro{
		font-size: 18px;
	}
}
@media (min-width: 992px ) {
	.full-ads{
		padding: 180px 0;
	}
	.ads-top{
		font-size: 36px;
	}
	.ads-intro{
		font-size: 20px;
	}
}
@media (min-width: 1200px ) {
	.full-ads{
		padding: 220px 0;
	}
	.ads-top{
		font-size: 48px;
	}
	.ads-intro{
		font-size: 24px;
	}
}
/** ys **/
.ys-list{
	overflow: hidden;
}
.ys-list ul li{
	height: auto;
	overflow: hidden;
	position: relative;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
	background-color: #F4F4F4;
	margin-bottom: 5px;
}
.ys-list ul li:hover{
	background-color: #d92017;
}
.ys-list ul li:hover .ys-pic img{
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.ys-item{
	position: relative;
}
.ys-pic{
	overflow: hidden;
}
.ys-pic img{
	display: block;
	margin: 0 auto;
	width: 100%;
	height: auto;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
}
.ys-wrap{
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 15px;
	padding-right: 15px;
	height: auto;
	overflow: hidden;
}
.ys-wrap a{
	display: block;
}
.ys-title{
	color: #2a2d7c;
	font-size: 16px;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
}
.ys-intro{
	color: #515151;
	font-size: 14px;
	line-height: 2;
	margin-top: 10px;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
}
.ys-more{
	color: #D92218;
	text-transform: capitalize;
	text-decoration: underline;
	margin-top: 20px;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
}
.ys-list ul li:hover .ys-title,
.ys-list ul li:hover .ys-intro,
.ys-list ul li:hover .ys-more{
	color: #FFFFFF;
}

@media (min-width: 768px) {
	.ys-list ul li{
		margin-bottom: 0;
	}
	.ys-item{
		width: 50%;
		float: left;
	}
	.ys-wrap{
		padding-top: 20px;
		padding-bottom: 20px;
		padding-left: 30px;
		padding-right: 30px;
	}
	.ys-title{
		font-size: 20px;
	}

}
@media (min-width: 992px) {
	.ys-wrap{
		padding-top: 20px;
		padding-bottom: 20px;
		padding-left: 30px;
		padding-right: 30px;
	}
	.ys-title{
		font-size: 20px;
	}

}
@media (min-width: 1200px) {
	.ys-wrap{
		padding-top: 50px;
		padding-bottom: 50px;
		padding-left: 35px;
		padding-right: 35px;
	}
	.ys-title{
		font-size: 24px;
	}
}

.case-top{
	text-align: center;
	color: #1b1b1b;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
}
.case-box{
	margin-top: 20px;
}
.case-name{
	font-size: 14px;
	text-align: center;
	margin: 15px 0;
}
.case-img{
	overflow: hidden;
}
.case-row.row{
	margin-left: -5px;
	margin-right: -5px;
}
.case-row.row .col-sm-6,
.case-row.row .col-md-3{
	padding-left: 5px;
	padding-right: 5px;
}
@media (min-width: 768px){
	.case-top{
		font-size: 30px;
	}
}
.full-newsmg{
	padding: 40px 0;
	background-color: #2a5286;
	margin-top: 15px;
	background-image: url(../images/j_50.jpg);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
}
.news-rights{
	padding: 15px;
	background-color: rgba(0,0,0,.4);
}
@media (min-width: 992px){
	.news-rights{
		width: 60%;
		float: right;
		padding: 25px 30px;

	}
}

.section-gray{
	background-color: #f1eff0;
}
/** 首页分类 **/
.sort-wrap{
	position: relative;
}
.sort-left{
	width: 100%%;
	position: relative;
}
.sort-hover a{
	display: block;
}
.sort-pic{
	overflow: hidden;
}
.sort-pic img{
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}
.sort-word{
	position: absolute;
	width: 100%;
}
.sort-name{
	text-align: center;
	color: #000;
	font-size: 16px;
	margin-bottom: 10px;
}
.sort-more{
	text-align: center;
	font-size: 14px;
}
.sort-more span{
	display: inline-block;
	padding: 5px 30px;
	border: 1px solid #707070;
	color: #707070;
	-webkit-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-ms-transition: all ease-in-out 0.5s;
	transition: all ease-in-out 0.5s;
}
.sort-hover:hover .sort-more span{
	color: #FFFFFF;
	background-color: #ed1b24;
	border-color: #ed1b24;
}
.sort-right{
	width: 100%;
	position: relative;
}
.sort-row{
	width: 100%;
	position: relative;
}
.sort-top-left{
	width: 100%;
	position: relative;
}
.sort-top-right{
	width: 100%;
	position: relative;
}
.sort-last{
	width: 100%;
	margin-top: 2%;
	position: relative;
}
.sort-pos1{
	top: 60%;
	left: 0;
}
.sort-pos2{
	top: 60%;
	left: 0;
}
.sort-pos3{
	top: 60%;
	left: 0;
}
.sort-pos4{
	top: 15%;
	left: 0;
	padding-left: 30%;
}
.margin-xs{
	margin-bottom: 15px !important;
}
@media (min-width: 768px) {
	.sort-name{
		font-size: 16px;
	}
	.sort-left{
		width: 37.5%;
		float: left;
		position: relative;
	}
	.sort-right{
		width: 61%;
		position: relative;
		float: right;
	}
	.sort-top-left{
		width: 49%;
		float: left;
		position: relative;
	}
	.sort-top-right{
		width: 49%;
		float: right;
		position: relative;
	}
	.margin-xs{
		margin-bottom: 0 !important;
	}

	.sort-pos1{
		top: 60%;
		left: 0;
	}
	.sort-pos2{
		top: 60%;
		left: 0;
	}
	.sort-pos3{
		top: 60%;
		left: 0;
	}
	.sort-pos4{
		top: 30%;
		left: 0;
		padding-left: 40%;
	}
}
@media (min-width: 992px) {
	.sort-name{
		font-size: 24px;
	}
}
@media (min-width: 1200px) {
	.sort-name{
		font-size: 30px;
	}
}
/** 首页新闻 **/
.news-wrap{
	height: auto;
	overflow: hidden;
}
.news-wrap a{
	display: block;
}
.news-img{
	height: auto;
	overflow: hidden;
}
.news-img img{
	max-width: 100%;
	height: auto;
	margin: 0 auto;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
}
.news-wrap:hover .news-img img{
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.title-news{
	margin-top: 10px;
	color: #D92218;
	font-size: 16px;
}
.intro-news{
	color: #666666;
	font-size: 14px;
	line-height: 2;
	margin-top: 5px;
}

.section-contact{
	background-color: #F4F4F4;
}
.contact-top{
	text-align: center;
	color: #323232;
	font-size: 20px;
	text-transform: uppercase;
	position: relative;
	padding-bottom: 5px;
	margin-bottom: 30px;
}
.contact-top:after{
	width: 50px;
	height: 2px;
	background-color: #808080;
	position: absolute;
	left: 50%;
	margin-left: -25px;
	bottom: 0;
}
.contact-title{
	text-align: center;
	color: #1d1d1d;
	font-size: 12px;
	margin-top: 20px;
	margin-bottom: 15px;
}

@media (min-width:768px) {
	.contact-top{
		font-size: 24px;
	}
	.contact-title{
		font-size: 14px;
	}
}
@media (min-width:992px) {
	.contact-top{
		font-size: 30px;
	}
	.contact-title{
		font-size: 16px;
	}
}
@media (min-width: 1200px) {
	.contact-top{
		font-size: 36px;
	}
}

/** 首页六边形 **/
.box_out,
.box_mid,
.box_in{
    width: 200px;
    height: 250px;
    overflow: hidden;
    position: relative;
}
.box_out, .box_mid{
    visibility: hidden;
}
.box_out{
	margin: 0 auto;
	transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    -moz-transform: rotate(120deg);
    -webkit-transform: rotate(120deg);
}
.box_mid{
    transform: rotate(-60deg);
    -ms-transform: rotate(-60deg);
    -moz-transform: rotate(-60deg);
    -webkit-transform: rotate(-60deg);
}
.box_in{
    transform: rotate(-60deg);
    -ms-transform: rotate(-60deg);
    -moz-transform: rotate(-60deg);
    -webkit-transform: rotate(-60deg);
    visibility: visible;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 125% auto;
    margin: 0 auto;
}
.work-title{
	text-align: center;
	font-size: 16px;
	margin-top: 15px;
}

/** 首页分类 **/
#cate-row.row{
	margin-left: 0;
	margin-right: 0;
}
#cate-row.row .col-xs-6,
#cate-row.row .col-sm-6,
#cate-row.row .col-sm-4{
	padding-left: 0;
	padding-right: 0;
}
.cate-wrap{
	height: auto;
	overflow: hidden;
	position: relative;
	padding: 5px;
}
.cate-wrap a{
	display: block;
}
.cate-wrap .pic{
	height: auto;
	overflow: hidden;
	border: 1px solid #E5E5E5;
	box-shadow: 0 0 5px #E5E5E5;
}
.cate-wrap .pic img{
	display: block;
	width: 100%;
	margin: 0 auto;
	height: auto;
}
.cate-wrap .title{
	color: #4E4E4E;
	font-size: 12px;
	position: relative;
	width: 100%;
	text-align: center;
	margin-top: 10px;
}
@media (min-width:768px) {
	.cate-wrap{
		padding: 15px;
	}
	.cate-wrap .title{
		position: absolute;
		margin-top: 0;
	}
	.cate-wrap .title{
		font-size: 20px;
	}
	.cate-wrap .title.title-c1{
		left: 50px;
		top: 46%;
		text-align: left;
	}
	.cate-wrap .title.title-c2{
		left: 0;
		top: 8%;
		text-align: center;
	}
	.cate-wrap .title.title-c3,
	.cate-wrap .title.title-c4{
		left: 0;
		top: 10%;
		text-align: center;
	}
	.cate-wrap .title.title-c5{
		left: 40px;
		top: 10%;
		text-align: left;
	}
}
@media (min-width:992px) {
	.cate-wrap .title{
		font-size: 24px;
	}
}
@media (min-width:1200px) {
	.cate-wrap .title{
		font-size: 30px;
	}
}

/** 首页产品列表 **/
.product-list{
	margin: 15px 0;
}
.product-wrap{
	overflow: hidden;
}
.product-wrap a{
	display: block;
}
.product-img{
	overflow: hidden;
}
.product-name{
	text-align: center;
	font-size: 14px;
	height: 40px;
	line-height: 40px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
/** 首页视频 **/
.video-top{
	text-align: center;
	color: #2c2c2c;
	font-size: 14px;
	text-transform: capitalize;
	margin-top: 20px;
	position: relative;
	padding-bottom: 10px;
}
.video-top:after{
	width: 60px;
	height: 2px;
	background-color: #909090;
	position: absolute;
	left: 50%;
	margin-left: -30px;
	bottom: 0px;
}
.video-wrap{
	position: relative;
	overflow: hidden;
	margin-top: 25px;
}
.video-wrap a{
	display: block;
	color: #999999;
}
.video-wrap a:hover{
	color: #E67817;
}
.video-pic{
	overflow: hidden;
	position: relative;
}
.video-name{
	font-size: 14px;
	line-height: 20px;
	height: 40px;
	overflow: hidden;
	margin-top: 15px;
}
.video-over{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	background-color: rgba(0,0,0,0.3);
	text-align: center;
}
.video-table{
	width: 100%;
	height: 100%;
	display: table;
	text-align: center;
}
.video-tabcel{
	width: 100%;
	height: 100%;
	display: table-cell;
	vertical-align: middle;
}
.video-tabcel i{
	color: #FFFFFF;
	font-size: 18px;
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 36px;
	border: 2px solid #FFFFFF;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
}
@media (min-width:768px) {
	.video-top{
		font-size: 30px;
	}
}

/*** grid css ***/
.grid {
	position: relative;
	margin: 0 auto;
	padding: 0;
	max-width: 100%;
	list-style: none;
	text-align: center;
}
.grid figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 0;
	max-width: 100%;
	width: 100%;
	background: #333;
	text-align: center;
	cursor: pointer;
}
.grid figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 1;
}
.grid figure figcaption {
	padding: 2em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.grid figure figcaption::before,
.grid figure figcaption::after {
	pointer-events: none;
}
.grid figure figcaption,
.grid figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.grid figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}
.grid figure h2 {
	word-spacing: -0.15em;
	font-weight: normal;
}
.grid figure h2,
.grid figure p {
	margin: 0;
}
.grid figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
}
/*---------------*/
/***** Chico *****/
/*---------------*/
figure.effect-chico img {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}
figure.effect-chico:hover img {
	opacity: 0.2;
	-webkit-transform: scale(1);
	transform: scale(1);
}
figure.effect-chico figcaption {
	padding: 5px;
}
figure.effect-chico h2 {
	padding-top: 25%;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,-20px,0);
	transform: translate3d(0,-20px,0);
	font-size: 12px;
	opacity: 0;
}
figure.effect-chico p {
	padding: 10px 15px;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,20px,0);
	transform: translate3d(0,20px,0);
	font-size: 12px;
}
figure.effect-chico figcaption::before,
figure.effect-chico figcaption::after {
	position: absolute;
	top: 15px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}
figure.effect-chico figcaption::before {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}
figure.effect-chico figcaption::after {
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	-webkit-transform: scale(1,0);
	transform: scale(1,0);
}
figure.effect-chico:hover figcaption::before,
figure.effect-chico:hover figcaption::after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
figure.effect-chico:hover h2,
figure.effect-chico:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
/* end */

/******************
 * 内页代码
 *****************/
/* 内页Banner */
.inner-banner{
	width: 100%;
}
.section-inner{
	background-color: #f1eff0;
	padding: 40px 0;
}
/* 侧边导航 */
.min-nav{
	position: relative;
	background-color: #005aaa;
}
.mobile-head{
	color: #fff;
	font-size: 16px;
	float: left;
	text-transform: uppercase;
	padding-top: 13px;
	padding-left: 15px;
	word-spacing: 3px;
}
.min-tabs{
	background-color: #FFFFFF;
	padding: 0;
	position: relative;
	margin-top: 0px;
}
.min-tabs ul li{
	border-top: 1px solid #FFFFFF;
	border-bottom: 1px solid #DDDDDD;
	position: relative;
	height: auto !important;
}
.min-tabs ul li a{
	display: block;
	background-color: #F5F5F5;
	font-size: 13px;
	height: 40px;
	line-height: 40px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding: 0 15px;
	color: #000;
	position: relative;
}
.min-tabs ul li a:hover{
	color: #33cc33;
}
.min-tabs ul li a i{
	padding-right: 10px;
	font-size: 16px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.min-tabs ul li a:hover i{
	padding-right: 15px;
}
.min-tabs ul li a.active{
	color: #33cc33;
}
.min-tabs > ul > li.dropdown > a::after{
	content: "\f196";
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	right: 9px;
	top: 13px;
}
.min-tabs > ul > li.dropdown.open > a::after{
	content: "\f147";
}
.min-tabs .dropdown-menu{
	width: 100% !important;
	position: relative;
}
.min-tabs ul li a:focus{
	/*background-color: #323638;*/
}
.min-tabs > ul > li.dropdown.open > a{
	/*background-color: #323638;*/
}
.min-tabs > ul > li >ul > li{
	border-top: none;
	border-bottom: none;
}
.min-tabs > ul > li > ul > li a{
	/*background-color: #d4d3d3;*/
	color: #333;
	text-transform: none;
}
.min-tabs > ul > li > ul > li a:hover{
	background-color: #fafafa;
	color: #CC0000;
}
.min-nav .icon-bar{
	border-color: #FFFFFF;
	background-color: #FFFFFF;
}
@media (min-width:768px) {
	.mobile-head{
		padding-left: 15px;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.min-tabs.collapse{
		display: block !important;
		height: auto !important;
	}
}
/* 右边主体 */
.main-top{
	padding-top: 10px;
	padding-left: 0;
	margin-top: 10px;
	border-bottom: 1px solid #DDDDDD;
}
.main-top span{
	display: inline-block;
	float: left;
	color: #33cc33;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: bold;
	padding-left: 5px;
}

.main-content{
	padding: 20px;
	background-color: #FFFFFF;
	margin-top: 20px;
	border: 1px solid #EEEEEE;
	border-radius: 5px;
}
.content-body{
	color: #444444;
	font-size: 14px;
	line-height: 2;
}
.content-body img{
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}
@media (min-width:768px) {
	.main-top{
		padding-top: 10px;
		padding-bottom: 10px;
		margin-top: 0px;
	}
}
/** 联系我们 **/
.contact-form{
	margin-top: 25px;
}
.contact-form .btn-primary{
	font-size: 14px;
	background-color: #33cc33;
	padding-left: 30px;
	padding-right: 30px;
	border: none;
}
/*新闻列表*/
.news-list{
	background-color: #FFFFFF;
	margin-top: -15px;
}
.news-list ul li{
	height: auto;
	overflow: hidden;
	border-bottom: 1px dashed #DDDDDD;
	padding: 15px 0;
}
.news-list ul li a{
	display: block;
}
.news-title{
	font-size: 12px;
	font-weight: bold;
	margin-bottom: 5px;
	margin-top: 5px;
}
.new-brief{
	color: #999;
	font-size: 12px;
}
.news-pic{
	width: 100%;
}
.news-pic img{
	display: block;
	max-width: 100%;
}
@media (min-width:768px) {
	.news-title{
		margin-top: 0px;
		font-size: 16px;
	}
}
/* 新闻正文 */
.rel-title{
	text-align: center;
	font-size: 20px;
	margin-bottom: 10px;
}
.rel-date{
	text-align: center;
	color: #adadad;
	border-top: 1px dashed #ADADAD;
	padding: 10px 0;
	margin-bottom: 15px;
}
/*---------------*/
/**** product ****/
/*---------------*/
.pro-item{
	margin-bottom: 30px;
}
.pro-item a{
	display: block;
	border: 1px solid #D9D9D9;
}
.pro-pic{
	overflow: hidden;
}
.pro-pic img{
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}
.pro-title{
	font-size: 14px;
	line-height: 40px;
	margin-top: 10px;
	border-top: 1px solid #D9D9D9;
	padding-left: 15px;
	padding-right: 60px;
	height: 40px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	position: relative;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.pro-title i{
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	text-align: center;
	float: right;
	height: 40px;
	line-height: 40px;
	border-left: 1px solid #D9D9D9;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.pro-info{
	font-size: 12px;
	color: #888888;
	margin-bottom: 20px;
	margin-top: 10px;
}
.pro-in-title{
	color: #000;
	font-size: 16px;
	line-height: 1.2;
	margin-top: 15px;
}
.pro-in-info{
	margin-top: 20px;
	font-size: 12px;
	line-height: 1.75;
	color: #666666;
}
@media (min-width:768px) {
	.pro-in-title{
		margin-top: 0px;
	}
}

/** tabs codes
 * ==================================
 * **/
.tabs-wrap{
	margin-top: 40px;
}
.tabs-wrap .accordion-handle.active{
	background-color: #e67817;
}
.tabs-wrap .tabs-container{
	margin-top: 15px;
}
.tabs-wrap .tab-content{
	color: #666666;
	line-height: 2;
	font-size: 14px;
}
.tabs-wrap .tab-content img{
	display: block;
	max-width: 100%;
	height: auto;
}
.tabs-wrap .tabs-list li a i{
	padding-left: 10px;
	color: #f26522;
}
@media (min-width:768px) {
	.tabs-wrap .tabs-list li{
		margin-right: 2px;
		padding: 0;
		list-style: none;
		margin-left: 0;
		float: left;
	}
	.tabs-wrap .tabs-list li a:hover{
		background-color: #e67817;
		color: #FFFFFF;
	}
	.tabs-wrap .tabs-list li.active a{
		background-color: #e67817;
	}
	.tabs-wrap .tabs-list li a:hover i{
		color: #FFFFFF;
	}
}

.quo-head{
	color: #000000;
	font-weight: bold;
	font-size: 16px;
	text-align: center;
	margin-bottom: 15px;
}
.fm-wap label{
	font-size: 14px;
	color: #333;
	font-weight: normal;
}
.fm-wap .btn-primary{
	padding-left: 40px;
	padding-right: 40px;
	margin-top: 10px;
	background-color: #2a9bd5;
	border: none;
	text-transform: uppercase;
	-webkit-transition: all ease-in-out 300ms;
	   -moz-transition: all ease-in-out 300ms;
		-ms-transition: all ease-in-out 300ms;
			transition: all ease-in-out 300ms;
}
.fm-wap .btn-primary:hover{
	background-color: #e90202;
}
.shijian{
	margin-top: 6px;
	color: #ADADAD;
}

@media (min-width: 768px) {
	.quo-head{
		font-size: 30px;
	}
}
@media (min-width: 992px) {
	/* index support */
	.spt-row.row{
		margin-left: -20px;
		margin-right: -20px;
	}
	.spt-row .col-md-4{
		padding-left: 20px;
		padding-right: 20px;
	}
	/* end */
	/* index contact */
	.index-cnt{
		font-size: 18px;
	}
	/* end */
	/* 路径导航 */
	.innerpath.breadcrumb{
		float: right;
		margin-bottom: 0px;
		background-color: transparent;
		padding: 0;
		margin-right: 15px;
	}
	.innerpath.breadcrumb li{
		font-size: 14px;
	}
	/* end */
}
@media (min-width: 1200px) {
	/* index support */
	.spt-row.row{
		margin-left: -40px;
		margin-right: -40px;
	}
	.spt-row .col-md-4{
		padding-left: 40px;
		padding-right: 40px;
	}
	/* end */
}

/******************
 * 内页代码,宽屏代码
 *****************/
.full-path .breadcrumb{
	background-color: transparent;
	padding: 0px;
}
.full-path .breadcrumb li i{
	padding-right: 10px;
	font-size: 16px;
	color: #33cc33;
}
.full-main{
	background-color: #FFFFFF;
	padding: 20px;
}
.full-name{
	color: #33cc33;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}
.full-content{
	margin-top: 25px;
	line-height: 2;
}
.full-content img{
	max-width: 100%;
	margin: 0 auto;
	display: block;
}

.full-news-list{
	height: auto;
	overflow: hidden;
}
.full-news-list ul li{
	padding: 25px 0;
	border-bottom: 1px solid #DDDDDD;
	position: relative;
	margin-top: 20px;
	height: auto;
	overflow: hidden;
}
.full-news-list ul li:after{
	width: 0px;
	height: 1px;
	background-color: #ED1B24;
	position: absolute;
	left: 0px;
	bottom: -1px;
	transition: all ease-in-out 0.6s;
	-webkit-transition: all ease-in-out 0.6s;
	-moz-transition: all ease-in-out 0.6s;
	-ms-transition: all ease-in-out 0.6s;
}
.full-news-list ul li:hover:after{
	width: 100%;
}
.full-news-list ul li a{
	display: block;
}
.full-news-pic{
	height: auto;
	overflow: hidden;
}
.full-news-pic img{
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}
.full-news-rt{
	margin-left: 240px;
	margin-left: 0;
	margin-top: 10px;
}
.full-news-ttl{
	height: 30px;
	line-height: 30px;
	overflow: hidden;
	font-size: 16px;
	margin-top: 10px;
}
.full-news-intro{
	margin-top: 10px;
	color: #666666;
	line-height: 2;
	overflow: hidden;
}
.full-date{
	margin-top: 10px;
	font-size: 12px;
	color: #999;
	overflow: hidden;
	line-height: 2;
}
.full-date i{
	padding-right: 10px;
}
.full-news-title{
	text-align: center;
	font-size: 16px;
	color: #000000;
	margin-top: 20px;
}
.full-news-other{
	text-align: center;
	color: #999999;
	font-size: 12px;
	border-bottom: 1px solid #DDDDDD;
	padding-bottom: 15px;
	margin-top: 5px;
}
.full-product-item{
	position: relative;
	margin-bottom: 30px;
	padding: 10px;
	background-color: #FFFFFF;
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
  	transform: translateZ(0);
  	-webkit-transition-duration: 0.3s;
  	transition-duration: 0.3s;
  	-webkit-transition-property: transform;
  	transition-property: transform;
  	border: 1px solid #EEEEEE;
  	padding: 10px;
}
.full-product-item:hover{
	-webkit-box-shadow:0 10px 20px rgba(0, 0, 0, 0.1);
	box-shadow:0 10px 20px rgba(0, 0, 0, 0.1);

  	-webkit-transform: translateY(-5px);
	-moz-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
  	transform: translateY(-5px);
}
.full-product-item a{
	display: block;
}
.full-product-name{
	text-align: center;
	font-size: 16px;
	padding-top: 15px;
	margin-top: 10px;
	border-top: 1px solid #EEEEEE;
}
.full-product-sort{
	color: #E67817;
	font-size: 16px;
	margin-bottom: 20px;
}
.full-product-title{
	color: #000;
	font-size: 20px;
	margin-top: 15px;
	border-bottom: 1px solid #DDDDDD;
	padding-bottom: 20px;
}
.full-product-intro{
	margin-top: 20px;
	font-size: 14px;
	color: #666666;
	line-height: 2;
}
.full-video-content{
	margin-top: 20px;
}
.full-video-content iframe,
.full-video-content embed{
	display: block;
	width: 90%;
	height: 260px;
	margin: 0 auto;
}
.full-product-brief{
	text-align: center;
	font-size: 12px;
	color: #666666;
	margin-bottom: 15px;
	margin-top: 5px;
	height: 24px;
	line-height: 24px;
	overflow: hidden;
}
.product-to-buy{
	margin-top: 40px;
	font-size: 0;
}
.product-to-buy a{
	display: inline-block;
	height: 40px;
	line-height: 40px;
	background-color: #ED1B24;
	background-image: url(../images/icon_zx.png);
	background-repeat: no-repeat;
	background-position: 15px 50%;
	color: #FFFFFF;
	font-size: 16px;
	padding: 0 30px 0 50px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	margin: 10px 10px 10px 0;
}
@media (min-width: 768px) {
	.full-video-content iframe,
	.full-video-content embed{
		height: 350px;
	}
	.full-news-ttl{
		margin-top: 0;
	}
}
@media (min-width: 768px) {
	.full-video-content iframe,
	.full-video-content embed{
		height: 400px;
	}
}
@media (min-width: 1200px) {
	.full-video-content iframe,
	.full-video-content embed{
		height: 500px;
	}
}

.full-sort{
	background-color: #FFFFFF;
	border-bottom: 1px solid #DDDDDD;
	padding: 25px 0;
}
.full-sort-list{
	position: relative;
}
.full-sort-list ul li{
	float: left;
	display: inline-block;
	margin: 5px 15px 5px 0;
}
.full-sort-list ul li a{
	display: inline-block;
	border: 1px solid #DDDDDD;
	padding: 10px 20px;
}
.full-sort-list ul li a:hover,
.full-sort-list ul li a.active{
	color: #FFFFFF;
	background-color: #129799;
	border-color: #129799;
}
.white-box-wrap{
	background-color: #FFFFFF;
	padding: 30px;
}
.full-sort-title{
	color: #000000;
	font-size: 30px;
	text-align: center;
}
.photo-box{
	overflow: hidden;
}
.photo-box a{
	display: block;
}
.photo-pic{
	overflow: hidden;
	border: 1px solid #DDDDDD;
	padding: 10px;
}
.photo-pic img{
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}
.photo-title{
	text-align: center;
	height: 45px;
	line-height: 45px;
}
.full-line{
	height: 0;
	border-top: 1px solid #DDDDDD;
	margin: 20px 0;
}
.ft-nav{
	text-align: center;
}
.full-contact-title{
	color: #333333;
	font-size: 16px;
	color: #333;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}
.full-contact-title:after{
	width: 30px;
	height: 1px;
	background-color: #ED1B24;
	position: absolute;
	left: 0;
	bottom: 0;
}
.full-contact-content{
	color: #565656;
	font-size: 14px;
	line-height: 2;
	margin-bottom: 20px;
}
.full-iframe{
	margin-bottom: 20px;
}
.full-iframe iframe{
	width: 100%;
	height: 450px;
	border: none;
}
.full-content-title{
	text-align: center;
	color: #333;
	font-size: 20px;
}
.full-job-list{
	position: relative;
}
.full-job-list ul li{
	border-bottom: 1px dotted #DDDDDD;
	padding: 10px 0;
}
.full-job-list ul li span{
	display: inline-block;
	float: right;
	color: #999999;
	font-size: 12px;
}
.full-job-list ul li i{
	margin-right: 10px;
	margin-left: 5px;
}
/**1**/
.full-news-name{
	font-size: 16px;
	padding: 0 10px;
	border-top: 1px solid #DDDDDD;
	padding-top: 15px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.full-news-brief{
	font-size: 12px;
	color: #777;
	line-height: 20px;
	max-height: 40px;
	overflow: hidden;
	margin-top: 10px;
	padding: 0 10px;
}
.full-news-time{
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 12px;
	line-height: 2;
	color: #AAAAAA;
	padding: 0 10px;
}
.full-news-time span{
	display: inline-block;
}
.full-news-time span i{
	padding-right: 5px;
}
.full-news-time span.news-time-left{
	float: left;
}
.full-news-time span.clicks{
	float: right;
}
.hot-line-wrap{
	position: relative;
}
.hot-line-wrap img{
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}
.hot-line-box{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	padding-top: 20px;
	padding-left: 25px;
}
.hot-top-1{
	color: #FFFFFF;
	font-size: 16px;
	text-transform: uppercase;
}
.hot-top-1.color-2{
	color: #1d1819;
}
.hot-top-2{
	color: #B8B8B8;
	font-size: 12px;
	margin-top: 5px;
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 20px;
}
.hot-top-2:after{
	width: 30px;
	height: 2px;
	background-color: #fff;
	position: absolute;
	left: 0;
	bottom: 0;
}
.hot-top-2.color-2:after{
	background-color: #7E7E7E;
}
.hot-lx-tel{
	color: #FFFFFF;
	font-size: 20px;
	font-family: arial;
}
.hot-lx-name{
	color: #FFFFFF;
	font-size: 16px;
	line-height: 1;
	margin-bottom: 10px;
}
.hot-email{
	font-size: 16px;
}
.hot-email p a{
	color: #FFFFFF;
}
.cnt-kef-box{
	font-size: 20px;
	color: #1d1819;
	line-height: 1.5;
}
.cnt-kef-box p{
	margin-bottom: 0;
}
.cnt-kef-box font{
	font-size: 12px;
}
.cnt-kef-box p.p-mails{
	font-size: 16px;
}
@media (min-width: 768px) {
	.hot-top-1{
		font-size: 20px;
	}
	.hot-top-2{
		font-size: 14px;
	}
	.hot-lx-tel{
		font-size: 30px;
	}
}

.foot-contact-info ul li.phone:hover{
	background-image: url(../images/phone.png);
}
.foot-contact-info ul li.fax:hover{
	background-image: url(../images/fax.png);
}
.foot-contact-info ul li.mail:hover{
	background-image: url(../images/mail.png);
}
.foot-contact-info ul li.web:hover{
	background-image: url(../images/web.png);
}
.foot-contact-info ul li.ali:hover{
	background-image: url(../images/ali.png);
}


/******************************/
.main-left{
	width: 100%;
	padding: 10px;
}
.main-right{
	width: 100%;
	padding: 10px;
}
.product-all-form{
	height: auto;
	overflow: hidden;
}
.product-option{
	height: auto;
	overflow: hidden;
}
.product-option-head{
	display: block;
	line-height: 60px;
	font-size: 12px;
	text-transform: uppercase;
	background-color: #449a98;
	padding-left: 15px;
	color: #fff;
	margin-bottom: 1em;
}
.product-size-list{
	height: auto;
	padding: 5px;
	margin-bottom: 15px;
}
.product-size-list ul li{
	width: 30%;
	padding: 2em 1em;
	background-color: #fff;
	line-height: 20px;
	cursor: pointer;
	border: 1px solid #F4E7D2;
	float: left;
	margin-right: 4%;
	position: relative;
}
.product-size-list ul li:last-child{
	margin-right: 0;
}
.product-size-list ul li.selected{
	border-color: #439a98;
}
.product-size-list ul li:after{
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	top: -3px;
	left: -3px;
	right: -3px;
	bottom: -3px;
	border: 2px solid #fff;
}
.product-size-list ul li.selected:after{
	border-color: #439a98;
}
.pro-size{
	display: inline-block;
	margin-bottom: 5px;
	padding-left: 8px;
}
.pro-size span{
	display: block;
	text-align: center;
	line-height: 20px;
}
.pro-size span.pro-size-num{
	font-size: 15px;
	color: #d9553d;
}
.pro-size span.pro-size-desp{
	font-size: 12px;
	color: #439a98;
	margin-bottom: 2em;
}
.pro-size-pic{
	padding-left: 8px;
}
.pro-size-pic img{
	display: block;
	max-width: 100%;
	height: auto;
}
.pro-size-flag{
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.pro-size-flag span{
	display: block;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
	font-size: 11px;
	color: #fff !important;
	text-transform: none;
	width: 50px;
	line-height: 14px;
	bottom: 11px;
	position: relative;
	text-align: center;
	z-index: 9;
}
.pro-size-flag:after{
	content: "";
	position: absolute;
	right: -1px;
	bottom: -1px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 75px 75px 0 0;
	border-color: transparent #d9553d transparent transparent;
}
.text-row{
	margin-bottom: 1em;
}
.text-row label{
	display: block;
	width: 16%;
	float: left;
	text-align: right;
}
.text-row label span{
	background-color: #fff;
	line-height: 35px;
	color: #808080;
	text-transform: none;
	font-size: 14px;
	display: block;
	padding-left: 20px;
	text-align: left;
	font-weight: normal;
}
.text-input{
	width: 64%;
	float: left;
}
.text-input input{
	display: block;
	width: 100%;
	padding: 0 8px;
    line-height: 35px;
    height: 35px;
    text-overflow: ellipsis;
    -webkit-appearance: none;
    background: #F2EEE7;
    border: 1px solid #F0E4D0;
    border-radius: 5px;
    font-size: 14px;
}
.text-input input:focus{
	border-color: #7a9bae;
	background-color: #d5e6ee;
}
.Alignment-list{
	height: auto;
	overflow: hidden;
}
.Alignment-list ul li{
	display: inline-block;
	float: left;
	margin: 3px 5%;
	margin-left: 0;
	cursor: pointer;
	padding: 5px;
	border: 1px solid transparent;
}
.Alignment-list ul li.selected{
	border-color: #439a98;
}
.Alignment-list ul li span{
	display: block;
	background: url('../images/dls-sprite.png') no-repeat -6px -357px;
	width: 30px;
	height: 16px;
}
.Alignment-list ul li span.align-center{
	background-position: -57px -354px;
}
.Alignment-list ul li span.align-right{
	background-position: -105px -357px;
}
.text-boxbgc-list{
	position: relative;
	margin-bottom: 10px;
}
.text-boxbgc-list ul li{
	width: 16%;
    display: inline-block;
    margin: 10px 2%;
    cursor: pointer;
    position: relative;
    float: left;
}
.color-wrap{
	position: relative;
}
.color-wrap img{
	width: 100%;
	height: auto;
}
.img-bgc-1{
	background-color: #000000;
}
.img-bgc-2{
	background-color: #FFFFFF;
}
.img-bgc-3{
	background-color: #06038D;
}
.img-bgc-4{
	background-color: #6CACE4;
}
.img-bgc-5{
	background-color: #41B6E6;
}
.img-bgc-6{
	background-color: #4F2C1D;
}
.img-bgc-7{
	background-color: #63513D;
}
.img-bgc-8{
	background-color: #A83D72;
}
.img-bgc-9{
	background-color: #F57EB6;
}
.img-bgc-10{
	background-color: #470A68;
}
.img-bgc-11{
	background-color: #7566A0;
}
.img-bgc-12{
	background-color: #006341;
}
.img-bgc-13{
	background-color: #A4D65E;
}
.img-bgc-14{
	background-color: #E8E1C7;
}
.img-bgc-15{
	background-color: #FF6A39;
}
.img-bgc-16{
	background-color: #C8102E;
}
.img-bgc-17{
	background-color: #9B111E;
}
.img-bgc-18{
	background-color: #5B6770;
}
.img-bgc-19{
	background-color: #FFCD00;
}
.img-bgc-20{
	background-color: #CBB677;
}
.img-bgc-21{
	background-color: #AA0114;
}
.img-bgc-22{
	background-color: #A7A9AC;
}
.img-bgc-23{
	background-color: #3F00FF;
}
.color-selected{
	position: absolute;
	display: none;
	width: 125%;
	left: -5px;
	top: -5px;
	z-index: 10;
}
.color-selected img{
	width: 100%;
	height: auto;
}
.text-boxbgc-list ul li.selected .color-selected{
	display: block;
}
.text-bgc-tips{
	background-color: rgba(217,85,61,0.3);
	color: rgba(217,85,61,1);
	padding: 10px;
	line-height: 20px;
	font-size: 14px;
	margin-bottom: 10px;
  display: none;
}

.multipleColumn{
	overflow:hidden;
	position:relative;
}
.multipleColumn .prev,
.multipleColumn .next{
	display:inline-block;
	overflow:hidden;
	cursor:pointer;
	position: absolute;
	top: 25%;
	color: #439a98;
	font-size: 5rem;
}
.multipleColumn .prev{
	left: 2px;
}
.multipleColumn .next{
	left: auto;
	right: 2px;
}
.multipleColumn .bd{
	padding:10px 3em;
	overflow:hidden;
}
.multipleColumn .bd ul{
	width: 100%;
	overflow:hidden;
	zoom:1;
	float:left;
	_display:inline;
}
.multipleColumn .bd ul li{
	width: 30%;
	margin: 2px 1.6%;
	float:left;
	_display:inline;
	overflow:hidden;
	text-align:center;
	height: auto;
	cursor: pointer;
}
.multipleColumn .bd ul li .pic{
	height: auto;
	overflow: hidden;
	text-align:center;
	border: 1px solid transparent;
	width: 100%;
	background-image: url(../imgfont/fonts-sprite.png);
	background-size: 100%;
}
.multipleColumn .bd ul li .pic img{
	display: block;
	margin: 0 auto;
	width: 100%;
	height: auto;
}
.multipleColumn .bd ul li.selected .pic{
	border-color: #f4e7d2;
}

.Folding-list{
	position: relative;
	padding: 5px;
	margin-bottom: 15px;
}
.Folding-list ul li{
	position: relative;
	cursor: pointer;
	float: left;
	width: 48%;
	margin-right: 4%;
	border: 1px solid #f4e7d2;
	padding: 2em;
	text-transform: uppercase;
}
.Folding-list ul li:last-child{
	margin-right: 0;
}
.fold-title{
	color: #439a98;
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 5px;
}
.fold-pic{
	padding-left: 8px;
	overflow: hidden;
}
.fold-pic img{
	display: block;
	max-width: 100%;
	height: auto;
}
.Folding-list ul li:after{
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	top: -3px;
	left: -3px;
	right: -3px;
	bottom: -3px;
	border: 2px solid #fff;
}
.Folding-list ul li.selected{
	border-color: #439a98;
}
.Folding-list ul li.selected:after{
	border-color: #439a98;
}
.frame-list{
	padding: 5px;
	position: relative;
	margin-bottom: 15px;
}
.frame-list ul li{
	position: relative;
	cursor: pointer;
	float: left;
	width: 48%;
	margin-right: 4%;
	border: 1px solid #f4e7d2;
	padding: 2em;
	text-transform: uppercase;
	line-height: 20px;
}
.frame-list ul li:last-child{
	margin-right: 0;
}
.frame-list ul li:after{
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	top: -3px;
	left: -3px;
	right: -3px;
	bottom: -3px;
	border: 2px solid #fff;
}
.frame-list ul li.selected{
	border-color: #439a98;
}
.frame-list ul li.selected:after{
	border-color: #439a98;
}
.amount-row{
	height: auto;
	overflow: hidden;
	position: relative;
	margin-bottom: 20px;
}
.amount-row input{
	display: block;
	width: 100%;
	padding: 0 8px;
    line-height: 35px;
    height: 35px;
    text-overflow: ellipsis;
    -webkit-appearance: none;
    background: #F2EEE7;
    border: 1px solid #F0E4D0;
    border-radius: 5px;
    font-size: 14px;
}
.amount-row input:focus{
	border-color: #7a9bae;
	background-color: #d5e6ee;
}
.amount-row textarea{
	display: block;
	width: 100%;
	padding: 0 8px;
    line-height: 35px;
    height: 140px;
    text-overflow: ellipsis;
    -webkit-appearance: none;
    background: #F2EEE7;
    border: 1px solid #F0E4D0;
    border-radius: 5px;
    font-size: 14px;
}
.amount-row textarea:focus{
	border-color: #7a9bae;
	background-color: #d5e6ee;
}
.option-btm{
	position: relative;
}
.option-btm input{
	display: inline-block;
	background-color: #2a8785;
	color: #FFFFFF;
	font-size: 14px;
	text-transform: uppercase;
	border: none;
	padding: 10px 50px;
	line-height: 20px;
	cursor: pointer;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	margin-bottom:20px;
}

.pro-out-wrap{
	border: 1px solid #f4e7d2;
	background-color: #fdfaf8;
}
.pro-out-wrap.fixedpro{
	position: fixed;
	top: 0px;
}
.pro-mid-wrap{
	padding: 1.5em;
	border-bottom: 1px solid #f4e7d2;
}
.preview-pro{
	position: relative;
	background-color: #000000;
	padding: 15px;
}
.preview-pro span{
	display: block;
	text-align: center;
	color: #FFFFFF;
}
.preview-demo-span1{
	font-size: 30px;
}
.preview-demo-span2{
	font-size: 24px;
}
.preview-demo-span3{
	font-size: 18px;
}

.specifications{
	position: relative;
}
.custom-options{
	padding: 1.5em;
}
.custom-row{
	position: relative;
	line-height: 24px;
	color: #666666;
	font-size: 13px;
}
.custom-title{
	border-right: 1px solid #f4e7d2;
	width: 40%;
	float: left;
}
.custom-value{
	width: 60%;
	float: left;
	padding-left: 1.5rem;
	text-transform: uppercase;
	border-left: 1px solid #f4e7d2;
	position: relative;
	left: -1px;
}

.label-type-list{
	position: relative;
	padding: 5px;
	margin-bottom: 15px;
}
.label-type-list ul li{
	width: 50%;
	float: left;
	position: relative;
	border: 3px solid transparent;
	padding: 0 2em;
	cursor: pointer;
}
/*.label-type-list ul li.type-four{
	width: 25%;
	padding: 0 1em;
}*/
.label-type-list ul li.selected{
	border-color: #439a98;
}
.pro-type-title{
	text-align: center;
	margin-top: 15px;
	font-size: 12px;
	color: #D9553D;
	text-transform: uppercase;
	line-height: 20px;
	height: 40px;
	overflow: hidden;
}
.pro-type-pic{
	height: auto;
	overflow: hidden;
}
.pro-type-pic img{
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}
@media (min-width: 768px) {
	.label-type-list ul li{
		width: 33.333333%;
	}
	.pro-type-title{
		font-size: 14px;
	}
	.label-type-list ul li.type-four{
		width: 25%;
		padding: 0 1em;
	}
	.pro-out-wrap.fixedpro{
		width: 210px;
	}
}
@media (min-width: 992px) {
	.pro-out-wrap.fixedpro{
		width: 316px;
	}
}
@media (min-width: 1200px) {
	.pro-out-wrap.fixedpro{
		width: 360px;
	}
}

/***************/
.form-row{
	position: relative;
}
.form-box{
	width: 100%;
}
.form-right{
	width: 100%;
	margin-top: 10px;
}
.form-radio-list{
	position: relative;
}
.form-radio-list ul li{
	position: relative;
}
.form-radio-list ul li label{
	display: inline-block;
	color: #439a98;
	font-size: 14px;
	line-height: 22px;
	font-weight: normal;
}
.form-upload{
	margin-top: 30px;
}
.upload-input{
	width: 33%;
	float: left;
	margin-bottom: 20px;
}
.upload-input input{
	display: block;
	width: 100%;
	padding: 0 6px;
	line-height: 32px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	background-color: #f2eee7;
	border: 1px solid #f4e7d2;
}
.upload-btm{
	float: left;
	margin-left: 20px;
}
.upload-btm button{
	display: inline-block;
	line-height: 34px;
	cursor: pointer;
	height: 34px;
	padding: 0 3rem;
	border: none;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	background-color: #D9553D;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}
.form-msg-up{
	color: #464646;
	font-size: 13px;
	line-height: 22px;
	font-weight: normal;
}
.form-msg-tips{
	padding-top: 10px;
	color: #808080;
	font-size: 13px;
	font-weight: normal;
	line-height: 22px;
	margin-bottom: 20px;
}
.shape-row{
	margin-bottom: 1em;
}
.shape-title{
	width: 16%;
	float: left;
}
.shape-title span{
	display: block;
	line-height: 35px;
	color: #808080;
	font-size: 14px;
	padding-left: 15px;
}
.shape-lab{
	width: 64%;
	float: left;
}
.shape-tops{
	margin-top: 2em;
	font-size: 14px;
	color: #808080;
	border-top: 1px solid #f4e7d2;
	padding: 1em 2em 0 2em;
	font-weight: normal;
	margin-bottom: 20px;
}
.background-wrap{
	position: relative;
	padding: 5px;
}


.tabs {
	position: relative;
	display: block
}

.tabs li {
	width: 16%;
	display: inline-block;
	margin: 10px 2%;
	position: relative;
	float: left;
	padding-bottom: 30px;
}
.tabs a {
	display: block;
	position: relative;
}
.tabs a img{
	width: 100%;
	height: auto;
}
.tabs a span{
	display: block;
	text-align: center;
	font-size: 10px;
	color: #555;
	margin-top: 5px;
	text-decoration: underline;
}
.tabs a.current:after {
	 bottom: -30px;
	 left: 50%;
	 border: solid transparent;
	 content: " ";
	 height: 0;
	 width: 0;
	 position: absolute;
	 pointer-events: none;
	 border-color: rgba(194, 225, 245, 0);
	 border-bottom-color: #d9553d;
	 border-width: 0 30px 20px 30px;
	 margin-left: -30px;
}
.tabContent {
	padding: 10px 0;
	margin-bottom: 10px;
	position: relative;
}
.tabColor-list{
	position: relative;
}
.tabColor-list ul li{
	display: inline-block;
	width: 9.676%;
	margin: 1% 0;
	margin-left: 1.5%;
	cursor: pointer;
	position: relative;
}
.tabColor-list ul li.selected .color-selected{
	display: block;
	left: -10px;
	top: -10px;
}


@media (min-width: 768px) {
	.main-left{
		width: 70%;
		float: left;
	}
	.product-option-head{
		font-size: 19px;
	}
	.text-boxbgc-list ul li{
		width: 7.5%;
	    display: inline-block;
	    margin: 10px 1.2%;
	    cursor: pointer;
	    position: relative;
	    float: left;
	}
	.text-boxbgc-list ul li:nth-child(11){
		margin-left: 6.1%;
	}
	.color-selected{
		position: absolute;
		display: none;
		width: 125%;
		left: -7px;
		top: -7px;
		z-index: 10;
	}
	.main-right{
		width: 30%;
		float: right;
	}

	.form-box{
		width: 60%;
		float: left;
	}
	.form-right{
		width: 40%;
		float: left;
	}
	.tabs li {
		width: 7.5%;
		margin: 10px 1.2%;
	}

}

/*********** sliders ****************/
.rangeslider,
.rangeslider__fill {
  background: #f4e7d2;
  display: block;
  height: 20px;
  width: 100%;
}
.rangeslider {
  position: relative;
}
.rangeslider--disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  opacity: 0.4;
}
.rangeslider__fill {
  background: gray;
  position: absolute;
  top: 0;
}
.rangeslider__handle {
  background: #f9f2e6;
  border: 1px solid #ccc;
  cursor: pointer;
  display: inline-block;
  width: 28px;
  height: 28px;
  position: absolute;
  top: -4px;
}
input[type="range"]:focus + .rangeslider .rangeslider__handle {
  -moz-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
  -webkit-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
  box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
}


/*---分页--*/
.pages-num{
	padding: 20px 0;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 15px;
}

.pages-num a{
	display:inline-block;
	*display:inline;
	*zoom:1;
	padding:3px 10px;
	border:1px solid #ccc;
	margin:0 2px;
}
.pages-num .current{
	background:#BF8C1B;
	border-color:#BF8C1B;
	color:#FFF;
	font-weight:700;
}
.sigle-content *:before,.sigle-content *:after{
	display:inline!important;
}
.about-pic img,.foot-wechat img{
	max-width:100%;
	height:auto;
	display:block;

}
#footer_lxxx tr td{
	padding:5px 0;
}
#footer_lxxx img{
	max-width:25px;
	height:auto;
}
.msg-form{
	padding:0 15px;
}
.msg-form select{
	cursor:pointer;
	color:#999;
}
.backside-text ul{
	padding-left:20px;
}
.backside-text ul li{
	margin-bottom:1em;
}
#msg2{
	margin-top:20px;
}