﻿@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Italianno|Lora:400,700|Noto+Serif+TC:300,500&display=swap");
* {
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

h3 {
  font-family: font_en;
}

a {
  text-decoration: none;
  color: inherit;
  outline: 0;
}

input::-ms-expand,
select::-ms-expand {
  display: none;
  outline: 0;
}

select {
  -webkit-appearance: inherit;
  border-radius: 0;
  box-shadow: none;
}

br {
  font-family: sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

.clear {
  clear: both;
}

.ui-widget {
  font-family: "Lato", "Noto Serif TC", "微軟正黑體", sans-serif;
}

body {
  -webkit-text-size-adjust: 100%;
  margin: 0 auto;
  width: 100%;
  font-size: 16px;
  overflow-x: hidden;
  font-family: "Lato", "Noto Serif TC", "微軟正黑體", sans-serif;
  min-height: 100vh;
  letter-spacing: 1px;
  background-image: url(/images/2024/bg.jpg);
  padding-top: 220px;
}
@media only screen and (max-width: 1200px) {
  body {
    padding-top: 125px;
  }
}

.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

#not_found {
  margin-bottom: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 65px;
}
#not_found img {
  mix-blend-mode: multiply;
}
#not_found .not_found_text {
  font-size: 22px;
  margin: 50px 0 30px 0;
}
#not_found .go_home {
  display: flex;
  align-items: center;
}
#not_found .go_home img {
  mix-blend-mode: unset;
}
#not_found .go_home .go_home_btn {
  width: 44px;
  height: 44px;
  background-color: black;
  border-radius: 50%;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#not_found .go_home .go_home_btn:hover {
  background-color: #dcdc97;
}
#not_found .go_home a {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 699px) {
  #not_found img {
    width: 77%;
  }
  #not_found .go_home {
    display: flex;
    align-items: center;
  }
  #not_found .go_home img {
    width: auto;
  }
}

#loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 999;
  background-color: #f4f4f4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#loader img {
  position: relative;
  max-width: 38%;
}

#loader.hide {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  opacity: 0;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

#loader.none {
  display: none;
  -webkit-transition: all 0s ease;
  transition: all 0s ease;
}

#loader.wait {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
}

#loader.wait.ani {
  top: 0;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

@media all and (max-width: 1024px) {
  #loader {
    height: 100%;
  }
}
.swiper-button-prev, .swiper-button-next {
  position: absolute;
  width: 44px;
  height: 44px;
  background: white;
  border: 2px solid black;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.swiper-button-prev:before, .swiper-button-next:before {
  content: "";
  background-image: url(/images/2024/arrow1.png);
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  transition: all 0.3s ease;
}
.swiper-button-prev:after, .swiper-button-next:after {
  content: "";
  background-image: url(/images/2024/arrow2.png);
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  right: 33px;
  transition: all 0.3s ease;
  background-size: 57%;
}
@media only screen and (min-width: 1200px) {
  .swiper-button-prev:hover, .swiper-button-next:hover {
    background: black;
  }
  .swiper-button-prev:hover:before, .swiper-button-next:hover:before {
    opacity: 0;
    right: -33px;
  }
  .swiper-button-prev:hover:after, .swiper-button-next:hover:after {
    opacity: 1;
    right: 0;
  }
}

.swiper-button-prev {
  transform: rotate(180deg) translateY(50%);
}

.swiper-button-next {
  left: auto;
  right: 0;
}

@media only screen and (min-width: 1025px) and (max-height: 600px) {
  body::after {
    content: "請使用畫面大於600px的裝置,或是更大的螢幕設備,以達到最佳觀看品質!";
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    font-size: 30px;
    align-items: center;
  }
}
input,
select,
textarea {
  font-family: "Lato", "Noto Serif TC", "微軟正黑體", sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  line-height: 1.2em;
  outline: 0;
  border: 0;
  background-color: transparent;
}

#top_banner {
  height: 390px;
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: -1;
}
#top_banner .banner {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #040404;
}
#top_banner .hover_effect_box {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#top_banner .hover_effect_box .hover_effect_img {
  display: block;
  height: 100%;
  width: 100%;
}
#top_banner .hover_effect_box .hover_effect_img img {
  display: none;
}
#top_banner .hover_effect_box .hover_effect_img canvas {
  height: 100%;
}
#top_banner .hover_effect_box .shape-wrap {
  position: relative;
  z-index: 10;
  margin: -5px 0 0 0;
  width: 100%;
}
#top_banner .hover_effect_box .shape-wrap::before {
  content: "";
  background-color: black;
  width: 100%;
  height: 425px;
  top: 0;
  left: 0;
  position: absolute;
}
#top_banner .hover_effect_box .shape {
  height: 100vh;
  width: 100%;
  display: block;
  fill: #010101;
  top: 100%;
}

.top_banner {
  position: relative;
  height: 250px;
  display: block;
  margin-bottom: 0;
}

@media all and (max-width: 1024px) {
  .top_banner {
    height: 270px;
  }
}
@media all and (max-width: 699px) {
  .top_banner {
    height: 216px;
  }
  .top_banner .word .tw {
    font-weight: bold;
  }
}
.top_banner .bg {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
}

.top_banner.show .bg {
  opacity: 1;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.top_banner.show .word {
  opacity: 1;
}

.top_banner .word {
  position: absolute;
  color: white;
  top: 0;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: center;
  align-content: center;
  padding-left: 90px;
  opacity: 0;
}

@media all and (max-width: 699px) {
  .top_banner .word {
    -ms-flex-line-pack: end;
    align-content: flex-end;
    padding-bottom: 50px;
    width: 100%;
    padding-right: 27px;
    padding-left: 27px;
  }
}
.top_banner .word .tw {
  position: relative;
  font-size: 36px;
  display: block;
  width: 100%;
  letter-spacing: 3px;
  font-weight: bold;
}

@media all and (max-width: 1024px) {
  .top_banner .word .tw {
    font-size: 26px;
  }
}
.top_banner .word .en {
  position: relative;
  font-size: 18px;
  font-family: system-ui, sans-serif;
  opacity: 0.4;
  display: block;
  margin-top: 8px;
  font-weight: bold;
}

@media all and (max-width: 1024px) {
  .top_banner .word .en {
    font-size: 16px;
  }
}
@media all and (max-width: 699px) {
  .top_banner .word .en {
    font-size: 14px;
  }
}
.inner_width {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 135px;
}

#main_title {
  position: absolute;
  color: white;
  display: block;
  top: -30px;
  width: 121px;
}
#main_title.show .bg_color1::after, #main_title.show .bg_color2::after {
  width: 100%;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
#main_title.show .en, #main_title.show h1 {
  opacity: 1;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
#main_title .bg_color1 {
  position: absolute;
  width: 163px;
  height: 24px;
  transform: skewX(-20deg) rotate(-18deg);
  right: -14px;
  top: 23px;
  z-index: 1;
}
#main_title .bg_color1::after {
  content: "";
  background-color: #1616d4;
  width: 0;
  height: 100%;
  display: block;
  position: absolute;
  right: 0;
}
#main_title .bg_color2 {
  content: "";
  position: absolute;
  width: 163px;
  height: 24px;
  transform: skewX(-20deg) rotate(-18deg);
  left: -27px;
  top: 3px;
  z-index: 1;
}
#main_title .bg_color2::after {
  content: "";
  background-color: #1616d4;
  width: 0;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
}
#main_title .en {
  font-size: 40px;
  font-weight: 900;
  transform: skewX(-10deg);
  display: block;
  margin-bottom: 3px;
  left: 2px;
  z-index: 2;
  opacity: 0;
}
#main_title h1 {
  font-size: 20px;
  font-weight: 500;
  display: block;
  z-index: 2;
  opacity: 0;
  width: 250px;
}

.arrow_more {
  display: block;
}
.arrow_more::before {
  content: "";
  border: 2px solid black;
  width: 7px;
  height: 7px;
  position: absolute;
  border-left: 0;
  border-top: 0;
  transform: rotate(-45deg);
  left: 0;
  top: 50%;
  margin-top: -2px;
}
.arrow_more::after {
  content: "";
  border: 2px solid black;
  width: 7px;
  height: 7px;
  position: absolute;
  border-left: 0;
  border-top: 0;
  transform: rotate(-45deg);
  left: 7px;
  top: 50%;
  margin-top: -2px;
}

.editor {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 25px;
}

.back_button {
  width: 190px;
  height: 44px;
  border: 2px solid white;
  color: white;
  display: block;
  line-height: 40px;
  text-align: center;
}
.back_button span {
  font-size: 14px;
  padding-left: 30px;
}
.back_button span::before {
  border-color: white;
  transform: rotate(135deg);
  left: 50%;
  margin-left: -37px;
}
.back_button span::after {
  border-color: white;
  transform: rotate(135deg);
  left: 50%;
  margin-left: -30px;
}
.back_button:hover span::before {
  animation: arrow_ani 1s ease-in-out infinite;
}
.back_button:hover span::after {
  animation: arrow_ani 1s ease-in-out infinite;
}

@keyframes BGrun {
  0% {
    background-position: -20% 0;
  }
  100% {
    background-position: -20% -105%;
  }
}
@keyframes arrow_ani {
  0% {
    transform: translateX(0px) rotate(135deg);
  }
  80%, 100% {
    opacity: 0;
    transform: translateX(-30px) rotate(135deg);
  }
}
.arrow_ani {
  animation-duration: 1s;
  animation-name: arrow_ani;
}

@media only screen and (max-width: 1024px) and (max-height: 1030px) {
  #top_banner {
    height: 300px;
  }
}
@media only screen and (max-width: 650px) {
  .inner_width {
    width: calc(100% - 80px);
    padding-bottom: 25px;
  }
  #top_banner {
    height: 54vw;
    max-height: 250px;
  }
  #main_title .en {
    font-size: 24px;
  }
  #main_title h1 {
    font-size: 16px;
    font-weight: bold;
  }
  #main_title .bg_color1 {
    right: 28px;
    width: 116px;
  }
  #main_title .bg_color2 {
    left: -22px;
    width: 116px;
  }
  .editor {
    color: rgba(255, 255, 255, 0.6);
  }
  .back_button {
    margin: 0 auto;
  }
}
#menu_btn {
  position: fixed;
  width: 50px;
  height: 50px;
  right: 4px;
  top: 10px;
  display: none;
}

.mb_search_btn {
  position: fixed;
  width: 272px;
  height: 50px;
  right: 4px;
  top: 11px;
  display: none;
}
.mb_search_btn .search_input_mb {
  position: relative;
  border: 2px solid black;
  width: 270px;
  height: 48px;
  font-size: 16px;
  border-radius: 25px;
  background-color: white;
  padding-left: 14px;
  right: 0;
  visibility: hidden;
  opacity: 0;
  outline: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-family: system-ui, sans-serif;
}
.mb_search_btn #quick_search {
  position: absolute;
  right: 2px;
  top: 0px;
  width: 48px;
  height: 48px;
  border: 2px solid transparent;
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center;
  background-image: url(../images/search.png);
  transition: all 0.5s ease;
  border-radius: 50%;
  cursor: pointer;
  z-index: 6;
}

#menu_btn span {
  position: absolute;
  width: 22px;
  height: 2px;
  background-color: black;
  top: 50%;
  left: 14px;
  margin-top: -1px;
}

#menu_btn::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 2px;
  background-color: black;
  top: 50%;
  left: 14px;
  margin-top: -7px;
}

#menu_btn::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 2px;
  background-color: black;
  top: 50%;
  left: 14px;
  margin-top: 5px;
}

@media all and (max-width: 1200px) {
  #menu_btn {
    display: block;
    overflow: hidden;
    z-index: 10;
    right: 1vw;
    top: 8px;
  }
  .mb_search_btn {
    display: block;
    overflow: hidden;
    z-index: 10;
    right: 55px;
  }
  #menu_btn.hide {
    opacity: 0;
    transform: translateX(100%);
  }
}
.inner_section {
  padding: 0 180px 0;
}
@media only screen and (max-width: 1500px) {
  .inner_section {
    padding: 0 5vw 0;
  }
}
@media only screen and (max-width: 1200px) {
  .inner_section {
    padding: 0 16px 0;
  }
}

header {
  background-color: #f4f4f4;
  position: fixed;
  height: 199px;
  padding: 50px 180px 0;
  display: flex;
  width: calc(100% - 4px);
  top: 0;
  left: 0;
  z-index: 100;
  justify-content: space-between;
  align-items: flex-start;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .topLink {
  position: absolute;
  width: calc(100% - 360px);
  left: 50%;
  transform: translateX(-50%);
  top: 145px;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
  line-height: 50px;
  display: flex;
  flex-wrap: wrap;
  background-color: #f4f4f4;
}
header .topLink .link {
  position: relative;
  font-size: 20px;
  width: 10%;
  text-align: center;
  background: transparent;
  transition: all 0.3s ease;
}
header .topLink .link.hasSub .sub {
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
}
@media all and (min-width: 1025px) {
  header .topLink .link.hasSub:hover .sub {
    pointer-events: all;
    opacity: 1;
  }
}
header .topLink .link .sub {
  position: absolute;
  width: 100%;
  background-color: #f4f4f4;
  border: 2px solid black;
  top: 100%;
}
header .topLink .link .sub .link {
  width: 100%;
  display: block;
}
@media all and (min-width: 1025px) {
  header .topLink .link:hover {
    background: #dcdc97;
  }
}
header .mb_topLink {
  position: absolute;
  width: 100%;
  left: 0px;
  top: 62px;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
  line-height: 45px;
  display: flex;
  background-color: #ffffff;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}
header .mb_topLink .link {
  position: relative;
  font-size: 18px;
  padding: 0px 17px;
  text-align: center;
  background: transparent;
  transition: all 0.3s ease;
}
header .mb_topLink .link.hasSub .sub {
  transition: all 0.3s ease;
}
header .mb_topLink .link.hasSub:hover .sub {
  pointer-events: all;
  opacity: 1;
}
header .mb_topLink .link .sub {
  position: absolute;
  width: 100%;
  background-color: #f4f4f4;
  border: 2px solid black;
  top: 100%;
  right: 0;
  pointer-events: none;
  opacity: 1;
}
header .mb_topLink .link .sub .link {
  width: 100%;
  display: block;
}
header .mb_topLink .active {
  background: #dcdc97;
}

header.short {
  height: 145px;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

header.short.inner {
  height: 145px;
}

header.short #logo {
  /*   -webkit-transform: scale(0.8);
     transform: scale(0.8);
     -webkit-transform-origin: left;
     transform-origin: left;
     top: 21px;*/
}

header.short .main_menu .link {
  font-size: 16px;
  line-height: 18px;
}

header.short .main_menu .link::before {
  bottom: -14px;
  left: 5px;
}

header.short.up {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

header.inner {
  height: 199px;
}

header.show {
  visibility: visible;
  opacity: 1;
  top: 0;
}

@media only screen and (max-width: 1500px) {
  header {
    padding: 50px 5vw 0;
  }
  header .topLink {
    width: 89.7%;
    top: auto;
    bottom: 20px;
  }
  header .topLink .link {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1200px) {
  header .topLink {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100px);
    justify-content: space-between;
    width: 30%;
    display: flex;
    width: 356px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 999;
    top: 80px;
    border: 0;
    bottom: auto;
    left: 30px;
    width: 350px;
    background-color: transparent;
    align-items: flex-start;
  }
  header .topLink.show {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    transform: translateX(0);
    -webkit-transition: all 0.5s ease 0.2s;
    -moz-transition: all 0.5s ease 0.2s;
    -o-transition: all 0.5s ease 0.2s;
    -ms-transition: all 0.5s ease 0.2s;
    transition: all 0.5s ease 0.2s;
  }
  header .topLink .link {
    display: block;
    text-align: left;
    border-bottom: 0;
    font-size: 18px;
    width: 145px;
    line-height: 20px;
    float: none;
    margin-bottom: 24px;
    padding-bottom: 5px;
    margin-left: 0;
  }
  header .topLink .link.hasSub {
    border: 0;
  }
  header .topLink .link.hasSub .name {
    display: block;
    border-bottom: 0;
    margin-bottom: 12px;
  }
  header .topLink .link.hasSub .sub {
    position: relative;
    opacity: 1;
    pointer-events: all;
    top: auto;
    border: 0;
    background-color: transparent;
    padding-left: 10px;
    border-left: 2px solid black;
    margin-left: 7px;
  }
  header .topLink .link.hasSub .sub .link {
    width: 100%;
    display: block;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  header .topLink .link.hasSub .sub .link:first-child {
    margin-bottom: 18px;
  }
  header .mb_topLink {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}
@media only screen and (max-width: 650px) {
  header .topLink {
    width: calc(100% - 60px);
    max-width: 270px;
  }
  header .topLink .link {
    width: 100px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 500px) {
  .mb_search_btn {
    width: 300px;
  }
  .mb_search_btn .search_input_mb {
    width: 295px;
  }
}
@media only screen and (max-width: 1200px) {
  header {
    height: 0px;
    padding: 32px 5vw;
  }
}
@media all and (max-width: 1024px) {
  header {
    padding: 20px 5vw;
    height: 0px;
    border-bottom: 1px solid #b1b1b1;
  }
  header.inner {
    height: 153px;
    border-bottom: 1px solid #b1b1b1;
  }
}
@media all and (max-width: 1200px) {
  header.inner {
    height: 54px;
  }
  .top_banner .word {
    padding-left: 27px;
  }
}
@media all and (max-width: 1200px) {
  header {
    width: 100vw;
    top: 0;
    padding: 0;
    border: 0;
  }
  header.short {
    transform: none;
  }
  header::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 62px;
    top: 0px;
    background-color: white;
  }
  .swiper-button-prev, .swiper-button-next {
    width: 36px;
    height: 36px;
  }
}
header #logo {
  position: relative;
  -webkit-transform-origin: left;
  transform-origin: left;
  top: 3px;
  z-index: 11;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

header #logo a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  width: 280px;
  color: black;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 18px;
}

@media all and (max-width: 1024px) {
  header #logo a {
    margin-top: 37px;
  }
}
@media all and (max-width: 1200px) {
  header #logo a {
    margin-top: 15px;
    width: auto;
    left: 12px;
  }
  header #logo a img {
    height: 28px;
  }
}
header #logo img {
  position: relative;
  height: 42px;
}

@media all and (max-width: 1200px) {
  header #logo img {
    height: 23px;
  }
}
header #logo .name {
  position: relative;
  font-family: Century Gothic, sans-serif;
  font-weight: bold;
  margin-left: 20px;
  border-left: 2px solid black;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 20px;
}

@media all and (max-width: 1200px) {
  header #logo .name {
    display: none;
  }
}
@media all and (max-width: 1024px) {
  header #logo img {
    height: 35px;
  }
  header #logo .name {
    margin-left: 15px;
    height: 35px;
    padding-left: 15px;
  }
}
header .main_menu {
  position: relative;
}

@media all and (max-width: 1200px) {
  header .main_menu {
    background-color: white;
    position: fixed;
    width: 100%;
    left: 0;
    height: 100vh;
    top: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header .main_menu.show {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    z-index: 20;
  }
  header .main_menu .menu_box {
    position: absolute;
    left: 4px;
    width: calc(100% - 8px);
    top: 4px;
    height: calc(100vh - 8px);
    padding-top: 105px;
  }
  header .main_menu .menu_box .search {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 60px);
    border: 2px solid black;
    border-radius: 25px;
    bottom: 11vw;
  }
  header .main_menu .menu_box .close {
    position: absolute;
    z-index: 10;
    width: 33px;
    height: 33px;
    right: 7px;
    top: 7px;
  }
  header .main_menu .menu_box .close::after {
    content: "";
    width: 27px;
    height: 2px;
    position: absolute;
    background-color: black;
    top: 11px;
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    right: 8px;
  }
  header .main_menu .menu_box .close::before {
    content: "";
    width: 27px;
    height: 2px;
    position: absolute;
    background-color: black;
    top: 11px;
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    left: 3px;
  }
  header .main_menu .menu_box .link {
    font-size: 18px;
    width: 145px;
    line-height: 20px;
    margin-left: 30px;
    float: none;
    margin-bottom: 18px;
    padding-bottom: 2px;
  }
  header .main_menu .menu_box .link::after {
    width: 100%;
    height: 1px;
    left: 0;
    top: auto;
    bottom: -1px;
  }
  header .main_menu .menu_box #quick_search {
    width: 48px;
    height: 48px;
    right: -2px;
    top: -2px;
  }
  header .main_menu .menu_box .copyright {
    position: absolute;
    bottom: 0;
    left: 30px;
    border-top: 2px solid black;
    width: calc(100% - 60px);
    padding-bottom: 32px;
    padding-top: 10px;
  }
  header .main_menu .menu_box .copyright::before {
    content: "";
    background-image: url(../images/2024/logo.png);
    position: absolute;
    left: 0;
    width: 135px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: 135px;
    top: 12px;
  }
  header .main_menu .menu_box .copyright::after {
    content: "Copyright © 2024 Wanin. All rights reserved.";
    color: #727272;
    font-size: 12px;
    float: right;
    width: 172px;
    line-height: 15px;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transform-origin: right;
    transform-origin: right;
  }
}
@media all and (max-width: 400px) {
  header .main_menu .menu_box .copyright::before {
    background-size: 90px;
    top: 14px;
  }
}
header .main_menu .link {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  width: 20px;
  display: block;
  line-height: 22px;
  margin-left: 30px;
  height: auto;
  float: right;
  -webkit-transition: all 0s ease;
  transition: all 0s ease;
}

header .main_menu .link::after {
  content: "";
  background-color: black;
  width: 2px;
  position: absolute;
  height: calc(100% - 4px);
  left: -6px;
  top: 3px;
}

header .main_menu .link::before {
  content: "";
  background-color: black;
  width: 6px;
  height: 6px;
  position: absolute;
  bottom: -20px;
  -webkit-transform: rotate(45deg) translateY(0) scale(0);
  transform: rotate(45deg) translateY(0) scale(0);
  left: 7px;
  border-radius: 0%;
  opacity: 0;
  -webkit-transform-origin: center;
  transform-origin: center;
}

header .main_menu .link.router-link-exact-active::before {
  opacity: 1;
  -webkit-transform: rotate(45deg) translateY(0px) scale(1);
  transform: rotate(45deg) translateY(0px) scale(1);
  border-radius: 0%;
}

@media all and (min-width: 1025px) {
  header .main_menu .link::before {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  header .main_menu .link:hover::before {
    opacity: 1;
    -webkit-transform: rotate(45deg) translateY(0px) scale(1);
    transform: rotate(45deg) translateY(0px) scale(1);
    border-radius: 0%;
  }
}
@media all and (max-width: 1024px) {
  header .main_menu .link {
    font-size: 16px;
    width: 20px;
    line-height: 20px;
    margin-left: 25px;
  }
  header .main_menu .link::before {
    left: 5px;
    bottom: -14px;
  }
}
@media all and (max-width: 1200px) {
  header .main_menu .link {
    background-color: white;
  }
  header .main_menu .link::before {
    left: auto;
    right: 2px;
    bottom: 10px;
  }
}
header .main_menu .search {
  position: relative;
  float: right;
}

header .main_menu .search.show .search_input {
  visibility: visible;
  opacity: 1;
}

header .mb_search_btn.show .search_input_mb {
  visibility: visible;
  opacity: 1;
}

header .mb_search_btn.show #quick_search {
  background-image: url(../images/2024/search.png);
  transition: all 0.5s ease;
  background-color: black;
}

header .main_menu .search.show .btn {
  display: none;
}

header .main_menu .btn {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 5;
}

@media all and (max-width: 1200px) {
  header .main_menu .btn {
    display: none;
  }
}
header .main_menu .search_input {
  position: relative;
  border: 2px solid black;
  width: 270px;
  height: 44px;
  font-size: 16px;
  border-radius: 20px;
  background-color: white;
  padding-left: 14px;
  right: 0;
  visibility: hidden;
  opacity: 0;
  outline: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-family: system-ui, sans-serif;
}

@media all and (max-width: 1024px) {
  header .main_menu .search_input {
    width: 115px;
  }
}
@media all and (max-width: 1200px) {
  header .main_menu .search_input {
    width: 230px;
    right: auto;
    left: 27px;
    padding-left: 0;
    opacity: 1;
    border: 0;
    visibility: visible;
    font-family: system-ui, sans-serif;
  }
}
header .main_menu span {
  font-size: 20px;
  position: absolute;
  width: 20px;
  top: 0;
  left: 6px;
  font-weight: bold;
  line-height: 24px;
  pointer-events: none;
}

header .main_menu #quick_search {
  position: absolute;
  right: -2px;
  top: 0;
  width: 44px;
  height: 44px;
  border: 2px solid transparent;
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center;
  background-image: url(../images/2024/search.png);
  transition: all 0.5s ease;
  background-color: black;
  border-radius: 50%;
  cursor: pointer;
  z-index: 6;
}
header .main_menu #quick_search:hover {
  background-color: #dcdc97;
}

#gotop {
  position: absolute;
  background-color: #1e1e1e;
  width: 90px;
  height: 90px;
  bottom: 0;
  right: 0;
  z-index: 20;
  cursor: pointer;
}

#gotop span {
  position: absolute;
  color: white;
  width: 100%;
  top: 50%;
  text-align: center;
  font-size: 14px;
  -webkit-transform: translateY(14px);
  transform: translateY(14px);
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media all and (min-width: 1025px) {
  #gotop:hover span {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    opacity: 1;
    -webkit-transition: all 0.3s ease 0.2s;
    transition: all 0.3s ease 0.2s;
  }
  #gotop:hover::before {
    top: 20%;
    opacity: 0;
  }
  #gotop:hover::after {
    top: 20%;
    opacity: 0;
  }
}
@media all and (max-width: 1024px) {
  #gotop {
    height: 150px;
  }
}
@media all and (max-width: 699px) {
  #gotop {
    right: auto;
    left: 0;
    height: 50px;
    width: 113px;
  }
  header .main_menu .menu_box .copyright {
    display: none;
  }
}
#gotop::after {
  content: "";
  width: 20px;
  height: 1px;
  position: absolute;
  background-color: white;
  display: block;
  top: 48%;
  left: 50%;
  -webkit-transform: rotate(26deg);
  transform: rotate(26deg);
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#gotop::before {
  content: "";
  width: 20px;
  height: 1px;
  position: absolute;
  background-color: white;
  display: block;
  top: 48%;
  right: 50%;
  -webkit-transform: rotate(-26deg);
  transform: rotate(-26deg);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media all and (max-width: 699px) {
  #gotop::before, #gotop::after {
    top: 42%;
    width: 18px;
    opacity: 0.7;
  }
}
footer {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-columns: 26% 41% 33%;
  grid-template-columns: 26% 41% 33%;
  height: 180px;
  border-top: 2px solid black;
  background-color: white;
  position: relative;
  z-index: 8;
  grid-gap: 2px;
  background-color: black;
  font-family: system-ui, sans-serif;
}

@media only screen and (max-width: 1530px) {
  footer {
    -ms-grid-columns: 30% 39% 31%;
    grid-template-columns: 30% 39% 31%;
  }
}
@media only screen and (max-width: 1330px) {
  footer {
    -ms-grid-columns: 30% 35% 35%;
    grid-template-columns: 30% 35% 35%;
  }
}
@media all and (max-width: 1024px) {
  footer {
    -ms-grid-rows: 110px auto;
    grid-template-rows: 110px auto;
    -ms-grid-columns: 52% 48%;
    grid-template-columns: 52% 48%;
    height: auto;
    z-index: 60;
  }
}
@media all and (max-width: 699px) {
  footer {
    display: block;
    border: 2px solid black;
    margin: 0 16px;
    margin-bottom: 16px;
  }
}
footer #footer_logo {
  position: relative;
  background-color: white;
  overflow: hidden;
}

@media all and (max-width: 1024px) {
  footer #footer_logo {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 1/1/1/3;
    height: 110px;
    border-bottom: 0;
  }
}
@media all and (max-width: 699px) {
  footer #footer_logo {
    height: 74px;
  }
}
footer #footer_logo a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  width: 240px;
  color: black;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 18px;
  margin-left: 180px;
  margin-top: 59px;
}
@media all and (max-width: 1500px) {
  footer #footer_logo a {
    margin-left: 5vw;
  }
}
@media all and (max-width: 1200px) {
  footer #footer_logo a {
    margin-left: 16px;
  }
}

@media all and (max-width: 1024px) {
  footer #footer_logo a {
    padding-top: 0;
    margin-top: 36px;
  }
}
@media all and (max-width: 699px) {
  footer #footer_logo a {
    width: 200px;
    display: block;
    margin-top: 0;
    line-height: 16px;
    padding-top: 21px;
  }
}
footer #footer_logo img {
  position: relative;
  width: 70%;
}

footer #footer_logo .name {
  position: relative;
  font-family: Century Gothic, sans-serif;
  font-weight: bold;
  margin-left: 15px;
  border-left: 1px solid black;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 17px;
  font-size: 14px;
  line-height: 17px;
}

@media all and (max-width: 699px) {
  footer #footer_logo .name {
    display: none;
  }
}
footer .right_info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: white;
}

footer .right_info .div1 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
}

footer .right_info .div2 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 2/1/3/2;
}

footer .right_info .morelink {
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 14%;
  border-bottom: 2px solid #cecece;
}

@media only screen and (max-width: 1500px) {
  footer .right_info .morelink {
    padding-left: 25px;
  }
}
footer .right_info .morelink label {
  font-weight: bold;
  margin-right: 50px;
  border: 0 !important;
}

@media only screen and (max-width: 1500px) {
  footer .right_info .morelink label {
    margin-right: 30px;
  }
}
@media only screen and (max-width: 1300px) {
  footer .right_info .morelink label {
    margin-right: 20px;
  }
}
footer .right_info .morelink a {
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 25px;
  padding-right: 25px;
  color: #727272;
  font-weight: bold;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media only screen and (max-width: 1500px) {
  footer .right_info .morelink a {
    margin-right: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 1300px) {
  footer .right_info .morelink a {
    margin-right: 10px;
    padding-right: 10px;
  }
}
@media all and (min-width: 1025px) {
  footer .right_info .morelink a:hover {
    color: black;
  }
  footer .right_info .morelink a:hover::before {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1;
    height: 5px;
  }
}
footer .right_info .morelink a::after {
  content: "";
  background-color: #a5a5a5;
  width: 1px;
  height: 13px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -6px;
}

footer .right_info .morelink a::before {
  content: "";
  width: calc(100% - 25px);
  position: absolute;
  bottom: 0;
  background-color: #dcdc97;
  height: 0;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

footer .right_info .morelink a:last-child::after {
  display: none;
}

footer .right_info .copyright {
  font-size: 14px;
  color: #727272;
  padding-left: 14%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 0;
  font-family: system-ui, sans-serif;
}

@media only screen and (max-width: 1500px) {
  footer .right_info .copyright {
    padding-left: 28px;
  }
}
@media only screen and (max-width: 1300px) {
  footer .right_info .copyright {
    padding-left: 28px;
    font-size: 14px;
    padding-right: 90px;
    line-height: 18px;
  }
}
@media all and (max-width: 1024px) {
  footer .right_info .copyright {
    font-size: 14px;
    padding-right: 105px;
  }
}
@media all and (max-width: 699px) {
  footer .right_info .copyright {
    font-size: 14px;
    line-height: 16px;
    height: 50px;
    padding-left: 131px;
    width: 100%;
    padding-right: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    letter-spacing: 1px;
    margin-right: 0;
  }
}
@media all and (max-width: 699px) {
  footer .right_info {
    display: block;
    position: relative;
  }
  footer .right_info .morelink {
    position: relative;
    display: block;
    padding-left: 113px;
    padding-bottom: 4px;
    padding-top: 0;
  }
  footer .right_info .morelink label {
    width: 113px;
    background-color: transparent;
    min-height: 42px;
    color: #727272;
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 14px;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    padding-left: 30px;
    border-right: 2px solid #cecece !important;
  }
  footer .right_info .morelink a {
    margin-right: 0;
    padding-right: 0;
    border-bottom: 1px solid #e5e5e5;
    line-height: 20px;
    padding: 10px 10px 10px 24px;
    font-weight: 400;
  }
  footer .right_info .morelink a:last-child {
    border-bottom: 0;
  }
  footer .right_info .morelink a:after {
    display: none;
  }
}
footer .footer_info {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  /*border-left: 1px solid black;*/
  line-height: 18px;
  position: relative;
  background-color: white;
}

@media only screen and (max-width: 1830px) {
  footer .footer_info .field span {
    width: 70px;
  }
  footer .footer_info .field div {
    padding-left: 15px;
  }
}
@media all and (max-width: 1024px) {
  footer .footer_info {
    display: block;
    border-left: 0;
  }
}
@media all and (max-width: 699px) {
  footer .footer_info {
    border: 0;
  }
}
footer .footer_info .div1 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: 1/1/1/3;
}

footer .footer_info .div1-1 {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-area: 1/3/1/5;
}

footer .footer_info .div2 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-area: 2/1/3/5;
}

footer .footer_info .div3 {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: 3/1/4/3;
}

footer .footer_info .div4 {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-area: 3/3/4/5;
}

footer .footer_info .field {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 2px solid #cecece;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
  border-right: 2px solid #cecece;
}
footer .footer_info .field:nth-child(2), footer .footer_info .field:nth-child(3), footer .footer_info .field:nth-child(5) {
  border-right: 0;
}

footer .footer_info .field.div1, footer .footer_info .field.div1-1 {
  border-top: 0;
}

footer .footer_info .field.div1-1, footer .footer_info .div2, footer .footer_info .div4 {
  /*  border-right: 1px solid #000;*/
}

@media all and (max-width: 1024px) {
  footer .footer_info .field {
    height: 60px;
    border-top: 0;
    border-right: 0;
    border-color: #000;
    border-bottom: 2px solid;
  }
  footer .footer_info .field.div1-1, footer .footer_info .div2, footer .footer_info .div4 {
    border-color: #000;
  }
}
@media all and (max-width: 699px) {
  footer #footer_logo {
    border-bottom: 2px solid;
  }
  footer .footer_info .field {
    border: 0;
    border-bottom: 2px solid #cecece;
    height: auto;
    padding-left: 113px;
  }
  footer .footer_info .field.div1-1, footer .footer_info .div2, footer .footer_info .div4, footer .right_info .morelink label {
    border-color: #cecece;
  }
  footer .footer_info .field::after {
    display: none;
  }
}
footer .footer_info .field span {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 90px;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #e7e7e7;
  border-right: 2px solid #cecece;
  font-weight: bold;
}

@media only screen and (max-width: 1500px) {
  footer .footer_info .field span {
    width: 75px;
  }
}
@media only screen and (max-width: 1500px) {
  footer .footer_info .field span {
    width: 66px;
  }
}
@media all and (max-width: 699px) {
  footer .footer_info .field span {
    width: 113px;
    background-color: transparent;
    min-height: 42px;
    color: #727272;
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 14px;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    padding-left: 30px;
  }
}
footer .footer_info .field div {
  position: relative;
  color: #727272;
  padding-left: 30px;
}

@media only screen and (max-width: 1500px) {
  footer .footer_info .field div {
    padding-left: 18px;
  }
}
@media only screen and (max-width: 1300px) {
  footer .footer_info .field div {
    padding-left: 15px;
    width: calc(100% - 66px);
    padding-right: 13px;
    line-height: 18px;
  }
}
@media all and (max-width: 699px) {
  footer .footer_info .field div {
    padding-left: 24px;
    width: 95%;
    padding-right: 10px;
    line-height: 22px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
footer .footer_info .field a {
  position: relative;
  color: #727272;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

footer .footer_info .field a img {
  position: absolute;
  right: 0px;
  opacity: 0 !important;
  top: 4px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media all and (min-width: 1025px) {
  footer .footer_info .field a:hover {
    color: black;
  }
  footer .footer_info .field a:hover img {
    opacity: 1 !important;
    right: -16px;
  }
}
.articleBox {
  position: relative;
  width: 100%;
  display: block;
  background-color: white;
  border-left: 2px solid black;
  border-right: 2px solid black;
}
.articleBox.videoStyle {
  padding-bottom: 18px;
}
.articleBox.videoStyle .title {
  width: 100%;
  margin-left: 0;
  height: 80px;
  padding: 18px 20px 0 20px;
}
.articleBox .img {
  position: relative;
  height: 0;
  padding-bottom: 56%;
}
.articleBox .img img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
}
.articleBox .img .more {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9098039216);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  opacity: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}
.articleBox .img .more .swiper-button-next {
  position: relative;
  transform: none;
  top: 10px;
}
.articleBox .img .more .swiper-button-next.arrowStyle:before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 9px;
  border-color: transparent transparent transparent #000000;
  background-image: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.articleBox .img .more .swiper-button-next.arrowStyle:after {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .articleBox .img .more .swiper-button-next.arrowStyle:hover:before {
    opacity: 1;
    border-color: transparent transparent transparent #fff;
  }
}
.articleBox .img .more span {
  position: relative;
  margin-right: 0;
  transition: all 0.3s ease;
  font-family: system-ui, sans-serif;
}
.articleBox .text {
  position: relative;
  padding: 23px;
  display: flex;
  align-items: flex-start;
}
.articleBox .type {
  position: relative;
  width: 36px;
  min-width: 36px;
  line-height: 1.2;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
  text-align: center;
  padding: 5px 0;
  font-weight: bold;
  font-family: system-ui, sans-serif;
}
.articleBox .title {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  width: calc(100% - 64px);
  margin-left: 22px;
  margin-top: -4px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media only screen and (min-width: 1200px) {
  .articleBox:hover .img .more {
    opacity: 1;
  }
  .articleBox:hover .img .more span {
    margin-right: 16px;
  }
}
@media only screen and (max-width: 1500px) {
  .articleBox .title {
    font-size: 18px;
    margin-top: -1px;
  }
  .articleBox.videoStyle .title {
    height: 70px;
  }
}

#jumpVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
}
#jumpVideo .box {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
#jumpVideo .box .content {
  position: relative;
  width: 80%;
  padding-bottom: 45%;
  height: 0;
  z-index: 50;
}
#jumpVideo .box iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
#jumpVideo .close {
  position: absolute;
  right: -48px;
  top: -48px;
  width: 45px;
  height: 45px;
  border: 2px solid black;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
#jumpVideo .close:before {
  content: "";
  background: black;
  width: 23px;
  height: 2px;
  transform: rotate(45deg);
  position: relative;
}
#jumpVideo .close:after {
  content: "";
  background: black;
  width: 23px;
  height: 2px;
  transform: rotate(-45deg);
  position: absolute;
}
@media only screen and (min-width: 1200px) {
  #jumpVideo .close:hover {
    transform: rotate(180deg);
  }
}
#jumpVideo .close_icon {
  position: relative;
}
#jumpVideo .closebg {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0.85;
  left: 0;
  top: 0;
}

.page_control {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 2px solid black;
  background-color: white;
  line-height: 40px;
  font-size: 14px;
  font-family: lato, sans-serif;
  font-weight: bold;
  -webkit-perspective: 2000px;
  perspective: 2000px;
}
.page_control .arrow {
  position: absolute;
  background-color: black;
  height: 100%;
  width: 46px;
  background-repeat: no-repeat;
  background-size: 24px;
  cursor: pointer;
}
.page_control .arrow::before {
  background-repeat: no-repeat;
  background-size: 24px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.page_control .arrow.disabled {
  opacity: 1;
  pointer-events: none;
}
.page_control .arrow.disabled::after {
  content: none !important;
}
.page_control .arrow.disabled::before {
  opacity: 0.5;
}
.page_control .arrow.hide {
  opacity: 0.3;
}
.page_control .arrow.first {
  left: 0;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.page_control .arrow.first::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/arrow2.png);
  background-position: 8px;
}
.page_control .arrow.first::after {
  content: "";
  width: 1px;
  height: 10px;
  background-color: white;
  position: absolute;
  top: 15px;
  opacity: 0.35;
}
.page_control .arrow.prev {
  left: 46px;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.page_control .arrow.prev::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/arrow.png);
  background-position: 15px 50%;
}
.page_control .arrow.next {
  right: 45px;
}
.page_control .arrow.next::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/arrow.png);
  background-position: 15px 50%;
}
.page_control .arrow.end {
  right: 0;
}
.page_control .arrow.end::after {
  content: "";
  width: 1px;
  height: 10px;
  background-color: white;
  position: absolute;
  top: 15px;
  opacity: 0.35;
}
.page_control .arrow.end::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/arrow2.png);
  background-position: 9px 50%;
}
@media all and (max-width: 699px) {
  .page_control .arrow.first::before, .page_control .page_control .arrow.prev::before, .page_control .page_control .arrow.next::before, .page_control .page_control .arrow.end::before {
    background-position: center;
  }
}
.page_control .page {
  position: relative;
  width: 33px;
  text-align: center;
  cursor: pointer;
}
.page_control .page a {
  display: block;
}
.page_control .page::after {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  background-color: black;
  -webkit-transform: rotate(45deg) translateX(-71%) translateY(11%);
  transform: rotate(45deg) translateX(-71%) translateY(11%);
  left: 50%;
  top: 50%;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.page_control .page.active {
  position: relative;
  font-size: 0;
}
.page_control .page.active::after {
  opacity: 1;
}
@media all and (max-width: 699px) {
  .page_control .page a {
    color: #616161;
  }
}
@media all and (max-width: 1024px) {
  .page_control {
    -webkit-perspective: none;
    perspective: none;
  }
}
@media all and (max-width: 699px) {
  .page_control .page_control::after {
    content: "";
    position: absolute;
    width: calc(100% + 4px);
    background-color: #f4f4f4;
    height: 20px;
    top: 31px;
    left: -2px;
  }
  .page_control .page_control::before {
    content: "";
    position: absolute;
    width: calc(100% + 4px);
    background-color: #f4f4f4;
    height: 21px;
    top: -22px;
    left: -2px;
  }
  .page_control .page_control {
    line-height: 30px;
  }
  .page_control .page_control .arrow.first::after,
  .page_control .page_control .arrow.end::after {
    top: 10px;
  }
}
