.post_banner {
  padding: 3.2rem 0;
}
.post_banner .inner {
  width: calc(100% - 4rem);
  max-width: 180.5rem;
  margin: 0 auto;
  border-radius: 1.5rem;
  background: url("../img/post-banner.jpg") no-repeat center / cover;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.post_banner .inner::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background-image: linear-gradient(to right, var(--subtheme_color) 0.5589%, rgba(7, 83, 173, 0.6));
  z-index: -1;
}
.post_banner .flex {
  min-height: 33.4rem;
  padding: 4rem 0;
}
.post_banner .head {
  color: #fff;
  padding-top: 0.9rem;
}
.post_banner .cat {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  background-color: var(--theme_color);
  border-radius: 100px;
  line-height: 3.5rem;
  padding: 0 1.1rem;
  margin-bottom: 1.6rem;
}
.post_banner h1 {
  font-size: 4.51rem;
  line-height: 5.725rem;
  font-weight: 700;
  max-width: 85rem;
}
.post_banner .breadcrumbs {
  margin-top: 1.5rem;
}
.post_banner .breadcrumbs span {
  font-weight: 500;
}
.post_main {
  padding: 1.9rem 0 9.1rem;
}
.post_main .left {
  flex: 1;
  max-width: 106.7rem;
}
.post_main .right {
  position: sticky;
  top: 13rem;
  width: 19.5138889%;
  padding-top: 2px;
}
.post_main .right .date {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 600;
  color: #242424;
  gap: 1rem;
  margin-bottom: 5.3rem;
}
.post_main .right .date::before {
  flex-shrink: 0;
  width: 1.7rem;
  height: 1.7rem;
  display: inline-block;
  content: '';
  background: url("../img/icon-date.svg") no-repeat center / contain;
}
.post_main .right .slide_obj {
  margin-bottom: 5.7rem;
}
.post_main .right .slide_obj:last-child {
  margin-bottom: 0;
}
.post_main .right .slide_obj strong {
  position: relative;
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  color: #242424;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #e0e0e0;
}
.post_main .right .slide_obj strong::before {
  width: 18.11024%;
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  background-color: #0d6fb6;
  content: '';
}
.post_main .right .category_list {
  margin-top: 2.7rem;
}
.post_main .right .category_list li {
  margin-bottom: 1.4rem;
}
.post_main .right .category_list li.active a,
.post_main .right .category_list li:hover a {
  text-decoration-color: #0d6fb6;
  color: #0d6fb6;
}
.post_main .right .category_list li.active a::before,
.post_main .right .category_list li:hover a::before {
  filter: unset;
}
.post_main .right .category_list li:last-child {
  margin-bottom: 0;
}
.post_main .right .category_list a {
  position: relative;
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  color: #7c7c7c;
  transition: all 0.3s;
  text-decoration: underline transparent;
  padding-left: 2.2rem;
}
.post_main .right .category_list a::before {
  width: 1.3rem;
  height: 1.3rem;
  display: inline-block;
  content: '';
  background: url("../img/arrow-blue.svg") no-repeat center / contain;
  position: absolute;
  left: 0;
  top: 1rem;
  filter: contrast(0) brightness(1);
  transition: all 0.3s;
}
.post_main .right .tags {
  margin-top: 3.3rem;
}
.post_main .right .tags > div {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 1.6rem;
  margin-right: -2rem;
}
.post_main .right .tags p {
  font-size: 1.7rem;
  font-weight: 500;
  color: #242424;
  border-radius: 100px;
  background-color: #f4f4f4;
  transition: all 0.3s;
  padding: 1rem 1.85rem;
}
.post_main .right .tags p:hover {
  background-color: var(--subtheme_color);
  color: #fff;
}
.post_main .table {
  width: 100%;
  border-radius: 12px;
  background-color: #f4f4f4;
  padding: 3.4rem 4.3%;
}
.post_main .table .title {
  font-size: 2.6rem;
  font-weight: 600;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}
.post_main .table .main {
  margin-top: 2.4rem;
}
.post_main .table .post_menu li {
  margin-bottom: 1.4rem;
}
.post_main .table .post_menu li:last-child {
  margin-bottom: 0;
}
.post_main .table .post_menu li.active > a {
  color: #0d6fb6;
  text-decoration: underline;
}
.post_main .table .post_menu li.active > a::before {
  filter: unset;
}
.post_main .table .post_menu a {
  font-size: 1.8rem;
  font-weight: 600;
  color: #7c7c7c;
  transition: all 0.3s;
  position: relative;
  padding-left: 2.3rem;
}
.post_main .table .post_menu a::before {
  width: 1.3rem;
  height: 1.3rem;
  position: absolute;
  left: 0;
  top: 0.7rem;
  content: '';
  filter: contrast(0) brightness(1);
  background: url("../img/arrow-blue.svg") no-repeat center / contain;
}
.post_main .table .post_menu a:hover {
  color: #0d6fb6;
  text-decoration: underline;
}
.post_main .table .post_menu a:hover::before {
  filter: unset;
}
.post_main .table .post_sub_menu {
  padding: 1.7rem 2.4rem 0.3rem;
}
.post_main .table .post_sub_menu a {
  padding-left: 2.6rem;
}
.post_main .postdetail {
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: #171717;
  margin-top: 4rem;
}
.post_main .postdetail h2 {
  font-size: 2.6rem;
  line-height: 3.4rem;
  font-weight: 600;
  margin: 2.9rem 0 3.3rem;
}
.post_main .postdetail h3 {
  font-size: 2rem;
  line-height: 3rem;
  margin: 1.6rem 0;
}
.post_main .postdetail p {
  hyphens: auto;
  margin: 1.4rem 0;
}
.post_main .postdetail img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  margin: 6.3rem 0 5.3rem;
}
.post_main .postdetail strong {
  font-weight: 700;
}
.post_main .postdetail ul {
  margin: 1.4rem 0;
}
.post_main .postdetail ul li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 0.55rem;
}
.post_main .postdetail ul li:last-child {
  margin-bottom: 0;
}
.post_main .postdetail ul li::before {
  width: 1.4rem;
  height: 1.4rem;
  position: absolute;
  left: 0;
  top: 0.9rem;
  content: '';
  background-color: #0d6fb6;
  border-radius: 50%;
}
#share {
  position: fixed;
  bottom: 12vh;
  right: 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
  z-index: 990;
}
#share strong {
  font-size: 2.2rem;
  font-weight: 600;
  color: #242424;
  display: block;
  text-align: center;
}
#share .social {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
#share .social a {
  display: block;
  width: 5.3rem;
  height: 5.3rem;
  border-radius: 50%;
  background-color: var(--color);
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
}
#share .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / contain;
}
#share .social a:hover {
  transform: scale(1.1);
  background-color: var(--theme_color);
}
#share .social .facebook a::after {
  background-image: url(../img/facebook2.svg);
}
#share .social .twitter a::after {
  background-image: url(../img/twitter2.svg);
}
#share .social .linkedin a::after {
  background-image: url(../img/linkedin2.svg);
}
.post_latest {
  padding: 9.1rem 0 12rem;
}
.post_latest .head {
  padding-bottom: 2px;
}
.post_latest h2 {
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 6rem;
}
.post_latest .post_latest_swiper {
  overflow: hidden;
  margin-top: 5.3rem;
  border-radius: 1.6rem;
}
.post_latest .swiper_btns {
  max-width: 167.2rem;
  top: 34%;
}
.post_latest .swiper_btns div {
  width: 6.3rem;
  height: 6.3rem;
}
.post_latest .swiper_btns div::after {
  width: 1.4rem;
  height: 1.4rem;
}
.post_latest .blog_item .cat {
  font-size: 1.406rem;
  padding: 0 1.1rem;
  left: 2.3rem;
  top: 2.3rem;
  line-height: 3.5rem;
}
.post_latest .blog_item .info {
  margin-top: 3.2rem;
}
.post_latest .blog_item h3 {
  font-size: 2.21rem;
  line-height: 2.812rem;
  margin-top: 1.2rem;
}
.post_latest .blog_item .link {
  margin-top: 3.1rem;
}
.post_latest .blog_item .link .btn_circle {
  width: 4.2rem;
  height: 4.2rem;
}
