a {
  text-decoration: none;
  color: #2b2929;
}
.page {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pageTitle {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  position: absolute;
  margin-top: -30px;
  height: 60px;
  width: 200px;
  background-color: red;
  color: white;
}
.nvbar {
  display: flex;
  justify-content: space-between;
  margin: auto;
  align-items: center;
  width: 1200px;
}
.nvbar .logo {
  margin: 10px 0px;
}
.nvbar ul.links {
  width: 700px;
  display: flex;
  align-self: flex-end;
  font-size: 20px;
  color: #383737;
  justify-content: space-between;
  line-height: 60px;
  margin-bottom: 5px;
}
.nvbar ul.links li a {
  display: block;
  height: 55px;
  border-bottom: solid 5px white;
  cursor: pointer;
}
.nvbar ul.links li a.active {
  display: block;
  border-bottom: solid 5px red;
}
.nvbar ul.links li a:hover {
  color: red;
}
.nvbar ul.links li .down-menu {
  position: absolute;
  margin-left: -10px;
  border: solid 1px #e4e1e1;
  background: #fff;
  width: 100px;
  display: none;
}
.nvbar ul.links li .down-menu li {
  margin: 0px 10px;
}
.nvbar ul.links li:hover .down-menu {
  display: block;
}
.posbar {
  display: flex;
  width: 100%;
  align-items: center;
  border-bottom: 1px solid silver;
}
.posbar .left {
  flex-grow: 1;
  flex-shrink: 1;
  color: gray;
  line-height: 30px;
}
.posbar .right {
  display: flex;
  justify-content: flex-end;
  width: 400px;
  line-height: 40px;
}
.posbar .right a {
  font-size: 16px;
  margin: 0px 20px;
  color: #333232;
  text-decoration: none;
}
.posbar .right .current {
  color: red;
}
.posbar .right .current::after {
  width: 200px;
  height: 2px;
  position: absolute;
  top: 10;
  left: 0px;
  border-bottom: 4px solid red;
}
.section {
  display: flex;
  flex-direction: column;
  width: 1200px;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 20px;
}
.section .content {
  width: 100%;
}
.section .bar {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 20px 0px;
}
.section .bar .title {
  font-size: 25px;
  font-weight: bold;
}
.section .bar .title span {
  margin-left: 10px;
  font-size: 20px;
  font-weight: normal;
  color: gray;
}
.section .bar .title div:first-child {
  width: 20px;
  height: 20px;
  border: 1px solid red;
  background-color: red;
}
.section:first-child {
  margin-top: 0px;
}
.more {
  text-indent: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid black;
  height: 30px;
  width: 120px;
  cursor: pointer;
}
.footer {
  display: flex;
  justify-content: center;
  background-color: #413f3f;
  align-items: flex-start;
  width: 100%;
}
.footer .content {
  display: flex;
  width: 1200px;
  justify-content: space-between;
  margin: 40px 0px;
  height: 200px;
}
.footer .content .left {
  flex-direction: column;
  width: 268px;
  color: #a1a1a1;
  display: flex;
  flex-grow: 0;
  flex-shrink: 0;
  border-right: #666464 solid 1px;
}
.footer .content .center {
  align-items: flex-start;
  margin: 0px 60px;
  color: #a1a1a1;
  display: flex;
  flex-grow: 1;
  flex-shrink: 1;
  justify-content: space-around;
  border-right: #666464 solid 1px;
}
.footer .content .center .col {
  display: flex;
  flex-direction: column;
  width: 20%;
}
.footer .content .center .col a {
  color: #a1a1a1;
  line-height: 30px;
}
.footer .content .center .col a:hover {
  color: #FFFFFF;
}
.footer .content .center .col .title {
  font-size: 15px;
  line-height: 40px;
  font-weight: bold;
}
.footer .content .right {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 150px;
  color: #a1a1a1;
  display: flex;
  flex-grow: 0;
  flex-shrink: 0;
}
.footer .content .right img {
  width: 120px;
}
.popmenu {
  display: flex;
  flex-direction: column;
  width: 100px;
  background-color: white;
}
