* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

ul,
li {
  list-style: none;
}

a {
  color: #333;
  text-decoration: none;
}

.clearfix:after {
  content: "\200B";
  display: block;
  height: 0;
  clear: both;
}

/*用于清除浮动，内容为\200B指零宽度空格，即可省略visible:hidden*/
.clearfix {
  *zoom: 1;
}

body {
  font-size: 16px;
  font-family: "微软雅黑", "宋体", Verdana, Arial;
  background: #f1f1f1;
}

.w1200 {
  width: 1200px;
  margin: 0 auto;
  height: auto;
}

.main {
  padding: 10px 30px 30px;
  background: #fff;
}

/*  header */
.header {
  background: #fff;
}

.header .top .logo {
  padding: 14px 0;
}

.header .menu {
  padding-top: 30px;
}

.header .menu li {
  float: left;
  margin-left: 20px;
  font: 21px/50px '';
  position: relative
}

.header .menu li a {
  display: block;
  padding-bottom: 20px;
}

.header .menu li.hover a,
.header .menu li:hover a {
  color: #9b0506;
  font-weight: bold;
}

.header .menu li::after {
  width: 100%;
  height: 5px;
  background: #9b0506;
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  transform: rotateY(90deg);
  transition: 1s;
}

.header .menu li.hover::after,
.header .menu li:hover::after {
  transform: rotateY(0deg);
}

.banner img {
  display: block;
  width: 100%;
}

/*footer*/
.footer {
  background: url(../images/footerBj.png) no-repeat center top;
  background-size: 100% 100%
}

.footerMenu {
  padding: 25px 0;
}

.footerMenu>li {
  width: 14.285%;
  float: left;
  line-height: 32px;
}

.footerMenu>li>p>a,
.footerMenu>li>h3>a {
  color: #fff;
}

.footerMenu>li>h3>a {
  font: 500 18px/40px '';
}

.copyRight {
  padding: 25px 0;
  line-height: 30px;
  border-top: 1px solid #676a6d;
  color: #fff;
}

.copyRight>p>a {
  background: url(../images/icon9.png) no-repeat 10px center;
  padding: 0 10px 0 37px;
  border: 1px solid #8e94a2;
  line-height: 35px;
  display: inline-block;
  color: #fff;
}

.copyRight>p>span {
  margin-right: 20px;
}
.copyRight>p>span>a{color:#fff;}
/*响应式*/
@media screen and (max-width:1200px) {
  .w1200 {
    width: 98%;
  }
}

@media screen and (max-width:992px) {

  .header .top .logo,
  .header .top .menu {
    float: none;
  }

  .header .top .logo {
    text-align: center;
  }

  .header .top .menu {
    padding-top: 10px;
  }

  .header .top .menu li {
    width: 14.285%;
    margin: 0;
    text-align: center
  }
}

@media screen and (max-width:768px) {
  .main {
    padding: 10px 10px 20px
  }

  .footerMenu>li {
    width: 25%;
    height: 150px;
  }

  .copyRight {
    text-align: center;
  }

  .copyRight>p>a {
    float: none;
  }

  .copyRight>p>span {
    display: block;
  }
}

@media screen and (max-width:500px) {
  .header .top .menu li {
    width: 33.3333%;
  }

  .header .menu li a {
    padding-bottom: 5px;
  }
}