.notice {
  text-align: center;
  margin: 0 auto;
  min-width: 45vw;/*单行显示，超出隐藏*/
  width: 900px;
  height: 35px;/*固定公告栏显示区域的高度*/
  padding: 0 30px;
  background-color: #ebd7b6;
  font-size: 18px;
  letter-spacing: 3px;
  overflow: hidden;
  margin-bottom:10px;
  border-radius: 10px;
}
.notice ul {
text-align: center;
}
.notice ul li {
list-style: none;
line-height: 35px;
/*以下为了单行显示，超出隐藏*/
display: block;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
.notice ul li a {
color:#4b4e54;
font-weight: bold;
font-size: 20px;

}
.searchform {
  text-align: center;

}
.searchform .text{
  text-indent: 5px;
  min-height: 3em;
  min-width: 20em;
  border-radius: 3em;
}
.searchform .search{
  border-radius: 3em;
  padding: 0.5em;
  font-size: 14px;
}
li {
  list-style: none;
}
.banners *{
  margin: 0;
  padding: 0;
}
.banners {
  position: relative;
  overflow: hidden;
  min-width: 50vw;
  width: 1000px;
  height:800px;
  margin: 50px auto;
  margin-top: 10px;
  border-radius: 10px;
}
.images {
  position: absolute;
  top: 0;
  left: 0;
  width: 700%;
}
/* 对图片使用浮动 使其排列在一行*/
.images li{
  float: left;
}
/* 图片大小会撑大盒子,设置图片大小 */
.banners img {
  width: 1000px;
  height:800px;
}
.prev,
.next {
    display: none;
    position: absolute;  
    /* 绝对定位的盒子垂直居中 */
    top: 50%;
    margin-top: -15px;
    width: 20px;
    height: 30px;
    background: rgba(0,0,0, .3);
    text-align: center;
    line-height: 30px;
    color: #fff;
    text-decoration: none; 
}

.prev {
  left: 0;
   /* 设置圆角 */
   border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
/*右箭头靠右定位*/
.next {
  right: 0;
  /* 设置圆角 */
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
/* 小圆点外层盒子的样式 */
.dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  margin-left: -35px;
  height: 13px;
  background:rgba(255,255,255, .3);
  border-radius:7px;
}
/* 小圆点样式*/
.dots li {
  float: left;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  margin: 3px;
}
/* 小圆点被点击的样式 */
.dots .active {
  background-color: #ff5000;
}