html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

elements-of-type(html5-block) {
  display: block;
}

img {
  display: block;
  border: none;
}
html {
  -webkit-text-size-adjust: 100%;
}

html *,
html *:before,
html *:after {
  font-size: 14px;
  font-family: "Microsoft JhengHei", "Apple LiGothic Medium", "PMingLiU", "sans-serif", "serif";
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #000;
}

a:focus {
  outline: none;
}

.login_border {
  margin: 20px auto 0;
  border: solid 3px #000;
  background-color: #ffffff;
  border-radius: 20px;
  position: relative;
  z-index: 0;
  padding: 20px;
}

@media screen and (min-width: 981px) {
  .login_border {
    margin: 26px auto 0;
    padding: 0px 20px 46px 20px;
  }
}

.pin {
  position: absolute;
  z-index: 0;
  max-width: 16px;
  width: 100%;
}

.pin.top {
  top: -12px;
}

.pin.left {
  left: 6px;
}

.pin.right {
  right: 6px;
}

.pin.bottom {
  bottom: -12px;
}

.pin.bottom img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.pin img {
  width: 100%;
}

@media screen and (min-width: 981px) {
  .pin {
    max-width: 36px;
  }
}

#wrap {
  position: relative;
}

.star {
  position: absolute;
  z-index: 3;
  width: 42px;
  height: 42px;
}

.star.top {
  top: 0;
  left: 0;
}

.star.bottom {
  bottom: 0;
  right: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.star.left {
  bottom: 0;
  left: 0;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.star.right {
  top: 0;
  right: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

@media screen and (min-width: 981px) {
  .star {
    width: 73px;
    height: 73px;
  }
}

.green_line {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 10px;
}

.green_line .line {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: radial-gradient(#ffa319 2px, transparent 2px) 0 0, #1a6778;
  background-size: 10px 10px;
}

.green_line.v_line {
  width: 10px;
  height: 100%;
}

.green_line.top {
  top: 0;
  left: 0;
}

.green_line.bottom {
  bottom: 0;
  left: 0;
}

.green_line.right {
  top: 0;
  right: 0;
}

.green_line.left {
  top: 0;
  left: 0;
}

@media screen and (min-width: 981px) {
  .green_line {
    width: 100%;
    height: 20px;
  }
  .green_line .line {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: radial-gradient(#ffa319 4px, transparent 4px) 0 0, #1a6778;
    background-size: 20px 20px;
  }
  .green_line.v_line {
    width: 20px;
    height: 100%;
  }
}

.active .menuBtn span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 23px;
}

.active .menuBtn span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 23px;
}

.active .nav_content {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.menuBtn {
  display: block;
  position: fixed;
  width: 47px;
  height: 47px;
  top: 20px;
  right: 20px;
  background-color: #098daa;
  border-radius: 50%;
  cursor: pointer;
  z-index: 210;
}

.menuBtn span {
  display: block;
  position: absolute;
  width: 17px;
  height: 1px;
  left: 15px;
  background-color: #fff;
  -webkit-transition: all cubic-bezier(0.7, 0, 0.3, 1) 0.5s;
  transition: all cubic-bezier(0.7, 0, 0.3, 1) 0.5s;
}

.menuBtn span:first-child {
  top: 20px;
}

.menuBtn span:last-child {
  bottom: 20px;
}

@media screen and (min-width: 981px) {
  .menuBtn {
    display: none;
  }
}

.nav_content {
  position: fixed;
  z-index: 11;
  top: 0px;
  width: 100%;
  background-color: #fff;
  height: 100vh;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.nav_content ul {
  padding: 50px 0 0 0;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.nav_content ul li {
  margin: 12px 4px;
  width: 100%;
}

.nav_content ul li a {
  height: 46px;
  width: 210px;
  margin: 0 auto;
  border: solid 2px #1a6778;
  border-radius: 32px;
  background-color: #ffffff;
  padding: 0 20px 0 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-align: center;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
}

.nav_content ul li a img.m1 {
  width: 38px;
  margin: -14px 0 0 0;
}

.nav_content ul li a img.m2 {
  width: 41px;
  margin: -18px 0 0 0;
}

.nav_content ul li a img.m3 {
  width: 36px;
  margin: -18px 0 0 0;
}

.nav_content ul li a img.m4 {
  width: 38px;
  margin: -16px 0 0 0;
}

.nav_content ul li a img.m5 {
  width: 41px;
  margin: -20px 0 0 0;
}

.nav_content ul li a p {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1.6px;
  text-align: center;
  color: #1a6778;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.nav_content ul li.on a {
  border: solid 2px #ffffff;
  background-color: #ffa319;
}

.nav_content ul li.on p {
  color: #fff;
}

@media screen and (min-width: 981px) {
  .nav_content {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    top: 48px;
    height: auto;
    background-color: transparent;
  }
  .nav_content ul {
    padding: 0;
  }
  .nav_content ul li {
    margin: 0 4px;
    width: auto;
  }
  .nav_content ul li a {
    width: auto;
    height: 46px;
    padding: 0 20px 0 20px;
    display: -webkit-box;
    display: flex;
    display: -ms-flexbox;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
            align-items: center;
    -ms-flex-align: center;
    flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
  }
  .nav_content ul li a img.m1 {
    width: 38px;
    margin: -14px 0 0 0;
  }
  .nav_content ul li a img.m2 {
    width: 41px;
    margin: -18px 0 0 0;
  }
  .nav_content ul li a img.m3 {
    width: 36px;
    margin: -18px 0 0 0;
  }
  .nav_content ul li a img.m4 {
    width: 38px;
    margin: -16px 0 0 0;
  }
  .nav_content ul li a img.m5 {
    width: 41px;
    margin: -20px 0 0 0;
  }
  .nav_content ul li a p {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1.6px;
    text-align: center;
    color: #1a6778;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .nav_content ul li:hover a {
    border: solid 2px #ffffff;
    background-color: #ffa319;
  }
  .nav_content ul li:hover p {
    color: #fff;
  }
}

.nav_scroll {
  padding: 20px;
  background-color: white;
  top: 0;
}

.scroll {
  position: absolute;
  z-index: 1;
  bottom: -22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 42px;
  width: 100%;
}

.scroll img {
  width: 100%;
}

@media screen and (min-width: 981px) {
  .scroll {
    bottom: -36px;
    max-width: 64px;
  }
}

.gotop {
  position: fixed;
  z-index: 10;
  bottom: 62px;
  right: 20px;
  max-width: 60px;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}

.gotop.show {
  opacity: 1;
}

.gotop img {
  width: 100%;
}

@media screen and (min-width: 981px) {
  .gotop {
    max-width: 77px;
    bottom: 20px;
  }
  .gotop:hover {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}

.fix_btn {
  position: fixed;
  z-index: 10;
  right: 0;
  bottom: 10px;
  display: block;
  border: 3px solid #098daa;
  width: 100%;
  background-color: #fff;
  border-radius: 16px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.fix_btn img {
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.fix_btn p {
  text-align: center;
  font-size: 26px;
  color: #098daa;
  padding: 10px 0;
  font-weight: bold;
  letter-spacing: 5px;
}

.fix_btn .mo {
  display: block;
}

.fix_btn .pc {
  display: none;
}

.fix_btn .icon_star {
  position: absolute;
  z-index: 0;
  right: 10px;
  max-width: 26px;
  width: 100%;
}

.fix_btn .icon_star img {
  width: 100%;
}

.fix_btn .icon_star.s1 {
  top: -38px;
}

.fix_btn .icon_star.s2 {
  top: 320px;
}

.fix_btn.show {
  opacity: 1;
}

@media screen and (min-width: 981px) {
  .fix_btn {
    max-width: 44px;
    width: 100%;
    right: calc(50% - 460px);
    top: 140px;
    bottom: auto;
    border: none;
    border-radius: 0px;
    background-color: transparent;
  }
  .fix_btn .mo {
    display: none;
  }
  .fix_btn .pc {
    display: block;
  }
  .fix_btn:hover > img {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}

@media screen and (min-width: 1501px) {
  .fix_btn {
    max-width: 49px;
    right: calc(50% - 510px);
    top: 140px;
  }
}

@media screen and (min-width: 1701px) {
  .fix_btn {
    right: calc(50% - 650px);
    top: 140px;
  }
}

.share_btns {
  opacity: 0;
  position: fixed;
  z-index: 10;
  right: 20px;
  bottom: 140px;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.share_btns a {
  display: block;
  max-width: 47px;
  width: 100%;
  margin: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.share_btns a img {
  width: 100%;
}

.share_btns.show {
  opacity: 1;
}

@media screen and (min-width: 981px) {
  .share_btns {
    position: fixed;
    z-index: 10;
    right: calc(50% - 460px);
    top: 348px;
    bottom: auto;
    display: block;
    margin: 0 0 5px 0;
  }
  .share_btns a {
    max-width: 40px;
  }
  .share_btns a:hover {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}

@media screen and (min-width: 1501px) {
  .share_btns {
    right: calc(50% - 510px);
    top: 348px;
  }
  .share_btns a {
    max-width: 47px;
  }
}

@media screen and (min-width: 1701px) {
  .share_btns {
    right: calc(50% - 650px);
    top: 348px;
  }
}

#footer {
  position: relative;
  z-index: 0;
  background-color: #eee6dc;
}

#footer::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -44px;
  left: 0;
  width: 100%;
  height: 49px;
  background: url("../townpassport_img/202103_TW_VillageRoaming/filp_footer_wave.svg") center bottom no-repeat;
  background-size: cover;
}

#footer .footer_content {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px 15px;
}

#footer .pink_border {
  width: 100%;
  background-color: #f2decd;
  height: 9px;
}

@media screen and (min-width: 981px) {
  #footer .footer_content {
    padding: 0 0 40px 0;
  }
  #footer .pink_border {
    height: 9px;
  }
}

.companies {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 20px 0px;
  position: relative;
}

.companies:after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 100%;
  height: 1px;
  background-color: #3e3d3d;
}

.companies .company {
  padding: 5px 0;
}

.companies .company p {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.63;
  letter-spacing: 0.8px;
  color: #0b0b0b;
  padding: 0 26px 0 0;
}

.companies .company p::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 74px;
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
}

.companies .company a {
  display: block;
  width: 100%;
  margin: 5px 0;
}

.companies .company a img {
  width: 100%;
}

.companies .company a.taiwan {
  max-width: 260px;
}

.companies .company a.taiwanTown {
  max-width: 60px;
}

.companies .company a.cyclimg {
  max-width: 60px;
}

.companies .company a.xinMedia {
  max-width: 200px;
}

.companies .main,
.companies .sub {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-align: center;
}

.companies .main a + a,
.companies .sub a + a {
  margin-left: 15px;
}

.companies .sub {
  margin: 0 0 10px 0;
}

@media screen and (max-width: 1701px) {
  .companies {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    padding: 20px 50px;
  }
  .companies .company > p {
    width: 150px;
    padding: unset;
    margin-right: 15px;
  }
  .companies .sub > p {
    width: 150px;
    padding: unset;
    margin-left: 10px;
  }
  .companies:after {
    width: 90%;
  }
}

@media screen and (max-width: 981px) {
  .companies {
    padding: unset;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 10px;
  }
  .companies .company {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
  .companies .company > p {
    width: 100%;
    padding: unset;
    margin-left: unset;
    margin-top: 20px;
  }
  .companies:after {
    width: 100%;
    bottom: -8px;
  }
}

.sub_infos {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  padding: 12px 0;
}

.sub_infos .privay {
  display: block;
  border-radius: 32px;
  border: solid 1px #000;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sub_infos .privay p {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.66;
  letter-spacing: 0.8px;
  color: #0b0b0b;
  padding: 0 23px;
}

.sub_infos p {
  width: 100%;
  font-size: 16px;
  letter-spacing: 1.6px;
  text-align: center;
  color: #000;
  padding: 8px 0 0 0;
}

.sub_infos p span {
  font-size: 16px;
  letter-spacing: 1.6px;
  color: #000;
}

@media screen and (min-width: 981px) {
  .sub_infos {
    display: -webkit-box;
    display: flex;
    display: -ms-flexbox;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
            align-items: center;
    -ms-flex-align: center;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    padding: 12px 30px 25px;
    padding: 20px 50px;
  }
  .sub_infos .privay p {
    font-size: 16px;
    line-height: 1.66;
    padding: 0 23px;
  }
  .sub_infos .privay:hover {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
  .sub_infos p {
    width: auto;
    font-size: 16px;
  }
  .sub_infos p span {
    font-size: 16px;
  }
}

@media screen and (min-width: 1278px) {
  .sub_infos {
    display: -webkit-box;
    display: flex;
    display: -ms-flexbox;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
            align-items: center;
    -ms-flex-align: center;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    padding: 12px 0 25px;
    padding: 20px 50px;
  }
  .sub_infos .privay p {
    font-size: 16px;
    line-height: 1.66;
    padding: 0 23px;
  }
  .sub_infos .privay:hover {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
  .sub_infos p {
    width: auto;
    font-size: 16px;
  }
  .sub_infos p span {
    font-size: 16px;
  }
}
/*# sourceMappingURL=filp_layout.css.map */