.bannerContent {
  position: relative;
  height: 300px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}
.bannerContent:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.bannerText {
  width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.bannerText a {
  color: #fff;
  text-decoration: none;
}
.bannerText a:hover {
  color: #cb2128;
}
.bannerText h1 {
  font-size: 32px;
}
.tableContent {
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 10px;
}
.titleTableContent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
}
.titleTableContent i {
  cursor: pointer;
}
.hideTable .tagTableContent,
.hideTable .tagTableContent a {
  height: 0;
  opacity: 0;
  margin-top: 0;
}
.tagTableContent {
  border-top: 2px solid #ccc;
  margin-top: 10px;
}
.tagTableContent a {
  display: block;
  padding-top: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  transition: ease-in-out 0.2s;
}
.creatorAndTime span {
  font-size: 12px;
  color: #666;
}
.contentPage h1{
  font-size: 30px;
}
.contentPage h2 {
  font-size: 26px;
}
.contentPage h3{
  font-size: 23px;
}
.contentPage h4{
  font-size: 20px;
}
.contentPage{
  font-size: 15px;
  overflow: hidden;
}
.contentPage img{
  width: 100%;
  height: 100%;
}
.timeContent{
  font-size: 12px;
  color: #666;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1025px) {
  .bannerText {
    width: 80%;
  }
}
@media only screen and (max-width: 992px) {
  .bannerText {
    width: 90%;
  }
}
@media only screen and (min-width: 992px) {
  .tagTableContent a:hover {
    color: #cb2128;
  }
  .tableContent {
    position: sticky;
    top: 0;
    z-index: 1;
    top: 100px;
  }
  .contentPage h2 {
    scroll-margin-top: 170px;
  }
  .contentPage h2::before {
    content: "";
    display: block;
    height: 100px;
    margin-top: -100px;
  }
}
