@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Custom */
img {
  vertical-align: top;
}

/** ___  Setting  __________________________________________________
 * 
 *    此檔案為網站設定檔，包含基本字體、顏色、尺寸、網址
 *		可以透過切換此檔進行改動
 * ___________________________________________________________ */
/** ___  breakpoint 中斷點規則放這  ____________________________________________
 * 
 *    統一從這取斷點，此樣式為優雅降級
 * ___________________________________________________________ */
/*		
					s-mob  m-mob   mob  tablet  desktop
			<____320____480____720____800____1170____>

				 _________________________900_1020____
					額外斷點								bp2  bp1
*/
/** ___  Default Reset  ____________________________________________
 * 
 *    此為一般頁面初始值設定
 * ___________________________________________________________ */
body, html {
  width: 100%;
  height: 100%;
  background-color: #fff;
}

body * {
  line-height: 1.5;
  transition: opacity 0.2s linear;
  box-sizing: border-box;
}

/* ------ 字型 ------ */
body, input, a {
  font-family: "Roboto", "Noto Sans TC";
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

li, a, img, button, input, select {
  outline: none;
  cursor: pointer;
}

a:link {
  color: #000;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:visited {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: #af002b;
}

strong {
  font-weight: bold;
}

section::-webkit-scrollbar-track, div::-webkit-scrollbar-track, main::-webkit-scrollbar-track, body::-webkit-scrollbar-track {
  background-color: #fff;
}
section::-webkit-scrollbar, div::-webkit-scrollbar, main::-webkit-scrollbar, body::-webkit-scrollbar {
  width: 4px;
  background-color: #fff;
}
section::-webkit-scrollbar-thumb, div::-webkit-scrollbar-thumb, main::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: #fff;
}

/* -------------- Fonts 字型管理 ------------- */
/* Noto Sans TC (Chinese_traditional) http://www.google.com/fonts/earlyaccess

 @font-face {
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 100;
  src: url(../../fonts/Noto_Sans_TC/NotoSansTC-Thin.ttf);
}
@font-face {
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 300;
  src: url(../../fonts/Noto_Sans_TC/NotoSansTC-Light.ttf);
}
@font-face {
   font-family: 'Noto Sans TC';
   font-style: normal;
   font-weight: 400;
   src: url(../../fonts/Noto_Sans_TC/NotoSansTC-Regular.ttf) format('truetype');
 }
@font-face {
   font-family: 'Noto Sans TC';
   font-style: normal;
   font-weight: 500;
   src: url(../../fonts/Noto_Sans_TC/NotoSansTC-Medium.ttf);
 }
@font-face {
   font-family: 'Noto Sans TC';
   font-style: normal;
   font-weight: 700;
   src: url(../../fonts/Noto_Sans_TC/NotoSansTC-Bold.ttf) format('truetype');
 }
@font-face {
   font-family: 'Noto Sans TC';
   font-style: normal;
   font-weight: 900;
   src: url(../../fonts/Noto_Sans_TC/NotoSansTC-Black.ttf);
 }
*/
/** ___  style-effects  ____________________________________________
 * 
 *    此為已定義完成的樣式，同一網站請從這取用樣式
 *    還沒拆開base.css前都是限制區域
 * ___________________________________________________________ */
.show {
  display: block !important;
}

.hide {
  display: none !important;
}

.paused {
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}

.poa {
  position: absolute;
}

.por {
  position: relative;
}

.border-box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* ------ 陰影 ------ */
/*參數：x軸、y軸、柔化、(距離)、顏色*/
/* ------ 漸變 ------ */
.main-nav .item a, .main-nav .item, .main-nav {
  -webkit-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ------ 小三角形 ------ */
/* ------ 不換行 ------ */
/* ------ 圖片按鈕遮字 ------ */
.animated, .zoomOut, .zoomIn {
  animation-duration: 1s;
  animation-fill-mode: both;
  opacity: 0;
}

.fadeIn {
  animation-name: fadeIn;
}

.fadeInLeft {
  animation-duration: 0.3s;
  animation-name: fadeInLeft;
}

.bounce {
  animation-name: bounce;
}

.zoomIn {
  animation-duration: 1s;
  animation-name: zoomIn;
  pointer-events: none;
}

.zoomOut {
  animation-duration: 1.2s;
  animation-name: zoomOut;
  pointer-events: none;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bounce {
  0% {
    transform: scale(0);
  }
  30% {
    transform: scale(1.1, 1.3);
    opacity: 1;
  }
  40% {
    transform: scale(1.04, 1.1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1, 1.01);
    opacity: 1;
  }
  60% {
    transform: scale(1, 1.1);
    opacity: 1;
  }
  70% {
    transform: scale(1.05, 0.9);
    opacity: 1;
  }
  80% {
    transform: scale(1, 1.05);
    opacity: 1;
  }
  90% {
    transform: scale(1.02, 1.03);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 1;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(200px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/** ___ Layout ____________________________________________________
 * 
 *    此為存放公用樣板用
 *
 * ___________________________________________________________ */
/* -------------- Wrapper 整體包覆 ------------- */
#wrapper {
  width: 100%;
}

.inner {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
}

/* -------------- Header 頁尾區塊 ------------- */
/* -------------- Footer 頁尾區塊 ------------- */
/* -------------- 社群 ------------------ */
.menu {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.top-menu {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /*@include media('<=lPhone') {
    right: 60px;
  }
  @media only screen and (max-height: 1000px){
    right: 60px;
  }*/
}
.top-menu .top-menu1 {
  padding: 20px 0;
}
.top-menu .top-menu2 {
  padding: 15px;
  width: 100vw;
  background-color: #66aade;
  box-sizing: border-box;
}
.top-menu .top-menu2 ul {
  display: flex;
  list-style: none;
  justify-content: flex-end;
}
.top-menu .top-menu2 ul li {
  margin-left: 30px;
  cursor: pointer;
  font-size: 20px;
}
.top-menu .top-menu2 ul li a:hover {
  color: #000 !important;
}
.top-menu .top-menu2 ul li a:active, .top-menu .top-menu2 ul li a:visited {
  color: #fff;
}
@media (max-width: 840px) {
  .top-menu .top-menu2 {
    display: none;
  }
}
.top-menu .logo {
  display: inline-block;
  height: 79px;
  position: relative;
  width: 150px;
}
.top-menu .logo img {
  width: 100%;
  height: auto;
  max-width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.top-menu .logo.small-logo {
  display: none;
  width: calc(100% - 160px);
}
.top-menu .pull-right {
  float: right;
  margin-right: 10px;
  position: relative;
}
.top-menu .btn-lang {
  padding: 0 4px;
  border: 0;
  height: 45px;
  background-color: rgba(255, 255, 255, 0);
}
.top-menu .btn-lang label {
  font-size: 16px;
}
.top-menu .btn-shares {
  padding: 0 4px;
  border: 0;
  height: 45px;
  width: 45px;
  background: url("../images/icon_share.svg") top center no-repeat;
  background-size: 35px auto;
}
.top-menu .btn-shares label {
  font-size: 16px;
}
.top-menu .btn-header {
  width: 34px;
  height: 34px;
  background-position: center center;
  background-repeat: no-repeat;
  border: 0;
}
.top-menu .btn-link {
  color: white;
  font-size: 16px;
  transition: all 0.5s;
  padding: 16px 15px;
  position: relative;
  line-height: 80px;
}
.top-menu .btn-link:hover {
  color: #af002b;
  margin-top: 5px;
}
.top-menu .btn-link.btn-cks {
  border: 0;
  margin-top: 0;
}
.top-menu .btn-link.btn-cks img {
  height: 50px;
  width: auto;
}
.top-menu .btn-link.btn-cks:hover {
  margin-top: -5px;
}
.top-menu .btn-link:not(:last-of-type):after {
  content: "";
  position: absolute;
  right: -2px;
  top: 0.8em;
  height: 1.5em;
  width: 1px;
  background-color: #333;
}
.top-menu .btn-group-vertical > .btn, .top-menu .btn-group > .btn {
  position: relative;
  float: left;
}
.top-menu .icon-ig {
  background: url(../images/logo_ig.png) center no-repeat;
  background-size: cover;
  width: 30px;
  height: 30px;
}
.top-menu .icon-fb {
  background: url(../images/logo_fb.png) center no-repeat;
  background-size: cover;
  width: 45px;
  height: 45px;
  display: block;
  margin: 0 auto;
}
.top-menu .caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.top-menu .dropdown-menu {
  position: absolute;
  top: calc(100% + 25px);
  right: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  margin: 0;
  text-align: center;
  border-radius: 16px;
}
.top-menu .dropdown-menu li {
  padding: 10px 20px;
}
.top-menu .dropdown-menu li:first-of-type {
  border-radius: 16px 16px 0 0;
}
.top-menu .dropdown-menu li:last-of-type {
  border-radius: 0 0 16px 16px;
}
.top-menu .dropdown-menu li a, .top-menu .dropdown-menu li a:link, .top-menu .dropdown-menu li a:active {
  color: #4d4d4d;
  font-size: 16px;
}
.top-menu .dropdown-menu li:hover {
  background-color: #4d4d4d;
}
.top-menu .dropdown-menu li:hover a, .top-menu .dropdown-menu li:hover a:link, .top-menu .dropdown-menu li:hover a:active {
  color: #abcde6;
}

/* -------------- Menu 選單 ------------- */
.main-nav {
  position: fixed;
  right: 0;
  top: 100px;
  z-index: 10;
  /*padding: 36px 25px;*/
}
.main-nav .items {
  list-style: none;
  font-weight: 400;
  background: #3d3d3d;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}
.main-nav .item {
  padding-left: 25px;
  padding-top: 25px;
  background: #3d3d3d;
  border: 0;
  margin: 0;
}
.main-nav .item:first-of-type {
  border-top-left-radius: 16px;
}
.main-nav .item:last-of-type {
  border-bottom-left-radius: 16px;
}
.main-nav .item.high-item {
  background: url(../images/icon_puzzle.png) no-repeat top center #f18cb8;
  background-size: 30px 30px;
  background-position-y: 36px;
  padding-top: 76px;
  border-bottom-left-radius: 16px;
}
.main-nav .item.item-cks img {
  height: 50px;
  width: auto;
}
.main-nav .item a {
  color: #fff;
  line-height: 1.45em;
  letter-spacing: 2px;
  font-size: 22px;
}
.main-nav .item a:hover {
  color: #af002b;
}
@media (max-width: 840px) {
  .main-nav {
    display: none;
  }
}

@media (max-width: 840px) {
  .hidden-mb {
    display: none;
  }
}

.show-mb {
  display: none;
}
@media (max-width: 840px) {
  .show-mb {
    display: block;
  }
}

.mb-main-nav {
  display: none;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #3d3d3d;
  color: #fff;
  font-size: 3.5vw;
  opacity: 0;
  z-index: -1;
  padding: 20px 0;
}
.mb-main-nav .logo {
  display: inline-block;
  height: 79px;
  position: relative;
  width: 150px;
}
.mb-main-nav .logo img {
  width: 100%;
  height: auto;
  max-width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.mb-main-nav .logo.small-logo {
  display: none;
  width: calc(100% - 160px);
}

.mobile-menu-btn {
  position: fixed;
  top: 15px;
  right: 2vw;
  height: 50px;
  width: 50px;
  z-index: 101;
  display: none;
}
@media (max-width: 840px) {
  .mobile-menu-btn {
    display: block;
  }
}

.show-menu .mobile-menu-btn .hamburger {
  transform: rotateY(-180deg);
  transform: scale(0.95) rotateY(-180deg);
}
.show-menu .mobile-menu-btn .hamburger::before, .show-menu .mobile-menu-btn .hamburger::after, .show-menu .mobile-menu-btn .hamburger .middle {
  background: rgb(255, 255, 255);
}
.show-menu .mobile-menu-btn .hamburger::before {
  transform: translate3d(-14%, -17%, 0) rotateZ(-45deg);
}
.show-menu .mobile-menu-btn .hamburger .middle {
  transform: rotateY(-90deg);
  transition: transform 375ms, background-color 0.5s ease-in-out;
}
.show-menu .mobile-menu-btn .hamburger::after {
  transform: translate3d(-15%, 20%, 0) rotateZ(45deg);
}

.show-menu .main-nav {
  opacity: 1;
  z-index: 100;
  display: block;
}
.show-menu .main-nav .item {
  transform: translateY(0) scaleY(1);
  opacity: 1;
}
.show-menu .top-menu {
  display: none;
}

@media (max-width: 840px) {
  .mb-main-nav.force-mb-menu {
    display: block;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    color: #000;
    font-size: 3.5vw;
    opacity: 0;
    z-index: -1;
  }
  .mb-main-nav.force-mb-menu .items {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    padding: 50px 10% 0;
    background-color: #fff;
    border-radius: 0;
    height: 100%;
  }
  .mb-main-nav.force-mb-menu .item {
    text-align: center;
    margin: 0;
    background-color: #fff;
    padding: 10% 25px;
  }
  .mb-main-nav.force-mb-menu .item:first-of-type {
    border-radius: 0;
  }
  .mb-main-nav.force-mb-menu .item + .item {
    border-top: 1px solid #333333;
  }
  .mb-main-nav.force-mb-menu .item:last-of-type {
    border-top: 0;
  }
  .mb-main-nav.force-mb-menu .item a {
    display: inline-block;
    padding: 0;
    color: #000;
    writing-mode: horizontal-tb;
  }
  .mb-main-nav.force-mb-menu .item.high-item {
    background: none;
    text-align: center;
    padding: 25px;
    background: #f18cb8;
    margin-left: -13%;
    margin-right: -13%;
    border-bottom: 1px solid #333333;
  }
  .mb-main-nav.force-mb-menu .item.high-item a {
    position: relative;
  }
  .mb-main-nav.force-mb-menu .item.high-item a::before {
    content: " ";
    display: inline-block;
    width: 2rem;
    height: 2rem;
    position: absolute;
    left: -3rem;
    top: -0.5rem;
    background: url(../images/icon_puzzle.png) no-repeat top center #f18cb8;
    background-size: contain;
  }
  .mb-main-nav.force-mb-menu .item:nth-child(1) {
    transform: translateY(-2.5em) scaleY(1.9);
    opacity: 0.1;
  }
  .mb-main-nav.force-mb-menu .item:nth-child(2) {
    transform: translateY(-4em) scaleY(1.8);
    opacity: 0.1;
  }
  .mb-main-nav.force-mb-menu .item:nth-child(3) {
    transform: translateY(-5.5em) scaleY(1.7);
    opacity: 0.1;
  }
  .mb-main-nav.force-mb-menu .item:nth-child(4) {
    transform: translateY(-7em) scaleY(1.6);
    opacity: 0.1;
  }
}
@media only screen and (max-height: 1000px) and (min-width: 720px) {
  .mb-main-nav.force-mb-menu {
    display: none;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    color: #000;
    font-size: 3.5vw;
    opacity: 0;
    z-index: -1;
  }
  .mb-main-nav.force-mb-menu .items {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    padding: 10% 10% 0;
    background-color: #fff;
    border-radius: 0;
    height: 100vh;
  }
  .mb-main-nav.force-mb-menu .item {
    text-align: center;
    margin: 0;
    background-color: #fff;
    padding: 25px;
  }
  .mb-main-nav.force-mb-menu .item:first-of-type {
    border-radius: 0;
  }
  .mb-main-nav.force-mb-menu .item + .item {
    border-top: 1px solid #333333;
  }
  .mb-main-nav.force-mb-menu .item:last-of-type {
    border-top: 0;
  }
  .mb-main-nav.force-mb-menu .item a {
    display: inline-block;
    padding: 1em 0;
    color: #000;
    writing-mode: horizontal-tb;
  }
  .mb-main-nav.force-mb-menu .item.high-item {
    background: none;
    text-align: center;
    padding: 25px;
    background: #f18cb8;
    margin-left: -13%;
    margin-right: -13%;
    border-bottom: 1px solid #333333;
  }
  .mb-main-nav.force-mb-menu .item.high-item a {
    position: relative;
  }
  .mb-main-nav.force-mb-menu .item.high-item a::before {
    content: " ";
    display: inline-block;
    width: 40px;
    height: 40px;
    position: absolute;
    left: -50px;
    top: 7px;
    background: url(../images/icon_puzzle.png) no-repeat top center #f18cb8;
    background-size: cover;
  }
  .mb-main-nav.force-mb-menu .item:nth-child(1) {
    transform: translateY(-2.5em) scaleY(1.9);
    opacity: 0.1;
  }
  .mb-main-nav.force-mb-menu .item:nth-child(2) {
    transform: translateY(-4em) scaleY(1.8);
    opacity: 0.1;
  }
  .mb-main-nav.force-mb-menu .item:nth-child(3) {
    transform: translateY(-5.5em) scaleY(1.7);
    opacity: 0.1;
  }
  .mb-main-nav.force-mb-menu .item:nth-child(4) {
    transform: translateY(-7em) scaleY(1.6);
    opacity: 0.1;
  }
}
i.hamburger {
  position: absolute;
  top: 0px;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 60%;
  height: 55%;
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
i.hamburger:before, i.hamburger:after, i.hamburger .middle {
  content: "";
  position: absolute;
  width: 100%;
  height: 15%;
  background: #fff;
  transform-origin: 100% 50%;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.2);
}
i.hamburger:before {
  top: 5%;
}
i.hamburger .middle {
  display: block;
  top: 50%;
  transform: translateY(-50%);
  transform-origin: 50% 50%;
}
i.hamburger:after {
  bottom: 5%;
}

.force-mb-menu .top-menu .top-menu1 {
  padding-right: 50px;
}
.force-mb-menu .top-menu .pull-right {
  margin-right: 0;
}
.force-mb-menu .mobile-menu-btn {
  display: block;
  top: 12px;
}
.force-mb-menu .main-nav {
  display: none;
}
.force-mb-menu .main-nav .items {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  padding: 5vh 0;
  background-color: #fff;
  border-radius: 0;
  overflow: auto;
}
.force-mb-menu .main-nav .item {
  text-align: center;
  margin: 0;
  background-color: #fff;
  padding: 25px;
}
.force-mb-menu .main-nav .item:first-of-type {
  border-radius: 0;
}
.force-mb-menu .main-nav .item + .item {
  border-top: 1px solid #333333;
}
.force-mb-menu .main-nav .item:last-of-type {
  border-top: 1px solid #333;
}
.force-mb-menu .main-nav .item a {
  display: inline-block;
  padding: 0;
  color: #000;
  writing-mode: horizontal-tb;
}
.force-mb-menu .main-nav .item.high-item {
  background: none;
  text-align: center;
  padding: 25px;
  background: #f18cb8;
  margin-left: -13%;
  margin-right: -13%;
}
.force-mb-menu .main-nav .item.high-item a {
  position: relative;
}
.force-mb-menu .main-nav .item.high-item a::before {
  content: " ";
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  left: -50px;
  top: 50%;
  background: url(../images/icon_puzzle.png) no-repeat top center #f18cb8;
  background-size: cover;
  transform: translateY(-50%);
}
.force-mb-menu .btn-link {
  /*display: none;*/
}
.force-mb-menu .line-it-button, .force-mb-menu .icon-fb {
  transform: scale(0.8);
  width: 45px !important;
  height: 45px !important;
}

@media screen and (max-width: 1800px) {
  .en .hidden-mb {
    display: none;
  }
  .en .top-menu2 {
    display: none;
  }
  .en .show-mb {
    display: block;
  }
}
/* -------------- Mobile menu ------------- */
.header {
  position: relative;
  z-index: 9999;
}

section {
  width: 100%;
  box-sizing: border-box;
}

.section__padding {
  padding: 36px 0;
}

.bg__red {
  background-color: #af002b;
  color: #fff !important;
}

.bg__gray {
  background-color: #dedfe0;
  color: #000;
}

.bg__blue {
  background: linear-gradient(-159deg, #296e9b, #204f88);
  color: #fff;
}

.no__wrap {
  white-space: nowrap;
}

.text__center {
  text-align: center;
}

h1 {
  font-size: 42px;
  font-weight: bold;
}

h2, .h2 {
  font-size: 36px;
  font-weight: bold;
}

h3, .h3 {
  font-size: 20px;
  font-weight: normal;
}

.font__red {
  color: #af002b;
}

.font__weight {
  font-weight: bold;
}

.section__destop_kv {
  position: relative;
}
.section__destop_kv img {
  width: 100%;
  height: auto;
}
.section__destop_kv .inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section__destop_kv .center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-25%, -50%);
  padding-left: -50%;
}
.section__destop_kv .sologn {
  text-align: center;
}
.section__destop_kv .sologn .h1 {
  font-size: max(70px, 5vw);
  font-weight: bold;
  text-shadow: 0px 3px 2.85px rgba(46, 45, 45, 0.32);
  color: #fff;
  line-height: 1.2;
}
.section__destop_kv .sologn .h2 {
  font-size: max(22px, 2vw);
  font-weight: bold;
  text-shadow: 0px 3px 2.85px rgba(46, 45, 45, 0.32);
  color: #fff;
  line-height: 1.2;
}
.section__destop_kv .sologn p {
  margin-top: 20px;
  font-size: max(18px, 1vw);
}
.section__destop_kv .period {
  position: absolute;
  top: 20%;
  right: 25%;
}
.section__destop_kv .period .dt {
  font-size: 22px;
  line-height: 1;
  font-weight: bold;
  color: #fff;
}
.section__destop_kv .period small {
  font-size: 11px;
  line-height: 1;
  color: #fff;
}
.section__destop_kv .period .line {
  width: 1px;
  height: 45px;
  background-color: #fff;
  margin-left: 30px;
}
.section__destop_kv .period .end {
  margin-top: 8px;
}

.section__mobile_kv {
  position: relative;
}
.section__mobile_kv img {
  width: 100%;
  height: auto;
}
.section__mobile_kv .inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section__mobile_kv .center {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, 0);
}
.section__mobile_kv .sologn {
  text-align: center;
  width: 100%;
}
.section__mobile_kv .sologn .h1 {
  font-size: 13vw;
  font-weight: bold;
  text-shadow: 0px 3px 2.85px rgba(46, 45, 45, 0.32);
  color: #fff;
  line-height: 1.2;
}
.section__mobile_kv .sologn .h2 {
  font-size: 8vw;
  font-weight: bold;
  text-shadow: 0px 3px 2.85px rgba(46, 45, 45, 0.32);
  color: #fff;
  line-height: 1.2;
}
.section__mobile_kv .sologn p {
  margin-top: 20px;
  font-size: 5vw;
  color: #fff;
}
.section__mobile_kv .period {
  position: absolute;
  top: 20%;
  right: 25%;
}
.section__mobile_kv .period .dt {
  font-size: 22px;
  line-height: 1;
  font-weight: bold;
  color: #fff;
}
.section__mobile_kv .period small {
  font-size: 11px;
  line-height: 1;
  color: #fff;
}
.section__mobile_kv .period .line {
  width: 1px;
  height: 45px;
  background-color: #fff;
  margin-left: 30px;
}
.section__mobile_kv .period .end {
  margin-top: 8px;
}

.section__subscribe {
  padding-top: 70px;
  padding-bottom: 89px;
}
.section__subscribe .subscribe__container {
  margin-top: 70px;
  margin-bottom: 173px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}
.section__subscribe .subscribe__item {
  display: block;
  flex: 1 1 33.33%;
  position: relative;
  text-align: center;
  border: 2px solid #af002b;
  background-color: #fff;
  padding-top: 80px;
  height: fit-content;
}
.section__subscribe .subscribe__item img {
  width: 100%;
}
.section__subscribe .subscribe__item span {
  display: block;
}
.section__subscribe .subscribe__item .icon {
  width: 100px;
  margin: -130px auto 25px;
}
.section__subscribe .subscribe__item .icon img {
  width: 100%;
  height: auto;
}
.section__subscribe .subscribe__item .item-footer {
  font-weight: bold;
  font-size: 18px;
  padding: 15px 0;
}
.section__subscribe .subscribe__item .title {
  font-size: 26px;
  font-weight: bold;
}
.section__subscribe .subscribe__item .price__unit {
  font-size: 24px;
}
.section__subscribe .subscribe__item .price__value {
  font-size: 36px;
  color: #af002b;
}
.section__subscribe .subscribe__item small {
  display: inline-block;
  font-size: 13px;
  color: #6d6b6b;
  margin-bottom: 30px;
}
.section__subscribe .subscribe__item.highlight {
  padding-top: 95px;
  border: 10px solid #af002b;
}
.section__subscribe .subscribe__item.highlight .icon {
  margin: -145px auto 25px;
}
.section__subscribe .subscribe__item.highlight small {
  margin-bottom: 45px;
}
.section__subscribe .subscribe__item:hover {
  color: inherit;
}

.section__bookGifts {
  background: url(../imgs/book-promotions-bg.png), linear-gradient(-120deg, #f0f0f0 30%, #fff);
  background-position: right bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
  box-sizing: border-box;
}
.section__bookGifts .bookGifts__item {
  display: flex;
  padding: 0 40px;
}
.section__bookGifts .bookGifts__item .bookGifts__item__cover {
  width: 55%;
  min-width: 320px;
  padding: 50px;
}
.section__bookGifts .bookGifts__item .bookGifts__item__cover img {
  width: 100%;
  height: auto;
  max-width: 480px;
  display: block;
  margin: 0 auto;
}
.section__bookGifts .bookGifts__item .bookGifts__item__intro {
  width: 68%;
  position: relative;
}
.section__bookGifts .bookGifts__item .bookGifts__item__intro .bookGifts__item__intro__container {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.section__bookGifts .bookGifts__item .bookGifts__item__intro .bookGifts__item__intro__container span {
  display: block;
  font-weight: 500;
}
.section__bookGifts .bookGifts__item .bookGifts__item__intro .bookGifts__item__intro__container .title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 35px;
  color: #af002b;
}
.section__bookGifts .bookGifts__item .bookGifts__item__intro .bookGifts__item__intro__container .summary {
  margin-bottom: 32px;
}
@media screen and (max-width: 999px) {
  .section__bookGifts {
    background-position: center;
    background-size: cover;
  }
  .section__bookGifts .bookGifts__slider {
    padding: 20px;
  }
  .section__bookGifts .bookGifts__item {
    display: block;
    padding: 0;
  }
  .section__bookGifts .bookGifts__item .bookGifts__item__cover {
    width: 90%;
    max-width: 420px;
    min-width: unset;
    margin: 0 auto;
    padding: 0;
  }
  .section__bookGifts .bookGifts__item .bookGifts__item__intro {
    width: 100%;
  }
  .section__bookGifts .bookGifts__item .bookGifts__item__intro .bookGifts__item__intro__container {
    position: relative;
    transform: unset;
  }
}
.section__bookGifts .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.section__bookGifts .slick-dots {
  bottom: 0;
  position: relative;
  padding: 20px 0;
}

.section__disclaimer {
  background-color: #666;
}
.section__disclaimer .bookGifts__note {
  color: #fff;
  font-size: 12px;
}
.section__disclaimer .bookGifts__note .con {
  padding: 24px 40px;
  width: fit-content;
  margin: 0 auto;
  align-items: center;
}
.section__disclaimer .bookGifts__note .con .desc {
  padding: 0 40px 0 20px;
  line-height: 1.8;
}
@media screen and (max-width: 999px) {
  .section__disclaimer .bookGifts__note .con {
    padding: 24px 0;
  }
  .section__disclaimer .bookGifts__note .con .title {
    display: none;
  }
  .section__disclaimer .bookGifts__note .con .desc {
    padding: 0;
  }
}

.flex {
  display: flex;
}

.slick-dots li button {
  width: 14px;
  height: 14px;
  border-radius: 7px;
  background: #c9c7c7;
}
.slick-dots li button:before {
  content: none;
}

.slick-dots li.slick-active button {
  background-color: #af002b;
}

.slick-prev {
  transform: translate(0, -50%);
  width: 29px;
  height: 51px;
}
.slick-prev:before {
  content: "";
  background-image: url(../imgs/arrow-left.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 29px;
  height: 51px;
  display: block;
  opacity: 1;
}

.slick-next {
  transform: translate(0, -50%);
  width: 29px;
  height: 51px;
}
.slick-next:before {
  content: "";
  background-image: url(../imgs/arrow-right.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 29px;
  height: 51px;
  display: block;
  opacity: 1;
}

.section__issues {
  padding-top: 100px;
  /*
  background: url(../imgs/issues_bg.png) no-repeat;
  background-position: bottom center;
  background-size: cover;*/
}
.section__issues .h2 {
  font-size: min(36px, 7vw);
}
.section__issues .issues__grid {
  padding: 50px 115px;
  display: grid;
  gap: 35px;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-columns: calc(50vw - 18px);
}
.section__issues .issues__grid .issue {
  position: relative;
  width: 100%;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 300px;
}
.section__issues .issues__grid .issue .bg img {
  width: 100%;
  height: auto;
}
.section__issues .issues__grid .issue .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  z-index: 990;
}
.section__issues .issues__grid .issue .cover-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 991;
  font-size: 24px;
  font-weight: bold;
}
.section__issues .issues__grid .issue .cover-title h3 {
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
}
.section__issues .issues__grid .issue .content {
  /*position: absolute;
  top: 0;
  left: 0;
  z-index: 991;*/
  opacity: 0;
  width: 100%;
  height: 100%;
  text-align: left;
  box-sizing: border-box;
  padding: 20px 40px 0;
  display: grid;
  grid-template-rows: 50px;
  position: relative;
  z-index: 991;
  bottom: -80px;
  transition: all 0.2s linear;
}
.section__issues .issues__grid .issue .content .title {
  font-size: 24px;
  font-weight: bold;
}
.section__issues .issues__grid .issue .content .title * {
  display: inline-block;
}
.section__issues .issues__grid .issue .content .title img {
  height: 32px;
  width: auto;
}
.section__issues .issues__grid .issue .content .summary {
  padding-left: 20px;
  padding-bottom: 50px;
  border-left: 1px solid #fff;
  font-size: 18px;
  line-height: 1.5;
  bottom: -100px;
}
.section__issues .issues__grid .issue .readmore {
  opacity: 0;
  position: absolute;
  bottom: -80px;
  right: 0;
  z-index: 999;
  padding: 0.5em 20px;
  line-height: 1;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  color: #fff;
}
.section__issues .issues__grid .issue:hover .cover {
  opacity: 1;
  background: linear-gradient(-180deg, rgba(26, 52, 83, 0.9) 30%, #000, rgba(29, 42, 58, 0.85));
}
.section__issues .issues__grid .issue:hover .cover-title {
  opacity: 0;
}
.section__issues .issues__grid .issue:hover .content {
  bottom: 0;
  opacity: 1;
}
.section__issues .issues__grid .issue:hover .title {
  position: relative;
  top: unset;
  left: unset;
  transform: none;
}
.section__issues .issues__grid .issue:hover .summary {
  opacity: 1;
  bottom: unset;
}
.section__issues .issues__grid .issue:hover .readmore {
  opacity: 1;
  bottom: 0;
}
@media screen and (max-width: 999px) {
  .section__issues .issues__grid {
    display: block;
    padding: 0;
    max-width: 480px;
    margin: 0 auto;
  }
  .section__issues .issues__grid .issue {
    margin: 20px auto;
    display: inline-block;
  }
}

.section__classes .inner {
  margin-top: max(-280px, -6vw);
}
.section__classes .issues__database {
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: min(-240px, -10vw);
  z-index: -1;
  /*
  background: url(../imgs/issues_bg.png) no-repeat;
  background-position: bottom center;
  background-size: cover;*/
}
.section__classes .issues__database img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .section__classes .issues__database img {
    min-width: 1200px;
    margin-left: calc(50vw - 600px);
  }
}
.section__classes .issues__database .issues__database__desc {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
}
.section__classes .issues__database .issues__database__desc .h2 {
  margin-bottom: 20px;
}
.section__classes .classes__grid {
  cursor: pointer;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: left;
  gap: 12px;
}
.section__classes .classes__grid .classes__grid_item {
  overflow: hidden;
  margin-bottom: 40px;
}
.section__classes .classes__grid .classes__grid_item p {
  color: #fff;
}
.section__classes .classes__grid img {
  margin: 0 40px;
  width: calc(100% - 80px);
  height: auto;
}
.section__classes .classes__grid .classes__grid_content {
  margin-top: -50px;
  width: 80%;
}
.section__classes .classes__grid .classes__grid_content h3 {
  background-color: #fff;
  color: #496c8d;
  line-height: 1;
  padding: 15px;
  display: inline-block;
  margin-bottom: 12px;
}
.section__classes .section__classes_container {
  color: #fff;
}
.section__classes .section__classes_container::after {
  background: linear-gradient(-159deg, #296e9b, #204f88);
  width: 100%;
  height: 200px;
  margin-top: -200px;
  content: "";
  display: block;
}
@media screen and (max-width: 999px) {
  .section__classes .inner {
    padding: 0;
  }
  .section__classes .classes__grid {
    display: block;
  }
  .section__classes .classes__grid .classes__grid_item {
    display: block;
    margin: 0 auto 40px;
    padding: 0 calc(50% - 240px);
  }
  .section__classes .classes__grid .classes__grid_item .classes__grid_content {
    position: relative;
    margin-bottom: 40px;
    margin-left: 25px;
  }
  .section__classes .classes__grid .classes__grid_item .classes__grid_content::before {
    position: absolute;
    left: calc(-50vw - 240px);
    top: -10vw;
    background: linear-gradient(-159deg, #296e9b, #204f88);
    width: calc(100vw + 480px);
    height: calc(100% + 100px);
    content: "";
    display: block;
    z-index: -1;
  }
  .section__classes .classes__grid .classes__grid_item .classes__grid_content p {
    padding-bottom: 40px;
    padding-left: 15px;
  }
  .section__classes .section__classes_container {
    background: none;
  }
  .section__classes .section__classes_container::after {
    content: none;
  }
}

.section__newsletter {
  text-align: center;
  padding-top: 80px;
}
.section__newsletter .button {
  display: inline-block;
  margin: 24px auto 40px;
  padding: 1em;
  transition: all 0.2s linear;
}
.section__newsletter .button:hover {
  color: #fff;
  margin-top: 20px;
}
.section__newsletter .newsletter__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: left;
  gap: 18px;
}
.section__newsletter .newsletter__grid .newsletter__item img {
  width: 60%;
  max-width: 122px;
  height: auto;
  display: block;
  margin: 0 auto 16px;
}
.section__newsletter .newsletter__grid .newsletter__item .newsletter_sendDay {
  display: grid;
  grid-template-columns: 1fr 41fr;
  align-items: flex-end;
}
.section__newsletter .newsletter__grid .newsletter__item .newsletter_sendDay .h3 {
  font-size: 26px;
}
.section__newsletter .newsletter__grid .newsletter__item .newsletter_sendDay .weekday {
  color: #000;
  border: 1px solid #000;
  padding: 4px;
  width: calc(1em + 12px);
  text-align: center;
  line-height: 1;
}
.section__newsletter .newsletter__grid .newsletter__item .newsletter_sendDay .newsletter_name {
  padding-left: 8px;
}
.section__newsletter .newsletter__grid .newsletter__item .newsletter_desc {
  width: calc(100% - 8px);
  margin: 16px auto;
  color: #666666;
}
.section__newsletter .newsletter__grid .newsletter__item.newsletter2 {
  position: relative;
}
.section__newsletter .newsletter__grid .newsletter__item.newsletter2 img {
  height: auto;
  width: 100%;
  max-width: unset;
  z-index: -1;
  margin-bottom: 0;
}
.section__newsletter .newsletter__grid .newsletter__item.newsletter2 .newsletter__item_intro {
  position: absolute;
  top: 53%;
  width: 73%;
  left: 13.5%;
}
@media screen and (max-width: 1400px) {
  .section__newsletter .h2 {
    font-size: min(36px, 7vw);
  }
  .section__newsletter .h2 span {
    display: block;
  }
  .section__newsletter .h2 span:not(:nth-of-type(2n+1)) {
    display: none;
  }
  .section__newsletter .newsletter__grid {
    display: block;
  }
  .section__newsletter .newsletter__grid .newsletter__item {
    margin-bottom: 40px;
  }
  .section__newsletter .newsletter__grid .newsletter__item img {
    width: 100%;
  }
  .section__newsletter .newsletter__grid .newsletter__item .newsletter__item_intro {
    margin: 0 auto;
  }
  .section__newsletter .newsletter__grid .newsletter__item .newsletter__item_intro .newsletter_sendDay {
    display: flex;
    justify-content: center;
  }
  .section__newsletter .newsletter__grid .newsletter__item .newsletter__item_intro .newsletter_desc {
    width: fit-content;
  }
  .section__newsletter .newsletter__grid .newsletter__item.newsletter2 img {
    width: 220px;
  }
  .section__newsletter .newsletter__grid .newsletter__item.newsletter2 .newsletter__item_intro {
    width: 160px;
    /* margin: 0 auto; */
    /* position: relative; */
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 999px) {
  .section__newsletter {
    padding-top: 0;
  }
}

#offline_promotioin h2 {
  display: inline-block;
}
@media screen and (max-width: 750px) {
  #offline_promotioin .title > * {
    display: block;
  }
  #offline_promotioin .title > *:not(:nth-child(2n+1)) {
    display: none;
  }
  #offline_promotioin h2 {
    font-size: min(36px, 7vw);
  }
}

.section__exhibition {
  background: url("../imgs/exhibition_bg.png") no-repeat;
  background-size: cover;
  padding: 76px 0 60px;
}
.section__exhibition .exhibition__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 36px;
}
.section__exhibition .exhibition__grid .exhibition__info {
  margin-right: 36px;
}
.section__exhibition .exhibition__grid .exhibition__info .period {
  display: flex;
  font-size: 22px;
  font-weight: bold;
  align-items: center;
}
.section__exhibition .exhibition__grid .exhibition__info .period > * {
  margin-right: 12px;
}
.section__exhibition .exhibition__grid .exhibition__info .period span {
  width: 67px;
  height: 1px;
  background-color: #000;
}
.section__exhibition .exhibition__grid .exhibition__info .solgon {
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  margin: 8px 0;
}
.section__exhibition .exhibition__grid .exhibition__info .solgon h2 {
  font-size: inherit;
  font-weight: inherit;
}
.section__exhibition .exhibition__grid .exhibition__info .position {
  font-size: 24px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 8px 0;
}
.section__exhibition .exhibition__grid .exhibition__info .position img {
  margin: 0 8px;
}
.section__exhibition .exhibition__grid .exhibition__info .exhibition_map img {
  width: 100%;
  height: auto;
  margin-top: 24px;
}
.section__exhibition .exhibition__grid .exhibition__kv {
  height: 100%;
  position: relative;
}
.section__exhibition .exhibition__grid .exhibition__kv img {
  position: absolute;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 999px) {
  .section__exhibition .inner {
    padding: 0;
    width: 100%;
  }
  .section__exhibition .exhibition__grid {
    display: block;
    width: calc(100vw - 50px);
    max-width: 480px;
    margin: 0 auto;
  }
  .section__exhibition .exhibition__grid .exhibition__info {
    margin-right: 0;
    margin-bottom: 50px;
  }
  .section__exhibition .exhibition__grid .exhibition__info .period {
    width: 320px;
    margin: 0 auto;
    font-size: min(5vw, 28px);
  }
  .section__exhibition .exhibition__grid .exhibition__info .solgon {
    width: 320px;
    margin: 0 auto;
    font-size: 52px;
    line-height: 1.2;
  }
  .section__exhibition .exhibition__grid .exhibition__info .position {
    width: 320px;
    margin: 20px auto;
    text-align: center;
  }
  .section__exhibition .exhibition__grid .exhibition__info .exhibition_map {
    width: 480px;
    max-width: 100%;
    margin: 0 auto;
  }
  .section__exhibition .exhibition__grid .exhibition__kv {
    width: 480px;
    max-width: 100%;
    margin: 0 auto;
  }
  .section__exhibition .exhibition__grid .exhibition__kv img {
    position: relative;
    display: inline-block;
  }
}

.section__hbrtaiwan {
  background-color: #000;
  color: #fff;
}
.section__hbrtaiwan a, .section__hbrtaiwan a:active {
  color: #fff;
}
.section__hbrtaiwan .flex {
  justify-content: center;
  padding: 30px 0;
}
.section__hbrtaiwan .flex > * {
  padding: 0 32px;
}
.section__hbrtaiwan .flex .footer-connect {
  border-left: 1px solid #fff;
}
.section__hbrtaiwan .flex .footer-connect .social__grid {
  display: flex;
}
.section__hbrtaiwan .flex .footer-connect .social__grid a {
  margin-right: 15px;
  margin-bottom: 1em;
}
.section__hbrtaiwan .flex .footer-connect .social__grid a img {
  width: 30px;
  height: auto;
}
@media screen and (max-width: 680px) {
  .section__hbrtaiwan .flex {
    display: block;
  }
  .section__hbrtaiwan .flex > * {
    width: 100%;
    margin: 0 auto 20px;
    text-align: center;
  }
  .section__hbrtaiwan .flex .footer-connect {
    border: 0;
  }
  .section__hbrtaiwan .flex .footer-connect .social__grid {
    justify-content: center;
  }
  .section__hbrtaiwan .flex .footer-connect .social__grid a {
    margin: 15px;
  }
}

footer {
  background-image: linear-gradient(-120deg, rgb(41, 110, 155) 0%, rgb(32, 79, 136) 100%);
  color: #fff;
  text-align: center;
  padding: 1em;
}

.btns-sticky-init {
  opacity: 0;
}
.btns-sticky-init.btns-sticky {
  position: fixed;
  right: 2vw;
  bottom: 20vh;
  display: block;
  z-index: 999;
}
.btns-sticky-init.btns-sticky .btn-circle {
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  border: 0;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  opacity: 0.6;
}
.btns-sticky-init.btns-sticky .btn-circle:hover {
  opacity: 1;
}
.btns-sticky-init.btns-sticky .bg__red {
  background-color: #af002b;
  color: #fff;
  font-size: 14px;
}
.btns-sticky-init.btns-sticky .btn-top {
  background-image: url(../imgs/icon-top.png);
  background-position: center center;
  background-repeat: no-repeat;
}
.btns-sticky-init.btns-sticky .btn_fonts div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (min-aspect-ratio: 1/1) {
  .kv-img-mobile, .section__mobile_kv {
    display: none;
  }
}
@media (max-aspect-ratio: 9999/10000) {
  .kv-img-desktop, .section__destop_kv {
    display: none;
  }
}
@media (max-width: 1340px) {
  .inner {
    box-sizing: border-box;
    width: 100%;
    padding: 0 25px;
  }
  .section__subscribe.bg__gray {
    background-color: #fff;
  }
  .section__subscribe .subscribe__container {
    display: block;
    margin-bottom: 0;
  }
  .section__subscribe .subscribe__item {
    width: fit-content;
    max-width: calc(100vw - 50px);
    margin: 0 auto 130px;
  }
  .section__subscribe .subscribe__item:last-of-type {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767.99px) {
  .section_mb_lr_padding {
    padding-left: 25px;
    padding-right: 25px;
  }
  .mb__force_break::after {
    content: "\a";
    white-space: pre;
  }
}/*# sourceMappingURL=exhibition.css.map */