#content .categorys {
  display: flex;
  justify-content: center;
}
#content .categorys a {
  margin: 0 20px;
}
#content .text-center {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}
#content .text-center .pagination {
  justify-content: space-evenly;
  display: flex;
}
#content .text-center .pagination li {
  margin: 0 20px;
}
#content .text-center .active {
  color: #FF6600;
}
#content .waterContent {
  width: 95%;
  column-count: 6;
  margin: auto;
}
#content .waterContent .contentItem {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
  break-inside: avoid;
  margin-bottom: 10px;
}
#content .waterContent .contentItem .mjImg {
  width: 100%;
  cursor: pointer;
  transition: all 0.25s ease-out;
}
#content .waterContent .contentItem .propmpt {
  box-sizing: border-box;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 3px 10px;
  background-color: #9494948c;
  transform: translateY(100%);
  transition: all 0.25s ease-out;
}
#content .waterContent .contentItem .propmpt .text {
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.2em;
  max-height: 2.4em;
}
#content .waterContent .contentItem .propmpt .promptOperate {
  margin-top: 10px;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
}
#content .waterContent .contentItem .propmpt .promptOperate > div {
  cursor: pointer;
  padding: 3px 10px;
  border: 1px solid;
  border-radius: 10px;
  transition: all 0.25s ease-out;
}
#content .waterContent .contentItem .propmpt .promptOperate > div:hover {
  background-color: #ffffff45;
}
#content .waterContent .contentItem:hover .mjImg {
  transform: scale(1.1);
}
#content .waterContent .contentItem:hover .propmpt {
  transform: translateY(0%);
}
