/*第一种*/
#loader1 {
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
 
#loader1 .container1 > div,
#loader1 .container2 > div,
#loader1 .container3 > div {
  width: 12px;
  height: 12px;
  background-color: #67CF22;
  border-radius: 100%;
  position: absolute;
  -webkit-animation: bouncedelay 1.2s infinite ease-in-out;
  animation: bouncedelay 1.2s infinite ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
 
#loader1 .spinner-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
 
#loader1  .container2 {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
}
 
#loader1 .container3 {
  -webkit-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
  -ms-transform: rotateZ(90deg);
}
 
#loader1 .circle1 { top: 0; left: 0; }
#loader1 .circle2 { top: 0; right: 0; }
#loader1 .circle3 { right: 0; bottom: 0; }
#loader1 .circle4 { left: 0; bottom: 0; }
 
#loader1 .container2 .circle1 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
 
#loader1 .container3 .circle1 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}
 
#loader1 .container1 .circle2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
 
#loader1 .container2 .circle2 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
 
#loader1 .container3 .circle2 {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
 
#loader1 .container1 .circle3 {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
 
#loader1 .container2 .circle3 {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
 
#loader1 .container3 .circle3 {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
 
#loader1 .container1 .circle4 {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
 
#loader1 .container2 .circle4 {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
 
#loader1 .container3 .circle4 {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}
 
@-webkit-keyframes bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0.0) }
  40% { -webkit-transform: scale(1.0) }
}
 
@keyframes bouncedelay {
  0%, 80%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 40% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}
/*第二种*/
.loading-bg{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255,255,255,1);
  z-index: 999;
  margin:auto;
  box-shadow: 0 -1px 8px rgba(0,0,0,.08);
  height: 80px;
  width: 120px;
}
#loader2 {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  font-size: 10px;
  margin: auto;
}
 
#loader2>div {
  background-color: #67CF22;
  height: 100%;
  width: 6px;
  margin-left: 2px;
  margin-right: 4px;
  display: inline-block;
  -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
  animation: stretchdelay 1.2s infinite ease-in-out;
}
 
#loader2 .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
 
#loader2 .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}
 
#loader2 .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
 
#loader2 .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
 
@-webkit-keyframes stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) } 
  20% { -webkit-transform: scaleY(1.0) }
}
 
@keyframes stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% {
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}
/*第三种*/
#loader3{
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: url('../../img/public/loading.gif') no-repeat;
}

/*------------banner切换图片组件css start-------*/
.commponent-banner-box>.slider-banner-img{
	border: 2px solid #009688;
	box-sizing: border-box;
	height: 220px;
}
.commponent-banner-box>.slider-banner-img>img{
	width: 100%;
	height: 100%;
	background-size: cover;
}
.commponent-banner-box>.slider-banner-box{
	position: relative;
	padding: 0 50px;
	height: 90px;
}
.commponent-banner-box>.slider-banner-box>a{
	display: inline-block;
	position: absolute;
	width: 50px;
	height: 100%;
	top:0;
	line-height: 90px;
	background-color: #009688;
}
.commponent-banner-box>.slider-banner-box>a>i{
	font-size: 50px;
	color:#fff;
}
.commponent-banner-box>.slider-banner-box>a:hover{
	background-color: #33ABA0;
}
.commponent-banner-box>.slider-banner-box>.prev-btn{
	background:url('../../img/mj/arrow-l.png') #009688 no-repeat center center;
	left:0;
}
.commponent-banner-box>.slider-banner-box>.next-btn{
	background:url('../../img/mj/arrow-r.png') #009688 no-repeat center center;
	right:0;
}
.commponent-banner-box>.slider-banner-box>.clip-box{
	overflow: hidden;
	height: 100%;
	position: relative;
	border: 2px solid #009688;
  box-sizing: border-box;
}
.commponent-banner-box>.slider-banner-box>.clip-box>ul{
	height: 100%;
	position: absolute;
}
.commponent-banner-box>.slider-banner-box>.clip-box>ul>li{
	float: left;
	height: 100%;
	box-sizing: border-box;
	border:3px solid transparent;
	width: 90px;
}
.commponent-banner-box>.slider-banner-box>.clip-box>ul>li.active{
	border-color: #009688;
}
.commponent-banner-box>.slider-banner-box>.clip-box>ul>li>a{
	display: inline-block;
	width: 100%;
	height: 100%;
}
.commponent-banner-box>.slider-banner-box>.clip-box>ul>li>a>img{
	width: 100%;
	height: 100%;
}
/*------------banner切换图片组件css end-------*/
/* 无数据样式 start */
.none-bg-item{
	  position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 100px;
    height: 100px;
}
.none-bg-item-img{
		background: url('../../img/mj/nonedata.png') no-repeat center center;
    width: 100px;
    height: 100px;
    display: inline-block;
}
.none-bg-item p{
	text-align: center;
    font-size: 16px;
    color: #999;
}
/* 无数据样式  end*/
/* 无图片样式	start*/
.nonepic{
	height:263px;
	display:none;
	background: url('../../img/mj/none-picture.jpg') no-repeat center center;
}
/*  无图片样式	end*/