/* reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  /* 去除a链接下划线 */
  text-decoration: none;
}
ul {
  list-style: none;
}
/* common css */
.clearfix::after{
  content: '';
  display: block;
  clear: both;
}
section > ul > li > span > a > button{
  display: inline-block;
  width: 48px;
  height: 48px;
  margin-top: 20px;
  border: none;
  color: #fff;
  background-color: rgba(238,238,238,1);
  opacity: 0.8;
}
section > ul > li > span > a > button:hover {
  cursor: pointer;
  opacity: 1;
}
.button {
  display: inline-block;
  border-radius: 4px;
  font-size: 18px;
  color: #fff;
  background-color: #f7ba3e;
  text-shadow: 0 0 20px yellow;
  margin-top: 20px;
  padding: 5px 10px;
  opacity: 0.8;
}
.button:hover {
  opacity: 1;
}
body {
  font: 14px/1.5 tahoma,"microsoft yahei","\5FAE\8F6F\96C5\9ED1"!important;
  background-color: #eee;
  color: #444;
}
.layout {
  width: 1050px;
  margin: 0 auto;
}
