@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&display=swap");
.banner {
  position: fixed;
  top: 150px;
  right: -300px;
  background-color: rgba(2, 2, 2, 0.3098039216);
  color: #fff;
  height: 100px;
  width: 400px;
  overflow: hidden;
  transition: right 0.3s ease;
  border-radius: 50px 0 0 50px;
  cursor: pointer;
  z-index: 1;
}
@media (max-width: 768px) {
  .banner {
    right: -350px;
  }
  .banner span {
    display: none;
  }
}
.banner i {
  margin-right: 5px;
}
.banner img {
  position: absolute;
  top: 5px;
  right: 0;
  width: 90%;
}

.banner-label {
  display: flex;
  justify-content: start;
  align-items: center;
  height: 100%;
  margin-left: 10px;
}
@media (max-width: 768px) {
  .banner-label {
    margin-left: 20px;
  }
}

.banner-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  padding: 20px;
  transition: width 0.3s ease;
}

.banner.expanded {
  width: 450px;
  right: 0px;
}

.banner.expanded .banner-content {
  width: 400px;
}

@keyframes typing {
  from {
    width: 0;
  }
}
@keyframes caret {
  50% {
    border-right-color: transparent;
  }
}
.typing-effect {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  perspective: 800px;
}
.typing-effect:hover {
  animation: floating 1.8s ease infinite;
}
@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.typing-effect .icon-text {
  display: inline-block;
  font: bold 250% Consolas;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
  color: #fff;
}
.typing-effect .conference-text {
  top: -180px;
  left: 120px;
  transform: rotateY(-50deg) rotateZ(-20deg);
  max-width: 190px;
}
.typing-effect .achievements-text {
  top: -130px;
  left: 50px;
  transform: rotateY(-48deg) rotateZ(15deg);
  max-width: 190px;
}
.typing-effect .latest-events-text {
  top: -130px;
  left: 0px;
  transform: rotateY(-48deg) rotateZ(15deg);
  max-width: 250px;
}
.typing-effect:hover .icon-text {
  border-right: 0.1em solid;
  animation: typing 2s steps(35), caret 1s steps(1) infinite;
}

.index-main-content {
  width: 100%;
  height: 70vh;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(10, 1fr);
  position: relative;
}
@media (max-width: 992px) {
  .index-main-content {
    display: none;
  }
}
.index-main-content .mainBTN-conference,
.index-main-content .mainBTN-achievements,
.index-main-content .mainBTN-events {
  z-index: 1;
}
.index-main-content .mainBTN-conference img,
.index-main-content .mainBTN-achievements img,
.index-main-content .mainBTN-events img {
  width: 90%;
}
.index-main-content .mainBTN-conference {
  grid-column: 1/4;
  grid-row: 2/6;
}
.index-main-content .mainBTN-achievements {
  grid-column: 2/5;
  grid-row: 7/11;
}
.index-main-content .mainBTN-events {
  grid-column: 10/13;
  grid-row: 4/8;
}
.index-main-content .main-title,
.index-main-content .main-img {
  display: flex;
  justify-content: center;
  align-items: end;
}
.index-main-content .main-title {
  grid-column: 4/10;
  grid-row: 2/4;
}
.index-main-content .main-title img {
  width: 78%;
  min-width: 500px;
  margin-left: 6rem;
}
.index-main-content .main-img {
  grid-column: 4/10;
  grid-row: 3/11;
  display: flex;
  justify-content: center;
  align-items: end;
}
.index-main-content .main-img img {
  width: 80%;
  min-width: 500px;
  max-width: 900px;
}
.index-main-content .animation-people-images {
  width: 100%;
}
.index-main-content .animation-people-images .people1 {
  height: 8em;
  position: absolute;
  left: 0;
  bottom: -10px;
  animation: move-animation-people1 35s forwards;
}
@keyframes move-animation-people1 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(80vw);
  }
}
.index-main-content .animation-people-images .people2 {
  height: 10em;
  position: absolute;
  bottom: -40px;
  animation: move-animation-people2 32s forwards;
  z-index: 10;
}
@keyframes move-animation-people2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50vw);
  }
}
.index-main-content .animation-people-images .people3 {
  height: 9em;
  position: absolute;
  right: 0;
  bottom: -20px;
  transform: scaleX(-1);
  animation: move-animation-people3 42s forwards;
}
@keyframes move-animation-people3 {
  0% {
    transform: translateX(0) scaleX(-1);
  }
  100% {
    transform: translateX(-50vw) scaleX(-1);
  }
}

.index-mobile-rwd {
  padding: 0 30px;
  font-size: 1.5rem;
  position: relative;
}
.index-mobile-rwd img {
  width: 100%;
  margin-top: 20px;
}
.index-mobile-rwd .keyVision {
  margin: 0;
}
.index-mobile-rwd .m-button-wrap li img {
  width: 40%;
  margin-top: 0;
  vertical-align: middle;
  margin-right: 10px;
  position: relative;
  transform: translateY(-10%);
}
.index-mobile-rwd .m-button-wrap li a {
  color: #0a6b6a;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 15px auto;
  padding: 0 60px;
  background-color: rgba(112, 217, 214, 0.6901960784);
  border-radius: 50px;
  box-shadow: 5px 5px 5px rgba(50, 167, 165, 0.4117647059);
}
.index-mobile-rwd .m-button-achievements-wrap li img {
  width: 40%;
  margin-top: 0;
  vertical-align: middle;
  margin-right: 10px;
  position: relative;
  transform: translateY(-10%);
}
.index-mobile-rwd .m-button-achievements-wrap li a {
  color: var(--contentTextColor);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 15px auto;
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 5px 5px 5px #464646;
}
.index-mobile-rwd .m-button-achievements-wrap li a i {
  padding-right: 15px;
  color: var(--blue);
}
.index-mobile-rwd .m-keyVision-wrap {
  position: relative;
  text-align: center;
}
.index-mobile-rwd .m-keyVision-wrap .keyVision {
  width: 100%;
  vertical-align: bottom;
}
.index-mobile-rwd .m-keyVision-wrap .human {
  position: absolute;
  margin: 0;
  width: auto;
  height: 60%;
  bottom: 0;
  right: 0;
}
@media (min-width: 993px) {
  .index-mobile-rwd {
    display: none;
  }
}

.filter-form {
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .filter-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.filter-form .item {
  margin: 5px 0 5px 0;
}
.filter-form .item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .filter-form .item {
    margin-right: 30px;
  }
}
.filter-form .item label {
  margin-right: 10px;
  width: 25%;
}
.filter-form .item select {
  width: 75%;
  padding: 0 5px;
}
.filter-form .item input {
  width: 75%;
  padding: 0 10px;
}
.filter-form .item select,
.filter-form .item input {
  height: 30px;
  border-radius: 10px;
  border: 0;
  font-size: 0.8em;
  color: var(--gray);
}
@media (min-width: 992px) {
  .filter-form .item {
    display: inline-block;
  }
  .filter-form .item label {
    width: 15%;
  }
  .filter-form .item select {
    width: 100px;
    padding: 0 5px;
  }
  .filter-form .item input {
    width: 200px;
    padding: 0 10px;
  }
}
.filter-form .filter-btn {
  text-align: center;
  margin: 0 auto;
  display: block;
  width: 100px;
  height: 40px;
  border-radius: 50px;
  border: 0;
  color: #fff;
  background-color: #f3a890;
  font-size: 1em;
}

.bookmark-wrap {
  display: flex;
  flex-direction: column;
  width: 90%;
  height: auto;
  margin: 20px auto 20px auto;
}
.bookmark-wrap .bookmark {
  display: flex;
}
@media (max-width: 768px) {
  .bookmark-wrap .bookmark {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.bookmark-wrap .bookmark .current-page {
  transform: translateX(-2%) translateY(-2%);
  box-shadow: 5px 5px 5px rgba(146, 134, 134, 0.4117647059);
}
.bookmark-wrap .bookmark .current-page a {
  color: var(--contentTextColor);
}
.bookmark-wrap .bookmark .current-page a::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 2px dashed rgba(88, 88, 88, 0.527);
  border-radius: 50px;
}
.bookmark-wrap .bookmark li {
  margin-right: 15px;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.3rem;
  background-color: var(--clr);
  transition: var(--hoverTransition), transform 0.2s ease;
  position: relative;
  text-align: center;
}
@media (max-width: 768px) {
  .bookmark-wrap .bookmark li {
    font-size: 1rem;
    margin-right: 10px;
    padding: 15px 15px;
  }
}
@media (max-width: 576px) {
  .bookmark-wrap .bookmark li {
    font-size: 0.9rem;
    margin-right: 0;
    margin-bottom: 5px;
    padding: 10px 25px;
  }
  .bookmark-wrap .bookmark li i {
    display: none;
  }
}
.bookmark-wrap .bookmark li a {
  color: #ffffff;
  transition: 0.5s;
}
.bookmark-wrap .bookmark li a i {
  margin-right: 10px;
}
.bookmark-wrap .bookmark li:hover {
  transform: translateX(-2%) translateY(-2%);
  box-shadow: 5px 5px 5px rgba(146, 134, 134, 0.4117647059);
}
.bookmark-wrap .bookmark li:hover a {
  color: var(--contentTextColor);
}
.bookmark-wrap .bookmark li:hover a::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 2px dashed rgba(88, 88, 88, 0.527);
  border-radius: 50px;
}

.main-card {
  display: flex;
  flex-direction: column;
  width: 90%;
  height: auto;
  margin: 20px auto 20px auto;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.6352941176);
  position: relative;
}
.main-card .card-content-wrap {
  padding: 10px;
  color: var(--contentTextColor);
}
@media (min-width: 576px) {
  .main-card .card-content-wrap {
    padding: 30px;
  }
}
@media (min-width: 576px) {
  .main-card {
    font-size: 1.2rem;
  }
}
.main-card .exhibition-wrap {
  padding: 15px 0px 15px 0px;
  color: #464646;
}
@media (min-width: 768px) {
  .main-card .exhibition-wrap .map-wrap {
    display: flex;
  }
}
.main-card .exhibition-wrap .map-wrap .info-wrap {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .main-card .exhibition-wrap .map-wrap .info-wrap {
    width: 50%;
  }
}
.main-card .exhibition-wrap .map-wrap iframe {
  width: 100%;
  height: 300px;
}
@media (min-width: 768px) {
  .main-card .exhibition-wrap .map-wrap iframe {
    height: 500px;
  }
}
.main-card .agenda-wrap {
  color: #464646;
}
.main-card .agenda-wrap .agenda-title {
  margin: 0 0 15px 0;
}
.main-card .agenda-wrap .agenda-title .year {
  font-size: 1.5rem;
}
.main-card .agenda-wrap .agenda-title .agenda-date-text {
  border-bottom: 1px solid var(--blue);
  padding: 0 0 5px 0;
  font-size: 2rem;
}
.main-card .agenda-wrap .agenda-title .agenda-date-text span {
  margin-left: 10px;
  font-size: 0.8rem;
}
.main-card .agenda-wrap .agenda-list {
  padding: 15px;
  transition: var(--hoverTransition);
}
.main-card .agenda-wrap .agenda-list:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.5137254902);
  /* 奇數列的背景顏色 */
}
.main-card .agenda-wrap .agenda-list:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.849);
  /* 偶數列的背景顏色 */
}
.main-card .agenda-wrap .agenda-list:hover {
  background-color: var(--buttonHover);
}
.main-card .agenda-wrap .agenda-list .time {
  font-size: 1.2rem;
  color: var(--blue);
}
.main-card .agenda-wrap .agenda-list .content h4 {
  margin-top: 5px;
  color: var(--brown);
}
.main-card .agenda-wrap .agenda-list .download {
  align-items: center;
}
.main-card .agenda-wrap .agenda-list .download a {
  color: var(--contentTextColor);
}
.main-card .agenda-wrap .agenda-list .download a i {
  margin-right: 10px;
  font-size: 2rem;
}
.main-card .agenda-wrap .agenda-list .download:hover a {
  color: #d43737;
}
@media (min-width: 768px) {
  .main-card .agenda-wrap .agenda-list {
    display: flex;
    align-items: center;
  }
  .main-card .agenda-wrap .agenda-list .card-flex {
    display: flex;
    align-items: center;
  }
  .main-card .agenda-wrap .agenda-list .time {
    flex: 0 0 auto;
    margin: 0 40px;
  }
  .main-card .agenda-wrap .agenda-list .card-flex {
    flex: 1 1 auto;
  }
  .main-card .agenda-wrap .agenda-list .card-flex .content {
    flex: 1 1 auto;
  }
  .main-card .agenda-wrap .agenda-list .card-flex .download {
    flex: 0 0 auto;
    margin: 0 40px;
  }
}
.main-card .speakers-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.main-card .speakers-wrap .profile-card {
  position: relative;
  width: 245px;
  height: 330px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
  margin: 15px auto;
}
.main-card .speakers-wrap .profile-card .profile-image {
  width: 100%;
  height: 75%;
  overflow: hidden;
}
.main-card .speakers-wrap .profile-card .profile-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-card .speakers-wrap .profile-card .profile-info {
  padding: 10px;
}
.main-card .speakers-wrap .profile-card .profile-info h2,
.main-card .speakers-wrap .profile-card .profile-info h3 {
  font-size: 1.2rem;
  margin: 0;
  text-align: center;
  color: var(--contentTextColor);
}
.main-card .speakers-wrap .profile-card .profile-info h2 span,
.main-card .speakers-wrap .profile-card .profile-info h3 span {
  color: var(--blue);
  margin-left: 5px;
}
.main-card .speakers-wrap .profile-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.4s ease;
  color: #fff;
}
.main-card .speakers-wrap .profile-card .overlay h4 {
  font-size: 1.2em;
}
.main-card .speakers-wrap .profile-card .overlay h4::after {
  content: "";
  display: block;
  width: 0%;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  transition: 0.5s;
}
.main-card .speakers-wrap .profile-card .overlay p {
  font-weight: 300;
}
.main-card .speakers-wrap .profile-card .overlay:hover {
  opacity: 1;
}
.main-card .speakers-wrap .profile-card .overlay:hover h4::after {
  width: 100%;
}
@media (min-width: 993px) {
  .main-card .achievements-mobile {
    display: none;
  }
}
.main-card .achievements-mobile img {
  width: 100%;
}
.main-card .achievements-wrap {
  position: relative;
  display: inline-block;
}
@media (max-width: 992px) {
  .main-card .achievements-wrap {
    display: none;
  }
}
.main-card .achievements-wrap .achievements-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.main-card .achievements-wrap .achievements-img img {
  width: 100%;
}
.main-card .achievements-wrap .achievements-img .overlay1,
.main-card .achievements-wrap .achievements-img .overlay2,
.main-card .achievements-wrap .achievements-img .overlay3 {
  position: absolute;
  top: 0;
  height: 100%;
  width: 33.34%;
}
.main-card .achievements-wrap .achievements-img .overlay1::before,
.main-card .achievements-wrap .achievements-img .overlay2::before,
.main-card .achievements-wrap .achievements-img .overlay3::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  opacity: 0.3;
  background-color: rgba(0, 0, 0, 0.8235294118);
  transform: skew(45deg);
  transition: opacity 0.3s ease;
}
.main-card .achievements-wrap .achievements-img .overlay1:hover::before,
.main-card .achievements-wrap .achievements-img .overlay2:hover::before,
.main-card .achievements-wrap .achievements-img .overlay3:hover::before {
  opacity: 0;
}
.main-card .achievements-wrap .achievements-img .overlay1:hover .link-button,
.main-card .achievements-wrap .achievements-img .overlay2:hover .link-button,
.main-card .achievements-wrap .achievements-img .overlay3:hover .link-button {
  top: 48%;
  left: 50%;
  transform: translate(-50%, -48%);
  box-shadow: 5px 5px 5px #464646;
}
.main-card .achievements-wrap .achievements-img .overlay1 {
  left: 0;
}
.main-card .achievements-wrap .achievements-img .overlay1::before {
  width: 178%;
}
.main-card .achievements-wrap .achievements-img .overlay2 {
  left: 33.33%;
}
.main-card .achievements-wrap .achievements-img .overlay2::before {
  width: 100%;
}
.main-card .achievements-wrap .achievements-img .overlay3 {
  right: 0;
}
.main-card .achievements-wrap .achievements-img .overlay3::before {
  right: -78%;
  width: 178%;
}
.main-card .achievements-wrap .overlay1 .link-button,
.main-card .achievements-wrap .overlay2 .link-button,
.main-card .achievements-wrap .overlay3 .link-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 10px 15px;
  border: 1px solid rgba(199, 199, 199, 0.37);
  border-radius: 25px;
  color: var(--contentTextColor);
  transition: 0.3s ease;
}
.main-card .achievements-wrap .overlay1 .link-button i,
.main-card .achievements-wrap .overlay2 .link-button i,
.main-card .achievements-wrap .overlay3 .link-button i {
  color: var(--blue);
  margin-right: 10px;
}
.main-card .technology-vedio-wrap {
  color: var(--contentTextColor);
}
@media (min-width: 768px) {
  .main-card .technology-vedio-wrap .title {
    display: flex;
    justify-content: space-between;
  }
}
.main-card .technology-vedio-wrap h2 {
  margin-bottom: 1rem;
}
.main-card .technology-vedio-wrap .vedio-random-carousel {
  border-bottom: 2px solid rgba(196, 196, 196, 0.8235294118);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .main-card .technology-vedio-wrap .vedio-random-carousel {
    display: flex;
  }
}
.main-card .technology-vedio-wrap .vedio-random-carousel .carousel {
  width: 100%;
  max-width: 700px;
  height: 250px;
}
@media (min-width: 768px) {
  .main-card .technology-vedio-wrap .vedio-random-carousel .carousel {
    margin-right: 1.5em;
    height: 330px;
  }
}
@media (min-width: 992px) {
  .main-card .technology-vedio-wrap .vedio-random-carousel .carousel {
    height: 350px;
  }
}
.main-card .technology-vedio-wrap .vedio-random-carousel .carousel iframe {
  width: 100%;
  height: 100%;
}
.main-card .technology-vedio-wrap .vedio-random-carousel .carousel-info {
  width: 100%;
}
.main-card .technology-vedio-wrap .vedio-random-carousel .carousel-info .carousel-title-wrap {
  display: flex;
  align-items: center;
}
.main-card .technology-vedio-wrap .vedio-random-carousel .carousel-info .carousel-title-wrap img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
  margin-right: 25px;
}
.main-card .technology-vedio-wrap .vedio-random-carousel .carousel-info .carousel-title-wrap .carousel-title-info {
  margin-bottom: 20px;
  padding-top: 10px;
}
.main-card .technology-vedio-wrap .vedio-random-carousel .carousel-info .carousel-title-wrap .carousel-title-info h3 {
  color: var(--blue);
  font-size: 1.8em;
  margin-bottom: 2px;
}
.main-card .technology-vedio-wrap .vedio-random-carousel .carousel-info .carousel-title-wrap .carousel-title-info .carousel-title-detail p span {
  margin: 0 10px 0 5px;
  color: var(--blue);
  font-weight: 700;
}
@media (min-width: 768px) {
  .main-card .technology-vedio-wrap .vedio-random-carousel .carousel-info .carousel-title-wrap .carousel-title-info .carousel-title-detail p {
    margin-right: 15px;
  }
}
@media (min-width: 1200px) {
  .main-card .technology-vedio-wrap .vedio-random-carousel .carousel-info .carousel-title-wrap .carousel-title-info .carousel-title-detail {
    display: flex;
    align-items: center;
  }
}
.main-card .technology-vedio-wrap .vedio-random-carousel .carousel-info .carousel-content {
  margin: 5px 0 20px 0;
}
.main-card .technology-vedio-wrap .vedio-random-carousel .carousel-info .carousel-content p {
  text-indent: 2em;
}

.vedio-list-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.vedio-list-wrap .vedio-card {
  position: relative;
  width: 45%;
  height: 160px;
  margin: 10px 0;
  box-shadow: 5px 5px 5px #9c9c9c;
}
@media (min-width: 768px) {
  .vedio-list-wrap .vedio-card {
    width: 30%;
    height: 200px;
  }
}
@media (min-width: 992px) {
  .vedio-list-wrap .vedio-card {
    width: 23%;
    height: 250px;
  }
}
.vedio-list-wrap .vedio-card .vedio {
  width: 100%;
  height: 100%;
}
.vedio-list-wrap .vedio-card .vedio iframe {
  width: 100%;
  height: 100%;
}
.vedio-list-wrap .vedio-card .tag {
  position: absolute;
  width: 100%;
  height: 42%;
  bottom: 0;
  background-color: rgba(30, 149, 170, 0.8235294118);
  color: var(--white);
  padding: 3px;
  font-weight: 300;
}
@media (min-width: 768px) {
  .vedio-list-wrap .vedio-card .tag {
    height: 40%;
  }
}
@media (min-width: 992px) {
  .vedio-list-wrap .vedio-card .tag {
    height: 33%;
  }
}
.vedio-list-wrap .vedio-card .tag h3 {
  font-size: 0.8em;
  font-weight: 500;
}
@media (min-width: 768px) {
  .vedio-list-wrap .vedio-card .tag h3 {
    font-size: 1em;
  }
}
.vedio-list-wrap .vedio-card .tag .tag-text {
  display: flex;
  flex-direction: row;
  font-size: 0.8rem;
}
.vedio-list-wrap .vedio-card .tag .tag-text .tag-category {
  padding-right: 5px;
}

.poster-wrap {
  background-image: url(../images/exhibition_background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  color: var(--contentTextColor);
  padding: 10px;
}
.poster-wrap .poster-title {
  margin: 20px 0;
}
@media (min-width: 992px) {
  .poster-wrap .poster-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .poster-wrap .poster-title .filter-form {
    margin: 0;
  }
}
.poster-wrap .carousel-nav {
  text-align: center;
  position: absolute;
  top: 0;
  width: 106%;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.poster-wrap .carousel-nav button {
  background: none;
  border: none;
  font-size: 24px;
  color: #944e4e;
  cursor: pointer;
}
.poster-wrap .carousel-nav .owl-next,
.poster-wrap .carousel-nav .owl-prev {
  color: var(--gray) !important;
  margin: 0 1rem !important;
  background-color: #fff !important;
  height: auto;
  padding: 6px !important;
  border-radius: 10px !important;
  font-size: 1.3em !important;
  transition: var(--hoverTransition);
}
.poster-wrap .carousel-nav .owl-next:hover,
.poster-wrap .carousel-nav .owl-prev:hover {
  background-color: var(--buttonHover) !important;
  color: var(--brown) !important;
}
.poster-wrap .carousel-nav .owl-next i,
.poster-wrap .carousel-nav .owl-prev i {
  padding: 0 5px;
}
.poster-wrap .exhibition_people1,
.poster-wrap .exhibition_people2 {
  position: absolute;
  bottom: -10px;
  z-index: 2;
}
.poster-wrap .exhibition_people1 {
  right: -20px;
  width: 8%;
}
@media (max-width: 598px) {
  .poster-wrap .exhibition_people1 {
    width: 18%;
  }
}
.poster-wrap .exhibition_people2 {
  left: 100px;
  transform: scaleX(-1);
  width: 10%;
}
@media (max-width: 598px) {
  .poster-wrap .exhibition_people2 {
    width: 20%;
    left: 5px;
  }
}
.poster-wrap .poster-button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
  z-index: 2;
  color: var(--gray);
  background-color: #fff;
  text-align: center;
  height: auto;
  padding: 6px 26px;
  border-radius: 50px;
  font-size: 1.3em;
  transition: var(--hoverTransition), transform 0.2s ease;
}
@media (max-width: 598px) {
  .poster-wrap .poster-button {
    font-size: 1em;
  }
}
.poster-wrap .poster-button:hover {
  background-color: var(--buttonHover);
  color: var(--brown);
  transform: translateX(-51%) translateY(-2%);
  box-shadow: 5px 5px 5px rgba(146, 134, 134, 0.4117647059);
}

.owl-carousel {
  position: relative;
}
.owl-carousel .owl-dots {
  background-color: rgba(8, 8, 8, 0.1921568627) !important;
  height: 2rem;
  margin-top: 2rem;
}

.owl-theme .item {
  cursor: pointer;
  margin: 11rem 1rem 3rem 1rem;
  box-shadow: 5px 5px 5px rgba(8, 8, 8, 0.1921568627);
}
@media (max-width: 598px) {
  .owl-theme .item {
    margin: 7rem 1rem 2rem 1rem;
  }
}

.video-container {
  display: flex;
  justify-content: center;
  overflow: hidden;
  height: 70vh;
  padding: 20px 0 0 0;
}
.video-container iframe {
  width: 100%;
  max-width: 1200px;
}

.spectators {
  text-align: center;
  width: 50%;
  transform: translateX(50%);
  z-index: 1;
  padding-bottom: 20px;
}

@media (min-width: 992px) {
  .contcat-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.contcat-box .contact-wrap {
  background-color: rgba(255, 255, 255, 0.5215686275);
  border-radius: 10px;
  padding: 10px;
  margin: 0 0 15px 0;
}
@media (min-width: 992px) {
  .contcat-box .contact-wrap {
    width: 32%;
  }
}
.contcat-box .contact-wrap .info-wrap {
  margin: 10px 0;
}

.breadCrumb-wrap {
  background-color: rgba(255, 255, 255, 0.4509803922);
  border-radius: 10px 10px 0 0;
  box-shadow: 0px 5px 5px rgba(88, 88, 88, 0.2196078431);
  font-size: 1.3rem;
}
@media (max-width: 576px) {
  .breadCrumb-wrap {
    font-size: 1rem;
  }
}
.breadCrumb-wrap .breadCrumb {
  padding: 10px 30px;
  display: flex;
}
@media (max-width: 576px) {
  .breadCrumb-wrap .breadCrumb {
    padding-left: 10px;
  }
}
.breadCrumb-wrap .breadCrumb li:last-child a {
  color: var(--blue);
  font-weight: 500;
}
.breadCrumb-wrap .breadCrumb li + li {
  padding-left: 15px;
}
.breadCrumb-wrap .breadCrumb li + li::before {
  content: ">";
  color: #999999;
  margin-right: 15px;
}
@media (max-width: 576px) {
  .breadCrumb-wrap .breadCrumb li + li::before {
    margin-right: 10px;
  }
}
.breadCrumb-wrap .breadCrumb a {
  color: #999999;
}
.breadCrumb-wrap .breadCrumb a:hover {
  color: var(--blue);
  font-weight: 500;
}

footer {
  color: #ffffff;
  height: auto;
  width: 100%;
  text-align: center;
  background-image: url(../images/footer.png);
  background-size: cover;
  background-repeat: no-repeat;
  font-size: 1.3rem;
}
@media (max-width: 992px) {
  footer {
    font-size: 1rem;
    font-weight: 300;
  }
}
footer .footer-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 50px 20px 20px 20px;
}
@media (max-width: 768px) {
  footer .footer-content {
    padding: 5px 10px 10px 10px;
  }
}
footer .footer-content .footer-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0 0 0;
}
@media (max-width: 768px) {
  footer .footer-content .footer-item {
    margin-bottom: 10px;
  }
}
footer .footer-content .footer-item li + li {
  padding-left: 15px;
}
@media (max-width: 768px) {
  footer .footer-content .footer-item li + li {
    padding-left: 0;
  }
}
footer .footer-content .footer-item li + li::before {
  content: "|";
  color: rgba(194, 194, 194, 0.5882352941);
  margin-right: 15px;
}
@media (max-width: 768px) {
  footer .footer-content .footer-item li + li::before {
    content: "";
  }
}
footer .footer-content .footer-item a {
  color: #ffffff;
  transition: color 0.5s ease;
}
footer .footer-content .footer-item a:hover {
  color: var(--pointColor);
}
footer .footer-content .footer-item a i {
  font-size: 1.5rem;
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
}
footer .footer-bottom {
  background-color: rgba(0, 0, 0, 0.2588235294);
  padding: 10px 0;
}
footer .footer-bottom p {
  word-spacing: 15px;
}

header {
  padding: 0 30px 10px 30px;
  display: flex;
  background-color: rgba(0, 0, 0, 0.2588235294);
  box-shadow: 0 10px 10px rgba(17, 17, 26, 0.1);
  position: relative;
}

.logo {
  width: 300px;
  display: flex;
}
@media (max-width: 768px) {
  .logo {
    margin: auto;
  }
}
.logo img {
  width: 100%;
  padding-top: 15px;
}

nav {
  margin-left: auto;
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none; /* 初始狀態下隱藏 */
  }
}
nav ul {
  list-style-type: none;
  padding: 0;
  display: flex;
}

.nav-active {
  background-color: var(--buttonHover);
}
.nav-active a {
  color: var(--brown);
}

nav ul li {
  margin-left: 20px;
  background-color: rgba(255, 255, 255, 0.4235294118);
  border-radius: 0 0 25px 25px;
  transition: var(--hoverTransition);
}
nav ul li:hover {
  background-color: var(--buttonHover);
}
nav ul li:hover a {
  color: var(--brown);
}
nav ul li a {
  text-decoration: none;
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: color 0.4s ease;
  margin: 12px 25px;
}
@media (max-width: 992px) {
  nav ul li a {
    font-size: 1rem;
  }
}
nav ul li a i {
  font-size: 2rem;
  margin-bottom: 5px;
}
@media (max-width: 992px) {
  nav ul li a i {
    font-size: 1.5rem;
  }
}

.mobile-nav {
/*  position: absolute;*/
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
}
.mobile-nav .nav-control-btn {
  z-index: 12;
  position: absolute;
  top: 30px;
  right: 15px;
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.4235294118);
  border-radius: 10px;
}
@media (min-width: 767px) {
  .mobile-nav .nav-control-btn {
    display: none;
  }
}
.mobile-nav .nav-control-btn .close-icon,
.mobile-nav .nav-control-btn .close-icon::before,
.mobile-nav .nav-control-btn .close-icon::after {
  height: 3px;
  background-color: #ffffff;
  border-radius: 15px;
}
.mobile-nav .nav-control-btn .close-icon {
  position: relative;
  width: 65%;
  left: 50%;
  top: 45%;
  transform: translateX(-50%);
}
.mobile-nav .nav-control-btn .close-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  top: -8px;
  transition: 0.3s ease;
}
.mobile-nav .nav-control-btn .close-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  top: 8px;
  transition: 0.3s ease;
}
.mobile-nav ul {
  position: absolute;
  height: 100%;
  width: 300px;
  padding: 20px;
  background-image: linear-gradient(0deg, #188181, #c6f1ec);
  z-index: 10;
  left: 0;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2196078431);
  transform: translateX(-110%);
  transition: 0.3s ease;
}
.mobile-nav ul li {
  display: block;
  padding: 10px;
  border-top: 1px solid rgba(173, 173, 173, 0.6509803922);
  color: var(--contentTextColor);
}
.mobile-nav ul li:first-child {
  border: none;
}
.mobile-nav ul li i {
  margin-right: 5px;
  width: 10%;
}
.mobile-nav ul li a {
  color: var(--contentTextColor);
}
.mobile-nav ul li a i {
  margin-right: 5px;
  width: 10%;
}
.mobile-nav img {
  width: 100%;
}

@media (min-width: 767px) {
  .mobile-nav {
    display: none; /* 初始狀態下隱藏 */
  }
}
@media (max-width: 767px) {
  .banner {
    display: none; /* 初始狀態下隱藏 */
  }
}
#mobile-nav-switch {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
#mobile-nav-switch:checked + .mobile-nav {
  background-color: rgba(0, 0, 0, 0.3490196078);
  z-index: 10;
}
#mobile-nav-switch:checked + .mobile-nav label .close-icon {
  height: 0px;
}
#mobile-nav-switch:checked + .mobile-nav label .close-icon::before {
  transform: rotate(45deg);
  top: 0;
}
#mobile-nav-switch:checked + .mobile-nav label .close-icon::after {
  transform: rotate(-45deg);
  top: 0;
}
#mobile-nav-switch:checked + .mobile-nav ul {
  transform: translateX(0%);
}

:root {
  /* ===== Colors ===== */
  --pointColor: #0cbad1;
  --buttonHover: #ffee006c;
  --contentTextColor: #464646;
  --brown: #751f1f;
  --yellow: #ffb748;
  --orange: #fa6a48;
  --blue: #319499;
  --gray: #707070;
  --white: #ffffff;
  --hoverTransition: background-color 0.4s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-family: "Noto Sans TC", sans-serif;
  list-style: none;
}

a {
  text-decoration: none;
}

body {
  background-image: url(../images/版本2背景.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.border-none {
  border: 0 !important;
}/*# sourceMappingURL=style.css.map */

 /* Live Logo at Mobile Version */
@media (max-width: 768px) {
    .mobile-nav img {
        width: 14%;
    }
}