 *{
	padding: 0;
	margin: 0;
  }	
		  
h2,h3{
   font-weight: normal;
}

.cleartfix::before,
.cleartfix::after {
  content: "";
  display: block;
  height: 0;
  line-height: 0;
  clear: both;
  visibility: hidden; }


	/*banner部分*/	  
.banner{
	height: 350px;
	position:relative;
}	  
.bannerImg{
	width: 100%;
	height: 100%;
	
}
.bannerImg .images{
	width: 100%;
	height:100%
}
.banner .title{
	position: absolute;
	width: 1200px;
	height:107px ;
	background-color:#FFF;
	left:0;
	right: 0;
	bottom:0;
	margin: auto;
	border-bottom: 1px solid rgb(230,230,230);
}	 
.banner	.title-item:first-child{
	padding-top: 28px;
	font-size: 22px;
	color: #333; font-weight:700;
} 
.banner	.title-item:last-child{
	font-size: 18px;
	color: rgb(150,150,150);
} 
.banner	.title-item{
	padding-left: 43px;
} 

/*主体部分*/	  
		  .container{
		  	width: 1200px;
		  	margin: auto;
		  	padding: 60px;
		  	background: #FFFFFF;
		  	box-sizing: border-box;
		  	display: flex;
		  	margin-top: -2px;
		  }
		  .leftsidebar{
		  	width: 130px;
		  	margin-right: 60px;
		  	list-style: none;
			font-size: 15px;
			line-height: 150%;
		  }
		  .leftsidebar li{
		  	border-bottom: 1px solid #f0f0f0;
		  	padding: 10px 15px;
		  	color: rgb(102,102,102);
		  	
		  }
		  .leftsidebar li:before{
		  	content: '';
		  	display: inline-block;
		  	height: 12px;
		  	position: relative;
		  	left: -13px;
		  	top: 0;
		  	border-left: 3px solid #FFFFFF;
		  }
		  .leftsidebar li.selected{
		  	color: #000;
		  }
		  .leftsidebar li.selected:before{
		  	border-left: 3px solid rgb(35,100,200);
	
		  } 
  .leftsidebar .leftsidebar-item:hover{
  	cursor: pointer;
  }
  .leftsidebar .leftsidebar-item:hover:before{
  	border-left: 3px solid rgb(35,100,200);
  }

  		.right-main{
			
		    flex: 1;
		    
  		} 
		  .list{
		  	width: 100%;
		  	height:500px;
		  }
		  .list-item{
		  	display: block;
		  	width: 280px;
		  	/*width: 430px;*/
		  	margin-bottom: 50px;
			text-decoration: none;
		  	float:left;
		  }
		  .list-item:not(:nth-child(3n+1)){
		  /*.list-item:nth-child(2n){*/
		  	margin-left: 20px;
		  }
		  .list-img{
		    width: 100%;
			height: 140px;
			border-radius: 2px;
			overflow: hidden;	
		  }
		  .image {
		    width: 100%;
		    height: 100%;
		    display: block;
		  }
		  .list-cont{
		  	padding: 15px 4px 15px 0;
		  	text-align: left;
		  	display: flex;
		  	width: 100%;
		  	box-sizing: content-box;
		  	position: relative;
		  }
		  .clearfix{
		  	overflow: hidden;
		  	white-space:nowrap;
		  	text-overflow: ellipsis;
		  	flex: 1;
		  }
		  .clearfix:before,
		  .clearfix:after {
		      display: table;
		      content: "";
		  }
		  .cont-title{
		  	overflow: hidden;
		  	white-space:nowrap;
		  	text-overflow: ellipsis;
			font-size: 15px;
			line-height: 150%;
		    color: #333;
		  }
		  .cont-instro {
		  	overflow: hidden;
		  	white-space:nowrap;
		  	text-overflow: ellipsis;
			line-height: 150%;
		    font-size: 13px;
		    color: #999;
		  }  
		  .button-goto{
		    width: 35px;
		    height: 50px;
		    border: 0;
		  	margin-right: 5px;
		  	background: url(../images/png-goto.png) no-repeat right center;
		  	background-size: 20px;
		  	float: right;
			-webkit-filter: grayscale(100%); 
			-moz-filter: grayscale(100%); 
			-ms-filter: grayscale(100%); 
			-o-filter: grayscale(100%); 
			filter: grayscale(100%); 
			filter: gray;
		  }
		  .list-cont:after{
		  	display: block;
		  	content: '';
		  	width: 99%;
		  	position: absolute;
		  	top: 80px;
		  	left: 0;
		  	border-bottom: 2px solid #eee; 
		  }
		  .list-item:after{
		  	display: block;
		  	content: '';
		  	position: relative;
		  	border-bottom: 2px solid #eee; 
		  }
		  .list-item:hover:after{ 
		  	border-color: #74b5ff; 
			animation:mysecond 1s alternate forwards;
			-webkit-animation:mysecond 1s alternate forwards;
			-moz-animation:mysecond 1s alternate forwards;
			-ms-animation:mysecond 1s alternate forwards;
		  }
		  .list-item:hover .image{
		  	/*transform: scale(1.01);*/
			animation:myfirst 1s alternate forwards;
			-webkit-animation:myfirst 1s alternate forwards;
			-moz-animation:myfirst 1s alternate forwards;
			-ms-animation:myfirst 1s alternate forwards;
		  }
		  .list-item:hover .button-goto{
			-webkit-filter: grayscale(0); 
			-moz-filter: grayscale(0); 
			-ms-filter: grayscale(0); 
			-o-filter: grayscale(0); 
			filter: grayscale(0); 
			filter: gray;
		  }
		  /*.el-icon-back{
		  	transform: rotate(180deg);
		  	-webkit-transform: rotate(180deg);
		  	-moz-transform: rotate(180deg);
		  	-ms-transform: rotate(180deg);
		  }*/
		  @keyframes myfirst
			{
			0% {width: 100%; height: 100%;}
			100% {width: 120%; height: 120%;margin: -5% 0 0 -10%;}
		  }
		  @-webkit-keyframes myfirst
			{
			0% {width: 100%; height: 100%;}
			100% {width: 120%; height: 120%;margin: -5% 0 0 -10%;}
		  }
		  @-moz-keyframes myfirst
			{
			0% {width: 100%; height: 100%;}
			100% {width: 120%; height: 120%;margin: -5% 0 0 -10%;}
		  }
		  @-ms-keyframes myfirst
			{
			0% {width: 100%; height: 100%;}
			100% {width: 120%; height: 120%;margin: -5% 0 0 -10%;}
		  }
		  @keyframes mysecond
			{
			0% {width: 0;}
			100% {width: 100%}
		  }
		  @-webkit-keyframes mysecond
			{
			0% {width: 0;}
			100% {width: 100%}
		  }
		  @-moz-keyframes mysecond
			{
			0% {width: 0;}
			100% {width: 100%}
		  }
		  @-ms-keyframes mysecond
			{
			0% {width: 0;}
			100% {width: 100%}
		  }
		  





.no-caes{
	text-align: center;
	width: 100%;
	margin:0 auto;
}

	.page{ 
			background: #FFF;
			width: 400px;
			display: flex;
			margin:0 auto;
		} 
		.page-list{ 
			display: flex;
			position: relative;
			margin:0 auto;
		}
		.page-list .page-list-item:hover{
			background-color: #eee;
		}
		.page-list .page-list-item{
			width: 40px;
			height: 30px;
			line-height: 30px;
			text-align: center;
			cursor: pointer;
			list-style: none;
		}
	
		.page-list .page-list-item.active{
			background-color: rgb(70,124,212);
			color: #fff;
			text-align: center;
		}
		.next-btn{
			    width: 100%;
				text-align: center;
    			margin-top: 20px;
		}
		
		.btn-next,.btn-pre{
			width: 40px;
		    font-size: 18px;
		    color: gray;
		    border: none;
		    background: transparent;
			outline: none;
		}
	 
		
/* 弹窗提示 */
.tip-box{
	height: 100%;
	width: 100%;
	background-color: transparent;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	display: none;
}
.tip-popup{
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.tip{
	height: 100px;
	line-height: 100px;
	width: 200px;
	text-align: center;
	border-radius: 5px;
	background-color: rgba(0,0,0,0.6);
	color:#FFF;
	z-index:2;
}	