@charset "utf-8";

html {
  scroll-behavior: smooth;
}

body {
  font-family: "微軟正黑體", "新細明體", "Arial Unicode MS";
  background-color: #d6d3d2;
}
.container-fluid {
  /*max-width:800px; position: relative; padding: 0;*/
}

section {
  overflow: hidden;
}

.slider01 {
  margin-top: 15%;
}

.slider02 {
  margin-bottom: 15%;
}

.footer {
  color: #fff;
  background-color: #226d7b;
  text-align: center;
  padding: 24px 15px;
  margin-bottom: 65px;
}
.footer a {
  color: #ffd95a;
}

@media (min-width: 992px) {
  .footer {
    padding: 24px 15px;
    margin-bottom: 0;
  }
}

.share {
  margin: 8px 0;
}
.share img {
  margin: 0 2px;
}

.backtop {
  position: fixed;
  z-index: 99;
  width: 48px;
  height: 48px;
  left: 100%;
  top: 100%;
  margin-top: -130px;
  margin-left: -70px;
  padding: 7px;
  background-color: rgba(87, 91, 96, 0.7);
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: background 0.3s; /* Safari */
  transition: background 0.3s;
}
.backtop:hover {
  background-color: #29b6cc;
}

@media (min-width: 992px) {
  .backtop {
    margin-top: -146px;
  }
}

.title_line {
  width: 60px;
  height: 4px;
  background-color: #0d3c84;
  margin: 30px auto;
}

/*==========header css==========*/

.header_logo {
  position: fixed;
  z-index: 891;
  top: 20px;
  left: 15px;
}
.header_logo img {
  -webkit-transition: all 0.3s; /* Safari */
  transition: all 0.3s;
  width: 240px;
  height: auto;
}
@media (min-width: 992px) {
  .header_logo {
    top: 24px;
    left: 15px;
    z-index: 950;
  }
  .header_logo img {
    width: 320px;
  }
}
@media (min-width: 1400px) {
  .header_logo {
    left: calc(50% - 685px);
  }
  .header_logo img {
    width: 320px;
  }
}

/*==========nav css==========*/

.menu_header {
  position: fixed;
  z-index: 900;
  top: 0;
  left: 0;
  width: 240px;
  height: 100%;
  background-color: #0d3c84;
  -webkit-transition: margin 0.3s; /* Safari */
  transition: margin 0.3s;
  overflow-y: auto;
}
.menu_header img {
  margin: 12px 0;
}
.menu_close {
  left: 100%;
  margin-left: 0px;
}
.menu_open {
  left: 100%;
  margin-left: -240px;
}

.menu_header .container-fluid {
  padding: 0;
  position: relative;
  max-width: 1400px;
}

@media (min-width: 992px) {
  .menu_header {
    position: fixed;
    width: 100%;
    height: 88px;
    background: #fff;
    border-bottom: 0px solid #0d3c84;
    overflow-y: visible;
    -moz-box-shadow: 0 4px 15px -2px gray;
    -webkit-box-shadow: 0 4px 15px -2px gray;
    box-shadow: 0 4px 15px -2px gray;
  }
  .menu_open,
  .menu_close {
    left: 0;
    margin-left: 0;
  }
  .menu_header .container-fluid {
    padding: 0 15px;
  }
}

.menu_ul {
  list-style: none;
  padding: 0;
}
.menu_ul li {
  border-bottom: 1px dotted #09f;
}

.menu_ul li a {
  color: #fff;
  display: block;
  font-size: 1.1rem;
  -webkit-transition: background 0.3s; /* Safari */
  transition: background 0.3s;
  padding: 15px;
}
.menu_ul li a:hover,
.menu_ul li a:focus {
  text-decoration: none;
  background-color: #09f;
}

.menu_ul li a span {
  display: block;
  font-size: 0.8rem;
}

@media (min-width: 992px) {
  .menu_ul {
    text-align: center;
    border-radius: 4px;
    height: 34px;
    float: right;
    margin-top: 0px;
  }
  .menu_ul li {
    float: left;
    border: none;
    position: relative;
  }
  .menu_ul li a {
    color: #555;
    font-size: 1rem;
    width: auto;
    text-align: center;
    padding: 32px 15px 32px 15px;
  }
  .menu_ul li a:hover,
  .menu_ul li a:focus {
    color: #0d3c84;
    background-color: transparent;
  }
  .menu_ul .mobile_home {
    display: none;
  }
}
@media (min-width: 1200px) {
  .menu_ul li a {
    font-size: 1rem;
    width: auto;
    text-align: center;
    padding: 32px 30px 32px 30px;
  }
}

.mobile_hide {
  background-color: #000;
  opacity: 0;
  position: fixed;
  z-index: 899;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mobile_header {
  background-color: #fff;
  position: fixed;
  z-index: 890;
  height: 72px;
  width: 100%;
  border-bottom: 0px solid #0d3c84;
  -moz-box-shadow: 0 4px 15px -2px gray;
  -webkit-box-shadow: 0 4px 15px -2px gray;
  box-shadow: 0 4px 15px -2px gray;
}
.iconbar {
  float: right;
  width: 48px;
  height: 36px;
  margin: 15px 15px 0 15px;
  border: 2px solid #525269;
  border-radius: 4px;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: background 0.2s; /* For Safari 3.1 to 6.0 */
  transition: background 0.2s;
}

.iconbar_open {
  background-image: url(../img/iconbar.png);
}
.iconbar_close {
  background-image: url(../img/iconbar2.png);
  border-color: #0d3c84;
}

.menu_title {
  margin: 3px 15px;
  padding-top: 15px;
  padding-bottom: 16px;
  color: #fff;
  font-family: Verdana, Geneva, sans-serif;
}

@media (min-width: 992px) {
  .mobile_hide {
    display: none;
  }
  .mobile_header {
    display: none;
  }
  .iconbar_close {
    display: none;
  }
  .menu_title {
    display: none;
  }
}

.menu_ul .mobile_language {
  color: #fff;
  margin: 10px 15px;
  border: none;
}
.menu_ul .mobile_language a {
  display: inline-block;
  padding: 10px 16px;
  font-size: 0.9rem;
  border: 1px solid #fff;
  border-radius: 5px;
}
.menu_ul .mobile_language a:hover,
.menu_ul .mobile_language a.active {
  background-color: #fff;
  color: #2a2b83;
}
@media (min-width: 992px) {
  .menu_ul .mobile_language {
    display: none;
  }
}

.search_nav {
  display: none;
}
@media (min-width: 992px) {
  .search_nav {
    position: absolute;
    padding: 0;
    list-style: none;
    top: 2px;
    left: 100%;
    width: 400px;
    margin-left: -430px;
    text-align: right;
    display: block;
  }
  .search_nav li {
    display: inline-block;
    font-size: 0.8rem;
    margin-left: 15px;
  }
  .search_nav li a {
    color: #2a2b83;
  }
  .search_nav li a:hover {
    color: #946cad;
    text-decoration: none;
  }
}
@media (min-width: 1200px) {
  .search_nav {
    margin-left: -445px;
  }
}

.menu_ul .sub_nav {
  display: none;
}
@media (min-width: 992px) {
  .menu_ul .sub_nav {
    position: absolute;
    top: 88px;
    -moz-box-shadow: 0 4px 15px -2px gray;
    -webkit-box-shadow: 0 4px 15px -2px gray;
    box-shadow: 0 4px 15px -2px gray;
    padding: 0;
    list-style: none;
  }
  .menu_ul .sub_nav a {
    background-image: none;
    padding: 15px 15px;
    margin: 0;
    border-top: 0px dotted #ccc;
    background-color: #333;
    color: #ccc;
    width: 200px;
    margin-left: 0;
    font-size: 0.9rem;
    text-align: left;
  }
  .menu_ul .sub_nav a:hover {
    background-color: #555;
    color: #fff;
    border-bottom: none;
  }
}
@media (min-width: 1600px) {
  .menu_ul .sub_nav a {
    width: 220px;
    margin-left: 0;
    padding: 15px 30px;
  }
}

@media (min-width: 992px) {
  .nav_item:hover .sub_nav_item {
    display: block;
  }
}

.fadeInRight {
  -webkit-animation: fadeInRight 0.4s; /* Safari 4+ */
  -moz-animation: fadeInRight 0.4s; /* Fx 5+ */
  -o-animation: fadeInRight 0.4s; /* Opera 12+ */
  animation: fadeInRight 0.4s; /* IE 10+, Fx 29+ */
}

.social_content {
  position: fixed;
  z-index: 99;
  top: 100%;
  left: 0;
  margin-top: -68px;
  height: 68px;
  width: 100%;
  background-color: rgba(34, 109, 123, 1);
  text-align: center;
}
.social_content .social_item {
  float: left;
  width: 25%;
  margin: 8px 0;
}
.social_content .social_item a {
  color: #fff;
  font-size: 1.3rem;
}
.social_content .social_item a:hover {
  color: #ffd95a;
}

.social_content .social_item a span {
  font-size: 0.8rem;
  display: block;
}

@media (min-width: 992px) {
  .social_content {
    position: fixed;
    z-index: 99;
    top: 100%;
    left: 100%;
    margin-top: -340px;
    margin-left: -64px;
    height: 200px;
    width: 48px;
    padding: 15px;
    border-radius: 30px;
    background-color: rgba(34, 109, 123, 0.8);
    text-align: center;
  }
  .social_content .social_item {
    margin: 8px 0;
    float: none;
    text-align: center;
  }

  .social_item_fb {
    padding-left: 3px;
  }
  .social_content .social_item a span {
    display: none;
  }
}

/*===========================================
					main css
=============================================*/
.view_lg {
  display: none;
}
@media (min-width: 992px) {
  .view_sm {
    display: none;
  }
  .view_lg {
    display: block;
  }
}

.prev-alt {
  background-color: #0d3c84;
  color: #fff;
  position: absolute;
  z-index: 555;
  cursor: pointer;
  top: 50%;
  left: 0%;
  padding: 14px 15px 16px 15px;
  transform: translate(0, -50%);
  opacity: 0.75;
}
.prev-alt:hover {
  opacity: 1;
}
.next-alt {
  background-color: #0d3c84;
  color: #fff;
  position: absolute;
  z-index: 555;
  cursor: pointer;
  top: 50%;
  left: 100%;
  padding: 14px 15px 16px 15px;
  transform: translate(-100%, -50%);
  opacity: 0.75;
}
.next-alt:hover {
  opacity: 1;
}

/*===========================================
					內頁設定
=============================================*/
.top_block img {
  width: 100%;
}
.top_block .container-fluid {
  padding: 40px 20px;
}
@media (min-width: 992px) {
  .top_block .container-fluid {
    padding: 80px;
  }
}
@media (min-width: 1440px) {
  .top_block .container-fluid {
    padding: 60px 200px;
  }
}
@media (min-width: 1920px) {
  .top_block .container-fluid {
    padding: 60px 250px;
  }
}

/*===banner設定===*/
.banner_section {
  position: relative;
  background: url(../img/banner_bg.jpg) bottom center no-repeat;
  background-size: cover;
}
.banner_section .logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}
.banner_section .text {
  position: absolute;
  bottom: 15%;
  left: 20%;
  width: 100%;
  z-index: 5;
}
.banner_section .text p {
  color: #fff;
  line-height: 2;
}

.bg_field::before {
  content: "";
  display: block;
  background: url("../img/banner_filed.png") left bottom repeat-x;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10%;
  /*z-index:1;*/
  z-index: 0;
  animation: field_ani 160s linear infinite;
}
@media (min-width: 992px) {
  .banner_section .text {
    bottom: 12%;
    left: 17%;
  }
  .banner_section .text p {
    font-size: 1.2rem;
  }
}
@media (min-width: 1440px) {
  .banner_section {
    height: 100vh;
    overflow: hidden;
  }
}

@keyframes field_ani {
  0% {
    background-position: 0 center;
  }
  100% {
    background-position: 3562px center;
  }
}

/*==內頁===*/
.top_block .text_block {
  color: #323333;
}
.top_block .text_block .title {
  padding-bottom: 10px;
}
.top_block .text_block .title h2 {
  font-size: 1.4rem;
  font-weight: bold;
}
.top_block .text_block .text p {
  font-size: 1rem;
  line-height: 1.7;
  text-align: justify;
}
@media (min-width: 992px) {
  .top_block .text_block .title h2 {
    font-size: 1.5rem;
  }
  .top_block .text_block .text p {
    font-size: 1.2rem;
  }
}
@media (min-width: 1440px) {
  .top_block .text_block .title h2 {
    font-size: 1.7rem;
  }
  .top_block .text_block .text p {
    font-size: 1.3rem;
  }
}

.block1 {
  background: url(../img/block1_bg1.png) top right no-repeat;
  background-size: 30%;
}
.block1 .pic_block img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.block1-2 {
  padding-top: 5%;
}
.block1-2 .text_block.text2 {
  padding-left: 20px;
}

.block2 .pic1 {
  background-color: #7eb0a4;
  padding: 20px;
}
.block2 .pic1 img {
  width: 100%;
  margin: 0 auto;
  display: block;
}

.block3 .pic_block .pic {
  padding-bottom: 30px;
}

.block4 {
  background: url(../img/block4_bg.png) top left no-repeat;
  background-size: 40%;
}
.block4 .pic_block .slider {
}
.block4 .text_block {
}

.block5 {
  background: url(../img/block5_bg.png) top right no-repeat;
  background-size: 60%;
  padding: 10% 0 0 0;
}
.block5 .text_block .text {
  max-width: 80%;
}
.block5 .pic img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.block6 {
  /*min-height:100vh;*/
}

@media (min-width: 992px) {
  .block1 {
    background-size: 40%;
    max-height: 100vh;
    overflow-y: hidden;
  }
  .block1-2 {
    position: relative;
    max-height: 100vh;
    overflow-y: hidden;
    padding-top: 13%;
  }
  .block1-2 .text_block.text2 {
    position: absolute;
    top: 15%;
    right: 15%;
  }

  .block2 .pic1 {
    height: 100vh;
    overflow-y: hidden;
  }
  .block2 .pic1 img {
    width: 45%;
  }
  .block2 .text_block {
    padding: 7% 0;
  }
  .block2 .text_block .container-fluid {
    max-width: 1400px;
  }

  .block3 .pic_block .pic {
    padding-bottom: 0;
  }
  .block3 .text_block {
    padding: 14% 0 14% 5%;
  }
  /*.block3 .text_block .content{ position:absolute; right:0; max-width:80%;}*/

  .block4 {
    background-size: 25%;
    padding: 2% 0;
  }
  .block4 .pic_block .slider {
    max-width: 70%;
    display: block;
    margin: 0 auto;
  }
  .block4 .text_block {
    max-width: 70%;
    margin: 0 auto;
    padding: 4% 0;
  }

  .block5 {
    background-size: 40%;
    height: 100vh;
    overflow-y: hidden;
    padding: 6% 0;
  }
  .block5 .text_block {
    padding: 8% 2%;
  }
  .block6 {
    background: url(../img/block6_pic.jpg) bottom center no-repeat;
    background-size: cover;
    min-height: 100vh;
    overflow-y: hidden;
  }
}

/*僅限手機版*/
@media (max-width: 768px) {
  .block4 .container-fluid {
    padding: 0;
  }
  .block4 .text_block {
    padding: 7% 20px;
  }
  .block5 .container-fluid {
    padding: 0;
  }
  .block5 .text_block {
    padding: 7% 40px;
  }
}

/*===========================================
					輪播設定
=============================================*/
.slick-prev {
  left: 25px;
  z-index: 10;
}
.slick-next {
  right: 25px;
}

/*===========================================
					表單設定
=============================================*/

.contact_section {
  background-color: #fff !important;
  background: url(../img/contact_bgs.jpg) bottom right no-repeat;
  background-size: 100%;
  padding: 5% 0 20% 0;
}
.contact_section .content {
  max-width: 800px;
  margin: 0 auto;
}
.contact_section .text_block {
  padding-bottom: 10%;
}
.contact_section .text_block .logo {
  text-align: center;
  padding-bottom: 30px;
}
.contact_section .text_block .logo img {
  max-width: 80%;
}
.contact_section .text_block .text {
  text-align: center;
}
.contact_section .text_block .text img {
  max-width: 60%;
}

.contact_form_wrapper {
  font-size: 0.8rem;
  padding-bottom: 20px;
}

.form-horizontal label span {
  font-size: 1.2rem;
  margin-right: 5px;
}
.form-horizontal input {
  border-radius: 0;
  background-color: #ebf1f2;
  border: 0;
}
.form-horizontal select {
  border-radius: 0;
  background-color: #d3d0c1;
}
.form-horizontal textarea {
  border-radius: 0;
  background-color: #d3d0c1;
}
.form-horizontal button {
  border-radius: 0;
  padding: 7px 40px;
  background-color: #226d7b;
  border: 0;
}
.form-horizontal button:hover {
  background-color: #29b6cc;
}
.form-horizontal .right_col {
  margin-bottom: 15px;
  padding-left: 0;
}
.form_notice_group {
  margin: 15px 0;
}
.form_notice_group a {
  color: #333;
}

.build_logo {
}
.build_logo img {
  width: 40%;
}

@media (min-width: 992px) {
  .contact_section {
    background: url(../img/contact_bg.jpg) bottom right no-repeat;
    background-size: 100%;
    padding: 0;
    min-height: 100vh;
    overflow-y: hidden;
  }
  .contact_section .text_block {
    max-width: 70%;
    margin: 0 auto;
  }

  .contact_form_wrapper {
    padding-bottom: 20px;
  }
  .build_logo img {
    width: 25%;
  }
}

/*------------------cookies--------------------*/

#cookies-box {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9999999;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 50px 50px;
  width: 100%;
  font-size: 1rem;
  line-height: 36px;
  color: #fff;
  /*	display: none;*/
}
#cookies-box h4 {
  font-size: 1.3rem;
  font-weight: bold;
}
#cookies-box p {
  margin: 0;
}
#cookies-box a {
  color: #fff;
  border-bottom: 2px solid #60c1a1;
  padding-bottom: 2px;
  margin: 0 3px;
}
#cookies-box .cookies-btn {
  margin-top: 10px;
  text-align: center;
}
#cookies-box .cookies-btn a {
  display: inline-block;
  width: 140px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  text-align: center;
}
#cookies-box .cookies-btn a:hover {
  background-color: #60c1a1;
  border-color: #60c1a1;
}

@media (min-width: 992px) {
  #cookies-box .cookies-btn {
    margin-top: -5px;
    margin-left: 50px;
  }
}

.privacy_block .container-fluid {
  max-width: 1200px;
}
.privacy_block h3 {
  color: #555;
  font-weight: 700;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

/*========================================================
                        側邊按鈕
=========================================================*/

.icon_Community a.js-btn-icon_Community {
  text-align: center;
  width: 50px;
  line-height: 47px;
  border-radius: 100px;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0;
  cursor: pointer;
  color: #fff;
  background: #000;
  font-size: 22px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
  height: 50px;
  pointer-events: auto;
  overflow: hidden;
}

.js-btn-icon_Community:hover,
.js-btn-icon_Community:focus {
  color: #fff;
  background-color: #451209;
  border-color: #451209;
}

.js-icon_Community .icon_li {
  position: relative;
  left: -100px;
}
.icon_li_img {
  max-width: 50px;
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  left: 0;
  z-index: 1;
}
.js-icon_Community.active .icon_li {
  left: 0;
  pointer-events: auto;
}

.js-icon_Community .icon_li:nth-child(1) {
  transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  -webkit-transition: all 0.1s ease-out;
}

.js-icon_Community .icon_li:nth-child(2) {
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
}

.js-icon_Community .icon_li:nth-child(3) {
  transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
}

.icon_li a:hover .icon {
  animation: go 3s linear infinite;
}

@keyframes go {
  10% {
    transform: rotate(15deg);
  }
  20% {
    transform: rotate(-10deg);
  }
  30% {
    transform: rotate(5deg);
  }
  40% {
    transform: rotate(-5deg);
  }
  50%,
  100% {
    transform: rotate(0deg);
  }
}

@media (max-width: 991.98px) {
  .icon_Community {
    width: 100%;
    position: fixed;
    left: auto;
    bottom: 0;
    z-index: 999998;
    pointer-events: none;
  }
  .icon_Community_ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
  }
  .icon_Community_ul .icon_li {
    width: 33.33%;
    border-right: 1px solid #575b60;
  }
  .icon_Community_ul .icon_li:last-child {
    border-right: none;
  }
  .icon_Community_ul .icon_name {
    font-size: 0.8rem;
    padding-top: 5px;
  }
  .icon_img {
    display: block;
    background-color: #fff;
    overflow: hidden;
    text-align: center;
    color: #fff;
    position: relative;
    padding: 10px 10px;
    text-decoration: none;
  }
  .icon_Community a {
    color: #575b60;
    text-decoration: none;
    transition: all 0.3s;
  }
  .icon_Community a img {
    display: block;
    margin: 0 auto;
    width: 22px;
  }
  .icon_Community a:hover {
    background-color: #575b60;
    color: #fff;
  }
  .icon_Community a:hover img {
    animation: go 3s linear infinite;
  }
}

@media (min-width: 992px) {
  .icon_Community {
    position: fixed;
    right: 20px;
    bottom: 92px;
    z-index: 9998;
    pointer-events: none;
  }
  .icon_Community_ul {
    list-style: none;
    padding: 0;
    flex-direction: column;
    align-items: flex-end;
    display: flex;
    margin-bottom: 59px;
  }
  .icon_img {
    background-color: #fff;
    border: none;
    overflow: hidden;
    text-align: center;
    margin-bottom: 6px;
    width: 50px;
    text-decoration: none;
    border-radius: 100px;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .icon_img.active {
    width: 142px;
  }
  .icon_img.active .icon_name {
    text-indent: 0;
    opacity: 1;
  }
  .icon_img:hover {
    text-decoration: none;
    width: 142px;
    background-color: #575b60;
  }
  .icon_img:before {
    opacity: 0;
  }
  .icon_img .icon {
    color: #575b60;
    font-size: 22px;
    width: 50px;
    line-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    z-index: 1;
  }
  .icon_img:hover .icon {
    text-decoration: none;
    color: #fff;
  }
  .icon_img:hover .icon_name {
    opacity: 1;
    text-indent: 0;
  }
  .icon_name {
    position: relative;
    line-height: 50px;
    padding-left: 15px;
    padding-right: 50px;
    transition: all 0.3s ease;
    opacity: 0;
    text-decoration: none;
    color: #fff;
    white-space: nowrap;
    border-radius: 100px;
    overflow: hidden;
  }
}
