

.boxLeft{
  flex: 1;
}

.boxRight{
  flex: 3;
}

.title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(6, 45px);
  gap: 10px;
}

.item {
  width: 45px;
  height: 45px;
  background: #FCFCFC;
  border: 1px solid #0000001a;
  border-radius: 5px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  color: #999;
  user-select: none;
}

/* 选中状态（字母高亮） */
.item.active2 {
  color: #000;
  border-color: #00000033;
  cursor: pointer;
}
.item.active {
  background: #2265D5;
  color: #FFFFFF;
  border-radius: 5px;

}

.c-666{
  color: #666660;
}

.pb18{
  padding-bottom: 18px;
}

.issuesLink:hover{
  color: #0B56D2 !important;
  text-decoration: underline;

}

.articleNav {
  justify-content: space-between;
  border-bottom: 1px solid #D8D8D8;
  padding-bottom: 2px;
}
.nav span {
  padding-bottom: 8px;
}
.articleList {
  flex-wrap: wrap;
  border-bottom: 1px solid #D8D8D8;
}
.articleItem {
  flex: 0 0 100%;
  border-bottom: 1px solid #d8d8d8;
  position: relative;
}
.articleItem:last-child {
  border-bottom: none;
}
/* .column-2 .articleItem {
  flex: 0 0 50%;
}
.column-2 .articleItem:nth-child(3) {
  border-bottom: none;
} */


.articleItem .link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.pdfLink {
  position: relative;
  z-index: 2;
}
.articleImg {
  flex: 0 0 157px;
  height: 118px;
  margin-right: 12px;
}
.column-2 .articleImg {
  flex: 0 0 147px;
  margin-right: 6px;
}
.articleImg img {
  max-width: 100%;
  max-height: 100%;
}
.articleItem .article {
  flex: 1;
  width: 0;
}
.articleItem .name {
  color: #989898;
  margin: 6px 0;
}
.pdf {
  width: 15px;
  height: 17px;
}
.related .line {
  margin: 0 8px;
  width: 0;
  height: 16px;
  border: 0.5px solid #D8D8D8;
}

.subject-panel {
  width: 320px;
  padding: 16px;
  border: 1px solid #eee;
  font-family: system-ui, -apple-system, BlinkMacSystemFont;
}

.subject-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  cursor: pointer;
  user-select: none;
}

.checkbox {
  width: 16px;
  height: 16px;
  background: #FFFFFF;
  border: 1px solid #D9D9D9;
  border-radius: 2px;
  position: relative;
  flex-shrink: 0;
}

/* 选中状态 */
.checkbox.checked {
  background: #1677ff;
  border-color: #1677ff;
}

.checkbox.checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.text {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

.issuesItem:last-child{
  margin-right: 0px !important;
}
