﻿@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Philosopher&display=swap");
:root {
  --animate-delay: 0.5s;
  --animate-duration: 2s;
  --bg-color: #fffbf3;
  --main-black: #222222;
  --main-color1: #ffe100;
  --main-color2: #ed731c;
  --main-color3: #c24d44;
  --main-color4: #125ead;
  --main-gray: #767171;
  --note1: #e23023;
  --sub-color1: #ed9c5f;
  --sub-color2: #feda3e;
  --sub-color3: #ffe699;
  --sub-gray: #cccccc;
}

body {
  letter-spacing: 0.05rem;
  font-size: 16px;
  /* font-family: "Noto Serif TC", "Philosopher", "Noto Sans TC", Arial, sans-serif; */
  font-family: "Philosopher", sans-serif;

  -webkit-font-smoothing: antialiased;
}

.mb_show {
  display: none;
}

.desktop_show {
  display: block;
}

a {
  color: #eeeeee;
  transition: 0.3s;
}

a:hover {
  color: var(--sub-color3);
}

::selection {
  background: var(--sub-color3);
  color: #000000;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-track-piece {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: var(--sub-color1);
  transition: 0.5s;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--main-color2);
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullet-active {
  background: var(--main-color2);
}

.transparent {
  background-color: transparent;
  color: transparent;
}

.mainmenu__nav .meninmenu li {
  position: relative;
}

.exclusive_icon {
  position: absolute;
  left: -15px;
  top: 0.2rem;
  font-size: 0.6rem;
  font-weight: bold;
  color: var(--main-color2);
  border-radius: 50%;
  border: 1px solid var(--main-color2);
  padding: 2px 4px 1px;
  -webkit-mask-image: linear-gradient(
    -75deg,
    rgba(0, 0, 0, 0.6) 30%,
    #000 50%,
    rgba(0, 0, 0, 0.6) 70%
  );
  -webkit-mask-size: 200%;
  animation: shine 4s infinite;
}

/* .exclusive_service:hover .exclusive_icon {
  -webkit-mask-image: linear-gradient(
    -75deg,
    rgba(0, 0, 0, 0.6) 30%,
    #000 50%,
    rgba(0, 0, 0, 0.6) 70%
  );
  -webkit-mask-size: 200%;
  animation: shine 3s infinite;
} */

.row_reverse {
  flex-direction: row-reverse;
}

.breakpoint:first-child {
  margin-top: 0;
}

.breakpoint {
  display: inline-block;
  margin-top: 10px;
}

.red_note {
  color: var(--note1);
  font-weight: bold;
}

.blue_note {
  color: var(--main-color4);
  font-weight: bold;
}

.underline {
  text-decoration: underline;

  text-underline-offset: 5px;
}

.bg_light_yellow {
  background-color: var(--bg-color);
}

/* 圖說文字 */
.img_info_wrap {
  position: relative;
}

.img_info {
  position: absolute;
  right: 0px;
  bottom: 5px;
  /* background-color: rgba(0, 0, 0, 0.5); */
  padding: 0 10px;
  color: var(--main-black);
  letter-spacing: 0.05rem;
  font-weight: bold;
  font-size: 0.7rem;
}

/* shine effect */
@keyframes shine {
  0% {
    -webkit-mask-position: right;
  }

  50% {
    -webkit-mask-position: left;
  }

  100% {
    -webkit-mask-position: right;
  }
}

/* float effect */
@keyframes float {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }

  50% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translatey(-20px);
  }

  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }
}

#goTop {
  position: fixed;
  right: 2vw;
  bottom: 5vh;
  z-index: 5;
  padding: 8px 12px;
  border-radius: 50%;
  background-color: var(--sub-color1);
  color: #ffffff;
  font-weight: bold;
  font-size: 1rem;
  transition: 0.5s;
}

#goTop:hover {
  background-color: var(--main-color2);
  /* color: #6E5D5A; */
}

.highlighter {
  display: inline-block;
  margin-left: 5px;
  background: var(--sub-color2);
}

.highlighter_title {
  position: relative;
  z-index: 5;
}

.highlighter_title::before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: calc(100% + 10px);
  height: 55%;
  background-color: var(--main-color1);
  content: "";
  opacity: 0.7;
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transform-origin: center left;
  animation: strikethrough 1s 0.5s cubic-bezier(0.55, 0, 0.1, 1) 1;
}

@keyframes strikethrough {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

/* .btn {
  color: #fff;
  box-shadow: none;
  display: inline-block;
  padding: 7px 15px;
  text-shadow: none;
  transition: all 0.4s ease 0s;
  background: #2e2e2e;
  border-color: #2e2e2e;
} */

button:focus {
  outline: none;
}

/* .btn:hover,
.btn:focus,
.btn:active {
  background: var(--main-color1);
  color: #fff;
  border-color: var(--main-color1);
} */

.btn-default {
  color: #2f2f2f !important;
}

.btn-default:hover,
.btn-default:focus {
  color: var(--main-color1) !important;
}

.btn-primary {
  padding: 7px 30px;
  border-color: #2e2e2e;
  border-radius: 0;
  background: #2e2e2e;
  color: #ffffff;
  font-size: 14px;
}

.btn-primary:hover,
.btn-primary:focus {
  border-color: var(--main-color1);
  background-color: var(--main-color1);
  color: #ffffff;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  border-color: #2e2e2e;
  background-color: #2e2e2e;
  color: #ffffff;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(208, 208, 208, 0.5);
}

.btn-secondary {
  padding: 7px 30px;
  border-color: #ebebeb;
  border-radius: 0;
  background-color: #ebebeb;
  color: #333333;
  font-size: 14px;
  font-size: 14px;
}

.btn-secondary:hover,
.btn-secondary:focus {
  border-color: var(--main-color1);
  background-color: var(--main-color1);
  color: #ffffff;
}

/* btn effect */
.btn {
  position: relative;
  display: inline-block;
  margin: 10px 0;
  min-width: 150px;
  width: auto;
  height: auto;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.btn span {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
  padding: 15px 20px;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  font-size: 14px;
  transition: 0.3s;
}

/*--- btn-3 ---*/
.btn-3 {
  padding: 8px;
}

.btn-3 span {
  background-color: var(--main-color3);
  color: rgb(255, 255, 255);
}

.btn-3::before,
.btn-3::after {
  position: absolute;
  z-index: 2;
  background: transparent;
  content: "";
}

/* 11. hover-border-1 */
.btn.hover-border-1::before,
.btn.hover-border-1::after {
  position: absolute;
  width: 10%;
  height: 25%;
  content: "";
  transition: 0.35s;
}

.btn.hover-border-1::before {
  position: absolute;
  top: 0;
  left: 0;
  border-top: 3px solid var(--sub-color1);
  border-left: 3px solid var(--sub-color1);
  content: "";
}

.btn.hover-border-1::after {
  position: absolute;
  right: 0;
  bottom: 0;
  border-right: 3px solid var(--sub-color1);
  border-bottom: 3px solid var(--sub-color1);
  content: "";
}

.btn.hover-border-1:hover::before,
.btn.hover-border-1:hover::after {
  position: absolute;
  width: 99%;
  height: 98%;
  content: "";
}

.overflow-hidden {
  overflow: hidden;
}

#wn__header {
  z-index: 9999;
  background: #000000db;
}

#wn__header .logo a {
  position: relative;
  padding: 0.6rem 0;
  min-width: 120px;
}

/* #wn__header .logo a img { opacity: 0; } */

#wn__header .logo a img {
  width: 80%;
  /* height: 35px; */
  filter: brightness(0.99);
  transition: 0.3s;
}

#wn__header .logo a img:hover {
  filter: brightness(1.1);
}

@media (max-width: 1300px) {
  #wn__header .logo a img {
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  #wn__header {
    display: flex;
    align-items: center;
    height: 55px;
  }
  .mainmenu__nav {
    margin: auto;
    margin-top: 60px;
    margin-bottom: 60px;
    max-width: 576px;
  }
}

#menuBGB {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999999;
  display: inline-block;
  display: none;
  width: 100%;
  height: 60px;
  background: linear-gradient(180deg, black 0%, rgba(0, 0, 0, 0) 100%);
  content: "";
  pointer-events: none;
}

@media screen and (max-width: 991px) {
  #menuBGB {
    display: none;
  }
}

@media screen and (min-width: 991px) {
  #menuBGB {
    display: none;
  }
}

#menuBGB.show {
  display: block;
}

@media screen and (min-width: 991px) {
  #nav-menu {
    padding: 0 5px;
  }
}

@media screen and (max-width: 991px) {
  #nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9997;
    overflow-y: scroll;
    overflow-y: scroll;
    padding: 0 25px;
    height: 100vh;
    background-color: #000000ea;
    opacity: 0;
    transition: 0.5s;
    transform: translateY(50px);
    pointer-events: none;
  }

  #nav-menu::-webkit-scrollbar {
    width: 2px;
  }

  #nav-menu.show {
    opacity: 1;
    transition: 0.5s;
    transform: translateY(0px);
    pointer-events: auto;
  }
}

#nav-menu .Menu1 {
  margin: 0 clamp(5px, 0.5vw, 15px);
}

#nav-menu .Menu1.active span {
  color: #ffffff;
}

@media screen and (max-width: 991px) {
  #nav-menu .Menu1.active span {
    color: var(--sub-color3);
  }
}

#nav-menu .Menu1.active .plus {
  color: var(--sub-color3);
}

@media screen and (max-width: 991px) {
  #nav-menu .Menu1 {
    width: 100%;
  }
}

#nav-menu .Menu1TitleGroup {
  display: block;
  padding: 0;
}

#nav-menu .Menu1a {
  position: relative;
  display: inline-block;
  padding: 15px 0;
  text-align: center;
}

#nav-menu .Menu1a.show span {
  color: #ffffff;
}

#nav-menu .Menu1a.show .plus {
  color: var(--sub-color3);
}

#nav-menu .Menu1a.show .mobileMenu_switch {
  position: relative;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

#nav-menu .Menu1a.show .mobileMenu_switch::before {
  background-color: var(--main-color1);
}

#nav-menu .Menu1a.show .mobileMenu_switch::after {
  background-color: var(--main-color1);
  transition: 0.3s;
  transform: rotate(0deg);
}

@media screen and (max-width: 991px) {
  #nav-menu .Menu1a {
    display: flex;
    justify-content: space-between;
    padding: 20px 15px;
  }
}

@media screen and (min-width: 991px) {
  #nav-menu .Menu1a:hover span {
    color: #ffffff;
  }

  #nav-menu .Menu1a:hover .plus {
    color: var(--sub-color3);
  }
}

#nav-menu .Menu1a span {
  position: relative;
  display: block;
  color: #bbbbbb;
  letter-spacing: 4px;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  transition: 0.5s;
}

#nav-menu .Menu1a span em {
  position: relative;
}

@media screen and (max-width: 1300px) {
  #nav-menu .Menu1a span {
    font-size: 12px;
  }
}

@media screen and (min-width: 1030px) {
  #nav-menu .Menu1a span em {
    padding-left: 16px;
  }
}

@media screen and (max-width: 991px) {
  #nav-menu .Menu1a span {
    display: inline-block;
    font-size: 26px;
    line-height: 26px;
  }
}

@media (max-width: 360px) {
  #nav-menu .Menu1a span {
    display: block;
  }
}

#nav-menu .Menu1a .TitleEn {
  margin-top: 5px;
  color: #bbbbbb;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  line-height: 14px;
}

@media screen and (max-width: 991px) {
  #nav-menu .Menu1a .TitleEn {
    font-size: 20px;
    line-height: 20px;
  }
}

#nav-menu .Menu1a .plus {
  right: clamp(5px, 1vw, 12px);
  z-index: 1;
  display: inline-block;
}

#nav-menu .Menu1a .mobileMenu_switch {
  position: relative;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

#nav-menu .Menu1a .mobileMenu_switch::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  margin: auto;
  width: 100%;
  height: 1.5px;
  background-color: #858585;
  content: "";
}

#nav-menu .Menu1a .mobileMenu_switch::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  margin: auto;
  width: 100%;
  height: 1.5px;
  background-color: #858585;
  content: "";
  transition: 0.3s;
  transform: rotate(90deg);
}

#menuBG {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9997;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: 0.5s;
  pointer-events: none;
}

@media screen and (min-width: 991px) {
  #menuBG.show {
    opacity: 1;
  }
}

.meninmenu {
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  .meninmenu {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.meninmenu li.drop .Menu2Group {
  position: fixed;
  top: 100px;
  right: 0;
  left: 0;
  left: 0;
  z-index: 3000;
  display: flex;
  margin: auto;
  padding: 0;
  width: 100vw;
  background-color: #000000ce;
  text-align: left;
  opacity: 0;
  transition: 0.5s;
  pointer-events: none;
}

@media screen and (min-width: 991px) {
  .meninmenu li.drop .Menu2Group {
    transform: translateY(-50px);
  }
}

@media screen and (max-width: 991px) {
  .meninmenu li.drop .Menu2Group {
    position: relative;
    top: 0px;
    width: 100%;
    height: 0;
    background-color: #00000000;
  }
}

.meninmenu li.drop .Menu2Group.show {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (min-width: 991px) {
  .meninmenu li.drop .Menu2Group.show {
    transform: translateY(-35px);
  }
}

@media screen and (max-width: 991px) {
  .meninmenu li.drop .Menu2Group.show {
    height: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
}

.meninmenu li.drop .Menu2Group .spacing {
  display: flex;
  justify-content: flex-end;
  padding: 5vh 4vw;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .meninmenu li.drop .Menu2Group .spacing {
    padding: 0;
  }
}

.meninmenu li.drop .Menu2Group .spacing .Menu2Title {
  position: relative;
  width: 20%;
  pointer-events: none;
}

.meninmenu li.drop .Menu2Group .spacing .Menu2Title .Menu2TitleSpacing {
  position: relative;
  display: inline-block;
  border-bottom: 2px solid var(--main-color1);
}

.meninmenu li.drop .Menu2Group .spacing .Menu2Title span {
  color: #ffffff;
  letter-spacing: 2px;
  font-size: clamp(30px, 5vw, 40px);
  line-height: clamp(30px, 5vw, 40px);
}

.meninmenu li.drop .Menu2Group .spacing .Menu2Title .TitleEn {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: clamp(14px, 3vw, 20px);
  line-height: clamp(14px, 3vw, 20px);
}

.meninmenu li.drop .Menu2Group .spacing .Menu3Group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-right: 0;
  width: 80%;
}

@media screen and (max-width: 991px) {
  .meninmenu li.drop .Menu2Group .spacing .Menu3Group {
    padding: 20px;
  }
}

.meninmenu li.drop .Menu2Group .spacing .Menu3Group .item04 {
  flex-basis: 20%;
  padding: 0 clamp(5px, 0.5vw, 15px);
}

@media screen and (max-width: 991px) {
  .meninmenu li.drop .Menu2Group .spacing .Menu3Group .item04 {
    flex-basis: 100%;
    margin-bottom: 20px;
    padding: 0;
    font-size: 1rem;
  }

  .meninmenu li.drop .Menu2Group .spacing .Menu3Group .item04 li {
    padding-bottom: 15px;
  }

  .meninmenu li.drop .Menu2Group .spacing .Menu3Group .item04 li a {
    margin: 0;
    padding: 0;
    letter-spacing: 2px;
    font-size: 20px;
    display: inline-block;
  }
}

.meninmenu li.drop .Menu2Group .spacing .Menu3Group .item04 li a {
  position: relative;
  padding-left: 15px;
  width: 100%;
  color: #bbbbbb;
  letter-spacing: 2px;
  font-size: 17px;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .meninmenu li.drop .Menu2Group .spacing .Menu3Group .item04 li a {
    font-size: 20px;
  }
}

@media screen and (max-width: 576px) {
  .meninmenu li.drop .Menu2Group .spacing .Menu3Group .item04 li a {
    font-size: 17px;
  }
}

.meninmenu li.drop .Menu2Group .spacing .Menu3Group .item04 li a .mark {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  background-color: transparent;
  opacity: 0;
  transition: 0.5s;
}

.meninmenu li.drop .Menu2Group .spacing .Menu3Group .item04 li a .mark .cube {
  width: 8px;
  height: 8px;
  background-color: #fedb3e;
  transform: rotate(45deg);
}

.meninmenu
  li.drop
  .Menu2Group
  .spacing
  .Menu3Group
  .item04
  li
  a
  .mark
  .cube
  .cubeAn {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 0.3px solid var(--main-color1);
}

.meninmenu li.drop .Menu2Group .spacing .Menu3Group .item04 li:hover a {
  color: var(--sub-color3);
}

.meninmenu li.drop .Menu2Group .spacing .Menu3Group .item04 li:hover a .mark {
  left: 0%;
  opacity: 1;
}

.meninmenu
  li.drop
  .Menu2Group
  .spacing
  .Menu3Group
  .item04
  li:hover
  a
  .mark
  .cube {
  animation: markStyle 2s 0s infinite;
}

.meninmenu li.drop .Menu2Group .spacing .Menu3Group .item04 li.active a {
  color: #ffffff;
  font-weight: bold;
}

.meninmenu li.drop .Menu2Group .spacing .Menu3Group .item04 li.active a .mark {
  left: 0%;
  opacity: 1;
}

.meninmenu
  li.drop
  .Menu2Group
  .spacing
  .Menu3Group
  .item04
  li.active
  a
  .mark
  .cube
  .cubeAn:first-child {
  animation: markCubeAn 0.8s ease-out 0s infinite;
}

@keyframes markCubeAn {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(2);
  }
}

.meninmenu li.drop .Menu2Group .spacing .Menu3Group .item04 .title {
  padding-bottom: 0;
  border-bottom: none;
  font-size: clamp(15px, 1vw, 18px);
}

.meninmenu li.drop .Menu2Group .spacing .Menu3Group .item04 .title.active a {
  color: var(--sub-color3);
}

.meninmenu
  li.drop
  .Menu2Group
  .spacing
  .Menu3Group
  .item04
  .title.active
  .Menu3Title {
  color: var(--sub-color3);
  transform: translateX(5px);
}

.meninmenu li.drop .Menu2Group .spacing .Menu3Group .item04 .title a::before {
  display: none;
}

.meninmenu li.drop .Menu2Group .spacing .Menu3Group .item04 .title a:hover {
  color: var(--sub-color3);
  /* transform: translateX(5px); */
}

@media screen and (max-width: 991px) {
  .meninmenu li.drop .Menu2Group .spacing .Menu3Group .item04 .title {
    letter-spacing: 2px;
    font-size: 30px;
  }
}

.meninmenu li.drop .Menu2Group .spacing .Menu3Group .item04 .title .Menu3Title {
  color: #ffffff;
  letter-spacing: 2px;
}

@media screen and (max-width: 991px) {
  .meninmenu
    li.drop
    .Menu2Group
    .spacing
    .Menu3Group
    .item04
    .title
    .Menu3Title {
    padding: 0;
  }
}

.meninmenu
  li.drop
  .Menu2Group
  .spacing
  .Menu3Group
  .item04
  .title
  .Menu3Title
  span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
}

.meninmenu
  li.drop
  .Menu2Group
  .spacing
  .Menu3Group
  .item04
  .title
  .Menu3Title
  svg {
  width: 10px;
  height: 10px;

  fill: var(--sub-color3);
}

@keyframes markStyle {
  0% {
    transform: rotate(45deg);
  }

  100% {
    transform: rotate(315deg);
  }
}

#menubox {
  position: relative;
  z-index: 999999;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#menubox .menu {
  position: relative;
  display: block;
  width: 30px;
  height: 20px;
  pointer-events: none;
}

#menubox span {
  position: absolute;
  right: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  border-radius: 5px;
  background-color: var(--main-color1);
  transition: 0.5s;
}

#menubox span:nth-child(1) {
  top: 0;
}

#menubox span:nth-child(2) {
  top: 9px;
}

#menubox span:nth-child(3) {
  bottom: 0;
}

#menubox:hover span:nth-child(1) {
  width: 100%;
}

#menubox:hover span:nth-child(3) {
  width: 100%;
}

#menubox.show span:nth-child(1) {
  top: 9px;
  width: 100%;
  transform: rotate(45deg);
}

#menubox.show span:nth-child(2) {
  top: 0px;
  opacity: 0;
}

#menubox.show span:nth-child(3) {
  bottom: 9px;
  width: 100%;
  transform: rotate(-45deg);
}

#SVGBanner {
  position: relative;
  width: 100%;
  height: 100vh;
}

#bannerTitle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  z-index: 999;
  display: flex;
  overflow: hidden;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #ffffff;
  pointer-events: none;
}

@media screen and (max-width: 991px) {
  #bannerTitle {
    top: 66px;
  }
}

#bannerTitle .titleBox {
  text-align: center;
}

#bannerTitle .titleBox .title {
  transition: opacity 5s 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

#bannerTitle .titleBox h2 span {
  display: inline-block;
}

#bannerTitle .titleBox #SVGTitle {
  width: 58vw;
}

#bannerTitle .titleBox .subTitle {
  text-align: right;
  letter-spacing: 2px;
}

#bannerTitle .titleBox .subTitle h2 {
  overflow: hidden;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 20px;
}

#bannerTitle .titleBox .subTitle h2 span {
  position: relative;
  display: inline-block;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  opacity: 0;
  transition: 0.5s;
  transform: translateY(100%);
}

@media screen and (max-width: 991px) {
  #bannerTitle .titleBox .subTitle h2 span {
    font-size: 16px;
  }
}

#bannerTitle .titleBox .subTitle h2 span q {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 0%;
  height: 1.5px;
  background-color: #ffffff;
  transition: 0.3s;
}

#bannerTitle .titleBox .subTitle h3 {
  overflow: hidden;
  margin-bottom: 0;
}

#bannerTitle .titleBox .subTitle h3 span {
  display: inline-block;
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  opacity: 0;
  transition: 0.5s;
  transform: translateY(100%);
}

@media screen and (max-width: 991px) {
  #bannerTitle .titleBox .subTitle h3 span {
    font-size: 16px;
  }
}

#bannerTitle .titleBox .subTitle.show h2 span {
  opacity: 1;
  transition-delay: 0.3s;
  transform: translateY(0%);
}

#bannerTitle .titleBox .subTitle.show h2 span q {
  width: 100%;
  transition-delay: 0.8s;
}

#bannerTitle .titleBox .subTitle.show h3 span {
  opacity: 1;
  transform: translateY(0%);
}

@media screen and (min-width: 991px) {
  .col-lg-2-5 {
    flex: 0 0 19.999999%;
    box-sizing: border-box;
    padding: 0 15px;
    max-width: 19.999999%;
    width: 2.4%;
  }
}

.banner_none_top {
  padding-top: 10vh;
}

.banner_in {
  position: relative;
  display: flex;
  display: flex;
  align-items: center;
  align-items: center;
  justify-content: center;
  justify-content: center;
  width: 100%;
  /* margin-top: 65px; */
  height: 62vh;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 62vh;
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
}

.banner_in .BannerTitleGroup {
  z-index: 10;
  text-align: center;
}

.banner_in .BannerTitleGroup h2 {
  color: #ffffff;
  letter-spacing: 5px;
  letter-spacing: 400;
  font-size: 1.5vw;
}

.banner_in .BannerTitleGroup h3 {
  position: relative;
  color: #ffffff;
  letter-spacing: 4px;
  font-size: 3.5vw;
  font-size: 3vw;
}

.banner_in .BannerTitleGroup h3 .TitleOne {
  color: var(--main-color1);
}

@media screen and (min-width: 767px) and (max-width: 1024px) {
  .banner_in {
    /* height: 30vh; */
  }
}

@media screen and (max-width: 767px) {
  .banner_in {
    height: 40vh;
    background-attachment: unset;
  }

  .banner_in .BannerTitleGroup {
    /* transform: translateY(20px); */
  }

  .banner_in .BannerTitleGroup h2 {
    font-size: 4vw;
  }

  .banner_in .BannerTitleGroup h3 {
    letter-spacing: 1px;
    font-size: 7vw;
  }
}

/* main content */
/* nav下面的區塊下移 */
#after_nav.row {
  margin-top: 65px;
}

@media screen and (min-width: 767px) and (max-width: 1024px) {
  #after_nav.row {
    margin-top: 55px;
  }
}

.pagesPT {
  /* width: 70%; */
  margin: auto;
  padding-top: 10vh;
  text-align: justify;
}

@media (min-width: 1200px) {
  .pagesPT {
    /* width: 70%; */
    margin: auto;
  }
}

@media screen and (max-width: 1024px) {
  .pagesPT {
    padding-top: 5vh;
  }
}

.pagesPT h4 {
  font-weight: bold;
  font-size: 2rem;
}

.section-padding--lg {
  padding: 20vh 0 10vh;
}

@media (max-width: 768px) {
  .section-padding--lg {
    padding-top: 100px;
  }
}

.post_content .row {
  padding: 5rem 0;
  /* padding: 3rem 0 5rem; */
  /* display: block; */
}

.post_content .paragraph {
  margin: auto;
  margin-bottom: 3rem;
  width: 70%;
}

.post_content h4 {
  margin-bottom: 15px;
}

.post_content h6 {
  margin-bottom: 15px;
  line-height: 1.6;
}

.post_content p {
  margin-bottom: 10px;
  color: #474747;
  text-align: justify;
  letter-spacing: 1px;
  font-weight: 400;
  font-size: 1rem;
  font-family: "Philosopher", Arial, "微軟正黑體", "Microsoft JhengHei",
    sans-serif;
  line-height: 1.8;
}

.post_content ul {
  /* margin-bottom: 30px; */
}

.post_content ol {
  padding-left: 25px;
  /* margin-bottom: 30px; */
}

.post_content li {
  position: relative;
  margin-bottom: 3px;
  padding-left: 25px;
  color: #474747;
  text-align: justify;
  letter-spacing: 1px;
  font-weight: 400;
  font-size: 14px;
  font-family: "Philosopher", Arial, "Microsoft JhengHei", sans-serif;
  line-height: 1.8;
}

.post_content li::before {
  position: absolute;
  top: 9px;
  left: 5px;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--main-color1);
  content: "";
}

.post_content .in-gtutbox {
  padding: 30px 15px;
}

/* 首頁 */
.index_wrap .col-md-12 {
  display: flex;
}

.index_wrap .slogan {
  margin-bottom: 40px;
  width: 45%;
  margin: auto;
  text-align: justify;
  position: relative;
  padding: 5rem;
}

.index_wrap .slogan.slogan1 {
  width: 45%;
}

.index_wrap .slogan.slogan2 {
  width: 45%;
}

/* shape morph */
.c-organic__shape {
  width: 100%;
  height: 100%;
  background-repeat: repeat;
  background-size: auto auto;
  background-size: 100%;
  background-repeat: repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.c-organic__shape--1 {
  animation: organic-shape-bg 30s linear infinite forwards,
    organic-shape-morph-1 50s linear infinite forwards;
  background: #ccc;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
}

.c-organic__shape--2 {
  animation: organic-shape-bg 30s linear infinite forwards,
    organic-shape-morph-2 50s linear infinite forwards;
  background: #ccc;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
}

@keyframes organic-shape-bg {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  to {
    background-position: 0 50%;
  }
}

@keyframes organic-shape-morph-1 {
  0% {
    border-radius: 51% 49% 34% 66% / 39% 66% 34% 61%;
  }
  10% {
    border-radius: 39% 61% 38% 62% / 53% 54% 46% 47%;
  }
  20% {
    border-radius: 56% 44% 52% 48% / 57% 35% 65% 43%;
  }
  30% {
    border-radius: 41% 59% 45% 55% / 33% 56% 44% 67%;
  }
  40% {
    border-radius: 46% 54% 60% 40% / 55% 74% 26% 45%;
  }
  50% {
    border-radius: 44% 56% 22% 78% / 31% 74% 26% 69%;
  }
  60% {
    border-radius: 31% 69% 32% 68% / 31% 71% 29% 69%;
  }
  70% {
    border-radius: 44% 56% 60% 40% / 63% 36% 64% 37%;
  }
  80% {
    border-radius: 46% 54% 38% 62% / 44% 48% 52% 56%;
  }
  90% {
    border-radius: 66% 34% 57% 43% / 49% 51% 49% 51%;
  }
  100% {
    border-radius: 51% 49% 34% 66% / 39% 66% 34% 61%;
  }
}

@keyframes organic-shape-morph-2 {
  0% {
    border-radius: 51% 49% 34% 66% / 39% 66% 34% 61%;
  }
  10% {
    border-radius: 66% 34% 57% 43% / 49% 51% 49% 51%;
  }
  20% {
    border-radius: 46% 54% 38% 62% / 44% 48% 52% 56%;
  }
  30% {
    border-radius: 44% 56% 60% 40% / 63% 36% 64% 37%;
  }
  40% {
    border-radius: 31% 69% 32% 68% / 31% 71% 29% 69%;
  }
  50% {
    border-radius: 44% 56% 22% 78% / 31% 74% 26% 69%;
  }
  60% {
    border-radius: 46% 54% 60% 40% / 55% 74% 26% 45%;
  }
  70% {
    border-radius: 41% 59% 45% 55% / 33% 56% 44% 67%;
  }
  80% {
    border-radius: 56% 44% 52% 48% / 57% 35% 65% 43%;
  }
  90% {
    border-radius: 39% 61% 38% 62% / 53% 54% 46% 47%;
  }
  100% {
    border-radius: 51% 49% 34% 66% / 39% 66% 34% 61%;
  }
}

/* about */
.about_wrap .banner_in {
  justify-content: flex-start;
  padding-left: 10vw;
}

.about_wrap .blur {
  background-color: rgba(0, 0, 0, 0.5);
}

.about_wrap .BannerTitleGroup {
  position: relative;
  text-align: justify;
}

.about_wrap .BannerTitleGroup::before {
  position: absolute;
  top: 0;
  left: -50px;
  width: 16px;
  height: 100%;
  background-color: var(--main-color3);
  content: "";
}

.about_wrap .BannerTitleGroup h3 {
  display: flex;
  justify-content: space-between;
  width: calc(100% + 10px);
}

.about_wrap .BannerTitleGroup h2 {
  display: flex;
  justify-content: space-between;
  width: calc(100% + 10px);
  font-size: 1.8rem;
}

.pure_txt .AnTitleStyle h4 {
  position: relative;
}

.pure_txt .AnTitleStyle h4:before {
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: -1;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--main-color1);
  content: "";
  opacity: 0.5;
}

.about_wrap .full_bg_wrap {
  padding: 7rem 0;
}

.full_bg_wrap.bg_red {
  background-color: var(--main-color3);
}

.full_bg_wrap .AnTitleStyle {
  position: relative;
  margin-bottom: 50px;
}

.full_bg_wrap .AnTitleStyle::before {
  position: absolute;
  top: 0;
  left: -20px;
  width: 12px;
  height: 100%;
  background-color: #ffffff;
  content: "";
}

.full_bg_wrap .AnTitleStyle h4,
.full_bg_wrap .AnTitleStyle h6 {
  display: flex;
  justify-content: space-between;
}

.full_bg_wrap .AnTitleStyle h4 {
  margin-bottom: 5px;
  width: 150px;
  color: #ffffff;
}

.full_bg_wrap .AnTitleStyle h6 {
  width: 150px;
  color: var(--sub-color3);
  font-size: 1.6rem;
}

/* 合作流程輪播 */
#multi_swiper {
  --swiper-navigation-size: 22px;
}

.swiper-button-prev,
.swiper-button-next {
  background-image: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  /* border-radius: 50%; */
  /* padding: 5px 10px; */
  /* background-color: var(--main-black); */
  color: var(--main-black);
  font-weight: bold;
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
  background-color: var(--main-color3);
  color: #000000;
}

.swiper-button-next {
  right: 12vw;
}

.swiper-button-prev {
  left: 12vw;
}

.swiper-button-next,
.swiper-button-prev {
  top: 55%;
}

.multiswiper_wrap {
  padding-top: 3rem;
}

#multi_swiper {
  margin: auto;
  width: 100%;
  height: auto;
}

#multi_swiper.swiper-container {
  padding: 10px 0;
  height: auto;
  border-radius: 35px;
}

#multi_swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 20px 0;
  /* justify-content: flex-start; */
  /* align-items: center; */
  height: auto;
  border: 4px solid var(--sub-color1);
  border-radius: 40px;
  background-color: #ffffff;
  /* border: 4px solid #C00000; */
  box-shadow: 5px 2px 5px 5px rgba(0, 0, 0, 0.15);
  text-align: center;
}

#multi_swiper .swiper-slide .number {
  position: absolute;
  bottom: -15px;
  left: 50%;
  z-index: 2;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--main-color3);
  color: #ffffff;
  font-size: 0.8rem;
  line-height: 20px;
  transform: translate(-50%, 0%);
}

/* #multi_swiper .swiper-slide .number {
  display: inline-block;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  line-height: 15px;
  margin-right: 5px;
  background-color: var(--main-color3);
  color: #fff;
  font-size: 0.8rem;
} */

#multi_swiper .swiper-slide .slide_img {
  width: 100%;
  height: auto;
}

#multi_swiper .swiper-slide img {
  width: 80%;
  height: auto;
}

.multiswiper_txt {
  margin: auto;
  padding: 1rem 0;
  width: 75%;
  text-align: left;
}

.multiswiper_txt h5 {
  position: relative;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 2.2rem;
}

.multiswiper_txt h5::before {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: var(--main-color3);
  content: "";
}

.multiswiper_txt p {
  margin-top: 20px;
  text-align: justify;
  font-weight: bold;
  font-size: 0.9rem;
  min-height: 110px;
}

.multiswiper_txt a {
  display: block;
  margin-top: 10px;
  color: #34abe3;
  font-weight: bold;
}

.multiswiper_txt a:hover {
  text-decoration: underline;
  filter: brightness(1.1);
}

/* 合作夥伴 */
.full_bg_wrap.bg_white .AnTitleStyle h4 {
  color: var(--main-color3);
}

.full_bg_wrap.bg_white .AnTitleStyle h6 {
  color: var(--main-gray);
}

.full_bg_wrap.bg_white .AnTitleStyle::before {
  background-color: var(--main-color3);
}

.partner_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.one_partner {
  flex: 1;
  margin: 20px 5px;
  padding: 0px 20px 20px;
  min-width: calc((100% - 20px) / 5);
  max-width: calc((100% - 20px) / 5);
  width: calc((100% - 20px) / 5);
  /* border: 1px solid #eee; */
  box-shadow: 2px 4px 5px 2px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.one_partner div {
  display: flex;
  flex-direction: column;
  margin: auto;
  width: 90%;
}

.one_partner div img {
  margin: auto;
  width: 80%;
}

.one_partner div span {
  margin: auto;
  width: 100%;
  letter-spacing: 0.1rem;
  font-weight: bold;
}

/* message_service */
/* @media(min-width:768px) { */
.message_service_wrap .container-fluid {
  padding-right: 0;
  padding-left: 0;
}

.message_service_wrap .row {
  margin-right: 0;
  margin-left: 0;
}

/* } */

.message_service_wrap .blur {
  background-color: rgba(255, 255, 255, 0.5);
}

.message_service_wrap .BannerTitleGroup h3,
.message_service_wrap .BannerTitleGroup h2 {
  color: var(--main-black);
}

.message_service_wrap .post_content .AnTitleStyle h4 {
  width: 100%;
  word-break: keep-all;
}

.message_service_wrap .post_content .AnTitleStyle h6 {
  width: 100%;
}

.message_service_wrap.pagesPT {
  padding-top: 0;
}

.message_service_wrap .post_content {
  display: flex;
  justify-content: space-between;
}

.message_service_wrap .post_content .paragraph {
  margin: auto;
  width: 70%;
}

.message_service_wrap .post_content .row.full_bg_wrap {
  display: flex;
  align-items: center;
  /* padding: 0; */
  width: 50%;
}

.message_service_wrap .post_content .row.img_wrap {
  padding: 0;
  width: 50%;
}

.message_service_wrap .post_content .row.img_wrap img {
  width: 100%;
}

.message_service_wrap .post_content .row.img_wrap.sms_wrap,
.message_service_wrap .post_content .row.img_wrap.mms_wrap {
  position: relative;
  padding: 4rem 0;
  background-color: #e7bab7;
}

.message_service_wrap .post_content .img_wrap.sms_wrap .phone_bg {
  margin: auto;
  width: 35%;
}

.sms_wrap img,
.mms_wrap img {
  filter: drop-shadow(5px 5px 2px rgba(0, 0, 0, 0.2));
}

.sms_txt01,
.sms_txt02 {
  position: absolute;
  left: 20%;
  width: 30%;
}

.sms_txt01 img,
.sms_txt02 img {
  width: 100%;
  filter: drop-shadow(5px 5px 2px rgba(0, 0, 0, 0.2));
}

.sms_txt01 {
  top: 37%;
}

.sms_txt02 {
  top: 52%;
}

.message_service_wrap .post_content .img_wrap.mms_wrap .phone_bg {
  margin: auto;
  width: 40%;
}

.mms_txt01,
.mms_txt02 {
  position: absolute;
  width: 30%;
}

.mms_txt01 img,
.mms_txt02 img {
  width: 100%;
  filter: drop-shadow(5px 5px 2px rgba(0, 0, 0, 0.2));
}

.mms_txt01 {
  top: 35%;
  left: 20%;
}

.mms_txt02 {
  top: 45%;
  right: 25%;
  width: 18%;
}

.paragraph_slogan {
  margin-bottom: 10px;
  /* position: relative; */
  font-weight: bold;
  font-size: 1.4rem;
}

/* 平台功能 */
.message_service_wrap .normal_section.post_content .row.full_bg_wrap {
  padding: 7rem 0;
  width: 100%;
}

.features_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.features_wrap .one_feature {
  margin: 20px 0;
  padding: 30px;
  width: 48%;
  box-shadow: 2px 4px 5px 2px rgba(0, 0, 0, 0.2);
}

.one_feature .title {
  position: relative;
  color: var(--main-color3);
  font-weight: bold;
  font-size: 1.2rem;
}

.one_feature .title:before {
  position: absolute;
  top: -3px;
  left: -8px;
  z-index: -1;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--main-color1);
  content: "";
  opacity: 0.5;
}

.one_feature p {
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: bold;
}

/* 數位廣告投放 */
.digital_ad_wrap .full_bg_wrap {
  padding: 7rem 0;
}

.digital_ad_wrap .paragraph {
  margin: auto;
  width: 70%;
}

.digital_ad_wrap .one_partner {
  position: relative;
  flex: 1 1 0%;
  margin: 20px 5px;
  padding: 0px 0px 20px;
  min-width: calc((100% - 20px) / 4);
  max-width: calc((100% - 20px) / 4);
  width: calc((100% - 20px) / 8);
  box-shadow: rgb(0 0 0 / 20%) 2px 4px 5px 2px;
  text-align: center;
}

.one_partner .card_txt {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  /* opacity: 0.9; */
  display: flex;
  overflow: hidden;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  /* height: 100%; */
  height: 0;
  background-color: var(--main-color3);
  color: #ffffff;
  font-size: 1rem;
  transition: 0.7s ease;
}

.one_partner .card_txt p {
  margin-bottom: 5px;
}

.one_partner .card_txt :last-child {
  margin-bottom: 0;
}

.one_partner .card_txt p span {
  padding-right: 5px;
}

/* hover */
.digital_ad_wrap .one_partner:hover .card_txt {
  height: 100%;
  opacity: 0.9;
}

/* 簡訊廣告投放 */
.message_ad_wrap .normal_section {
  position: relative;
  width: 100%;
}

.message_ad_wrap .bg_asset {
  position: absolute;
  z-index: -1;
  /* height: 150px; */
}

.bg_asset.asset1 {
  bottom: 0%;
  left: 0;
  width: 100%;
  /* background-color: #e8f1f6; */
  /* opacity: 0.8; */
}

/* 簡訊廣告投放-用戶分析 */
.user_analyze_section .features_wrap .one_feature {
  width: 30%;
  border: 4px solid var(--sub-color1);
  background-color: #ffffff;
}

.user_analyze_section .features_wrap .one_feature .title {
  padding-bottom: 5px;
  color: var(--main-black);
  text-align: center;
}

.user_analyze_section .features_wrap .one_feature .title:before {
  position: absolute;
  top: unset;
  bottom: -10px;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 10px;
  border-radius: 0;
  background-color: var(--main-color3);
  content: "";
  opacity: 1;
}

.user_analyze_section .features_wrap .one_feature .img {
  /* width: 80%; */
  margin: auto;
}

.user_analyze_section .features_wrap .one_feature .txt {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}

.user_analyze_section .features_wrap .one_feature .txt p {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 1rem;
}

.user_analyze_section .highlighter_title::before {
  bottom: 5px;
  left: -10px;
  z-index: -1;
  width: calc(100% + 20px);
  height: 30%;
  opacity: 0.7;
  animation: none;
}

/* LBS-即時定位簡訊 */
.lbs_msg_wrap.message_service_wrap .post_content .row.img_wrap {
  justify-content: center;
}

.lbs_msg_wrap.message_service_wrap .post_content .row.img_wrap img {
  width: 85%;
}

.lbs_img {
  position: relative;
  width: 100%;
  text-align: center;
  text-align: right;
}

.lbs_img .section {
  position: absolute;
  width: 300px;
  /* transform: translateY(150px); */
  /* opacity: 0; */
  transition: 2s all ease;
}

.lbs_img .section.active {
  opacity: 1;
  transform: translateY(0);
}

.lbs_img .section img {
  width: 100%;
}

.lbs_img .section div {
  position: relative;
}

.lbs_img .section span {
  position: absolute;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.lbs_img .section.part1 {
  top: 150px;
  right: 25%;
}

.lbs_img .section.part1 img {
  /* transform: scaleX(-1); */
  width: 100% !important;
}

.lbs_img .section.part1 span {
  top: 45%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}

.lbs_img .section.part2 {
  bottom: 120px;
  left: 8%;
}

.lbs_img .section.part2 img {
  transform: scaleY(-1);
  width: 100% !important;
}

.lbs_img .section.part2 span {
  top: 55%;
  left: 50%;
  width: 90%;
  font-size: 1.1rem;
  text-align: justify;
  transform: translate(-50%, -50%);
}

/* 電信影音聯播網 */
.ad_network_wrap.message_service_wrap
  .normal_section.post_content
  .row.full_bg_wrap.bg_light_yellow {
  background-color: var(--bg-color);
}

.ad_network_wrap .user_analyze_section .col-12.AnTitleStyle {
  position: relative;
}

.ad_network_wrap .combine_partners {
  position: absolute;
  top: -30px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad_network_wrap .combine_partners img {
  width: 150px;
}

.ad_network_wrap .combine_partners span {
  font-size: 2rem;
}

.ad_network_wrap .user_analyze_section .features_wrap {
  justify-content: center;
}

.ad_network_wrap .user_analyze_section .features_wrap .one_feature {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 30px 10px;
  width: calc(100% / 3);
  border: none;
  border-bottom: 6px solid var(--sub-gray);
  background-color: transparent;
  box-shadow: none;
}

.ad_network_wrap
  .user_analyze_section
  .features_wrap
  .one_feature:nth-child(2) {
  border-right: 6px solid var(--sub-gray);
  border-left: 6px solid var(--sub-gray);
}

.ad_network_wrap
  .user_analyze_section
  .features_wrap
  .one_feature:nth-child(4) {
  border-bottom: none;
}

.ad_network_wrap
  .user_analyze_section
  .features_wrap
  .one_feature:nth-child(5) {
  border-bottom: none;
  border-left: 6px solid var(--sub-gray);
}

.ad_network_wrap .user_analyze_section .features_wrap .one_feature.flexgrow {
  flex-grow: 1;
}

.ad_network_wrap .user_analyze_section .features_wrap .one_feature .img {
  margin-top: 0;
  margin-bottom: 10px;
  width: 100px;
}

.ad_network_wrap .user_analyze_section .features_wrap .one_feature .title {
  font-size: 1rem;
}

.ad_network_wrap
  .user_analyze_section
  .features_wrap
  .one_feature
  .title:before {
  content: none;
}

/* 支援平台 */
.support_platform_section .features_wrap {
  display: flex;
  flex-direction: column;
}

.support_platform_section .features_wrap .platform {
  position: relative;
  display: flex;
  justify-content: end;
  margin-bottom: 30px;
}

.support_platform_section .features_wrap .platform .title {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px 0px 15px 20px;
  width: 20%;
  background-color: var(--main-color4);
  color: #ffffff;
  font-weight: bold;
  transform: translate(0%, -50%);

  clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
}

.support_platform_section .features_wrap .platform .logos {
  display: flex;
  justify-content: end;
  padding: 10px;
  width: 85%;
  border: 4px solid var(--sub-gray);
  border-radius: 20px;
}

.support_platform_section .features_wrap .platform .logo_wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 95%;
}

.support_platform_section .features_wrap .platform .logos .img {
  width: calc(100% / 6);
}

/* 高爾夫 */

/* 高爾夫輪播 */
.golf_wrap.message_service_wrap .post_content {
  width: 100%;
}

#score_cards_swiper {
  /* width: 300px; */
}

#score_cards_swiper.swiper-container .swiper-slide {
  position: relative;
  text-align: center;
}

#score_cards_swiper.swiper-container .swiper-slide span {
  position: absolute;
  bottom: 0px;
  left: 2.5%;
  color: var(--bg-color);
  font-size: 0.9rem;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
}

#score_cards_swiper .title {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.golf_wrap.message_service_wrap .post_content .row.img_wrap {
  align-self: center;
  justify-content: center;
}

.golf_wrap.message_service_wrap .post_content .row.img_wrap img {
  width: 95%;
}
/* 輪播end */

.golf_wrap .bg_light_yellow {
  background-color: var(--bg-color);
}

.golf_wrap .bg_light_yellow .full_bg_wrap .AnTitleStyle h4 {
  color: var(--main-color3);
}

.golf_wrap .bg_light_yellow .full_bg_wrap .AnTitleStyle::before {
  background-color: var(--main-color3);
}

.golf_wrap .bg_light_yellow .full_bg_wrap .AnTitleStyle h6 {
  color: var(--main-gray);
}

.golf_wrap.digital_ad_wrap .features_wrap .paragraph {
  width: 90%;
}

.golf_wrap.digital_ad_wrap .features_wrap .full_bg_wrap .AnTitleStyle h4 {
  width: auto;
}

.fileds_table,
.fileds_table th,
.fileds_table td {
  border: 1px solid var(--main-color2);
  font-weight: bold;
}

.golf_wrap .fileds_table {
  width: 100%;
  text-align: center;
  margin-top: 40px;
}

.golf_wrap .fileds_table th {
  background-color: var(--main-color3);
  color: var(--bg-color);
  text-align: center;
  padding: 10px;
}

.golf_wrap .fileds_table tr {
}

.golf_wrap .fileds_table td {
  padding: 10px 30px;
  vertical-align: middle;
}

.golf_wrap.digital_ad_wrap .features_wrap .one_partner {
  margin: 40px;
  min-width: calc((100% - 20px) / 3);
  max-width: calc((100% - 20px) / 2);
  width: calc((100% - 20px) / 8);
}

.golf_wrap.digital_ad_wrap .features_wrap .one_partner div img {
  width: 100%;
}

.golf_wrap.digital_ad_wrap .features_wrap .one_partner div span {
  font-size: 1.4rem;
}

.golf_wrap.digital_ad_wrap .features_wrap .one_partner .card_txt {
  font-size: 1rem;
  opacity: 0.9;
}

.golf_wrap.digital_ad_wrap .features_wrap .one_partner .card_txt h5 {
  margin-bottom: 40px;
  font-size: 1.4rem;
}

.golf_wrap.digital_ad_wrap .features_wrap .one_partner .card_txt p {
  margin: 0 auto;
  width: 70%;
  text-align: justify;
  font-size: 1rem;
}

/* 業務團隊 */
.team_wrap .user_analyze_section .features_wrap .one_feature {
  padding: 30px 40px;
}
.team_wrap .user_analyze_section .features_wrap .one_feature .img {
  margin-bottom: 10px;
}
.team_wrap .user_analyze_section .features_wrap .one_feature .title span {
  display: inline-block;
  margin-left: 10px;
  font-style: italic;
  font-size: 0.8rem;
}

/* 合作案例 */
.works_wrap.digital_ad_wrap .paragraph {
  width: 90%;
}

.works_wrap.digital_ad_wrap .one_partner {
  margin: 20px 15px;
  padding: 0;
  min-width: calc((100% - 20px) / 6);
  max-width: calc((100% - 20px) / 5);
  width: calc((100% - 20px) / 6);
}

.works_wrap .one_partner div {
  width: 100%;
}

.works_wrap .one_partner div img {
  width: 100%;
}

.works_wrap .one_partner .card_txt {
  background-color: #c24d44c1;
  font-weight: bold;
}

.works_wrap .one_partner .card_txt a {
  width: 100%;
}

.works_wrap .one_partner .card_txt .title {
  margin-bottom: 40px;
  font-size: 1.6rem;
}

.works_wrap .one_partner .card_txt .page_btn {
  margin: auto;
  padding: 10px;
  width: 60%;
  border: 3px solid var(--bg-color);
  border-radius: 10px;
  background-color: var(--bg-color);
  color: var(--main-color3);
  transition: 0.5s;
}

.works_wrap .one_partner .card_txt .page_btn:hover {
  border: 3px solid var(--sub-color1);
  background-color: var(--main-color3);
  color: var(--bg-color);
}

/* ar實境與vr */
.ar_wrap iframe {
  min-height: 80vh;
  width: 100%;
}

.ar_wrap .full_bg_wrap .AnTitleStyle h4,
.ar_wrap .full_bg_wrap .AnTitleStyle h6 {
  width: 100%;
  letter-spacing: 0.1rem;
}

.one_ar {
  margin-bottom: 100px;
}
.one_ar .title {
  margin-bottom: 20px;
  color: var(--bg-color);
  font-weight: bold;
  font-size: 2rem;
}

.one_ar .title span {
  display: inline-block;
  padding: 10px 30px;
  border: 4px solid var(--bg-color);
}

.one_ar .vr_btn {
  margin-top: 50px;
  text-align: center;
}

.one_ar a {
  display: inline-block;
  padding: 10px 30px;
  width: 100%;
  border: 3px solid var(--bg-color);
  background-color: var(--bg-color);
  color: var(--main-color3);
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.one_ar a:hover {
  border: 3px solid var(--sub-color1);
  background-color: var(--main-color3);
  color: var(--bg-color);
}

.section-9 .vr_btn {
  margin-top: 50px;
  text-align: center;
}

.section-9 .vr_btn a {
  display: inline-block;
  padding: 10px 30px;
  width: 100%;
  color: var(--bg-color);
  background-color: var(--main-color3);
  border: 3px solid var(--main-color3);
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.section-9 .vr_btn a:hover {
  border: 3px solid var(--sub-color1);
  background-color: var(--bg-color);
  color: var(--main-color3);
}

/* 行動網頁 */
.action_page_wrap.message_service_wrap .post_content.one_feature {
  width: 100%;
}

.action_page_wrap.message_service_wrap .post_content.one_feature .row.img_wrap {
  display: flex;
  justify-content: center;
  /* width: 20%; */
  padding: 40px 0;
}

.action_page_wrap.message_service_wrap
  .post_content.one_feature
  .row.img_wrap
  img {
  width: 35%;
  height: auto;
  filter: drop-shadow(5px 5px 2px rgba(0, 0, 0, 0.2));
}

.action_page_wrap .one_feature p {
  font-weight: bold;
  font-size: 1.4rem;
}

.action_page_wrap .img_video_wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.action_page_wrap video {
  position: absolute;
  left: 50%;
  width: 29.2%;
  transform: translate(-50%, -50%);
}

.action_page_wrap .feature2 video {
  top: 47%;
}

.action_page_wrap .feature4 video {
  top: 45%;
}

/* 公司公告 */
.news_wrap .user_analyze_section .features_wrap .one_feature {
  margin-bottom: 60px;
  padding: 0 0 30px 0;
  transition: 0.5s;
}

.news_wrap .user_analyze_section .features_wrap .one_feature:hover {
  transform: translateY(-10px);
}

.news_wrap .user_analyze_section .features_wrap .one_feature .img {
  margin-bottom: 30px;
}

.news_wrap .user_analyze_section .features_wrap .one_feature .title {
  margin: auto;
  width: 80%;
  text-align: left;
  font-size: 1.4rem;
}

.news_wrap .user_analyze_section .features_wrap .one_feature .txt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  margin: auto;
  width: 80%;
  text-overflow: ellipsis;

  -webkit-line-clamp: 2;
}

.news_wrap .user_analyze_section .features_wrap .one_feature .title:before {
  content: none;
}

.go_to_news {
  margin: auto;
  margin-top: 20px;
  width: 80%;
  color: var(--main-color3);
  text-align: right;
  font-weight: bold;
}

.go_to_news span {
  position: relative;
}

.go_to_news span::before {
  position: absolute;
  bottom: -5px;
  left: -5%;
  width: 110%;
  width: 0%;
  height: 2px;
  background-color: var(--main-color3);
  content: "";
  transition: 0.5s;
}

.go_to_news span:hover::before {
  width: 110%;
}

/* 媒體投放案例 */
.works_ad_wrap.digital_ad_wrap .paragraph {
  width: 80%;
  text-align: center;
}

.works_ad_wrap .slogan {
  display: flex;
  margin-bottom: 40px;
  text-align: justify;
}

.works_ad_wrap .slogan span {
  font-weight: bold;
  font-size: 1.4rem;
}

#filter form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#filter form span {
  margin-right: 20px;
  font-weight: bold;
  font-size: 1.2rem;
}

#filter .filter {
  flex: 1;
}

#filter select.filter,
#filter select.filter option {
  font-weight: bold;
}

.works_ad_wrap .features_wrap {
  justify-content: flex-start;
  margin-top: 30px;
}

.works_ad_wrap .user_analyze_section .features_wrap .one_feature {
  margin: 20px 5px;
  padding: 30px;
  width: 24%;

  min-width: calc((100% - 20px) / 5);
  max-width: calc((100% - 40px) / 4);
  width: calc((100% - 20px) / 5);
  flex: 1;
}

.works_ad_wrap .user_analyze_section .features_wrap .one_feature .img {
  width: 80%;
}

.works_ad_wrap
  .user_analyze_section
  .features_wrap
  .one_feature
  .txt
  p.subtitle {
  margin-bottom: 0px;
  font-weight: bold;
  font-style: italic;
  font-size: 0.9rem;
  /* border-bottom: 1px solid var(--main-black); */
}

.works_ad_wrap .user_analyze_section .features_wrap .one_feature .txt p.txt {
  margin-top: 10px;
  font-size: 0.9rem;
}

#loadMore {
  width: 40%;
  margin: auto;
}

#loadMore span {
  border: 2px solid var(--main-color3);
}

.noContent {
  font-weight: bold;
  color: var(--main-black) !important;
  background-color: transparent !important;
  pointer-events: none;
}

@media (min-width: 1100px) and (max-width: 1300px) {
  .digital_ad_wrap .user_analyze_section .paragraph {
    width: 85%;
  }

  .user_analyze_section .features_wrap .one_feature {
    padding: 30px 60px;
  }

  .user_analyze_section .features_wrap .one_feature.wider {
    padding: 30px;
  }

  .user_analyze_section .features_wrap .one_feature.wider .txt p {
    font-size: 0.8rem;
  }

  .works_ad_wrap .slogan span {
    font-size: 1.2rem;
  }
}

@media (min-width: 1200px) {
  .user_analyze_section .features_wrap .one_feature {
    padding: 30px 60px;
  }

  .user_analyze_section .features_wrap .one_feature.wider {
    padding: 30px 40px;
  }

  .user_analyze_section .features_wrap .one_feature.wider .txt p {
    font-size: 0.9rem;
  }
}

@media (max-width: 1100px) {
  .digital_ad_wrap .user_analyze_section .paragraph {
    width: 85%;
  }

  .user_analyze_section .features_wrap .one_feature.wider .txt p {
    font-size: 0.8rem;
  }

  .works_ad_wrap .slogan {
    flex-direction: column;
  }

  .works_ad_wrap .user_analyze_section .features_wrap .one_feature {
    padding: 30px;
    min-width: calc((100% - 20px) / 4);
    max-width: calc((100% - 40px) / 3);
    width: calc((100% - 20px) / 4);
  }
}

@media (max-width: 990px) {
  .digital_ad_wrap .user_analyze_section .paragraph {
    width: 90%;
  }

  .user_analyze_section .features_wrap .one_feature {
    width: 33%;
  }
}

@media (min-width: 768px) {
  #loadMore span:hover {
    background-color: transparent;
    color: var(--main-black);
    border: 2px solid var(--sub-color1);
  }
}

/* 聯絡我們 */
.contact_wrap.message_service_wrap .post_content .row.img_wrap {
  justify-content: center;
}

.contact_wrap.message_service_wrap .post_content .row.img_wrap img {
  width: 85%;
}

.contact_wrap.message_service_wrap .post_content {
  width: 100%;
}

.contact_wrap.ad_network_wrap.message_service_wrap
  .normal_section.post_content
  .row.full_bg_wrap.bg_light_yellow {
  background-color: #eee;
}

.contact_wrap.digital_ad_wrap .user_analyze_section .paragraph {
  width: 60%;
}

.form_wrap {
  text-align: center;
  margin: auto;
  width: 100%;
}

.form_wrap form div {
  margin: 20px 0;
}

.form_wrap form div.input_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form_wrap form div.input_wrap label {
  width: 120px;
  text-align: right;
  font-weight: bold;
  margin-right: 10px;
  margin-bottom: 0;
}

.form_wrap select.form-control:not([size]):not([multiple]) {
  height: 45px !important;
}

.form_wrap input:not([type="checkbox"]),
.form_wrap select {
  width: 30%;
  flex: 1;
  /* max-width: 800px; */
  margin: auto;
  height: 40px;
  border-radius: 5px;
  font-weight: bold;
  color: #191919;
}

.form_wrap textarea {
  flex: 1;
  margin: auto;
  border-radius: 5px;
  /* font-weight: bold; */
  color: #191919;
  border: 1px solid #ced4da;
  padding: 10px;
}

.form_wrap input::placeholder,
.form_wrap select::placeholder,
.form_wrap textarea::placeholder {
  color: var(--main-gray);
  font-weight: normal;
  font-size: 0.9rem;
}

.form_wrap form .form_info {
  margin: auto;
  /* max-width: 800px; */
  width: 100%;
  margin-bottom: 20px;
  color: #191919;
  text-align: left;
}

.form_wrap form .form_info p {
  margin-top: 5px;
  margin-bottom: 0;
  text-align: justify;
  display: flex;
  flex-direction: column;
  line-height: 20px;
  font-size: 0.8rem;
}

label[for="agree_personal_information"] {
  cursor: pointer;
  font-weight: bold;
}

.form_wrap form #send_data_button {
  width: 100%;
  /* max-width: 800px; */
  padding: 10px;
  border-radius: 5px;
  background-color: #e04900;
  outline: none;
  border: none;
  color: #eee;
  transition: 0.3s;
  cursor: pointer;
}

form #send_data_button:hover {
  background-color: #ff7936;
}

/* 登入平台 */
.verify_wrap {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.verify_wrap p {
  width: 100%;
}

.verify_wrap div {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.verify_input {
  display: flex;
  justify-content: space-between;
  justify-content: flex-end;
  align-items: center;
}

.verify_input label {
  color: var(--main-black);
}

.verify_input input {
  width: 80%;
}

#Inpt,
#Ans {
  margin-bottom: 0;
}

#Inpt {
  font-size: 18px;
  letter-spacing: 0.2rem;
  font-weight: bold;
}

#verify_img {
  width: 20%;
  height: 40px;
  border-radius: 4px;
  margin-right: 10px;
  background-color: var(--main-color3);
}

#Info {
  display: inline-block;
  margin-right: 20px;
  font-size: 14px;
}

#Gen {
  cursor: pointer;
  text-decoration: underline;
  font-size: 14px;
  margin-left: 20px;
}

.varify_gen_wrap {
  justify-content: flex-end !important;
  margin-top: 0px !important;
}

.remember_me_wrap {
  justify-content: center !important;
}

.form_wrap form div.input_wrap label[for="saveid"] {
  width: auto;
  margin-left: 5px;
}

label[for="saveid"],
input[type="submit"] {
  cursor: pointer;
}

.form_wrap form #login_button {
  width: 100%;
  /* max-width: 800px; */
  padding: 10px;
  border-radius: 5px;
  background-color: #e04900;
  outline: none;
  border: none;
  color: #eee;
  transition: 0.3s;
  cursor: pointer;
  height: auto;
  font-weight: normal;
}

form #login_button:hover {
  background-color: #ff7936;
}

.forget_and_join_wrap {
  justify-content: center !important;
  margin-top: 40px !important;
}

.forget_and_join_wrap a {
  color: var(--main-black);
  text-decoration: underline;
  width: auto;
  margin: 0 100px;
}

@media (max-width: 799px) {
  .verify_input input {
    width: 70%;
  }

  #verify_img {
    width: 30%;
  }
}
/* 人才招募 */
.recruit_wrap .message_service_wrap .post_content .row.full_bg_wrap {
  width: 60%;
}

.recruit_wrap .message_service_wrap .post_content .row.img_wrap {
  width: 35%;
}

.recruit_wrap .message_service_wrap .post_content .row.img_wrap img {
  width: 90%;
}

/* 個資法規 */
.personal_wrap .message_service_wrap .post_content .row.img_wrap img {
  margin: auto;
  width: 80%;
}

/* 注意事項 */
.post_content.feature_note {
  width: 100%;
  background-color: var(--main-color3);
  font-weight: bold;
}

.post_content.feature_note .note_title {
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2rem;
}

.post_content.feature_note .note_title span {
  position: relative;
  display: inline-block;
}

.post_content.feature_note .note_title span::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--main-color1);
  content: "";
}

.post_content.feature_note li {
  color: #ffffff;
  font-weight: bold;
}

.post_content.feature_note .row {
  width: 100%;
}

/* privacy */
.privacy_wrap .post_content .row {
  padding-top: 0;
}

.privacy_wrap .title {
  margin: 30px 0 10px;
  font-weight: bold;
  font-size: 1.6rem;
}

.privacy_wrap .main_title {
  font-size: 1.8rem;
}

/* footer */
footer {
  background-color: #2c2c2c;
  color: #dddddd;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 60px 40px 30px;
  font-size: 0.9rem;
}

.footer_logo {
  display: flex;
  align-items: center;
  width: 180px;
}

.footer_logo img {
  width: 100%;
}

.footer h4 {
  margin-bottom: 15px;
}

.footer p {
  margin-bottom: 5px;
}

.copyright {
  width: 100%;
  text-align: center;
  font-size: 0.7rem;
}
