@charset "gb2312";
/* CSS Document */

* {box-sizing:border-box}
body {font-family: Verdana,sans-serif;}
.mySlides {
	display:none;
}
 
/* 幻灯片容器 */
.slideshow-container {
	position: relative;
	margin:0 auto;
	width:100%;
}
.slideshow-container a:hover { /*鼠标经过的元素，伪类选择器*/
	text-decoration: none;  /*类型-文本修饰：无下划线*/
	color: #fff;  /*类型-颜色*/
}

.img-width{
	
}
 
/* 下一张 & 上一张 按钮 */
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 40%;
	width: auto;
	margin-top: -22px;
	padding: 16px;
	color: white;
	font-weight: bold;
	font-size: 1.5em;
	transition: 0.6s ease;
	border-radius: 0 30px 30px 0;
	background-color:rgba(0,0,0,0.2);
	z-index: 120;
}
 
/* 定位 "下一张" 按钮靠右 */
.next {
  right: 0;
  border-radius: 30px 0 0 30px;

}
 
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.3);
}
 
/* 标题文本 */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}
 
/* 数字文本 (1/3 等) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
 
/*标记符号-盒子*/ 
.dot-box{
  text-align:center; /*内容水平对齐*/
  position:absolute; /*绝对定位*/
  bottom:5px; /*底部距离*/
  left: 47%;  /*左距离*/
}


 
/* 标记符号 */
.dot {
	cursor:pointer;
	height: 13px;
	width: 13px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
	margin-top: 0;
	margin-right: 2px;
	margin-bottom: 0px;
	margin-left: 2px;
}
 
.active, .dot:hover {
  background-color: #717171;
}
 
/* 淡出动画 */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2.5s;
  animation-name: fade;
  animation-duration: 2.5s;
}
 
@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}
 
@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@media(max-width:960px){ 
	div img { 
		height:180px !important;	 

	}
	
	
	
	
	
	
	
	
}
