* {
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  font-family: "微软雅黑", "Microsoft YaHei", sans-serif;
  background: #f3f5f9;
  overflow-x: hidden;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.navheader {
  width: 100%;
  max-width: 1400px;
  height: 135px;
  box-sizing: border-box;
  overflow: unset;
  margin: 0 auto;
  margin-top: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 20px;
}

.navheaderimg {
  width: 340px;
  height: 109px;
}


.container {
  width: 100%;
  max-width: 1200px;
  min-height: calc(100vh - 385px);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  background: #f3f5f9;
  padding: 0 20px;
  box-sizing: border-box;
}

.contentListView {
  margin-top: 30px;
  width: 100%;
  max-width: 835px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.contentListHeader {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: solid 1px #e5e5e5;
  margin-bottom: 40px;
}

.clistline {
  width: 5px;
  height: 20px;
  background-color: #0046ae;
}

.clisttitle {
  height: 50px;
  line-height: 50px;
  font-size: 28px;
  padding-left: 15px;
}

.contentItemView {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.contentItem {
  width: 100%;
  height: 66px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: dotted 1px #e5e5e5;
}

.pointview {
  background-color:#e0e0e0;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  margin-right: 5px;
}

.contentItemTitle {
  flex-grow: 1;
  height: 22px;
  line-height: 22px;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-clamp: 1;
}

.contentItemTitle:hover {
  color: #0046ae;
}

.contentItemTime {
  width: 100px;
  height: 22px;
  line-height: 22px;
  text-align: right;
  color: #737373;
  font-size: 16px;
}

.pc_footer {
    width: 100%;
    text-align: center;
    margin-top: 50px;
    background: #0146ae;
    color: #fff;
    font-size: 14px;
    padding: 60px 0;
}

.pc_footer span {
    margin: 0 13px
}

.pc_footer p {
    margin-bottom: 5px; line-height:30px;
}

.pc_footer p a {
    color: #fff;
    margin: 0 13px;
    text-decoration: none;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
  .navheader {
    height: 80px;
    padding: 0 15px;
  }

  .navheaderimg {
    width: 200px;
    height: 64px;
  }

  .container {
    padding: 0 15px;
  }

  .contentListView {
    margin-top: 20px;
  }

  .clisttitle {
    font-size: 20px;
    height: 40px;
    line-height: 40px;
  }

  .contentListHeader {
    height: 40px;
    margin-bottom: 20px;
  }

  .contentItem {
    height: 50px;
    padding: 10px 0;
  }

  .contentItemTitle {
    font-size: 14px;
    line-height: 20px;
    height: 20px;
  }

  .contentItemTime {
    font-size: 12px;
    width: 80px;
  }

  .pc_footer {
    padding: 30px 15px;
    font-size: 12px;
  }

  .pc_footer p a,
  .pc_footer span {
    margin: 0 5px;
  }
}