.ruleMain {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-image: url("../img/leaderBg.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  padding: 0.37rem 0 1.41rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  min-height: 4rem;
}

.ruleItem {
  max-width: 11.6rem;
  width: 94%;
  margin-left: 29.5vw;
  /* height: 0.8rem; */
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: .15rem 0.34rem .15rem 0.18rem;
  cursor: pointer;
  position: relative;
}

.ruleItemIcon {
  width: 0.14rem;
  height: 0.14rem;
  margin-right: 0.2rem;
}
.ruleItemText {
  flex: 1;
  /* height: 0.24rem; */
  /* line-height: 0.24rem; */
  font-size: 0.2rem;
  font-family: Microsoft YaHei, Microsoft YaHei-Regular;
  font-weight: 400;
  color: #282828;
  transition: all 0.3s;
}

.ruleItemDate {
  height: 0.16rem;
  line-height: 0.16rem;
  font-size: 0.2rem;
  font-family: Arial, Arial-Regular;
  font-weight: 400;
  color: #999999;
  margin-left: 0.48rem;
}
.activeLine {
  height: 0.01rem;
  width: 0;
  background-color: #1a51c8;
  transition: all 0.8s;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}
.activeLine::after {
  content: "";
  width: 0.06rem;
  height: 0.06rem;
  border-radius: 50%;
  background-color: #1a51c8;
  visibility: hidden;
  position: absolute;
  right: -0.06rem;
  bottom: 0;
  transform: translateY(50%);
}
.ruleItem:hover .ruleItemText {
  color: #1a51c8;
}
.ruleItem:hover .activeLine {
  width: 100%;
}
.ruleItem:hover .activeLine::after {
  visibility: visible;
}
.paginationBox {
  width: 94%;
  max-width: 11.6rem;
  height: 0.53rem;
  margin-left: 29.5vw;
  display: flex;
  justify-content: center;
  margin-top: 0.4rem;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(153, 153, 153, 0.35);
}
.paginationItem {
  height: 0.53rem;
  line-height: 0.53rem;
  border-right: 1px solid rgba(153, 153, 153, 0.35);
  font-size: 0.16rem;
  font-family: SourceHanSansCN, SourceHanSansCN-Regular;
  font-weight: 400;
  color: #333333;
  letter-spacing: 0.008rem;
  padding: 0 0.18rem;
  cursor: pointer;
  transition: all 0.3s;
}
.paginationItem.num {
  color: #1a51c8;
  padding: 0 0.24rem;
  cursor: auto;
}
.paginationItem.confirm {
  padding: 0 0.4rem;
}
.paginationItem:not(.num):hover {
  color: #fff;
  background-color: #1a51c8;
}

@media (max-width:640px){
  .ruleItemText,.ruleItemDate{font-size: .24rem}
}