/*弹层效果*/
	html,body {
		min-height: 100%;
	/*	background-color: #efeff4;*/
	}
	.animated {
		-webkit-animation-duration: 0.5s;
		animation-duration: 0.5s;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
	}
	@-webkit-keyframes bounceInDown {
		0%, 60%, 75%, 90%, 100% {
			-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
			transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		}
		0% {
			opacity: 0;
			-webkit-transform: translate3d(0, -100%, 0);
			transform: translate3d(0, -100%, 0);
		}
		60% {
			opacity: 1;
			-webkit-transform: translate3d(0, 25px, 0);
			transform: translate3d(0, 25px, 0);
		}
		75% {
			-webkit-transform: translate3d(0, -10px, 0);
			transform: translate3d(0, -10px, 0);
		}
		90% {
			-webkit-transform: translate3d(0, 5px, 0);
			transform: translate3d(0, 5px, 0);
		}
		100% {
			-webkit-transform: none;
			transform: none;
		}
	}
	@keyframes bounceInDown {
		0%, 60%, 75%, 90%, 100% {
			-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
			transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		}
		0% {
			opacity: 0;
			-webkit-transform: translate3d(0, -100%, 0);
			transform: translate3d(0, -100%, 0);
		}
		60% {
			opacity: 1;
			-webkit-transform: translate3d(0, 25px, 0);
			transform: translate3d(0, 25px, 0);
		}
		75% {
			-webkit-transform: translate3d(0, -10px, 0);
			transform: translate3d(0, -10px, 0);
		}
		90% {
			-webkit-transform: translate3d(0, 5px, 0);
			transform: translate3d(0, 5px, 0);
		}
		100% {
			-webkit-transform: none;
			transform: none;
		}
	}
	.bounce-in-down {
		-webkit-animation-name: bounceInDown;
		animation-name: bounceInDown;
	}
	@-webkit-keyframes fadeInDown {
		0%, 60%, 75%, 90%, 100% {
			-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
			transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		}
		0% {
			opacity: 0;
			-webkit-transform: translate3d(0, -100%, 0);
			transform: translate3d(0, -100%, 0);
		}
		60% {
			opacity: 1;
			-webkit-transform: translate3d(0, 0px, 0);
			transform: translate3d(0, 0px, 0);
		}
		75% {
			-webkit-transform: translate3d(0, 0px, 0);
			transform: translate3d(0, 0px, 0);
		}
		90% {
			-webkit-transform: translate3d(0, 0px, 0);
			transform: translate3d(0, 0px, 0);
		}
		100% {
			-webkit-transform: none;
			transform: none;
		}
	}
	@keyframes fadeInDown {
		0%, 60%, 75%, 90%, 100% {
			-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
			transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		}
		0% {
			opacity: 0;
			-webkit-transform: translate3d(0, -100%, 0);
			transform: translate3d(0, -100%, 0);
		}
		60% {
			opacity: 1;
			-webkit-transform: translate3d(0, 0px, 0);
			transform: translate3d(0, 0px, 0);
		}
		75% {
			-webkit-transform: translate3d(0, 0px, 0);
			transform: translate3d(0, 0px, 0);
		}
		90% {
			-webkit-transform: translate3d(0, 0px, 0);
			transform: translate3d(0, 0px, 0);
		}
		100% {
			-webkit-transform: none;
			transform: none;
		}
	}
	.fade-in-down {
		-webkit-animation-name: fadeInDown;
		animation-name: fadeInDown;
	}
	@-webkit-keyframes bounceOutUp {
		20% {
			-webkit-transform: translate3d(0, -10px, 0);
			transform: translate3d(0, -10px, 0);
		}
		40%,
		45% {
			opacity: 1;
			-webkit-transform: translate3d(0, 20px, 0);
			transform: translate3d(0, 20px, 0);
		}
		100% {
			opacity: 0;
			-webkit-transform: translate3d(0, -100%, 0);
			transform: translate3d(0, -100%, 0);
		}
	}
	@keyframes bounceOutUp {
		20% {
			-webkit-transform: translate3d(0, -10px, 0);
			transform: translate3d(0, -10px, 0);
		}
		40%,
		45% {
			opacity: 1;
			-webkit-transform: translate3d(0, 20px, 0);
			transform: translate3d(0, 20px, 0);
		}
		100% {
			opacity: 0;
			-webkit-transform: translate3d(0, -100%, 0);
			transform: translate3d(0, -100%, 0);
		}
	}
	.bounce-out-up {
		-webkit-animation-name: bounceOutUp;
		animation-name: bounceOutUp;
	}
	@-webkit-keyframes fadeOutUp {
		20% {
			-webkit-transform: translate3d(0, 0px, 0);
			transform: translate3d(0, 0px, 0);
		}
		40%,
		45% {
			opacity: 1;
			-webkit-transform: translate3d(0, 0px, 0);
			transform: translate3d(0, 0px, 0);
		}
		100% {
			opacity: 0;
			-webkit-transform: translate3d(0, -100%, 0);
			transform: translate3d(0, -100%, 0);
		}
	}
	@keyframes fadeOutUp {
		20% {
			-webkit-transform: translate3d(0, 0px, 0);
			transform: translate3d(0, 0px, 0);
		}
		40%,
		45% {
			opacity: 1;
			-webkit-transform: translate3d(0, 0px, 0);
			transform: translate3d(0, 0px, 0);
		}
		100% {
			opacity: 0;
			-webkit-transform: translate3d(0, -100%, 0);
			transform: translate3d(0, -100%, 0);
		}
	}
	.fade-out-up {
		-webkit-animation-name: fadeOutUp;
		animation-name: fadeOutUp;
	}
	.menu-open {
		height: 100%;
		width: 100%;
	}
	.menu-open .mui-scroll-wrapper {
		position: absolute;
		top: 48;
		bottom: 0;
		left: 0;
		z-index: 1;
		width: 100%;
		overflow: hidden;
		-webkit-backface-visibility: hidden;
	}
	.menu-backdrop {
		display: none;
	}
	.menu-open .menu-backdrop {
		position: fixed;
		top: 0;
		bottom: 0;
		height: 100%;
		width: 100%;
		display: block;
		z-index: 998;
	}
	.menu-wrapper {
		position: absolute;
		top: 48px;
		left: 0;
		right: 0;
		z-index: 999;
		text-align: center;
		background-color: #333;
		width: 100%;
	}
	.menu-wrapper.hidden {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		z-index: -1;
	}
	.menu {
		width: 100%;
	}
	.menu .mui-table-view-inverted {
		color: gray;
		font-size: 19px;
	}
	.menu .mui-table-view-inverted .mui-table-view-cell:after {
		height: 2px;
		left: 0;
		right: 0;
	}
	.menu-wrapper.mui-active,
	.menu-wrapper.mui-active .menu {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	#info{
	  	padding: 20px 10px ;
	 }
.mui-table-view-cell>a:not(.mui-btn){
	text-align: left;
    font-size: 14px;
}
.mui-table-view-cell.mui-collapse .mui-collapse-content{
	background-color: transparent;
}
.mui-table-view-cell.mui-collapse .mui-table-view{
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
}
.mui-table-view-inverted{
	background-color: transparent;
}
div#menu-wrapper{
	margin-top: -60px;
	position: fixed;
    top: 110px;
}
/*首页样式*/
.mui-content,.sy-produce .row{
	background-color: transparent;
}
.clearfix{
	clear: both;
}
.fr{
	float: right;
}
.header{
	position: fixed;
	top: 0;
	width: 100%;
	height: 50px;
	z-index: 9999;
	background-color: #222222;
}
.nav-header{
	width: 90%;
	margin: 0 auto;
}
.header-title{
	color: #ddd;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
}
.header-btn{
	margin-top: 9px;
	background-color: #333333;
	color: #FFFFFF;
	padding: 0px 10px;
    border: none;
}
.mui-icon-bars:before{
	font-size: 22px;
}
.slide-content{
	margin-top: 60px;
}
.slide-btn{
	border: 1px solid red;
}
.shouye-content1{
	background-color: #FFFFFF;
	width: 100%;
	overflow: hidden;
	margin-top: 15px;
}
.sy-pinbai{
	width: 6px;
	position: absolute;
    left: 0px;
    top: 0px;
    height: 41px;
    background-color: #4A4C5B;
    display: -webkit-inline-box;
}
.sy-produce{
	width: 100%;
	margin-bottom: 15px;
}
.sy-produce .row{
	padding: 5px 0px 0px;
    margin: 0px;
    overflow: hidden;
    background: #fff;
    /*border-top: 1px #e6e6e6 solid;	*/
}
.sy-produce .row1{
	border-top: 1px #e6e6e6 solid;
}
.sy-produce .row .mask{
	width: 50%;
    float: left;
    margin: 5px 0px;
    position: relative;
    border-right: 1px #e5e5e5 solid;
    margin-bottom: 15px;
    padding: 0px 10px;
}
.sy-produce .row .mask .item-list .media-body{
	height: 65px;
    padding: 10px 0px 0px;
    position: relative;
}
.Lable{
	position: absolute;
    right: 0px;
    top: -34px;
    height: 30px;
    line-height: 30px;
    padding: 0px 10px;
    background: rgba(0,0,0,0.3);
    color: #fff;
    font-size: 12px;
}
 .row .mask .item-list .media-body .tit{
 	-webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 12px;
    color: #454545;
    line-height: 18px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
    margin-bottom: 7px;
 }
.row .mask .item-list .media-body .other-info{
	line-height: 20px;
    color: #ff0000;
    font-size: 14px;
}
.row .mask .item-list .media-body .other-info b{
	font-size: 20px;
}
.row .mask .item-list .media-body .other-info .iconfont{
	font-size: 20px;
}
.index-menu {
    margin-top: 18px;
    background: #fff;
    width: 100%;
    font-size: 14px;
}