/* 公共样式表：公共样式 ：页头/页脚/版心/清除浮动/宽度自适应 */
.container {
  /* box-sizing: border-box; */
  width: 1150px;
  margin: 0 auto;
  /* background-color: skyblue; */
}
/* 宽度自适应 */
body {
  min-width: 1150px;
}
/* 清除浮动-高度自适应 */
.clearfix:after {
  display: block;
  content: '';
  clear: both;
  height: 0;
}
/* 顶部欢迎 */
#top {
  height: 30px;
  background: #f6f6f6;
  line-height: 30px;
  color: #fff;
}
#top .left {
  float: left;
  color: #a9a9a9;
}
#top .right {
  float: right;
  color: #a9a9a9;
}
#top ul {
  display: flex;
}
/* 导航 */
#nav .navli{
  height: 95px;
  line-height: 95px;
}
/* 导航图片 */
#nav img {
  height: 60px;
}
#nav .navul {
  float: right;
  right: 141px;
}
#nav .navli {
  float: left;
  font-size: 16px;
  text-align: center;
}
#nav .navli{
  /* position: relative;
  z-index: 98; */
  display: block;
  width: 100px;
  border: 2px solid transparent;
}
#nav .active {
  border-bottom-color: #d90000;
}
/* 底部 */
.foot {
  box-sizing: border-box;
  padding-top: 44px;
  height: 130px;
  background-color: #222222;
  font-size: 14px;
  color: #878787;
  text-align: center;
}
.foot p {
  margin-bottom: 22px;
}
