@import 'root.css';
.page-rich-text {
  text-align: justify;
}
.page-rich-text h3 {
  position: relative;
  margin: 4% 0 2%;
  color: var(--main-color);
  padding-left: 2%;
}
/*.page-rich-text h3::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  right: 0;
  bottom: -18px;
  background: linear-gradient(to right, rgba(146,61,154), transparent);
}*/
.page-rich-text h3::before {
  content: "";
  position: absolute;
  top: 33%;
  left: 0;
  width: 0px;
  height: 0px;
  border-top: 5px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid var(--main-color);
}
.page-rich-text ul li, .page-rich-text ol li {
  list-style-position: inside;
}
.page-rich-text ul, .page-rich-text ol, .page-rich-text li p, .page-rich-text p {
  line-height: 2em;
  font-size: 18px;
}
.page-rich-text li p, .page-rich-text p {
  text-indent: 2em;
}
.page-rich-text ul, .page-rich-text ol {
  margin: 2% 0;
}
.rich-text-img {
  width: 100%;
  /*text-align: center;*/
  margin: 2% 0;
  display: flex;
  justify-content: center;
}
.page-rich-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px auto 16px;
  text-align: center;
}
.page-rich-text table td, .page-rich-text table th {
  border: 1px solid #333;
}
.page-rich-text table thead tr {
  background-color: var(--main-color-trn8);
  color: #fff;
}
.page-rich-text table tr th, .page-rich-text table tr td{
  padding: 10px 1px;
}
.page-rich-text table tbody tr:nth-child(odd) {
  background: #fff;
}
.page-rich-text table tbody tr:nth-child(even) {
  background: var(--main-color-trn1);
}

.page-rich-text .research-dep-center-list {
  display: grid;
  grid-template-columns: repeat(3, 33%);
}
.page-rich-text .research-dep-center-list > a {
  position: relative;
  padding: 2rem 2.5rem 2rem;
  font-size: 16px;
}
.page-rich-text .research-dep-center-list > a::before {
  content: counter(sub-item, disc);
  color: var(--main-color);
  position: absolute;
  left: 1.5rem;
  top: 1.8rem;
  z-index: 11;
}
.page-rich-text .research-dep-center-list > a::after {
  content: counter(sub-item, disc);
  color: #e5dce9;
  position: absolute;
  left: 1.7rem;
}