a {
  color: #333;
}

body {
  background: #f0f7fd;
}

.text-center {
  text-align: center;
  justify-content: center;
}


.content {
  width: 1200px;
  margin: 0 auto 40px;
  background: #fff;
  padding: 20px;
}

.content .card > .title {
  position: relative;
  color: #333;
  font-family: Microsoft YaHei;
  height: 48px;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.48px;
  /*border-bottom: 1px solid #D7D7D7;*/
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.content .card > .title span {
  box-sizing: border-box;
  position: relative;
  height: 100%;
  padding: 6px 0px;
  /*background: #BC291A;*/
  /*color: #FFF;*/
  font-family: Microsoft YaHei;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px; /* 150% */
  letter-spacing: 0.48px;
  z-index: 1;
}

.content .card > .title::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: #D7D7D7;

}

.content .title span::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #305E99;
}

.content .card > table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 0 10px;
  padding: 0;
}

.content .card > table tr {
  height: 36px;
}

.content .card > table tr td:first-child {
  width: 50%;
  padding-left: 16px;
}

.content .card > table td {
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: Microsoft YaHei;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
}

.content .card > table .bt {
  width: 20%;
  text-align: center;
  font-weight: bolder;
}


.content .card > table td a:hover {
  color: #2d66a5;
  font-weight: 700;
}

.content .card .article {
  margin-bottom: 20px;
  max-height: 720px;
  overflow: auto;
  background: #F9F9F9;
  color: #333;
  text-overflow: ellipsis;
  font-family: 宋体;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
  padding: 20px;
}


/* 设置滚动条的宽度 */
.content .card .article::-webkit-scrollbar {
  width: 10px;
}


/* 设置滚动条轨道的样式 */
.content .card .article::-webkit-scrollbar-track {
  background: transparent;
}

/* 设置滚动条滑块的样式 */
.content .card .article::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 4px;
}

.content .card .article:hover::-webkit-scrollbar-thumb {
  background: #C1C1C1;
}

.content .card .article:hover::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* 当鼠标悬停在滚动条滑块上时，改变其颜色 */
.content .card .article::-webkit-scrollbar-thumb:hover {
  background: #A8A8A8;
}





