#wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  background: url("/next/images/forest/img/img_bg.png") no-repeat;
  background-size: cover;
}

#wrap.main {
  animation: mainBg 10s linear infinite;
}

@keyframes mainBg {
  0% {
    background: url("/next/images/forest/img/img_main_bg_01.png") no-repeat center center;
    background-size: cover;
  }
  33.33% {
    background: url("/next/images/forest/img/img_main_bg_02.png") no-repeat center center;
    background-size: cover;
  }
  66.66% {
    background: url("/next/images/forest/img/img_main_bg_03.png") no-repeat center center;
    background-size: cover;
  }
  100% {
    background: url("/next/images/forest/img/img_main_bg_01.png") no-repeat center center;
    background-size: cover;
  }
}

/* header */
header {
  width: 1400px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  margin-top: 48px;
}

header .header_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  z-index: 100;
  padding: 20px 24px;
  border-radius: 8px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

header .header_wrap .logo {
  background: url("/next/images/forest/img/img_logo.svg") no-repeat center center;
  background-size: 100% 100%;
  width: 140px;
  height: 29px;
}

header .header_wrap ul {
  display: flex;
  align-items: center;
  gap: 12px;
}

header .header_wrap ul li {
  width: 170px;
  border-radius: 32px;
  font-size: 18px;
  text-align: center;
}

header .header_wrap ul li a {
  padding: 8px 16px;
  border-radius: 32px;
  color: #ffffff99;
  font-weight: 500;
  transition: all 0.3s ease;
}

header .header_wrap ul li a:hover {
  color: #fff;
  font-weight: 600;
}

header .header_wrap ul li.active a {
  color: #fff;
  font-weight: 600;
}

header .header_wrap {
  display: flex;
  align-items: center;
}

header .header_wrap button {
  width: 40px;
  height: 40px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(7px);
  transition: background-color 0.3s ease;
}

header .header_wrap .btn_wrap .btn_unesco {
  display: none;
}

header .header_wrap button.btn_more {
  background: url("/next/images/forest/ico/ico_tree.svg") no-repeat center center;
  background-size: 24px 24px;
}

header .header_wrap button.btn_more.active {
  background: url("/next/images/forest/ico/ico_close_white.svg") no-repeat center center;
  background-size: 12px 12px;
}

header .header_wrap button.btn_more:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* gnb */
.gnb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  transform: translateY(0);
  transition: visibility 0.3s ease, transform 0.3s ease;
}

.gnb.active {
  opacity: 1;
  z-index: 0;
  visibility: visible;
  transform: translateY(92px);
}

.gnb .inner {
  width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 210px;
  border-radius: 16px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.gnb .inner .list_wrap {
  display: flex;
  gap: 12px;
}

.gnb .inner ul {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}

.gnb .inner ul li {
  width: 170px;
  height: 38px;
  display: flex;
  align-items: center;
  text-align: center;
}

.gnb .inner ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  transition: all 0.3s ease;
  color: rgba(57, 75, 81, 0.8);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 15px;
}

.gnb .inner ul li a:hover {
  background: rgba(255, 255, 255, 0.4);
  color: #0d1312;
}

/* mobile gnb */
.mo_gnb {
  position: absolute;
  left: -100%;
}

/* footer */
footer {
  position: relative;
  width: 100%;
  height: 80px;
  background: #0d1312;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .inner {
  width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .inner .info_wrap {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

footer .inner .info_wrap .address {
  font-size: 12px;
  color: #ffffff80;
}

footer .inner .info_wrap .copyright {
  font-size: 12px;
  color: #fff;
}

footer .inner .logo_wrap {
  display: flex;
  align-items: end;
  gap: 24px;
}

footer .inner .logo_wrap .logo {
  width: 117px;
  height: 39px;
}

/* main */
main {
  width: 100%;
  height: 100%;
}

main .main_wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

main .main_wrap .main_box {
  width: 1400px;
  height: 820px;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(4px);
  margin-top: 13vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  /* 스크롤바 숨김 - 크로스 브라우저 지원 */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

main .main_wrap .main_box::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

main .main_wrap .main_box .box_wrap {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  padding-top: 17vh;
  padding-bottom: min(22vh, 300px);
}

main .main_wrap .main_box .title_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 64px;
}

main .main_wrap .main_box .title_wrap .sub_title {
  width: 296px;
  font-size: 23px;
  font-weight: 300;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

main .main_wrap .main_box .title_wrap .sub_title .line {
  width: 30px;
  height: 1px;
  background: #fff;
  margin-bottom: 3px;
}

main .main_wrap .main_box .title_wrap h1 {
  width: 296px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 52px;
  color: #fff;
  font-family: "YangPyeong";
  font-size: 74px;
  font-weight: 400;
  line-height: normal;
}

main .main_wrap .main_box .title_wrap h1 img {
  width: 100%;
  height: 100%;
}

main .main_wrap .main_box .title_wrap .btn_move {
  width: 308px;
  height: 64px;
  border-radius: 40px;
  background: #52cc93;
  backdrop-filter: blur(7px);
  display: flex;
  align-items: center;
  justify-content: center;
}

main .main_wrap .main_box .step_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

main .main_wrap .main_box .step_wrap > span {
  width: 439px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px 24px 0 0;
  background: #52cc93;
  backdrop-filter: blur(7px);
  color: #fff;
  text-align: center;
  font-family: "YangPyeong";
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.72px;
}

main .main_wrap .main_box .step_wrap > span img {
  width: 202px;
  height: 18px;
}

main .main_wrap .main_box .step_wrap .step_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

main .main_wrap .main_box .step_wrap .step_list .step_item {
  width: 211px;
  height: 312px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

main .main_wrap .main_box .step_wrap .step_list .step_item .step_title_wrap {
  width: 167px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("/next/images/forest/img/img_ballon.svg") no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 44px 0 32px;
  font-size: 17px;
  color: #0d0c05;
  letter-spacing: -0.425px;
}

main .main_wrap .main_box .move_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-left: 37px;
}

main .main_wrap .main_box .move_wrap > span {
  width: 140px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px 24px 0 0;
  background: #52cc93;
  backdrop-filter: blur(7px);
  color: #fff;
  text-align: center;
  font-family: "YangPyeong";
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.72px;
}

main .main_wrap .main_box .move_wrap > span img {
  width: 70px;
  height: 18px;
}

main .main_wrap .main_box .move_wrap .move_list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

main .main_wrap .main_box .move_wrap .move_list .move_item {
  width: 140px;
  height: 98px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  border-radius: 16px;
  border: 1px solid #dfdbe9;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.255px;
  padding: 16px;
}

main .main_wrap .main_box .move_wrap .move_list .move_item:first-child {
  border-radius: 0 0 16px 16px;
}

main .main_wrap .main_box .move_wrap .move_list .move_item span {
  height: 22px;
  line-height: 22px;
}

main .main_wrap .main_box .btn_scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  gap: 12px;
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: #52cc93;
  font-size: 20px;
  font-weight: 600;
}

main .main_wrap .main_box .btn_scroll::before {
  content: "";
  position: relative;
  width: 40px;
  height: 40px;
  background: url("/next/images/forest/ico/ico_click.svg") no-repeat center center;
  background-size: 40px 40px;
}

main .main_wrap .main_box .desc_wrap {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 24px;
  position: relative;
  padding-bottom: 95px;
  margin-top: 150px;
}

main .main_wrap .main_box .desc_wrap .desc_scroll_wrap {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

main .main_wrap .main_box .desc_wrap .desc_box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  width: 682px;
  padding: 24px 24px 16px;
}

main .main_wrap .main_box .desc_wrap .desc_box.table {
  width: 494px;
}

main .main_wrap .main_box .desc_wrap .desc_title {
  width: 139px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px 24px 8px 0;
  background: #52cc93;
  backdrop-filter: blur(7px);
  color: #fff;
  text-align: center;
  font-family: "YangPyeong";
  font-size: 18px;
}

main .main_wrap .main_box .desc_wrap .desc_box .desc_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

main .main_wrap .main_box .desc_wrap .desc_box .desc_content .desc_item {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 6px;
}

main .main_wrap .main_box .desc_wrap .desc_box .desc_content .desc_item > span {
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

main .main_wrap .main_box .desc_wrap .desc_box .desc_content .desc_item ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

main .main_wrap .main_box .desc_wrap .desc_box .desc_content .desc_item ul li {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
}

main .main_wrap .main_box .desc_wrap .desc_box .desc_content .desc_item ul li p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 174%;
}

main .main_wrap .main_box .desc_wrap .desc_box .desc_content .desc_item .btn_download {
  width: 127px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(7px);
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

main .main_wrap .main_box .desc_wrap .desc_box .desc_content .desc_item .btn_download::after {
  content: "";
  position: relative;
  width: 16px;
  height: 16px;
  background: url("/next/images/forest/ico/ico_download.svg") no-repeat center center;
  background-size: 16px 16px;
}

main .main_wrap .main_box .desc_wrap .desc_box .desc_content .desc_item .btn_download:hover {
  background: rgba(255, 255, 255, 0.3);
}

main .main_wrap .main_box .desc_wrap .desc_box .desc_content .desc_item ul:not(.dot) {
  gap: 0;
}

main .main_wrap .main_box .desc_wrap .desc_box .desc_content .desc_item ul li p.dot {
  position: relative;
  margin-left: 20px;
}

main .main_wrap .main_box .desc_wrap .desc_box .desc_content .desc_item ul li p.dot::before {
  content: "";
  position: absolute;
  top: 9px;
  left: -14px;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
}

main .main_wrap .main_box .desc_wrap .desc_box .desc_content .desc_table_wrap {
  width: 100%;
  height: 100%;
}

main .main_wrap .main_box .desc_wrap .desc_box .desc_content .desc_table_wrap table {
  width: 100%;
  border-collapse: collapse;
}

main .main_wrap .main_box .desc_wrap .desc_box .desc_content .desc_table_wrap table th {
  height: 41px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

main .main_wrap .main_box .desc_wrap .desc_box .desc_content .desc_table_wrap table th:first-child {
  border-radius: 16px 0 0 0;
}

main .main_wrap .main_box .desc_wrap .desc_box .desc_content .desc_table_wrap table th:last-child {
  border-radius: 0 16px 0 0;
}

main .main_wrap .main_box .desc_wrap .desc_box .desc_content .desc_table_wrap table td {
  border-right: 1px solid rgba(112, 115, 124, 0.66);
  border-bottom: 1px solid rgba(112, 115, 124, 0.66);
  color: #fff;
  text-align: center;
  font-size: 14px;
}

main .main_wrap .main_box .desc_wrap .desc_box .desc_content .desc_table_wrap table td:last-child {
  text-align: left;
  padding: 12px 8px;
  border-right: none;
  color: rgba(255, 255, 255, 0.8);
}

main .main_wrap .main_box .desc_wrap .desc_box .desc_content .desc_table_wrap table tr:last-child td {
  border-bottom: none;
}

/* page */
main .page_wrap {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
}

main .page_wrap .page_header {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  margin-top: 192px;
  padding-bottom: 48px;
}

main .page_wrap .page_header h2 {
  font-family: "YangPyeong";
  color: #fff;
  text-align: center;
  -webkit-text-stroke-width: 0.2px;
  -webkit-text-stroke-color: #fff;
  font-size: 32px;
  font-weight: 400;
  line-height: 32px;
}

main .page_wrap .page_header .path {
  display: flex;
  align-items: center;
  gap: 4px;
}

main .page_wrap .page_header .path .home {
  width: 16px;
  height: 16px;
  background: url("/next/images/forest/ico/ico_home.svg") no-repeat center center;
  background-size: 16px 16px;
}

main .page_wrap .page_header .path span {
  font-size: 14px;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

main .page_wrap .page_header .path span:not(.home)::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("/next/images/forest/ico/ico_arrow_white.svg") no-repeat center center;
  background-size: 16px 16px;
}

main .page_wrap .page_contents {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 321px);
  display: flex;
  align-items: center;
  flex-direction: column;
  background: rgba(13, 19, 18, 0.6);
  padding: 48px 0;
}

main .page_wrap .page_contents.type_01 {
  flex-direction: row;
  gap: 32px;
}

main .page_wrap .page_contents .tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

main .page_wrap .page_contents .tabs .tab {
  padding: 16px 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
}

main .page_wrap .page_contents .tabs .tab.active {
  background: #52cc93;
  color: #0b1110;
  font-weight: 600;
}

main .page_wrap .page_contents .tabs .tab:not(.active):hover {
  background: rgba(255, 255, 255, 0.3);
}

main .page_wrap .page_contents .content_box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 1400px;
  padding: 40px;
  height: 100%;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
}

main .page_wrap .page_contents .content_box + .content_box {
  margin-top: 48px;
}

main .page_wrap .page_contents .content_box .text_box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

main .page_wrap .page_contents .content_box .text_box p {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-indent: 8px;
}

main .page_wrap .page_contents .content_box .img_box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

main .page_wrap .page_contents .content_box .img_item {
  position: relative;
}

main .page_wrap .page_contents .content_box .img_item.type_01 {
  display: flex;
  flex-direction: column;
}

main .page_wrap .page_contents .content_box .img_item.type_01 .img_info.sm {
  position: relative;
  background: rgba(0, 0, 0, 0.4);
}

main .page_wrap .page_contents .content_box .img_item .img_btns {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
}

main .page_wrap .page_contents .content_box .img_item .img_btns .img_btn {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  padding: 8px;
}

main .page_wrap .page_contents .content_box .img_item .img_btns .img_btn .btn_view {
  width: 48px;
  height: 48px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

main .page_wrap .page_contents .content_box .img_item .btn_view::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 48px;
  height: 48px;
  background: url("/next/images/forest/ico/ico_eye.svg") no-repeat center center;
}

main .page_wrap .page_contents .content_box .img_item .btn_voice {
  width: 48px;
  height: 48px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

main .page_wrap .page_contents .content_box .img_item .btn_voice::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 48px;
  height: 48px;
  background: url("/next/images/forest/ico/ico_voice.svg") no-repeat center center;
}

main .page_wrap .page_contents .content_box .img_item .img_btns .img_btn span {
  position: absolute;
  top: 10px;
  right: 64px;
  width: 110px;
  height: 42px;
  font-size: 17px;
  display: none;
  color: #0f1715;
  font-weight: 600;
  background: url("/next/images/forest/img/img_tooltip.svg") no-repeat center center;
  background-size: 110px 42px;
  padding: 6px 0 0 20px;
  transition: all 0.3s ease;
}

main .page_wrap .page_contents .content_box .img_item .img_btns .img_btn a:hover {
  background: rgba(255, 255, 255, 0.3);
}

main .page_wrap .page_contents .content_box .img_item .img_btns .img_btn .btn_desc {
  width: 48px;
  height: 48px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

main .page_wrap .page_contents .content_box .img_item .img_btns .img_btn .btn_desc::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 48px;
  height: 48px;
  background: url("/next/images/forest/ico/ico_book.svg") no-repeat center center;
}

main .page_wrap .page_contents .content_box .img_item .img_btns .img_btn .btn_video {
  width: 48px;
  height: 48px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

main .page_wrap .page_contents .content_box .img_item .img_btns .img_btn .btn_video::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 48px;
  height: 48px;
  background: url("/next/images/forest/ico/ico_video.svg") no-repeat center center;
}

main .page_wrap .page_contents .content_box.record.type_03 .img_item .img_info {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.4);
}

main .page_wrap .page_contents .content_box .img_item .img_info:not(.sm)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  transition: all 0.3s ease;
  opacity: 0;
}

main .page_wrap .page_contents .content_box .img_item .img_info.sm {
  width: 100%;
  height: 40px;
  display: inline-flex;
  padding: 0 8px;
  align-items: center;
  justify-content: start;
  flex-direction: row;
  background: rgba(0, 0, 0, 0.6);
  opacity: 1;
  top: unset;
  bottom: 0;
}

main .page_wrap .page_contents .content_box .img_item .img_info.sm span {
  display: inline-block;
  position: relative;
  bottom: unset;
  left: unset;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 500;
  opacity: 1;
}

main .page_wrap .page_contents .content_box .img_item .img_info.sm.absolute {
  position: absolute;
}

main .page_wrap .page_contents .content_box .img_item:hover .img_info::before {
  opacity: 1;
}

main .page_wrap .page_contents .content_box .img_item .img_info span {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  position: absolute;
  bottom: 20px;
  left: 24px;
}

main .page_wrap .page_contents .content_box .img_item .img_info span {
  opacity: 0;
  transition: all 0.3s ease;
}

main .page_wrap .page_contents .content_box .img_item:hover .img_info span {
  opacity: 1;
}

main .page_wrap .page_contents .content_box .img_item.type_02 {
  display: flex;
  flex-direction: column;
}

main .page_wrap .page_contents .content_box .img_item.type_02 .img_info {
  position: relative;
}

main .page_wrap .page_contents .content_box .img_btn_box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 16px;
}

main .page_wrap .page_contents .content_box .img_btn_box img {
  width: fit-content;
}

main .page_wrap .page_contents .content_box .img_btn_box img {
  width: 422px;
  height: 319px;
}

main .page_wrap .page_contents .content_box .img_btn_box .btn_move {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  padding: 8px 20px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(7px);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

main .page_wrap .page_contents .content_box .img_btn_box .btn_move::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("/next/images/forest/ico/ico_move.svg") no-repeat center center;
  background-size: 20px 20px;
}

main .page_wrap .page_contents .content_box .img_btn_box .btn_move:hover {
  background: rgba(255, 255, 255, 0.3);
}

main .page_wrap .page_contents .content_box .img_btn_box .btn_unesco {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 8px 20px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(7px);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

main .page_wrap .page_contents .content_box .img_btn_box .btn_unesco::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("/next/images/forest/ico/ico_unesco.svg") no-repeat center center;
  background-size: 20px 20px;
}

main .page_wrap .page_contents .content_box .img_btn_box .btn_unesco:hover {
  background: rgba(255, 255, 255, 0.3);
}

main .page_wrap .page_contents .fold_wrap {
  width: 1400px;
  display: flex;
  align-items: center;
}

main .page_wrap .page_contents .fold_wrap .fold_box {
  width: 230px;
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
  color: #fff;
  position: relative;
}

main .page_wrap .page_contents .fold_wrap .fold_box.active {
  width: calc(100% - 32px);
  border-radius: 8px 0 8px 8px;
}

main .page_wrap .page_contents .fold_wrap .fold_box.active .btn_toggle {
  top: 0;
}

main .page_wrap .page_contents .fold_wrap .fold_box.active .btn_toggle img {
  transform: rotate(180deg);
}

main .page_wrap .page_contents .fold_wrap .fold_box.active .fold_list {
  opacity: 1;
  position: relative;
  left: unset;
}

main .page_wrap .page_contents .fold_wrap .fold_box .fold_title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 500;
  align-self: flex-start;
  min-width: fit-content;
  transition: all 0.3s ease;
}

main .page_wrap .page_contents .fold_wrap .fold_box .fold_title .btn_toggle_mo {
  display: none;
}

main .page_wrap .page_contents .fold_wrap .fold_box.active .fold_title {
  color: #fff;
}

main .page_wrap .page_contents .fold_wrap .fold_box.active .fold_title .text_toggle {
  display: none;
}

main .page_wrap .page_contents .fold_wrap .fold_box .btn_toggle {
  position: absolute;
  right: -32px;
  top: 7px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  background-size: 32px 32px;
  border-radius: 0 8px 8px 0;
  padding: 8px 2px 8px 2px;
}

main .page_wrap .page_contents .fold_wrap .fold_box .btn_toggle img {
  margin-left: -4px;
}

main .page_wrap .page_contents .fold_wrap .fold_box .fold_list {
  display: flex;
  flex-direction: column;
  opacity: 0;
  position: absolute;
  left: -10000px;
  transition: all 0.5s ease-in-out;
}

main .page_wrap .page_contents .fold_wrap .fold_box .fold_list .fold_item {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  gap: 6px;
}

main .page_wrap .page_contents .fold_wrap .fold_box .fold_list .fold_item .num {
  display: inline-block;
  width: 22px;
  min-width: 22px;
  text-align: right;
}

main .page_wrap .page_contents .fold_wrap .fold_box .fold_list .fold_item span {
  font-size: 18px;
  font-weight: 500;
}

main .page_wrap .page_contents .fold_wrap.vertical {
  width: 100%;
  justify-content: center;
}

main .page_wrap .page_contents .fold_wrap.vertical .fold_box {
  width: fit-content;
  flex-direction: column;
  border-radius: 8px;
}

main .page_wrap .page_contents .fold_wrap.vertical .fold_box.active {
  width: fit-content;
  height: fit-content;
  align-items: center;
}

main .page_wrap .page_contents .fold_wrap.vertical .fold_box .fold_title {
  align-self: center;
  font-weight: 600;
  gap: 24px;
}

main .page_wrap .page_contents .fold_wrap.vertical .fold_box .btn_toggle {
  top: unset;
  right: unset;
  position: relative;
  background: url("/next/images/forest/ico/ico_arrow_black_select.svg") no-repeat center center;
  border-radius: 27px;
  border: 0.6px solid #5ae4a4;
  background-color: #5ae4a4;
  background-size: 20px 20px;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  transform: rotate(90deg);
}

main .page_wrap .page_contents .fold_wrap.vertical .fold_box.active .btn_toggle {
  transform: rotate(-90deg);
}

main .page_wrap .page_contents .fold_wrap.vertical .fold_box .btn_toggle img {
  transform: rotate(90deg);
  margin: 0;
  position: relative;
  top: -4px;
}

main .page_wrap .page_contents .fold_wrap.vertical .fold_box.active .btn_toggle img {
  transform: rotate(270deg);
  top: 0;
}

main .page_wrap .page_contents .fold_wrap.vertical .fold_box .table_wrap {
  opacity: 0;
  position: absolute;
  top: -10000px;
  transition: all 0.5s ease-in-out;
}

main .page_wrap .page_contents .fold_wrap.vertical .fold_box.active .table_wrap {
  opacity: 1;
  position: relative;
  top: unset;
}

main .page_wrap .page_contents .content_box .table_wrap .table_scroll_wrap {
  width: 100%;
  max-height: 462px;
  overflow-y: auto;
}

main .page_wrap .page_contents .content_box .table_wrap .table_scroll_wrap.type_01 {
  max-height: 418px;
}

main .page_wrap .page_contents .content_box .table_wrap .table_scroll_wrap::-webkit-scrollbar {
  scrollbar-width: thin;
  width: 6px;
  height: 6px;
}

main .page_wrap .page_contents .content_box .table_wrap .table_scroll_wrap::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}

main .page_wrap .page_contents .content_box .table_wrap .table_scroll_wrap::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

/* timeline */
.timeline_wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#timeline {
  width: 1400px;
  height: 600px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
}
.tl-storyslider {
  height: 402px !important;
}
.tl-text-content-container {
  width: 674px !important;
  min-width: 674px !important;
  display: flex;
  flex-direction: column;
}
.tl-timenav {
  border-top: 1px solid #e5e5e5;
  background: rgba(124, 124, 124, 0.2) !important;
}
.tl-storyslider .tl-slider-background {
  background: rgba(255, 255, 255, 0.1) !important;
}
.tl-slide .tl-slide-content-container .tl-slide-content {
  display: flex !important;
  flex-direction: row-reverse;
  padding: 0 !important;
  width: fit-content !important;
  gap: 90px !important;
  position: static !important;
}
.tl-timeline .tl-text-content-container span {
  color: #fff !important;
  font-family: SUIT !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  line-height: 42px !important;
}
.tl-timeline a {
  color: #fff !important;
  font-family: SUIT !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  line-height: 42px !important;
}
.tl-timeline h2 {
  margin-bottom: 20px !important;
}
.tl-text .tl-headline-date,
.tl-text h3.tl-headline-date {
  color: #52cc93 !important;
  font-family: SUIT !important;
  font-size: 18px !important;
  line-height: 42px !important;
  margin: 0 !important;
  margin-bottom: 24px !important;
}
.tl-text p {
  color: #fff !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-family: SUIT !important;
  font-size: 16px !important;
  word-break: keep-all !important;
}
.tl-timemarker.tl-timemarker-active .tl-timemarker-content-container {
  height: 50px !important;
  background: transparent !important;
  border: none !important;
}
.tl-timeline a:hover {
  color: pink;
}
.tl-media-shadow {
  box-shadow: none;
  border-radius: 16px;
}
.tl-slidenav-title {
  position: relative !important;
  padding: 0 !important;
  margin: 0 !important;
  word-break: keep-all !important;
  width: 100% !important;
}
.tl-slidenav-title span {
  line-height: 14px !important;
}
.tl-slidenav-next .tl-slidenav-content-container {
  width: fit-content !important;
}
.tl-slidenav-next .tl-slidenav-content-container .tl-slidenav-title {
  box-shadow: none;
}
.tl-timemarker.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline {
  font-family: SUIT !important;
  line-height: 13px !important;
  overflow: visible !important;
  text-overflow: unset !important;
  -webkit-line-clamp: unset !important;
  display: flex !important;
}
.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content {
  display: flex !important;
  gap: 5px !important;
}
.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline {
  font-family: SUIT !important;
  line-height: 13px !important;
}
.tl-timemarker:hover .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline {
  color: #000 !important;
}
.tl-slide .tl-slide-content-container {
  display: flex !important;
  align-items: start !important;
  position: static !important;
}
.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content.tl-timemarker-content-small .tl-timemarker-text h2.tl-headline {
  white-space: unset !important;
}
.tl-slide .tl-slide-content-container .tl-slide-content .tl-text {
  width: 762px !important;
  max-width: 762px !important;
  padding-top: 48px !important;
  padding-left: 146px !important;
  padding-right: 0 !important;
  box-sizing: content-box !important;
}
.tl-slide .tl-slide-content-container .tl-slide-content .tl-media {
  width: fit-content !important;
  min-width: fit-content !important;
  position: static !important;
}
.tl-media .tl-media-content-container .tl-media-content {
  width: fit-content !important;
}
.tl-media-content-container {
  width: fit-content !important;
}
.tl-storyslider img {
  margin-top: 40px !important;
  width: 212px !important;
  height: 300px !important;
}
.tl-media {
  max-width: fit-content !important;
  float: unset !important;
}
.tl-timemarker.tl-timemarker-active .tl-timemarker-line-left,
.tl-timemarker.tl-timemarker-active .tl-timemarker-line-right {
  border-color: #52cc93 !important;
}
.tl-timemarker.tl-timemarker-active .tl-timemarker-line-left:after,
.tl-timemarker.tl-timemarker-active .tl-timemarker-line-right:after {
  background: #52cc93 !important;
}
.tl-timemarker.tl-timemarker-hover .tl-timemarker-line-left:after,
.tl-timemarker.tl-timemarker-hover .tl-timemarker-line-right:after {
  background: #52cc93 !important;
}
.tl-timenav-line {
  background: #52cc93 !important;
  display: inline-block !important;
}
.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major .tl-timeaxis-tick {
  font-family: SUIT !important;
}
.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major .tl-timeaxis-tick .tl-timeaxis-tick-text,
.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick .tl-timeaxis-tick-text {
  font-family: SUIT !important;
}
.tl-slidenav-title {
  text-shadow: none !important;
  color: #fff !important;
  font-family: SUIT !important;
  font-size: 11px !important;
  font-weight: 400 !important;
}
.tl-slidenav-description {
  width: 100% !important;
  text-shadow: none !important;
  color: #fff !important;
  font-family: SUIT !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  padding-right: 5px;
  margin-left: 0 !important;
  padding: 0 !important;
}
.tl-slidenav-next {
  margin-right: 16px !important;
}
.tl-slidenav-previous {
  margin-left: 16px !important;
}
.tl-timemarker .tl-timemarker-content-container {
  box-shadow: none !important;
  width: 180px !important;
  height: fit-content !important;
  background: transparent !important;
  border: none !important;
}
.tl-timenav .tl-timenav-line:after,
.tl-timenav .tl-timenav-line:before {
  color: transparent !important;
}
.tl-timemarker-text span {
  font-family: SUIT !important;
  line-height: 14px !important;
  color: #fff !important;
  word-break: keep-all !important;
}
.tl-menubar {
  top: 422px !important;
}
.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container {
  max-width: 31px !important;
  min-width: 31px !important;
  height: 44px !important;
  max-height: 44px !important;
  margin: 0 !important;
}
.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container .tl-timemarker-media {
  aspect-ratio: 31/44 !important;
  height: 100% !important;
  width: 100% !important;
  min-width: 31px !important;
  object-fit: cover !important;
  object-position: center !important;
}
.tl-slidenav-next {
  top: 180px !important;
}
.tl-slidenav-next .tl-slidenav-icon {
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #5ae4a4 !important;
  border: 1px solid #5ae4a4;
  transition: background-color 0.3s ease !important;
  border-radius: 50% !important;
  margin-left: 61px !important;
  position: relative !important;
  margin-bottom: 10px !important;
}
.tl-slidenav-next .tl-slidenav-icon:before {
  content: "" !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px !important;
  height: 36px !important;
  background: url("/next/images/forest/ico/ico_arrow_black_select.svg") no-repeat center center !important;
  background-size: 21px 21px !important;
  display: inline-block !important;
  border-radius: 50% !important;
}
.tl-slidenav-next:hover .tl-slidenav-icon {
  margin-left: 61px !important;
  background: url("/next/images/forest/ico/ico_arrow_black_select.svg") no-repeat center center #52cb93 !important;
}
.tl-slidenav-previous {
  top: 180px !important;
}
.tl-slidenav-previous .tl-slidenav-icon {
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #5ae4a4 !important;
  border: 1px solid #5ae4a4;
  transition: background-color 0.3s ease !important;
  border-radius: 50% !important;
  margin-right: 61px !important;
  position: relative !important;
  transform: rotate(180deg) !important;
  margin-bottom: 10px !important;
}
.tl-slidenav-previous .tl-slidenav-icon:before {
  content: "" !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px !important;
  height: 36px !important;
  background: url("/next/images/forest/ico/ico_arrow_black_select.svg") no-repeat center center !important;
  background-size: 21px 21px !important;
  display: inline-block !important;
  border-radius: 50% !important;
}
.tl-slidenav-previous:hover .tl-slidenav-icon {
  background: url("/next/images/forest/ico/ico_arrow_black_select.svg") no-repeat center center #52cb93 !important;
  border: 1px solid #52cb93;
  margin-left: 0 !important;
}
.tl-timemarker-text span br {
  display: none;
}
.tl-credit {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  max-width: fit-content !important;
}
.tl-timeline .tl-credit button {
  color: #fff !important;
  text-align: center !important;
  font-family: SUIT !important;
  font-size: 14px !important;
  text-decoration-line: underline !important;
  text-underline-offset: 3px !important;
  position: absolute !important;
  margin-top: 46px !important;
  max-width: 286px !important;
  line-height: normal !important;
  word-break: break-word !important;
}

/* sub tabs */
main .page_wrap .page_contents .sub_tabs {
  width: 1400px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 12px;
  height: 60px;
  border-bottom: 2px solid #fff;
}

main .page_wrap .page_contents .sub_tabs .sub_tab {
  padding: 14px 32px;
  border-radius: 16px 16px 0 0;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

main .page_wrap .page_contents .sub_tabs .sub_tab.active {
  background: #fff;
  color: rgba(11, 17, 16, 0.8);
  font-weight: 600;
}

main .page_wrap .page_contents .sub_tabs .sub_tab:not(.active):hover {
  background: rgba(255, 255, 255, 0.3);
}

main .page_wrap .page_contents .sub_tab_page .content_box:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

main .page_wrap .page_contents .content_box + .fold_wrap {
  margin-top: 48px;
}

main .page_wrap .page_contents .fold_wrap + .fold_wrap {
  margin-top: 48px;
}

main .page_wrap .page_contents .sub_tab_page {
  display: none;
  flex-direction: column;
}

main .page_wrap .page_contents .sub_tab_page.active {
  display: flex;
}

main .page_wrap .page_contents .content_box .page {
  display: none;
  flex-direction: column;
  gap: 40px;
}

main .page_wrap .page_contents .content_box .page.active {
  display: flex;
}

main .page_wrap .page_contents .content_box .title_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

main .page_wrap .page_contents .content_box .title_wrap h3 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  line-height: 42px;
}

main .page_wrap .page_contents .content_box .title_wrap .arrow_wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 8px;
}

main .page_wrap .page_contents .content_box .title_wrap .arrow_wrap button {
  width: 36px;
  height: 36px;
  border-radius: 27px;
  border: 1px solid #5ae4a4;
  background: #5ae4a4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

main .page_wrap .page_contents .content_box .title_wrap .arrow_wrap button.prev:disabled {
  transform: rotate(180deg);
}

main .page_wrap .page_contents .content_box .title_wrap .arrow_wrap button:disabled {
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
  background: url("/next/images/forest/ico/ico_arrow.svg") no-repeat center center;
  border: 1px solid rgba(82, 204, 147, 0.4);
  background-color: rgba(82, 204, 147, 0.1);
}

main .page_wrap .page_contents .content_box .title_wrap .arrow_wrap button:not(:disabled)::before {
  content: "";
  position: relative;
  width: 21px;
  height: 21px;
  background: url("/next/images/forest/ico/ico_arrow_black_select.svg") no-repeat center center;
  background-size: 20px 20px;
  display: inline-block;
}

main .page_wrap .page_contents .content_box .title_wrap .arrow_wrap button.prev::before {
  transform: rotate(180deg);
  margin-left: -2px;
}

main .page_wrap .page_contents .content_box .title_wrap .arrow_wrap button.next::before {
  transform: rotate(0deg);
  margin-left: 2px;
}

main .page_wrap .page_contents .content_box .title_wrap .arrow_wrap button:hover {
  background: #52cb93;
}

main .page_wrap .page_contents .content_box .page > .arrow_wrap {
  width: 100%;
  height: 40px;
  position: relative;
}

main .page_wrap .page_contents .content_box .page > .arrow_wrap button {
  display: flex;
  padding: 8px 20px;
  justify-content: center;
  align-items: center;
  gap: 2px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(7px);
  transition: all 0.3s ease;
}

main .page_wrap .page_contents .content_box .page > .arrow_wrap button:hover {
  background: rgba(255, 255, 255, 0.3);
}

main .page_wrap .page_contents .content_box .page > .arrow_wrap .prev {
  position: absolute;
  left: 0;
  bottom: 0;
}

main .page_wrap .page_contents .content_box .page > .arrow_wrap .next {
  position: absolute;
  right: 0;
  bottom: 0;
}

main .page_wrap .page_contents .content_box .page > .arrow_wrap .prev::before {
  content: "";
  position: relative;
  width: 21px;
  height: 21px;
  background: url("/next/images/forest/ico/ico_arrow_white.svg") no-repeat center center;
  background-size: 16px 16px;
  display: inline-block;
  transform: rotate(180deg);
}

main .page_wrap .page_contents .content_box .page > .arrow_wrap .next::after {
  content: "";
  position: relative;
  width: 22px;
  height: 22px;
  background: url("/next/images/forest/ico/ico_arrow_white.svg") no-repeat center center;
  background-size: 16px 16px;
  display: inline-block;
}

main .page_wrap .page_contents .content_box .page > .arrow_wrap button span {
  height: 24px;
  font-size: 14px;
  color: #fff;
  line-height: 24px;
}

main .page_wrap .page_contents .content_box .table_wrap {
  width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 auto;
}

main .page_wrap .page_contents .content_box .table_wrap .table_text {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  align-self: end;
}

main .page_wrap .page_contents .content_box .table_wrap .table_box {
  width: 100%;
  border: 1px solid #e1e2e4;
  border-radius: 12px;
  overflow-y: hidden;
}

main .page_wrap .page_contents .content_box .table_wrap .table_box table {
  width: 100%;
}

main .page_wrap .page_contents .content_box .table_wrap .table_box table th {
  height: 44px;
  padding: 6px 20px;
  border-right: 1px solid rgba(112, 115, 124);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  border-bottom: 1px solid rgba(112, 115, 124);
}

main .page_wrap .page_contents .content_box .table_wrap .table_box table td {
  height: 56px;
  padding: 16px 20px;
  border-right: none;
  border-bottom: 1px solid rgba(112, 115, 124);
  text-align: left;
  color: #fff;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.05);
  vertical-align: baseline;
}

main .page_wrap .page_contents .content_box .table_wrap .table_box table .line_right {
  border-right: 1px solid rgba(112, 115, 124) !important;
}

main .page_wrap .page_contents .content_box .table_wrap .table_box table td.line_bottom {
  border-bottom: 1px solid rgba(112, 115, 124) !important;
}

main .page_wrap .page_contents .content_box .table_wrap .table_box table th:last-child,
main .page_wrap .page_contents .content_box .table_wrap .table_box table td:last-child {
  border-right: none;
}

main .page_wrap .page_contents .content_box .table_wrap .table_box table td.text_center {
  text-align: center;
  vertical-align: middle;
}

main .page_wrap .page_contents .content_box .table_wrap .table_box table td.text_left {
  text-align: left;
  vertical-align: middle;
}

main .page_wrap .page_contents .content_box .table_wrap .table_box table td.text_right {
  text-align: right;
}

main .page_wrap .page_contents .content_box .table_wrap .table_box table.fixed_table {
  table-layout: fixed;
}

main .page_wrap .page_contents .content_box .table_wrap .table_footer {
  font-size: 14px;
  color: #fff;
  align-self: end;
}

/* swiper */
.img_swiper .swiper-wrapper {
  display: flex;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  display: none;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  display: none;
}

.swiper_container .swiper-button-prev {
  width: 36px;
  height: 36px;
  border-radius: 27px;
  border: 1px solid #5ae4a4;
  backdrop-filter: blur(6px);
  background: url("/next/images/forest/ico/ico_arrow_black_select.svg") #5ae4a4 no-repeat center center;
  background-size: 20px 20px;
  z-index: 100;
  left: -18px;
  top: -168px;
  transform: rotate(180deg);
  transition: background-color 0.3s ease;
}

.swiper_container .swiper-button-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  backdrop-filter: blur(6px);
  border: 1px solid #5ae4a4;
  backdrop-filter: blur(6px);
  background: url("/next/images/forest/ico/ico_arrow_black_select.svg") #5ae4a4 no-repeat center center;
  background-size: 20px 20px;
  z-index: 100;
  right: -18px;
  top: -168px;
  transition: background-color 0.3s ease;
}

.swiper_container .swiper-button-next:hover {
  background-color: #52cb93;
}

.swiper_container .swiper-button-prev:hover {
  background-color: #52cb93;
}

.img_swiper .img_wrap {
  width: 312px;
}

.img_swiper .img_wrap .img_box {
  width: 312px;
  height: 240px;
}

.img_swiper .arrow_bg_left {
  position: absolute;
  background: linear-gradient(270deg, #30393d 0%, rgba(48, 57, 61, 0) 100%);
  bottom: 0;
  left: 0;
  width: 82px;
  height: 337px;
  z-index: 10;
  transform: rotate(180deg);
}

.img_swiper .arrow_bg_right {
  position: absolute;
  background: linear-gradient(270deg, #30393d 0%, rgba(48, 57, 61, 0) 100%);
  bottom: 0;
  right: 0;
  width: 82px;
  height: 337px;
  z-index: 10;
}

.img_swiper .arrow_bg_left.hide,
.img_swiper .arrow_bg_right.hide {
  display: none;
}

.swiper_container {
  position: relative;
}

.swiper_btn_wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  border: 1px solid rgba(82, 204, 147, 0.4);
  background-color: rgba(82, 204, 147, 0.1);
  background-image: url("/next/images/forest/ico/ico_arrow.svg");
  opacity: 1 !important;
}

main .page_wrap .page_contents .content_box .img_item .img_btns img:not(.ico_privacy) {
  width: 48px;
  height: 48px;
  padding: 8px;
  box-sizing: content-box;
}

main .page_wrap .page_contents .content_box h3 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

main .page_wrap .page_contents .content_box .table_wrap .table_box table td ul {
  display: flex;
  flex-direction: column;
}

main .page_wrap .page_contents .content_box .table_wrap .table_box table td ul li {
  display: flex;
  flex-direction: column;
}

main .page_wrap .page_contents .content_box .table_wrap .table_box table td ul li span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

main .page_wrap .page_contents .content_box .table_wrap .table_box table td ul li span:first-child::before {
  content: "";
  position: relative;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
}

main .page_wrap .page_contents .content_box .table_wrap .table_box table td ul li span:not(:first-child) {
  padding-left: 12px;
}

main .page_wrap .page_contents .content_box .table_wrap .table_box table td > span {
  font-size: 14px;
  color: #fff;
}

main .page_wrap .page_contents .content_box .table_wrap .table_box table td .list_wrap {
  display: flex;
  flex-direction: column;
}

main .page_wrap .page_contents .content_box .table_wrap .table_box table td .dot {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

main .page_wrap .page_contents .content_box .table_wrap .table_box table td .dot::before {
  content: "";
  position: relative;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
}

main .page_wrap .page_contents .content_box .table_wrap .table_box table td .dash {
  padding-left: 6px;
}

main .page_wrap .page_contents .content_box .toggle_list {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 24px;
}

main .page_wrap .page_contents .content_box .toggle_list .toggle_item {
  display: flex;
  flex-direction: column;
  padding-bottom: 24px;
  border-bottom: 1px solid #fff;
}

main .page_wrap .page_contents .content_box .toggle_list .toggle_item.active {
  gap: 24px;
}

main .page_wrap .page_contents .content_box .toggle_list .toggle_item .toggle_title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

main .page_wrap .page_contents .content_box .toggle_list .toggle_item .toggle_title .btn_toggle {
  width: 26px;
  height: 26px;
  background: url("/next/images/forest/ico/ico_plus.svg") no-repeat center center;
  background-size: 26px 26px;
  transition: all 0.3s ease;
}

main .page_wrap .page_contents .content_box .toggle_list .toggle_item.active .toggle_title .btn_toggle {
  width: 26px;
  height: 26px;
  background: url("/next/images/forest/ico/ico_minus.svg") no-repeat center center;
  background-size: 26px 26px;
  transition: all 0.3s ease;
}

main .page_wrap .page_contents .content_box .toggle_list .toggle_item .toggle_content {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-indent: 8px;
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

main .page_wrap .page_contents .content_box .toggle_list .toggle_item.active .toggle_content {
  max-height: fit-content;
  opacity: 1;
}

main .page_wrap .page_contents .content_box .text_box p .number,
main .page_wrap .page_contents .content_box .table_wrap .table_box table th .number,
main .page_wrap .page_contents .content_box .img_info span .number {
  font-size: 11px !important;
  vertical-align: super;
}

.swiper_container_mo.word .swiper_btn_wrap .swiper-button-next {
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 0;
  border: none;
  height: 38px;
  width: 38px;
  top: -38px !important;
  right: -19px !important;
}

.swiper_container_mo.word .swiper_btn_wrap .swiper-button-next::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("/next/images/forest/ico/ico_arrow_black_select.svg") rgba(82, 204, 147, 0.1) no-repeat center center;
  background-size: 16px 16px;
  display: inline-block;
  border-radius: 18px;
  border: 0.6px solid #52cb93;
  background-color: #52cb93;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper_container_mo.word .swiper_btn_wrap .swiper-button-prev {
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 0;
  border: none;
  height: 38px;
  width: 38px;
  top: -38px !important;
  left: -19px !important;
}

.swiper_container_mo.word .swiper_btn_wrap .swiper-button-prev::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("/next/images/forest/ico/ico_arrow_black_select.svg") rgba(82, 204, 147, 0.1) no-repeat center center;
  background-size: 16px 16px;
  display: inline-block;
  border-radius: 18px;
  border: 0.6px solid #52cb93;
  background-color: #52cb93;
  display: flex;
  align-items: center;
  justify-content: center;
}

main .page_wrap .page_contents .left_wrap .filter_wrap {
  padding: 16px;
}

.swiper_container_mo {
  display: none;
}

.tabs_mo {
  display: none;
}

.sub_tabs_mo {
  display: none;
}

.tr_mo {
  display: none;
}

.layer_container .layer_wrap .layer_body .item_box .item.no_line {
  border-bottom: none;
  padding-bottom: 0;
}

main .page_wrap .page_contents .content_box .table_wrap .table_box .touch_message {
  display: none;
}

main .page_wrap .page_contents .search_wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(242, 246, 248, 0.1);
}

main .page_wrap .page_contents .search_wrap .inner {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 1368px;
  box-sizing: content-box;
}

main .page_wrap .page_contents .search_wrap .inner .search_type {
  flex: 1;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  border: 1px solid #d7dee4;
  background: rgba(255, 255, 255, 0.08);
  padding-left: 12px;
  position: relative;
}

main .page_wrap .page_contents .search_wrap .inner .search_type .btn_option {
  width: 124px;
  height: 100%;
  background: none;
  border: none;
  text-align: left;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #52cc93;
  font-size: 14px;
  font-weight: 700;
}

main .page_wrap .page_contents .search_wrap .inner .search_type .btn_option::after {
  content: "";
  position: relative;
  width: 16px;
  height: 16px;
  background: url("/next/images/forest/ico/ico_select_arrow.svg") no-repeat center center;
  transition: transform 0.3s ease;
}

main .page_wrap .page_contents .search_wrap .inner .search_type.active .btn_option::after {
  transform: rotate(-180deg);
}

main .page_wrap .page_contents .search_wrap .inner .search_type ul {
  display: none;
}

main .page_wrap .page_contents .search_wrap .inner .search_type.active ul {
  width: 136px;
  display: flex;
  flex-direction: column;
  display: flex;
  padding: 12px;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 56px;
  left: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
}

main .page_wrap .page_contents .search_wrap .inner .search_type.active ul li {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

main .page_wrap .page_contents .search_wrap .inner .search_type.active ul li:first-child,
main .page_wrap .page_contents .search_wrap .inner .search_type.active ul li:last-child {
  height: 40px;
}

main .page_wrap .page_contents .search_wrap .inner .search_type.active ul li:first-child {
  padding-bottom: 4px;
}

main .page_wrap .page_contents .search_wrap .inner .search_type.active ul li:last-child {
  border-bottom: none;
  padding-top: 4px;
}

main .page_wrap .page_contents .search_wrap .inner .search_type.active ul li button {
  width: 100%;
  height: 100%;
  text-align: left;
  color: #fff;
  font-size: 14px;
}

main .page_wrap .page_contents .search_wrap .inner input {
  flex: 1;
  color: #fff;
  font-size: 16px;
  line-height: 150%;
  background: none;
  border: none;
  outline: none;
  margin: 0 32px;
}

main .page_wrap .page_contents .search_wrap .inner input::placeholder {
  color: #fff;
}

main .page_wrap .page_contents .search_wrap .inner .btn_search {
  width: 24px;
  height: 24px;
  background: url("/next/images/forest/ico/ico_search.svg") no-repeat center center;
  background-size: 24px 24px;
  margin-right: 12px;
}

.search_category {
  width: 220px;
  height: 48px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #d7dee4;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
}

.search_category .btn_option {
  width: 100%;
  position: relative;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  padding: 10px 12px 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search_category .btn_option::after {
  content: "";
  position: relative;
  width: 16px;
  height: 16px;
  background: url("/next/images/forest/ico/ico_select_arrow.svg") no-repeat center center;
  background-size: 16px 16px;
  transition: transform 0.3s ease;
}

.search_category.active .btn_option::after {
  transform: rotate(-180deg);
}

.search_category ul {
  display: none;
}

.search_category ul::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.search_category ul::-webkit-scrollbar-thumb {
  background-color: #fff;
  width: 6px;
  height: 6px;
  border-radius: 10px;
}

.search_category.active ul {
  width: 218px;
  display: flex;
  flex-direction: column;
  display: flex;
  padding: 12px;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 56px;
  left: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  z-index: 10;
}

.search_category.active ul li {
  width: 100%;
  height: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.search_category.active ul li:first-child,
.search_category.active ul li:last-child {
  height: 40px;
  min-height: 40px;
}

.search_category.active ul li:first-child {
  padding-bottom: 4px;
}

.search_category.active ul li:last-child {
  border-bottom: none;
  padding-top: 4px;
}

.search_category.active ul li button {
  width: 100%;
  height: 100%;
  text-align: left;
  color: #fff;
  font-size: 14px;
}

main .page_wrap .page_contents .search_wrap .inner .btn_download {
  height: 48px;
  border-radius: 8px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 14px;
  line-height: 21px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
}

main .page_wrap .page_contents .search_wrap .inner .btn_download::before {
  content: "";
  position: relative;
  width: 20px;
  height: 20px;
  background: url("/next/images/forest/ico/ico_download.svg") no-repeat center center;
  background-size: 20px 20px;
}

main .page_wrap .page_contents .board_wrap {
  width: 1400px;
  margin-top: 48px;
  margin-bottom: 80px;
}

main .page_wrap .page_contents .board_wrap .inner {
  border-radius: 12px;
  border: 1px solid #e1e2e4;
}

main .page_wrap .page_contents .board_wrap .inner table {
  width: 100%;
}

main .page_wrap .page_contents .board_wrap .inner table th {
  height: 44px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  padding: 6px 8px;
  text-align: left;
  border-bottom: 1px solid rgba(140, 166, 176, 0.16);
}

main .page_wrap .page_contents .board_wrap .inner table th.text_center {
  text-align: center;
}

main .page_wrap .page_contents .board_wrap .inner table td {
  height: 56px;
  padding: 0 8px;
  border-bottom: 1px solid rgba(140, 166, 176, 0.16);
  text-align: left;
  color: #fff;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.1);
}

main .page_wrap .page_contents .board_wrap .inner table td.text_center {
  text-align: center;
}

main .page_wrap .page_contents .board_wrap .inner table td .btn_view {
  height: 40px;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  transition: all 0.3s ease;
}

main .page_wrap .page_contents .board_wrap .inner table td .btn_view::before {
  content: "";
  position: relative;
  width: 16px;
  height: 16px;
  background: url("/next/images/forest/ico/ico_table_view.svg") no-repeat center center;
  background-size: 16px 16px;
}

main .page_wrap .page_contents .board_wrap .inner table td .btn_view:hover {
  background: rgba(255, 255, 255, 0.16);
}

main .page_wrap .page_contents .board_wrap .inner table td .btn_lock {
  height: 40px;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  transition: all 0.3s ease;
}

main .page_wrap .page_contents .board_wrap .inner table td .btn_lock::before {
  content: "";
  position: relative;
  width: 16px;
  height: 16px;
  background: url("/next/images/forest/ico/ico_table_lock.svg") no-repeat center center;
  background-size: 16px 16px;
}

main .page_wrap .page_contents .board_wrap .inner table td .btn_lock:hover {
  background: rgba(255, 255, 255, 0.16);
}

main .page_wrap .page_contents .board_wrap .table_footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(140, 166, 176, 0.16);
  background: rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
}

main .page_wrap .page_contents .board_wrap .table_footer .page_type_wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

main .page_wrap .page_contents .board_wrap .table_footer .page_type_wrap.active .btn_page_type::after {
  transform: rotate(-180deg);
}

main .page_wrap .page_contents .board_wrap .table_footer .page_type_wrap ul {
  display: none;
}

main .page_wrap .page_contents .board_wrap .table_footer .page_type_wrap.active ul {
  width: 100%;
  display: flex;
  padding: 12px;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 46px;
  left: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  z-index: 100;
}

main .page_wrap .page_contents .board_wrap .table_footer .page_type_wrap ul li {
  display: flex;
  align-items: center;
  justify-content: center;
}

main .page_wrap .page_contents .board_wrap .table_footer .page_type_wrap ul li button {
  width: 100%;
  height: 32px;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  border-radius: 6px;
}

main .page_wrap .page_contents .board_wrap .table_footer .page_type_wrap.active ul li {
  width: 100%;
  height: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

main .page_wrap .page_contents .board_wrap .table_footer .page_type_wrap.active ul li:first-child,
main .page_wrap .page_contents .board_wrap .table_footer .page_type_wrap.active ul li:last-child {
  height: 40px;
  min-height: 40px;
}

main .page_wrap .page_contents .board_wrap .table_footer .page_type_wrap.active ul li:first-child {
  padding-bottom: 4px;
}

main .page_wrap .page_contents .board_wrap .table_footer .page_type_wrap.active ul li:last-child {
  border-bottom: none;
  padding-top: 4px;
}

main .page_wrap .page_contents .board_wrap .table_footer .page_type_wrap.active ul li button {
  width: 100%;
  height: 100%;
  text-align: left;
  color: #fff;
  font-size: 14px;
}

main .page_wrap .page_contents .pagination_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 40px;
}

main .page_wrap .page_contents .pagination_wrap .prev {
  width: 32px;
  height: 32px;
  background: url("/next/images/forest/ico/ico_arrow_white.svg") no-repeat center center;
  background-size: 16px 16px;
  transform: rotate(180deg);
}

main .page_wrap .page_contents .pagination_wrap .next {
  width: 32px;
  height: 32px;
  background: url("/next/images/forest/ico/ico_arrow_white.svg") no-repeat center center;
  background-size: 16px 16px;
}

main .page_wrap .page_contents .pagination_wrap .prev.disabled {
  opacity: 0.16;
  cursor: default;
  pointer-events: none;
}

main .page_wrap .page_contents .pagination_wrap .prev img,
main .page_wrap .page_contents .pagination_wrap .next img {
  display: none;
}

main .page_wrap .page_contents .pagination_wrap .next.disabled {
  opacity: 0.16;
  cursor: default;
  pointer-events: none;
}

main .page_wrap .page_contents .pagination_wrap a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
}

main .page_wrap .page_contents .pagination_wrap strong {
  background: #52cc9388;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

main .page_wrap.blue .page_contents .pagination_wrap a:not(.prev):not(.next):hover,
main .page_wrap.blue .page_contents .pagination_wrap strong {
  background: #4c96e288;
}

main .page_wrap.blue .page_contents .pagination_wrap strong {
  background: #4c96e288;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

main .page_wrap .page_contents .pagination_wrap a:not(.prev):not(.next):hover,
main .page_wrap .page_contents .pagination_wrap strong {
  background: #52cc9388;
}

main .page_wrap .page_contents .pagination_wrap .first,
main .page_wrap .page_contents .pagination_wrap .last {
  display: none;
}

main .page_wrap .page_contents .select_wrap {
  width: 1400px;
  display: flex;
  align-items: center;
  justify-content: end;
}

main .page_wrap .page_contents .detail_wrap {
  width: 1400px;
  margin-top: 11px;
  margin-bottom: 11px;
}

main .page_wrap .page_contents .detail_wrap table {
  width: 100%;
  border: 1px solid rgba(228, 234, 240, 0.6);
}

main .page_wrap .page_contents .detail_wrap table th {
  height: 44px;
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  padding: 4px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(228, 234, 240, 0.6);
  border-right: 1px solid rgba(228, 234, 240, 0.6);
  background: rgba(245, 247, 248, 0.1);
}

main .page_wrap .page_contents .detail_wrap table td {
  height: 56px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  padding: 4px 12px;
  border-bottom: 1px solid rgba(228, 234, 240, 0.6);
  border-right: 1px solid rgba(228, 234, 240, 0.6);
  text-align: left;
  color: #fff;
}

main .page_wrap .page_contents .detail_wrap table td .btn_view {
  width: fit-content;
  height: 40px;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  color: #fff;
}

main .page_wrap .page_contents .detail_wrap table td .btn_view::before {
  content: "";
  position: relative;
  width: 16px;
  height: 16px;
  background: url("/next/images/forest/ico/ico_table_view.svg") no-repeat center center;
  background-size: 16px 16px;
}

main .page_wrap .page_contents .detail_wrap table td .btn_view:hover {
  background: rgba(255, 255, 255, 0.16);
}

main .page_wrap .page_contents .detail_wrap .detail_content {
  width: 100%;
  height: 371px;
  overflow-y: auto;
  margin-top: 11px;
  margin-bottom: 11px;
  padding: 16px;
  border: 1px solid rgba(228, 234, 240, 0.6);
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
}

main .page_wrap .page_contents .detail_wrap .detail_content::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
main .page_wrap .page_contents .detail_wrap .detail_content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}
main .page_wrap .page_contents .detail_wrap .detail_content::-webkit-scrollbar-thumb {
  background: linear-gradient(0deg, #c2c2c2 0%, #c2c2c2 100%), rgba(194, 194, 194, 0.05);
  border-radius: 10px;
}

main .page_wrap .page_contents .detail_wrap .btn_wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
  margin-top: 11px;
  border-top: 1px solid rgba(228, 234, 240, 0.6);
  padding-top: 11px;
}

main .page_wrap .page_contents .detail_wrap table + .btn_wrap {
  border-top: none;
  padding-top: 0;
}

main .page_wrap .page_contents .detail_wrap .btn_wrap .btn_list {
  width: 68px;
  height: 40px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  border-radius: 4px;
  background: #64829b;
  display: flex;
  align-items: center;
  justify-content: center;
}

main .page_wrap .page_contents .detail_wrap .btn_wrap .btn_list:hover {
  background: #64829b80;
}

main .page_wrap .page_contents .detail_wrap .btn_wrap.no_line {
  border-top: none;
  padding-top: 0;
}

main .page_wrap.blue .page_contents {
  background: rgba(0, 39, 91, 0.6);
}

main .page_wrap.blue .page_contents .tabs .tab.active {
  background: #4c96e2;
}

main .page_wrap.blue .page_contents .content_box.row {
  flex-direction: row;
  align-items: center;
  gap: 56px;
}

main .page_wrap .page_contents .board_wrap .inner table td a {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  color: #fff;
  font-size: 16px;
}

main .page_wrap .page_contents .board_wrap .inner table td a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

main .page_wrap .page_contents .content_box.record {
  padding: 40px 28px;
  gap: 16px;
  flex-direction: row;
}

main .page_wrap .page_contents .content_box.record .record_type {
  width: fit-content;
  height: 100%;
  position: relative;
}

main .page_wrap .page_contents .content_box.record .record_type .info {
  width: 321px;
  height: 420px;
  position: absolute;
  top: 0;
  left: 0;
}

main .page_wrap .page_contents .content_box.record .record_type .info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

main .page_wrap .page_contents .content_box.record .record_type:hover .info::before {
  opacity: 1;
}

main .page_wrap .page_contents .content_box.record .record_type .info span:not(.arrow) {
  color: rgba(255, 255, 255, 0.8);
  font-size: 24px;
  font-weight: 600;
  position: absolute;
  top: 28px;
  left: 24px;
  z-index: 1;
  transition: color 0.3s ease;
}

main .page_wrap .page_contents .content_box.record .record_type:hover .info span:not(.arrow) {
  color: #fff;
}

main .page_wrap .page_contents .content_box.record .record_type .info .arrow {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 27px;
  border: 1px solid rgba(82, 204, 147, 0.4);
  background: url("/next/images/forest/ico/ico_arrow.svg") rgba(82, 204, 147, 0.1) no-repeat center center;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 24px;
  right: 24px;
  z-index: 1;
}

main .page_wrap .page_contents .content_box.record .record_item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

main .page_wrap .page_contents .content_box.record .record_item img.pc {
  width: 321px;
  height: 260px;
}

main .page_wrap .page_contents .content_box.record .record_item .info {
  width: 321px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

main .page_wrap .page_contents .content_box.record .record_item .info .title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

main .page_wrap .page_contents .content_box.record .record_item .info .title::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("/next/images/forest/ico/ico_arrow.svg") no-repeat center center;
  background-size: 20px 20px;
}

main .page_wrap .page_contents .content_box.record .record_item .info .desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 174%;
  opacity: 0.5;
}

main .page_wrap .page_contents .content_box.record.type_03 .img_list {
  width: 100%;
}

main .page_wrap .page_contents .content_box.record.type_03 .img_box img {
  width: 428px;
  height: 337px;
  object-fit: cover;
}

main .page_wrap .page_contents .content_box.record.type_02 {
  padding: 40px 28px;
  background: rgba(255, 255, 255, 0.1);
  gap: 20px;
}

main .page_wrap .page_contents .content_box.record.type_03 {
  padding: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

main .page_wrap .page_contents .content_box.record.type_03 .img_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

main .page_wrap .page_contents .content_box.record.type_04 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px 20px;
}

main .page_wrap .page_contents .content_box.record.type_05 {
  display: flex;
  flex-direction: column;
}

main .page_wrap .page_contents .content_box.record.type_04 .record_item img {
  width: 321px;
  height: 260px;
}

main .page_wrap .page_contents .history_wrap {
  display: none;
}

main .page_wrap .page_contents .left_wrap {
  width: 315px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

main .page_wrap .page_contents .left_wrap .order_tab {
  width: 100%;
  height: 79px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
}

main .page_wrap .page_contents .left_wrap .order_tab .btn_order {
  flex: 1;
  height: 100%;
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

main .page_wrap .page_contents .left_wrap .order_tab .btn_order.active {
  background: #52cc93;
  color: #0b1110;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

main .page_wrap .page_contents .left_wrap .order_tab .btn_order:not(.active):hover {
  background: rgba(255, 255, 255, 0.2);
}

main .page_wrap .page_contents .left_wrap .filter_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
}

main .page_wrap .page_contents .left_wrap .filter_wrap .search_category {
  display: none;
}

main .page_wrap .page_contents .left_wrap .filter_wrap .input_wrap {
  width: 100%;
  height: 48px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 32px;
  border: 1px solid #d7dee4;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  position: relative;
}

main .page_wrap .page_contents .left_wrap .filter_wrap .input_wrap .btn_search {
  width: 24px;
  height: 24px;
  background: url("/next/images/forest/ico/ico_search.svg") no-repeat center center;
  background-size: 24px 24px;
}

main .page_wrap .page_contents .left_wrap .filter_wrap .input_wrap input {
  width: 100%;
  height: 100%;
  background: none;
  outline: none;
  border: none;
  font-size: 16px;
  color: #fff;
}

main .page_wrap .page_contents .left_wrap .filter_wrap .input_wrap input::placeholder {
  color: #fff;
}

main .page_wrap .page_contents .left_wrap .filter_wrap .filter_list {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}

main .page_wrap .page_contents .left_wrap .filter_wrap .filter_list .btn_filter {
  width: 100%;
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid #cdd1d5;
  padding: 12px 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 500;
  line-height: 174%;
  text-align: left;
  transition: all 0.3s ease;
}

main .page_wrap .page_contents .left_wrap .filter_wrap .filter_list .btn_filter.active {
  border-bottom: 3px solid #fff;
  background: rgba(255, 255, 255, 0.12);
}

main .page_wrap .page_contents .left_wrap .filter_wrap .filter_list .btn_filter:not(.active):hover {
  background: rgba(255, 255, 255, 0.1);
}

main .page_wrap .page_contents .term_wrap {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 32px;
}

main .page_wrap .page_contents .content_box {
  width: 1400px;
  padding: 40px;
}

main .page_wrap .page_contents .content_box .term_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

main .page_wrap .page_contents .content_box .term_list .term_item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

main .page_wrap .page_contents .content_box .term_list .term_item:first-child span {
  margin-top: 0;
}

main .page_wrap .page_contents .content_box .term_list .term_item span {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 174%;
  margin-top: 24px;
}

main .page_wrap .page_contents .content_box .term_list .term_item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 500;
  line-height: 174%;
  margin-bottom: 16px;
}

main .page_wrap .page_contents .content_box.type_01 {
  gap: 36px;
  align-items: center;
}

main .page_wrap .page_contents .filter_list.dot .btn_filter {
  position: relative;
  gap: 12px;
  padding-left: 36px !important;
}

main .page_wrap .page_contents .filter_list.dot .btn_filter::before {
  content: "";
  position: relative;
  top: -5px;
  left: -10px;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
}

main .page_wrap .page_contents .content_box .img_btn_box .btn_move.unesco {
  display: flex;
  padding: 8px 32px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(7px);
  color: #004c98;
  font-size: 18px;
  font-weight: 500;
}

main .page_wrap .page_contents .content_box .img_btn_box .btn_move.unesco:hover {
  background: #fff;
}

main .page_wrap .page_contents .content_box .img_btn_box .btn_move.unesco::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("/next/images/forest/ico/ico_move_blue.svg") no-repeat center center;
  background-size: 20px 20px;
}

main .page_wrap .page_contents .content_box .img_btn_box .btn_move.unesco img {
  width: 80px;
  height: 61px;
}

main .page_wrap .page_contents .content_box.record .record_type .info .arrow.blue {
  background: url("/next/images/forest/ico/ico_arrow_white.svg") no-repeat center center;
  background-size: 16px 16px;
  border-radius: 18px;
  border: 1px solid #52a7ff;
  background-color: #52a7ff;
}

main .page_wrap .page_contents .content_box.record .record_type .info:hover .arrow.blue {
  border: 1px solid #388fe9;
  background-color: #388fe9;
}

main .page_wrap .page_contents .content_box.record .record_item .info .title::after {
  background: url("/next/images/forest/ico/ico_arrow_white.svg") no-repeat center center;
}

main .page_wrap .page_contents .content_box .no_result {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 500;
  min-height: 520px;
}

main .page_wrap .page_contents .content_box .no_result.type_01 {
  min-height: 1034px;
}

main .page_wrap .page_contents .content_box .no_result img {
  width: 80px;
  height: 80px;
}

.custom_size_01 {
  width: 1045px !important;
  display: flex;
  justify-content: center;
}

.custom_size_02 {
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 1114px;
}

main .page_wrap.blue .page_contents .btn_back {
  align-self: end;
  width: fit-content;
  display: flex;
  padding: 8px 20px;
  justify-content: center;
  align-items: center;
  gap: 2px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(7px);
  position: relative;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
}

main .page_wrap.blue .page_contents .btn_back::before {
  content: "";
  position: relative;
  width: 18px;
  height: 20px;
  background: url("/next/images/forest/ico/ico_arrow_white.svg") no-repeat center center;
  background-size: 18px 18px;
  transform: rotate(180deg);
}

main .page_wrap.blue .page_contents .btn_back:hover {
  background: rgba(255, 255, 255, 0.3);
}

main .page_wrap.blue .page_contents .content_box.record .record_list {
  display: flex;
  gap: 16px;
}

main .page_wrap.blue .page_contents .content_box.record .record_list.type_01 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

main .desc_wrap .desc_content .icon_wrap {
  width: 100%;
  display: flex;
  align-items: center;
}

main .desc_wrap .desc_content .icon_wrap .icon_item:first-child {
  min-width: fit-content;
}

main .desc_wrap .desc_content .icon_wrap .icon_item:last-child {
  flex: 1;
}

main .desc_wrap .desc_content .icon_wrap .icon_item {
  border-radius: 8px;
  display: flex;
  align-items: center;
  height: 49px;
  padding: 12px;
  gap: 8px;
}

main .desc_wrap .desc_content .icon_wrap .icon_item .button_item .img_circle {
  width: 24px;
  min-width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

main .desc_wrap .desc_content .icon_wrap .icon_item .button_item {
  display: flex;
  align-items: center;
  gap: 5px;
}

main .desc_wrap .desc_content .icon_wrap .icon_item .button_item span {
  width: 50px;
  min-width: 50px;
  font-size: 14px;
}

main .desc_wrap .desc_content .icon_wrap .icon_item > span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

/* layer popup */
.layer_container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.layer_container .dim {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
}

.layer_wrap {
  width: 666px;
  height: fit-content;
  position: relative;
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.layer_container .layer_wrap .layer_header {
  height: 59px;
  display: flex;
  align-items: center;
}

.layer_container .layer_wrap .layer_header .inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}

.layer_container .layer_wrap .layer_header .inner .header_bg {
  border-radius: 8px 0 0 0;
  background-color: rgba(255, 255, 255, 0.8);
  width: calc(100% - 104px);
}

.layer_container .layer_wrap .layer_header .inner .header_bg img {
  width: 100%;
  height: 100%;
}

.layer_container .layer_wrap .layer_header .btn_close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
}

.layer_container .layer_wrap .layer_body {
  padding: 0 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0 0 8px 8px;
}

.layer_container .layer_wrap .layer_body .item_box {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
}

.layer_container .layer_wrap .layer_body .item_box .item_wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.layer_container .layer_wrap .layer_body .item_box .item {
  box-sizing: content-box;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(33, 33, 33, 0.52);
}

.layer_container .layer_wrap .layer_body .item_box .item:first-child {
  padding: 0 0 14px;
}

.layer_container .layer_wrap .layer_body .item_box .item .label {
  width: 100px;
  min-width: 100px;
  color: rgba(33, 33, 33, 0.7);
  font-size: 12px;
  font-weight: 600;
}

.layer_container .layer_wrap .layer_body .item_box .item .value {
  color: #212121;
  font-size: 14px;
  font-weight: 500;
}

.layer_container .layer_wrap .layer_body .item_box .item.title .value {
  width: 100%;
}

.layer_container .layer_wrap .layer_body .content_box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.layer_container .layer_wrap .layer_body .content_box p {
  color: #212121;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-indent: 0;
}

.layer_container .layer_wrap .layer_body .audio_box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.layer_container .layer_wrap .layer_body .audio_box .title {
  color: #1f1f1f;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 17px;
}

.layer_container .layer_wrap .layer_body .audio_box .desc {
  color: #1f1f1f;
  text-align: center;
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 48px;
}

.layer_container .layer_wrap .layer_body .audio_box .player_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.layer_container .layer_wrap .layer_body .audio_box .player_wrap .btn_wrap {
  display: flex;
  align-items: end;
  gap: 40px;
}

.layer_container .layer_wrap .layer_body .audio_box .player_wrap .progress_wrap {
  width: 284px;
  height: 10px;
  background: rgba(82, 203, 147, 0.35);
  border-radius: 10px;
  overflow: hidden;
}

.layer_container .layer_wrap .layer_body .audio_box .player_wrap .progress_wrap .progress_bar {
  width: 0;
  height: 100%;
  background: #52cb93;
  border-radius: 10px;
}

.layer_container .layer_wrap .layer_body .audio_box .player_wrap audio {
  display: none;
}

.layer_container .layer_wrap .layer_body .mo_popup {
  display: none;
}

.layer_container .layer_wrap .layer_body .pc_popup {
  width: 100%;
  display: flex;
}

.layer_container .layer_wrap .layer_body .pc_popup table {
  width: 100%;
  border-top: 1px solid rgba(33, 33, 33, 0.52);
}

.layer_container .layer_wrap .layer_body .pc_popup table th {
  height: 46px;
  text-align: center;
  padding: 4px 12px;
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  font-weight: 400;
  border-bottom: 1px solid rgba(33, 33, 33, 0.52);
  border-right: 1px solid rgba(33, 33, 33, 0.52);
}

.layer_container .layer_wrap .layer_body .pc_popup table td {
  height: 46px;
  text-align: left;
  padding: 4px 12px;
  color: #212121;
  font-size: 14px;
  border-bottom: 1px solid rgba(33, 33, 33, 0.52);
  border-right: 1px solid rgba(33, 33, 33, 0.52);
}

.layer_container .layer_wrap .layer_body .pc_popup table td:last-child {
  border-right: none;
}

/* btn_top */
.btn_top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid #cdd1d5;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 16px;
  color: #fff;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease, z-index 0.3s ease;
}

.btn_top::before {
  content: "";
  position: relative;
  width: 24px;
  height: 24px;
  background: url("/next/images/forest/ico/ico_scroll_top.svg") no-repeat center center;
  background-size: 24px 24px;
  background-position: 0 1px;
}

.mo {
  display: none;
}

.pc {
  display: block;
}

@media (max-height: 940px) {
  main .main_wrap .main_box .desc_wrap .desc_box .desc_content .desc_item ul li p {
    font-size: 13px;
  }
  main .main_wrap .main_box .desc_wrap .desc_box .desc_content .desc_table_wrap table th,
  main .main_wrap .main_box .desc_wrap .desc_box .desc_content .desc_table_wrap table td {
    font-size: 13px;
  }
  main .main_wrap .main_box .desc_wrap .desc_box .desc_content .desc_item > span {
    font-size: 16px;
  }
  main .main_wrap .main_box .desc_wrap .desc_title {
    font-size: 16px;
    width: 120px;
  }
  main .main_wrap .main_box .box_wrap {
    padding-top: 14vh;
  }
  main .desc_wrap .desc_content .icon_wrap .icon_item .button_item span {
    font-size: 11px;
    width: fit-content;
    min-width: fit-content;
  }
  main .desc_wrap .desc_content .icon_wrap .icon_item > span {
    font-size: 10px;
  }
  main .desc_wrap .desc_content .icon_wrap .icon_item {
    height: 56px;
    padding: 9px;
  }
  main .main_wrap .main_box .desc_wrap .desc_title {
    height: 30px !important;
    min-height: 30px !important;
  }
}

@media (max-height: 900px) {
  main .main_wrap .main_box .desc_wrap .desc_box .desc_content .desc_item ul li p {
    font-size: 12px;
  }
  main .main_wrap .main_box .desc_wrap .desc_box .desc_content .desc_table_wrap table th,
  main .main_wrap .main_box .desc_wrap .desc_box .desc_content .desc_table_wrap table td {
    font-size: 12px;
  }
  main .main_wrap .main_box .desc_wrap .desc_box .desc_content .desc_item > span {
    font-size: 16px;
  }
  main .main_wrap .main_box .desc_wrap .desc_title {
    font-size: 16px;
    width: 120px;
  }
  main .main_wrap .main_box .box_wrap {
    padding-top: 11vh;
  }
}

@media (max-height: 870) {
  main .main_wrap .main_box .box_wrap {
    padding-top: 10vh;
  }
}
