@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --color-primary: #0090D4;
  --color-text-default: #1B1C1D;
  --color-border-default: #DCDDDE;
}

*, *::before, *::after {
  margin: 0;
  list-style: none;
  box-sizing: border-box;
  outline: none;
}

html {
  line-height: 1.625;
  font-size: 16px;
  font-weight: 400;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Noto Sans TC", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  color: var(--color-text-default);
}

a {
  color: inherit;
  transition: color 0.24s ease;
  text-decoration: none;
}
a:hover {
  color: var(--color-primary);
}
a:active {
  color: #0782C1;
}
a:hover, a:focus, a:active {
  color: var(--color-primary);
  opacity: 0.8;
}
a.underline {
  text-decoration: underline;
}
a.underline:hover, a.underline.inverted {
  color: var(--color-primary);
}

img {
  max-width: 100%;
  height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .article.list-group .title, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

h1, .h1, h2, .h2, h3, .h3, .article.list-group .title {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

h3, .h3, .article.list-group .title {
  font-size: 1.5rem;
  line-height: 1.4166666667;
}

h4, .h4 {
  font-size: 1.125rem;
  line-height: 1.5555555556;
}

h5, .h5 {
  font-size: 0.9375rem;
  line-height: 1.6;
}

ol, ul {
  padding: 0;
}

/* Component */
.btn {
  display: inline-block;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  padding: 8px 40px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  border-radius: 2px;
  transition: all 0.2s ease-in-out;
}

.btn-group {
  position: relative;
  margin-bottom: 24px;
  vertical-align: middle;
  text-align: center;
}
.btn-group.spacing.top {
  margin-bottom: 0;
}

.btn-query {
  color: #FFFFFF;
  background-color: var(--color-primary);
  border-color: rgba(34, 36, 38, 0.15);
}
.btn-query:hover {
  color: #FFFFFF;
  background-color: var(--color-primary);
  border-color: rgba(15, 16, 16, 0.15);
}
.btn-query .icon {
  top: -1px;
  width: 15px;
  height: 15px;
  line-height: 1;
  margin-right: 8px;
  font-size: 15px;
}
.btn-query .icon-arrow-left {
  background-image: url("/public/images/icons/icon-arrow-left-white.svg");
}

.btn-default {
  color: #6F7274;
  background-color: #FFFFFF;
  border-color: rgba(34, 36, 38, 0.15);
}

.btn-sm {
  padding: 4px 8px;
  font-size: 0.8125rem;
  line-height: 1.3846153846;
  border-radius: 2px;
}

.btn-gotop {
  display: none;
  position: fixed;
  right: 10px;
  bottom: 10%;
  z-index: 499;
  width: 40px;
  height: 40px;
  font-size: 12px;
  font-weight: bold;
  color: #FFFFFF;
  background-color: rgba(27, 28, 29, 0.3);
  text-align: center;
}
.btn-gotop .icon-arrow-up {
  margin-top: 5px;
  width: 16px;
  height: 16px;
  font-size: 16px;
}
@media (max-width: 1199px) {
  .btn-gotop .btn-gotop {
    right: calc(50% - 532px);
  }
}

.btn-close, .close {
  border: none;
  background-color: transparent;
}
.btn-close .icon-close, .close .icon-close {
  width: 24px;
  height: 24px;
  line-height: 1;
  font-size: 24px;
}

.text-muted {
  color: #6F7274;
}

.spacing {
  margin-left: 8px;
  margin-right: 8px;
}
.spacing.top {
  margin-top: 16px;
  margin-left: 0;
  margin-right: 0;
}
.spacing.top.mini {
  margin-top: 4px;
}
.spacing.bottom {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 16px;
}
.spacing.bottom.mini {
  margin-bottom: 4px;
  color: #828282;
}

.fn-root {
  font-size: 1rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
  margin-bottom: 1rem;
}
.breadcrumbs li {
  font-size: 0.8125rem;
  line-height: 2;
  color: #6F7274;
}
.breadcrumbs li:not(:last-child)::after {
  display: inline-block;
  content: ">";
  padding-left: 8px;
}
@media (min-width: 1280px) {
  .breadcrumbs {
    padding: 0 12px;
  }
}

.pagination {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 24px;
  text-align: center;
  font-size: 0.8125rem;
}
.pagination-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.pagination-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 4px;
  color: #404245;
  border: 1px solid var(--color-border-default);
}
.pagination-nav .active a {
  color: #FFFFFF;
  cursor: default;
  background-color: var(--color-primary);
  border-color: rgba(34, 36, 38, 0.15);
  font-weight: bold;
  opacity: 1;
}
.pagination .icon {
  width: 10px;
  height: 10px;
  font-size: 10px;
  line-height: 1;
}
.pagination input {
  width: 48px;
  padding: 2px;
  margin-left: 4px;
  margin-right: 4px;
  line-height: 1.6;
  background-color: #FFFFFF;
  background-clip: padding-box;
  border: 1px solid #A2A5A7;
  border-radius: 2px;
  text-align: center;
  color: var(--color-text-default);
}

.icon {
  position: relative;
  display: inline-block;
  text-align: center;
  text-decoration: inherit;
  margin-right: 2px;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
}
.icon-home {
  top: -2px;
  background-image: url("/public/images/icons/icon-home.svg");
}
.icon-arrow-up {
  background-image: url("/public/images/icons/icon-arrow-up-white.svg");
}
.icon-footer-free {
  background-image: url("/public/images/icons/icon-free.svg");
}
.icon-footer-line {
  background-image: url("/public/images/icons/icon-share-line.svg");
}
.icon-thumbs-up {
  background-image: url("/public/images/icons/icon-thumbs-up.svg");
}
.icon-share-fb {
  background-image: url("/public/images/icons/icon-share-fb.svg");
}
.icon-close {
  background-image: url("/public/images/icons/icon-close.svg");
}
.icon-time, .icon-clock {
  background-image: url("/public/images/icons/icon-clock.svg");
}
.icon-refresh {
  background-image: url("/public/images/icons/icon-refresh-white.svg");
}
.icon-arrow-right {
  background-image: url("/public/images/icons/icon-arrow-right.svg");
}
.icon-arrow-left {
  background-image: url("/public/images/icons/icon-arrow-left.svg");
}
.icon-heart-scare {
  background-image: url("/public/images/icons/icon-heart-scare-gray.svg");
}
.icon-share-line {
  background-image: url("/public/images/icons/icon-share-line-gray.svg");
}
.icon-share-youtube {
  background-image: url("/public/images/icons/icon-share-youtube-gray.svg");
}
.icon-share-fb {
  background-image: url("/public/images/icons/icon-share-fb-gray.svg");
}
.icon-left-open-big {
  background-image: url("/public/images/icons/icon-arrow-left-white.svg");
}
.icon-right-open-big {
  background-image: url("/public/images/icons/icon-arrow-right-white.svg");
}

a:hover > .icon-heart-scare {
  background-image: url("/public/images/icons/icon-heart-scare.svg");
}
a:hover > .icon-share-line {
  background-image: url("/public/images/icons/icon-share-line-green.svg");
}
a:hover > .icon-share-youtube {
  background-image: url("/public/images/icons/icon-share-youtube-red.svg");
}
a:hover > .icon-share-fb {
  background-image: url("/public/images/icons/icon-share-fb-blue.svg");
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  width: 120px;
  margin-top: 27px;
  margin-left: -19px;
  padding: 10px;
  font-family: "PingFangTC-Regular", "PingFangTC", Arial, Helvetica, "HeitiTC", "微軟正黑體", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 13px;
  background-color: #FFFFFF;
  background-clip: padding-box;
  border: 1px solid var(--color-border-default);
  border-radius: 2px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-name: fadeInDown;
}
.popover-hover {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}
.popover-hover:hover .popover {
  display: block;
  margin-top: 27px;
}
.popover-hover:hover .nav {
  flex-direction: column;
}
.popover-arrow {
  position: absolute;
  top: -9px;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  margin-left: -9px;
  border-color: transparent;
  border-style: solid;
  border-top-width: 0;
  border-bottom-color: rgba(34, 36, 38, 0.2);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.item {
  position: relative;
  overflow: hidden;
  padding-top: 10px;
  margin-bottom: 8px;
  border-top: 0px solid var(--color-border-default);
  transition: none;
}
.item a {
  display: flex;
  gap: 8px;
}
.item .image {
  width: 60px;
  height: 60px;
  aspect-ratio: 1/1;
}
.item .title {
  line-height: 1.625;
  font-weight: 400;
  font-size: 13px;
  margin-bottom: 0;
  vertical-align: top;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3100;
  overflow: hidden;
  outline: 0;
  -webkit-overflow-scrolling: touch;
}
.modal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(5px);
}
.modal-dialog {
  position: absolute;
  z-index: 2;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  margin-top: 80px;
  margin-bottom: 80px;
  margin-left: -320px;
  width: 640px;
}
.modal-dialog.modal-sm {
  margin-left: -240px;
}
.modal-dialog.model-cookie {
  position: fixed;
  z-index: 2;
  bottom: 0;
  overflow: auto;
  display: block;
  width: 100%;
  margin-left: 0;
  margin-bottom: 0;
  bottom: 0;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 20px 24px rgb(27, 28, 29);
  box-shadow: 0 3px 5px #000, 0 14px 24px #000;
}
.modal-sm {
  width: 480px;
}
.modal.in .modal-dialog {
  transform: translate(0, 0);
}
.modal-header {
  position: relative;
  padding: 32px 24px 0;
  text-align: center;
}
.modal-header + .modal-body {
  padding-top: 12px;
}
.modal-header h1, .modal-header .h1 {
  margin-top: 0;
  margin-bottom: 0;
}
.modal-header h2, .modal-header .h2 {
  margin-top: 0;
  margin-bottom: 0;
}
.modal-header h3, .modal-header .h3, .modal-header .article.list-group .title, .article.list-group .modal-header .title {
  margin-top: 0;
  margin-bottom: 0;
}
.modal-header h4, .modal-header .h4 {
  margin-top: 0;
  margin-bottom: 0;
}
.modal-header h5, .modal-header .h5 {
  margin-top: 0;
  margin-bottom: 0;
}
.modal-header h6, .modal-header .h6 {
  margin-top: 0;
  margin-bottom: 0;
}
.modal-body {
  position: relative;
  padding: 24px;
}
.modal-body + .modal-footer {
  padding-top: 0;
}
.modal-body.plump {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-left: 40px;
  padding-right: 40px;
}
.modal-body .btn-group {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 20px;
  margin-left: auto;
}
.modal-body .btn-close {
  position: relative;
  top: -20px;
  padding: 8px 16px;
  background-color: #FFFFFF;
}
.modal-body .btn-close .icon-close {
  width: 18px;
  height: 18px;
  font-size: 18px;
  cursor: pointer;
}
.modal-body .btn-close:hover .icon-close {
  background-image: url("/public/images/icons/icon-close-blue.svg");
}
.modal-footer {
  padding: 24px 24px 32px;
  text-align: center;
}
.modal .modal-content {
  position: relative;
  background-color: #FFFFFF;
  background-clip: padding-box;
  border-radius: 8px;
  filter: drop-shadow(0 20px 24px rgba(27, 28, 29, 0.24));
  outline: 0;
}
.modal#gov_envir .modal-sm {
  width: 300px;
  margin-left: -155px;
  margin-top: 150px;
}
.modal#gov_envir .modal-sm img {
  margin: 20px 20px 10px 40px;
  width: 60%;
}
.modal#inline-bs-modal-img {
  z-index: 3101;
}
.modal-cookie.container {
  padding-top: 20px;
  padding-bottom: 16px;
}

.swiper-container .swiper-wrapper {
  height: 100%;
}
.swiper-container .bx-prev {
  left: 0px;
  border-radius: 0px 3px 3px 0px;
}
.swiper-container .bx-next {
  right: 0px;
  border-radius: 3px 0px 0px 3px;
}

.swiper-arrow {
  width: 24px;
  height: 35px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  padding: 0px 8px;
  cursor: pointer;
}
.swiper-arrow .icon {
  width: 13px;
  height: 13px;
  top: 0px;
  bottom: 0px;
  position: absolute;
  margin: auto;
  font-size: 32px;
}

.slider {
  position: relative;
  height: 448px;
  overflow: hidden;
  margin-bottom: 32px;
}
.slider.home {
  position: relative;
  margin-right: 0px;
  margin-top: 16px;
}
.slider.aside {
  height: auto;
  margin-right: 0;
  margin-bottom: 24px;
}
.slider-view img {
  max-width: none;
  height: 358px;
}
.slider-view .item {
  display: inline-block;
  vertical-align: middle;
  zoom: 1;
}
.slider-view .item a {
  display: inline-block;
  opacity: 1;
}
.slider-view .caption {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.9));
  padding: 20px 24px;
  overflow: hidden;
}
.slider-view .caption h3 {
  margin-top: 0px;
  margin-bottom: 4px;
  color: rgb(255, 255, 255);
  text-shadow: rgba(0, 0, 0, 0.5) 0px 1px 3px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.slider-view .caption p {
  margin-top: 0px;
  margin-bottom: 0;
  color: rgb(255, 255, 255);
  text-shadow: rgba(0, 0, 0, 0.5) 0px 1px 3px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.slider.categroy {
  height: 358px;
}
@media (min-width: 1200px) {
  .slider-view img {
    max-width: 100%;
    height: auto;
  }
  .slider.categroy {
    height: 436px;
    margin-bottom: 24px;
  }
}
.slider .right-caption {
  background: #FFFFFF;
  padding: 10px 18px;
  height: 448px;
}
.slider .right-caption h3 {
  color: var(--color-text-default);
}
@media (min-width: 1200px) {
  .slider .right-caption h3 {
    display: block;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-height: 34px;
    height: 136px;
  }
  .slider .right-caption p {
    margin-top: 64px;
    display: block;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    line-height: 26px;
    height: 130px;
  }
}

.js-livenews-banner-slider .slider-arrow .icon {
  width: 24px;
  height: 24px;
  font-size: 24px;
  line-height: 1;
}

.js-livenews-gallery-slider {
  position: relative;
}
.js-livenews-gallery-slider .swiper-pagination.swiper-pagination-bullets {
  width: 25%;
  position: absolute;
  right: 0;
  left: auto;
  bottom: 16px;
}
.js-livenews-gallery-slider .swiper-pagination-bullet {
  padding: 4px;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  cursor: pointer;
  background-color: #c7c9ca;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-indent: -9999px;
  opacity: 0.9;
}
.js-livenews-gallery-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  background-color: var(--color-primary);
  opacity: 1;
}

/* Grid System */
.row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 0 -16px;
}
.row:empty {
  display: none;
}
@media (min-width: 1280px) {
  .row {
    margin: 0 -24px;
  }
}

.row, [class*=col-] {
  padding-left: 8px;
  padding-right: 8px;
}
@media (min-width: 1280px) {
  .row, [class*=col-] {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.col-md-1 {
  width: 4.1666666667%;
}

.col-md-2 {
  width: 8.3333333333%;
}

.col-md-3 {
  width: 12.5%;
}

.col-md-4 {
  width: 16.6666666667%;
}

.col-md-5 {
  width: 20.8333333333%;
}

.col-md-6 {
  width: 25%;
}

.col-md-7 {
  width: 29.1666666667%;
}

.col-md-8 {
  width: 33.3333333333%;
}

.col-md-9 {
  width: 37.5%;
}

.col-md-10 {
  width: 41.6666666667%;
}

.col-md-11 {
  width: 45.8333333333%;
}

.col-md-12 {
  width: 50%;
}

.col-md-13 {
  width: 54.1666666667%;
}

.col-md-14 {
  width: 58.3333333333%;
}

.col-md-15 {
  width: 62.5%;
}

.col-md-16 {
  width: 66.6666666667%;
}

.col-md-17 {
  width: 70.8333333333%;
}

.col-md-18 {
  width: 75%;
}

.col-md-19 {
  width: 79.1666666667%;
}

.col-md-20 {
  width: 83.3333333333%;
}

.col-md-21 {
  width: 87.5%;
}

.col-md-22 {
  width: 91.6666666667%;
}

.col-md-23 {
  width: 95.8333333333%;
}

.col-md-24 {
  width: 100%;
}

.align.right, .text-right {
  text-align: right !important;
}

/* Global */
.container {
  width: 100%;
  max-width: 1312px;
  margin: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 1280px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.wrapper {
  padding-top: 1rem;
  padding-bottom: 1.5rem;
  background: #f9f8f8;
}
.wrapper .container {
  padding-top: 1rem;
}

.date {
  font-size: 0.8125rem;
  line-height: 1.3846153846;
  margin-top: 5px;
}
.date .icon-clock {
  top: -1px;
  margin-right: 8px;
  width: 12px;
  height: 12px;
  font-size: 12px;
}

/* Header */
.header-topbar {
  padding: 4px 1rem;
  background-color: #F3F4F5;
}
.header-navbar {
  border-bottom: 1px solid var(--color-border-default);
  background: white;
}
.header-navbar .btn-senaoline {
  display: none;
  vertical-align: middle;
  font-size: 0.8125rem;
}
.header-navbar.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 2000;
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
}
.header-navbar.fixed .site-logo {
  display: inline-block;
  width: 140px;
  height: 42px;
  background: url("/public/images/lifenews/lifenews-logo-small.png") no-repeat top left;
  background-size: 140px 42px;
  transition: none;
}
.header-navbar.fixed .site-logo img {
  display: none;
}
.header-navbar.fixed .btn-senaoline {
  display: inline-block;
}
.header-navbar.fixed .hc-left {
  flex-basis: 378px;
  max-width: 378px;
}
.header-v2 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-v2 .nav {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6F7274;
  font-size: 0.75rem;
}
.header-v2 .nav a {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  line-height: 2;
}

.hc-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 196px;
  order: 1;
  max-width: 196px;
}

.site-logo {
  display: block;
}
.site-logo:hover {
  opacity: 0.8;
}
.site-logo h1 {
  width: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
}

.hc-right {
  flex: 0 0 auto;
  order: 3;
}
.hc-right .nav {
  color: var(--color-text-default);
}
.hc-right a {
  font-weight: 500;
}

.hc-middle {
  flex: 0 0 342px;
  width: 342px;
  order: 2;
}

.search-bar-group {
  display: flex;
  position: relative;
  width: 342px;
}
.search-bar-group .btn {
  flex: 1 0 88px;
  max-width: 88px;
  padding: 0.5rem 1rem;
  border-radius: 0 42px 42px 0;
}
.search-bar-group input {
  flex: 0 1 calc(100% - 72px);
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  border: 1px solid var(--color-primary);
  border-radius: 42px 0 0 42px;
  font-size: 0.9375rem;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 0 0;
  color: var(--color-text-default);
}
.menu a {
  display: block;
  padding: 12px 4px;
}
.menu a.active {
  color: var(--color-primary);
  font-weight: 500;
  border-bottom: 3px solid var(--color-primary);
}
.menu h3 {
  margin: 0;
  font-weight: 400;
  font-size: 0.9375rem;
}

/* Footer */
.footer {
  background-color: white;
}
.footer a {
  transition: all 0.2s ease;
}
.footer-nav {
  padding-top: 24px;
  padding-bottom: 24px;
}
.footer-nav-item {
  text-align: center;
  overflow: hidden;
}
.footer-nav-item.col-md-12 {
  padding-left: 0;
  padding-right: 0;
}
.footer-nav-item:not(:first-child) {
  border-left: 1px solid var(--color-border-default);
}
.footer-nav-item .title {
  margin-bottom: 6px;
}
.footer-nav-item .nav {
  font-size: 0.8125rem;
  line-height: 1.6923076923;
}
.footer-nav-item .nav li {
  color: #6F7274;
}
.footer-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  height: 100%;
  margin-bottom: 0;
  overflow: hidden;
}
.footer-feature-list li {
  padding: 16px 8px 16px 32px;
  text-align: left;
}
.footer-feature-list li:nth-child(even) {
  border-left: 1px solid var(--color-border-default);
}
.footer-feature-list li:nth-child(even) ~ li {
  border-top: 1px solid var(--color-border-default);
}
.footer-feature-list .title {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--color-text-default);
}
.footer-feature-list .content {
  margin-bottom: 0;
  font-size: 0.8125rem;
  color: #444444;
}
.footer-feature-list .icon {
  flex: 1 0 32px;
  width: 32px;
  height: 32px;
  line-height: 1;
  font-size: 32px;
}
.footer-feature-list .has-inline {
  flex: 1 1 calc(100% - 48px);
  max-width: calc(100% - 48px);
}
.footer-feature-list a {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-feature-list a:hover {
  color: var(--color-primary);
}
.footer-feature-list a:hover .title,
.footer-feature-list a:hover .content {
  color: inherit;
}
.footer-info {
  padding-top: 16px;
  padding-bottom: 24px;
  border-top: 2px solid var(--color-primary);
  font-size: 0.8125rem;
  color: #444444;
}

/* Article */
.article-head, .article-body, .article-foot {
  margin-bottom: 1rem;
}
.article-head h1 {
  margin-top: 0;
  font-size: 1.875rem;
  line-height: 1.3333333333;
}
.article-foot .btn-query {
  padding-left: 16px;
  padding-right: 24px;
}
.article-foot .btn-query.focus, .article-foot .btn-query:focus {
  color: #FFFFFF;
  background-color: var(--color-primary);
  border-color: rgba(34, 36, 38, 0.15);
}
.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid var(--color-border-default);
  border-bottom: 1px solid var(--color-border-default);
  color: #6F7274;
}
.article-meta .date {
  order: 1;
}
.article.list-group {
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow: hidden;
  padding-bottom: 32px;
}
.article.list-group .item {
  display: flex;
  gap: 24px;
  padding-top: 0;
}
.article.list-group .image {
  flex: 1 0 220px;
  max-width: 220px;
  height: 220px;
}
.article.list-group .content {
  display: flex;
  flex-direction: column;
  flex: 1 1 calc(100% - 220px);
  gap: 0.5rem;
  max-width: calc(100% - 220px);
  font-size: 0.9375rem;
}
.article.list-group .title {
  margin: 0;
}
.article.list-group .desc {
  color: #444;
}

.share-buttons {
  order: 2;
  width: 135px;
  height: 20px;
  overflow: hidden;
  margin-left: auto;
}

.font-level {
  display: flex;
  align-items: center;
  gap: 4px;
  order: 3;
  font-size: 0.8125rem;
}

.iframe-wrap, .iframe-content {
  padding: 0.5rem 0;
}

.iframe-wrap {
  line-height: 1.625;
  font-size: 0.8125rem;
  word-wrap: break-word;
}
.iframe-wrap a {
  color: var(--color-primary);
  text-decoration: underline;
}
.iframe-wrap h1, .iframe-wrap h2, .iframe-wrap h3, .iframe-wrap h4, .iframe-wrap h5, .iframe-wrap h6 {
  line-height: 1.2;
  font-weight: 400;
}
.iframe-wrap h1 {
  margin: 0.67em 0;
  font-size: 2em;
}
.iframe-wrap h2 {
  margin: 0.83em 0;
  font-size: 1.5em;
}
.iframe-wrap h3 {
  margin: 1em 0;
  font-size: 1.17em;
}
.iframe-wrap h4 {
  margin: 1.33em 0;
  font-size: 1em;
}
.iframe-wrap h5 {
  margin: 1.67em 0;
  font-size: 0.83em;
}
.iframe-wrap h6 {
  margin: 2.33em 0;
  font-size: 0.67em;
}
.iframe-wrap p {
  margin: 1em 0;
  color: #444;
}
.iframe-wrap iframe {
  max-width: 100%;
  height: auto;
  aspect-ratio: 16/10;
}
.iframe-wrap ol, .iframe-wrap ul, .iframe-wrap dl {
  padding: 0 40px;
  margin: 1em 0;
}
.iframe-wrap ul {
  list-style: disc;
}
.iframe-wrap ol {
  list-style: decimal;
}
.iframe-wrap li {
  list-style-type: inherit;
}
.iframe-wrap :is(dir, menu, ol, ul) ul {
  list-style-type: circle;
}
.iframe-wrap dd {
  margin-left: 40px;
}
.iframe-wrap hr {
  border: 0px;
  border-top: 1px solid #ccc;
  margin: 0.5em 0;
}
.iframe-wrap strong {
  font-weight: 600;
}
.iframe-wrap small {
  font-size: smaller;
}
.iframe-wrap blockquote {
  font-style: italic;
  font-family: Georgia, Times, "Times New Roman", serif;
  padding: 2px 8px 2px 20px;
  border-style: solid;
  border-color: #ccc;
  border-width: 0 0 0 5px;
  margin: 13px 40px;
}
.iframe-wrap table {
  border-width: 1px;
}
.iframe-wrap table.cke_show_border {
  border: 1px dotted #d3d3d3;
}
.iframe-wrap figure {
  text-align: center;
  border: solid 1px #ccc;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.05);
  padding: 10px;
  margin: 10px 20px;
  display: inline-block;
}

.comments {
  padding-bottom: 1rem;
}

.panel-outline {
  border: none;
  margin-bottom: 24px;
  box-shadow: none;
}
.panel-head {
  position: relative;
  line-height: 1;
  border-top: 0;
  border-bottom: 1px solid var(--color-text-default);
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 1.125rem;
  font-weight: 500;
}
.panel-body {
  position: relative;
}

.copyright {
  margin-bottom: 1rem;
}

.app-downloads {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 12px;
  text-align: right;
}
.app-downloads .qrcode {
  width: 72px;
  height: 72px;
  margin-right: 32px;
}

.card {
  display: block;
  position: relative;
  margin-bottom: 24px;
}
.card-group {
  margin-bottom: 16px;
  overflow: hidden;
}
.card-img a {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  background-color: white;
}
.card-content {
  position: relative;
  padding: 12px 0;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 30px;
}
.flex .card {
  flex: 0 0 calc(33.3333333333% - 20px);
}

.category-class {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.lead {
  line-height: 1.5555555556;
  margin-bottom: 24px;
  font-size: 1.125rem;
  font-weight: normal;
}
.lead.title {
  padding-top: 6px;
  padding-bottom: 8px;
  margin-top: 0;
  border-bottom: 1px solid var(--color-text-default);
}

.share-scare:hover {
  color: #e68c00;
  opacity: 1;
}

.share-line:hover {
  color: #61AA45;
  opacity: 1;
}

.share-youtube:hover {
  color: #000000;
  opacity: 1;
}

.share-fb:hover {
  color: #3B5998;
  opacity: 1;
}
