/* 公共样式 */
html,body {
  height: 100%;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
}
ul {
  list-style: none;
}
.clear:after{ 
  content: ''; 
  display: block; 
  clear: both;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
/* header样式 */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0 50px;
  line-height: 50px;
  background: #fff;
  z-index: 1;
}
.header p {
  font-size: 20px;
}
/* banner样式 */
.banner { 
  width: 100%; 
  height: 85%;
  position: relative; 
  overflow: hidden;
}
.banner ul { 
  width: 500%; 
  height: 100%;
  position: absolute;
}
.banner ul li { 
  float: left; 
  width: 20%;
  height: 100%;
}
.banner ul li img { 
  display: block;
  width: 100%;
  height: 100%;
}
.banner .pageNav { 
  z-index: 1; 
  position: absolute; 
  bottom: 20px; 
  left: 50%; 
  margin-left: -87px;
}
.banner .pageNav a { 
  display: inline-block; 
  width: 15px; 
  height: 15px; 
  margin: 0 10px; 
  background: #fff; 
  border-radius: 50%; cursor: pointer;
}
.banner .pageNav a:hover {
  background: papayawhip;
}
.banner .pageNav a.cur { 
  background: paleturquoise;
}
/* footer样式 */
.footer {
  position: relative;
  height: 15%;
  color: #fff;
  background: #32363A;
}
a{text-decoration: none;
  color: white;
  }