/* 导航部分 */
.navigate {
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.navigate .menus {
  display: flex;
}

.navigate .menus li {
  box-sizing: border-box;
  padding: 12px 14px;
}

.navigate .menus > li > a {
  font-size: 14px;
  color: #35280b;
  font-weight: bold;
  text-decoration: none;
}

.navigate .menus > li.active {
  border-bottom: 4px solid #ffd43b;
}

/* 内容部分 */
.container {
  width: 100%;
  min-height: 512px;
  padding-bottom: 10px;
  background: #f5f5f5;
  overflow: auto;
}

/* 页脚部分 */
.footer {
  width: 100%;
  height: 160px;
  background: #141c20;
  font-size: 14px;
  color: #c5d3da;
  line-height: 21px;
  display: flex;
  align-items: center;
}

.footer .content {
  width: 100%;
}

.footer .content > p {
  text-align: center;
  padding: 5px 0;
}

.footer .content > p.filing > a{
  text-decoration: none;
  color: #d6bc5e;
}

.footer .content > p .filing-number {
  margin-left: 30px;
}
