article {
  padding: 1.6rem 0 4px;
  background: no-repeat center center/cover;
}

.common-main {
  padding: 12px;
}

.common-top {
  padding: 10px 4px 5px;
  font-size: 18px;
  line-height: 24px;
  color: #000;
}
.common-top span {
  color: #c50413;
}
.bread {
  padding: 0 4px;
  font-size: 14px;
  line-height: 20px;
  color: #000;
}
.bread a {
  color: #000;
}

.common-box {
  min-height: 420px;
  margin: 0 4px;
  padding: 10px;
  background: rgba(242, 242, 242, 0.9);
}

@media (min-width: 1200px) {
  article {
    padding: 0 6vw 2vw 0;
  }
  .common-main {
    width: 62vw;
    margin: 0 auto;
  }

  .common-top {
    padding: 12vw 0 0.5vw;
    font-size: 2.4vw;
    line-height: 3vw;
    color: #000;
  }
  .common-top span {
    color: #c50413;
  }
  .bread {
    padding: 0;
    font-size: 14px;
    line-height: 20px;
    color: #000;
  }
  .bread a {
    color: #000;
  }

  .common-box {
    margin: 0;
    padding: 0;
  }
}

/* 二级导航 */

.common-nav {
  padding: 2px;
}

.common-nav ul {
  display: flex;
  flex-wrap: wrap;
  border-radius: 15px;
}

.common-nav ul li {
  width: 50%;
  padding: 2px;
}

.common-nav ul li a {
  display: block;
  font: 400 16px/30px "微软雅黑";
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
}

.common-nav ul li.active a {
  background: #c50413;
}

@media (min-width: 1200px) {
  .common-nav {
    padding: 1.8vw 0;
  }
  .common-nav ul {
    display: flex;
    justify-content: flex-start;
  }
  .common-nav ul li {
    width: 10vw;
    padding: 0 2vw 0 0;
  }
  .common-nav ul li a {
    display: block;
    position: relative;
    font: 400 0.9vw/2vw "微软雅黑";
    text-align: center;
    color: #000;
    background: #fff;
    border: 2px solid #000;
    border-radius: 1.2vw;
  }
  .common-nav ul li a:hover {
    color: #fff;
    background: #c50319;
    border-color: #e0020f;
  }
  .common-nav ul li a:hover::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.4vw;
    width: 100%;
    height: 0.4vw;
    text-align: center;
    background: url(../images/part3_three.png) no-repeat center bottom/auto
      0.4vw;
  }
  .common-nav ul li.active a {
    color: #fff;
    background: #c50319;
    border-color: #c50413;
  }
  .common-nav ul li.active a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.4vw;
    width: 100%;
    height: 0.4vw;
    text-align: center;
    background: url(../images/part3_three.png) no-repeat center bottom/auto
      0.4vw;
  }
}

/* 网站页脚 */

footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 0;
  font: 400 14px/20px "微软雅黑";
  color: #fff;
  text-align: center;
  background: #c50319;
}

footer p {
  padding: 0 5px;
}
footer a {
  padding: 0 5px;
  color: #fff;
}
@media (min-width: 1200px) {
  footer {
    display: flex;
    justify-content: center;
    padding: 1vw 0;
    font: 400 14px/20px "微软雅黑";
  }
  footer p {
    padding: 0 5px;
    color: #fff;
  }
  footer a {
    padding: 0 5px;
    color: #fff;
  }
}

/* 网站翻页 */

.pages {
  display: flex;
  justify-content: center;
  padding: 10px 0;
  text-align: center;
  color: #2a4347;
}

.pages-left {
  display: none;
}

.pages-right {
  display: flex;
}

.pages-right a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  margin: 0 1px;
  font: 400 14px/30px "微软雅黑";
  color: #333;
  background: #fff;
  border: 1px solid #333;
}

.pages-right a.page-num {
  color: #fff;
  background: #c50319;
  border: 1px solid #000;
}

.pages-right a:first-child,
.pages-right a:last-child {
  display: none;
}

@media (min-width: 1200px) {
  .pages {
    justify-content: space-between;
    padding: 2vw;
  }
  .pages-left {
    display: block;
    padding-right: 10px;
    font: 400 14px/30px "微软雅黑";
  }
  .pages-right a:first-child,
  .pages-right a:last-child {
    display: flex;
    width: auto;
    padding: 0 12px;
    justify-content: center;
    align-items: center;
  }
  .pages-right a:hover {
    color: #fff;
    background: #c50319;
    border-color: #c50319;
  }
}
