@charset "UTF-8";
/* CSS Document */
@import url(reset.css);
@import url(font-awesome.min.css);
@import url(rwdgrid.css);
@import url(textEditor.css);
@import url('https://fonts.googleapis.com/earlyaccess/notosanstc.css');
@import url('https://fonts.googleapis.com/css?family=Nunito+Sans:300,400');
@import url(weather.css);
@font-face {
    font-family: 'weather';
    src: url('weather/artill_clean_icons-webfont.eot');
    src: url('weather/artill_clean_icons-webfont.eot?#iefix') format('embedded-opentype'),
         url('weather/artill_clean_icons-webfont.woff') format('woff'),
         url('weather/artill_clean_icons-webfont.ttf') format('truetype'),
         url('weather/rtill_clean_icons-webfont.svg#artill_clean_weather_iconsRg') format('svg');
    font-weight: normal;
    font-style: normal;
}

*{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}
*:before, *:after{
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
html,body{
  width: 100%;
   height:100%;
  image-rendering: -webkit-optimize-contrast;
}
body{
  color: #222;
    background-image: url("../images/bg.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  font-family: Arial, Helvetica, "微軟正黑體", Heiti TC, "メイリオ", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.8px;
  position: relative;

}
html.hidden,
body.hidden{
  overflow: hidden;
}

.txt_oneLine{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
a.no_link{
  cursor: auto;
}
.justShowOnMobile{
  display:none;
}
ul.float_down{
  display:none;
}

/* loadingArea */
  .loadingArea{
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999999;
    overflow: hidden;
  }
  .loadingArea .loadingMask{
    background: #fff;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    -webkit-transition:all 0.8s ease-out;
    -moz-transition:all 0.8s ease-out;
    -o-transition:all 0.8s ease-out;
    transition:all 0.8s ease-out;
  }
  .loadingArea.go .loadingMask{
    opacity: 0;
  }

/*********基本樣式設定**********/
  a{
    cursor: pointer;
    color: #fff;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  p,.txtExp{
    color: #666;
    font-size: 15px;
    font-weight: normal;
    line-height: 26px;
    letter-spacing: 0.8px;
    overflow: hidden;
  }

  input[type="text"],
  textarea{
    -webkit-appearance: none;
  }

  img{
    display: block;
    max-width: 100%;
  }

  .wrap{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  .wrap2{
    width: 100%;
    max-width: 1200px;
    position: relative;
  }
    .wrap3{
    width: 100%;
    max-width: 1400px;
    position: relative;
  }
  .btn{
    position: relative;
  }
  .btn a{
    color: #fff;
    background: #71b9d1;
    display: inline-block;
    width: 200px;
    height: 55px;
    font-size: 16px;
    font-weight: normal;
    line-height: 55px;
    letter-spacing: 2.5px;
    text-align: center;
    position: relative;
    padding: 0;
    overflow: hidden;
    z-index: 5;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .btn a:hover{}
  .btn a::after{
    content: '';
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .btn a:hover::after{
    opacity: 1;
    -webkit-transform: scale(100);
    -ms-transform: scale(100);
    transform: scale(100);
    -webkit-transition: all 0.4s ease, transform 0.8s 0.2s ease;
    -moz-transition: all 0.4s ease, transform 0.8s 0.2s ease;
    -o-transition: all 0.4s ease, transform 0.8s 0.2s ease;
    transition: all 0.4s ease, transform 0.8s 0.2s ease;
  }

  .btn_more{
    position: relative;
  }
  .btn_more a{
    display: inline-block;
    width: 120px;
    height: 30px;
    color: #23272a;
    line-height: 30px;
    text-align: center;
    padding: 0;
    position: relative;
    border-left: 1px solid #23272a;
    border-right: 1px solid #23272a;
    -webkit-transition: all 0.4s ease, border-color 0.6s 0.4s ease;
    -moz-transition: all 0.4s ease, border-color 0.6s 0.4s ease;
    -o-transition: all 0.4s ease, border-color 0.6s 0.4s ease;
    transition: all 0.4s ease, border-color 0.6s 0.4s ease;
  }
  .btn_more a:hover{
    border-color: rgba(35, 39, 42, 0);
    background: #71b9d1;
    color: #fff;
    -webkit-transition: all 0.4s ease, background 0.8s 1s ease, color 0.6s 1s ease;
    -moz-transition: all 0.4s ease, background 0.8s 1s ease, color 0.6s 1s ease;
    -o-transition: all 0.4s ease, background 0.8s 1s ease, color 0.6s 1s ease;
    transition: all 0.4s ease, background 0.8s 1s ease, color 0.6s 1s ease;
  }
  .btn_more a::before,
  .btn_more a::after{
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    opacity: 0;
  }
  .btn_more a::before{
    border-top: 1px solid #71b9d1;
    border-right: 1px solid #71b9d1;
    top: 0px;
    left: 0;
  }
  .btn_more a::after{
    border-bottom: 1px solid #71b9d1;
    border-left: 1px solid #71b9d1;
    bottom: 0px;
    right: 0;
  }
  .btn_more a:hover::before,
  .btn_more a:hover::after{
    opacity: 1;
    width: 100%;
    height: calc(100% + 0px);
    -webkit-transition: all 0.6s 0.2s ease, height 0.4s 0.8s ease;
    -moz-transition: all 0.6s 0.2s ease, height 0.4s 0.8s ease;
    -o-transition: all 0.6s 0.2s ease, height 0.4s 0.8s ease;
    transition: all 0.6s 0.2s ease, height 0.4s 0.8s ease;
  }
  .btn_close{
    display: inline-block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 50;
  }
  .btn_close a{
    display: inline-block;
    width: 95px;
    height: 95px;
    font-size: 0;
    line-height: 95px;
    text-align: center;
    background: #71b9d1;
    position: relative;
  }
  .btn_close a::before,
  .btn_close a::after{
    content: '';
    width: 46px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: calc(50% - 1px);
    left: calc(50% - 23px);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .btn_close a::after{
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .btn_close a:hover::before{
    -webkit-animation: rubberB 1.5s both infinite;
    animation: rubberB 1.5s both infinite;
  }
  .btn_close a:hover::after{
    -webkit-animation: rubberA 1.5s both infinite;
    animation: rubberA 1.5s both infinite;
  }
  /*rubberA*/
    @-webkit-keyframes rubberA{
      from {
      -webkit-transform: scale(1, 1) rotate(-45deg);
      transform: scale(1, 1) rotate(-45deg);
      }

      30% {
      -webkit-transform: scale(1.25, 0.75) rotate(-45deg);
      transform: scale(1.25, 0.75) rotate(-45deg);
      }

      40% {
      -webkit-transform: scale(0.75, 1.25) rotate(-45deg);
      transform: scale(0.75, 1.25) rotate(-45deg);
      }

      50% {
      -webkit-transform: scale(1.15, 0.85) rotate(-45deg);
      transform: scale(1.15, 0.85) rotate(-45deg);
      }

      65% {
      -webkit-transform: scale(.95, 1.05) rotate(-45deg);
      transform: scale(.95, 1.05) rotate(-45deg);
      }

      75% {
      -webkit-transform: scale(1.05, .95) rotate(-45deg);
      transform: scale(1.05, .95) rotate(-45deg);
      }

      to {
      -webkit-transform: scale(1, 1) rotate(-45deg);
      transform: scale(1, 1) rotate(-45deg);
      }
    }
    @keyframes rubberA{
      from {
      -webkit-transform: scale(1, 1) rotate(-45deg);
      transform: scale(1, 1) rotate(-45deg);
      }

      30% {
      -webkit-transform: scale(1.25, 0.75) rotate(-45deg);
      transform: scale(1.25, 0.75) rotate(-45deg);
      }

      40% {
      -webkit-transform: scale(0.75, 1.25) rotate(-45deg);
      transform: scale(0.75, 1.25) rotate(-45deg);
      }

      50% {
      -webkit-transform: scale(1.15, 0.85) rotate(-45deg);
      transform: scale(1.15, 0.85) rotate(-45deg);
      }

      65% {
      -webkit-transform: scale(.95, 1.05) rotate(-45deg);
      transform: scale(.95, 1.05) rotate(-45deg);
      }

      75% {
      -webkit-transform: scale(1.05, .95) rotate(-45deg);
      transform: scale(1.05, .95) rotate(-45deg);
      }

      to {
      -webkit-transform: scale(1, 1) rotate(-45deg);
      transform: scale(1, 1) rotate(-45deg);
      }
    }
  /*rubberB*/
      @-webkit-keyframes rubberB{
        from {
        -webkit-transform: scale(1, 1) rotate(45deg);
        transform: scale(1, 1) rotate(45deg);
        }

        30% {
        -webkit-transform: scale(1.25, 0.75) rotate(45deg);
        transform: scale(1.25, 0.75) rotate(45deg);
        }

        40% {
        -webkit-transform: scale(0.75, 1.25) rotate(45deg);
        transform: scale(0.75, 1.25) rotate(45deg);
        }

        50% {
        -webkit-transform: scale(1.15, 0.85) rotate(45deg);
        transform: scale(1.15, 0.85) rotate(45deg);
        }

        65% {
        -webkit-transform: scale(.95, 1.05) rotate(45deg);
        transform: scale(.95, 1.05) rotate(45deg);
        }

        75% {
        -webkit-transform: scale(1.05, .95) rotate(45deg);
        transform: scale(1.05, .95) rotate(45deg);
        }

        to {
        -webkit-transform: scale(1, 1) rotate(45deg);
        transform: scale(1, 1) rotate(45deg);
        }
      }
      @keyframes rubberB{
        from {
        -webkit-transform: scale(1, 1) rotate(45deg);
        transform: scale(1, 1) rotate(45deg);
        }

        30% {
        -webkit-transform: scale(1.25, 0.75) rotate(45deg);
        transform: scale(1.25, 0.75) rotate(45deg);
        }

        40% {
        -webkit-transform: scale(0.75, 1.25) rotate(45deg);
        transform: scale(0.75, 1.25) rotate(45deg);
        }

        50% {
        -webkit-transform: scale(1.15, 0.85) rotate(45deg);
        transform: scale(1.15, 0.85) rotate(45deg);
        }

        65% {
        -webkit-transform: scale(.95, 1.05) rotate(45deg);
        transform: scale(.95, 1.05) rotate(45deg);
        }

        75% {
        -webkit-transform: scale(1.05, .95) rotate(45deg);
        transform: scale(1.05, .95) rotate(45deg);
        }

        to {
        -webkit-transform: scale(1, 1) rotate(45deg);
        transform: scale(1, 1) rotate(45deg);
        }
      }

  .titleBox{
    position: relative;
    z-index: 5;
  }
  .titleBox h2{
    display: block;
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 8px;
    color: #F8B62D;
    font-size: 24px;
    font-family: 'Noto Sans TC', "微軟正黑體", Heiti TC, "メイリオ", sans-serif;
    font-weight: 300;
    letter-spacing: 3.5px;
    line-height: 1.4;
    z-index: 1;
  }
  .titleBox h2::before{
    content: '';
    width: 32px;
    height: 1px;
    background: #d1c0a5;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .titleBox p{
    display: block;
    color: #766a65;
    font-size: 15px;
    font-weight: normal;
    letter-spacing: 1px;
    line-height: 31px;
  }

  /* goTopButton */
    .goTopBox{
      position: fixed;
      bottom: 40px;
      right: 20px;
      z-index: 998;
      opacity: 0;
      -webkit-transition: all 0.4s ease;
      -moz-transition: all 0.4s ease;
      -o-transition: all 0.4s ease;
      transition: all 0.4s ease;
    }
    .goTopBox a.goTop{
      color: #282c2f;
      font-size: 15px;
      display: block;
      width: 40px;
      height: 40px;
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .goTopBox a.goTop:hover{
        margin-bottom: 5px;
    }
    .goTopBox a.goTop::before{
      content: '';
      width: 4px;
      height: 34px;
      background: url(../images/arrow_top.png) no-repeat top center;
      position: absolute;
      bottom: 100%;
      left: calc(50% - 2px);
    }

/**********outerWrap**********/
  .outerWrap{ 
   min-height:100%;
   position:relative;
  }
  @media (min-width: 1181px){
    .outerWrap {
        padding-top: 90px;
    }
  }

/************網頁頭***********/
  header{
    width: 100%;
    background-image: url(../images/hbg.jpg);
            background-repeat: no-repeat;
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
    padding-top: 3px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 0;
    -webkit-transform: translate(0,-20px);
    transform: translate(0,-20px);
  }
  header.show{
    opacity: 1;
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
    -webkit-transition: all 0.4s ease, transform 1s ease;
    -moz-transition: all 0.4s ease, transform 1s ease;
    -o-transition: all 0.4s ease, transform 1s ease;
    transition: all 0.4s ease, transform 1s ease;
  }
  header.shrink{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  }
  header::before{
    content: '';
    width: 100%;
    height: 3px;
    background: #71b9d1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  header .wrap{
    max-width: 1380px;
    padding: 0;
	padding-left:55px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
  }

  /*logo*/
    header .logo{
      display: inline-block;
      width: 120px;
	  height:70px;
      margin: 0;
      position: relative;
    }
    header .logo a{
      display: block;
      width: 100%;
      height: 70px; 
      background: url(../images/logo.png) no-repeat;
      -webkit-background-size: contain;
      background-size: contain;
      position: absolute;
      top: 0;
      left: 0;
      text-indent: -9999px;
    }
    header.shrink .logo a{
      height: 70px;
    }

  header .rightBox{
    width: 100%;
    padding-left: 95px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: flex-end;
    align-items: flex-end;
  }
  header .rightBox .topBox{
    width: 220px;
    text-align: right;
  }
  header .rightBox .menuBox{
    width: calc(100% - 110px);
  }

  /*language*/
    header .language{
      display: inline-block;
      position: relative;
      padding-top: 10px;
      z-index: 5;
    }
    header .language .main{
      width: 100px;
      height: 24px;
      border: 1px solid #e5e5e5;
      cursor: pointer;
      color: #888;
      font-size: 13px;
      letter-spacing: 1px;
      line-height: 22px;
      text-align: center;
      display: inline-block;
      padding-right: 5px;
      position: relative;
    }
    header .language .main::after{
      content: '\f0d7';
      color: #888;
      font-size: 13px;
      font-family: FontAwesome;
      pointer-events: none;
      position: absolute;
      top: 0;
      right: 8px;
    }
    header .language .btn_language{
      width: 100px;
      background: #fff;
      border: 1px solid #e5e5e5;
      cursor: pointer;
      color: #888;
      font-size: 13px;
      letter-spacing: 1px;
      line-height: 26px;
      text-align: center;
      position: absolute;
      top: 100%;
      left: 0;
      display: none;
    }
    header .language .btn_language li{
      border-bottom: 1px solid #e5e5e5;
    }
    header .language .btn_language li:last-of-type{
      border: 0;
    }
    
  /*qlinkList*/
    header .qlinkList{
      display: block;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    }
    @media (max-width: 1180px) {
        header .qlinkList{
            display: inline-block;
            width: 120px;
        }
    }
    @media (max-width: 400px) {
        header .qlinkList{
            display: none;
        }
    }
    header .qlinkList .main{
      width: 100%;
    height: 30px;
    border: 1px solid #981b65;
    cursor: pointer;
        color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 30px;
    text-align: center;
    display: inline-block;
    padding-right: 5px;
    position: relative;
        background-color: #981b65;
    }
    header .qlinkList .main::after{
      content: '\f0d7';
      color: #fff;
      font-size: 13px;
      font-family: FontAwesome;
      pointer-events: none;
      position: absolute;
      top: 0;
      right: 8px;
    }
    header .qlinkList .subItem{
      width: 100%;
      background: #fff;
      border: 1px solid #d686b5;
      cursor: pointer;
      color: #fff;
      font-size: 14px;
      letter-spacing: 1px;
      line-height: 26px;
      text-align: center;
      position: absolute;
      top: calc(100% - 10px);
      left: 0;
      display: none;
    }
    header .qlinkList .subItem a{
        display: block;
      border-bottom: 1px solid #d686b5;
      color: #fff;
      background-color: #b23f83;
    }
    header .qlinkList .subItem a:hover{
        background-color: #e170b5;
    }
    header .qlinkList .subItem a:last-of-type{
      border: 0;
    }

  /*weatherBox*/
    .weatherBox{
      color:#444;
      letter-spacing: 1px;
      line-height: 1;
      padding: 5px 7px 5px 0;
      z-index: 10;
    }
    .weatherBox .weather{
      display: flex;
      -ms-align-items: center;
      align-items: center;
      justify-content: flex-end;
      min-height: 40px;
    }
    .weatherBox .icon{
      list-style-type: none;
      display: inline-block;
      font-size: 24px;
      font-family: 'Nunito Sans', sans-serif;
      font-weight: 300;
    }
    .weatherBox .icon em{
      font-size: 18px;
      display: inline-block;
    }
    .weatherBox .icon i{
      display:inline-block;
      color: #707070;
      font-size: 42px;
      font-family: 'weather';
      font-weight: normal;
      margin-left: 5px;
    }

    header .menu_bar{
      display: none;
    }

  /*header_hide*/
    header.hide .rightBox{
      display: none;
    }
    header.hide .wrap{
      max-width: 1660px;
    }

/************單元列***********/
  .menuBox{
    padding: 0;
    z-index: 50;
  }
  ul.menu{}
  ul.menu > li{
    display: inline-block;
    position: relative;
  }
  ul.menu li > a{
    color: #fff;
    font-size: 18px;
    line-height: 1;
    padding: 20px 47px;
    display: inline-block;
    position: relative;
  }  
  ul.menu li:hover > a,
  ul.menu li > a.current{
    color: #fff;
  }

  ul.menu > li .submenu{
    width: 120%;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    left: -10%;
    z-index: 99;
    display: none;
  }
  ul.menu > li .submenu > a{
    color: #222;
    background: #fff;
    padding: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    display: block;
  }
  ul.menu > li .submenu > a:last-child{
    border: 0;
  }
  ul.menu > li .submenu a:hover{
    color: #fff;
    background: #01afb8;
  }

  /*手機menu*/
  .m_menu{
    display:none;
  }

/***********即刻訂房***********/
  .bookingArea{
    text-align: center;
    position: relative;
    margin-top: -50px;
    z-index: 10;
    opacity: 0;
    -webkit-transform: translate(0,10px);
    transform: translate(0,10px);
    -webkit-transition: all 0.8s ease, opacity 0.4s ease;
    -moz-transition: all 0.8s ease, opacity 0.4s ease;
    -o-transition: all 0.8s ease, opacity 0.4s ease;
    transition: all 0.8s ease, opacity 0.4s ease;
  }
  .bookingArea.show{
    opacity: 1;
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
  }
  .bookingArea a{
    width: 100%;
    /*max-width: 525px;*/
    max-width: 370px;
    color: #fff;
    font-size: 22px;
    letter-spacing: 3px;
    line-height: 100px;
    background: #71b9d1;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.35);
    display: inline-block;
    overflow: hidden;
  }
  .bookingArea a:hover{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.45);
    -webkit-transform: translate(0,3px);
    transform: translate(0,3px);
  }
  .bookingArea a::after{
    content: '';
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .bookingArea a:hover::after{
    opacity: 1;
    -webkit-transform: scale(100);
    -ms-transform: scale(100);
    transform: scale(100);
    -webkit-transition: all 0.4s ease, transform 0.8s 0.2s ease;
    -moz-transition: all 0.4s ease, transform 0.8s 0.2s ease;
    -o-transition: all 0.4s ease, transform 0.8s 0.2s ease;
    transition: all 0.4s ease, transform 0.8s 0.2s ease;
  }

/***********banner************/
  .bannerArea{
    position: relative;
    overflow: hidden;
  }
  .bannerArea .wrap{
    max-width: 1920px;
    padding: 0;
  }
  .bannerBox{
    position: relative;
    z-index: 10;
  }

  /*banner載入隱藏*/
    .bannerBox{
      position: relative;
      opacity: 0;
      -webkit-animation-name: bannershow;
      -webkit-animation-duration: 2s;
      -webkit-animation-fill-mode: forwards;
      animation-name: bannershow;
      animation-duration: 2s; 
      animation-fill-mode: forwards;
    }
    @-webkit-keyframes bannershow{
         0% {
        opacity:0;
      }
      100% {
        opacity:1;
      }
    }
    @keyframes bannershow{
         0% {
        opacity:0;
      }
      100% {
        opacity:1;
      }
    }
    .bannerBox li.hidden{
      display: none;
    }

  .bannerBox ul#banner{
    margin: 0;
    position: relative;
    background: #000;
  }
  .bannerBox ul li{
    padding: 0;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .bannerBox ul li .Img{
    position: relative;
  }
  .bannerBox ul li .Img a{
    position: relative;
    width: 100%;
    display: block;
  }
  .bannerBox img{
    display: block;
    width: 100%;
  }

/*************頁尾************/
  footer{
    background: #e8ce84;
    clear: both;
    position: relative;
	bottom: 0;
    height: 50px;
    margin-top: -50px;
	padding: 5px 10px;
  }
  footer::before{
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/bg_footer.jpg) top center;
    position: absolute;
    top: 0;
    left: 0;
  }
  footer .wrap{
    color: #fff;
    max-width: 1160px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
  }
  footer h2{
    font-size: 16px;
    letter-spacing: 1.5px;
    padding-bottom: 8px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 20px;
  }
  footer h2::after{
    content: attr(data-en);
    color: #918884;
    font-size: 14px;
    font-family: 'Times New Roman', sans-serif;
    font-style: italic;
    margin-left: 5px;
  }
  footer h2::before{
    content: '';
    width: 70px;
    height: 2px;
    background: #918884;
    position: absolute;
    bottom: -2px;
    left: 0;
  }
  footer .infoBox{
    width: 34%;
  }
  footer .contactBox{
    width: 38%;
  }
  footer .newsBox{
    width: 28%;
  }
  footer .infoBox .logo{
    display: inline-block;
    width: 300px;
    margin: 0;
    position: relative;
  }
  footer .infoBox .logo a{
    display: inline-block;
    width: 100%;
    height: 90px; 
    background: url(../images/m_logo.svg) no-repeat center;
    -webkit-background-size: contain;
    background-size: contain;
    position: relative;
    text-indent: -9999px;
  }
  /*footer .infoBox .logo a img{*/
  /*  display: inline-block;*/
  /*}*/
  footer .infoBox p{
    color: #ccc;
    font-size: 13px;
    line-height: 25px;
    display: block;
    max-width: 320px;
    margin-top: 15px;
  }
  footer .scoreBox{
    display: flex;
    flex-wrap: nowrap;
    max-width: 300px;
  }
  footer .scoreImg{
    display: inline-block;
    flex-grow: 1;
    padding-left: 10px;
  }
  footer .scoreImg img{
    width: 100%;
  }
  footer .social{
    margin-top: 15px;
    margin-left: -10px;
  }
  footer .social li{
    display: inline-block;
    vertical-align: middle;
  }
  footer .social li a{
    color: #d8d8d8;
    display: inline-block;
    font-size: 20px;
    padding: 0 15px;
    position: relative;
  }
  footer .social li a::before{
    content: '';
    width: 20px;
    height: 2px;
    background: #918884;
    position: absolute;
    top: 120%;
    left: calc(50% - 10px);
    opacity: 0;
  }
  footer .social li a:hover::before{
    top: 100%;
    opacity: 1;
  }
  footer .social li .line{
    padding-top: 3px;
  }
  footer .social li .line_icon{
    width: 21px;
    height: 20px;
    background: url(../images/line_icon.png) no-repeat center bottom;
    display: inline-block;
  }
  footer .contactBox h2{
    max-width: 325px;
  }
  footer .contactList{
    font-size: 13px;
    padding-top: 8px;
  }
  footer .contactList li span{
    color: #aaa;
    display: inline-block;
  }
  footer .contactList li span::after{
    content: '/';
    color: #555a5d;
    padding: 0 15px;
  }
  footer .contactList li a{
    color: #fff;
    font-family: "微軟正黑體", Heiti TC, "メイリオ", sans-serif;
  }
  footer .contactList li a:hover,
  footer .contactList li address:hover{
    text-decoration: underline;
  }
  footer .contactList li a.notLink{
    text-decoration: none;
    cursor: auto;
  }
  footer .contactList li address{
    display: inline-block;
    font-style: normal;
  }
  footer .edmBox{
    padding: 0;
  }
  footer .edmBox p{
    color: #ccc;
    font-size: 13px;
    line-height: 25px;
    display: block;
  }
  footer .edmBox .form{    
    background: rgba(255, 255, 255, 0.15);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    margin-top: 18px;
  }
  footer .edmBox .form input[type="text"]{
    display: inline-block;
    margin: 0;
    border: 0;
    width: calc(100% - 75px);
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    background: transparent;
    color: #fff;
    font-size: 12px;
  }
  footer .edmBox .form .btn{
    display: inline-block;
    margin: 0;
    width: 75px;
  }
  footer .edmBox .form .btn a{
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    background: transparent;
    font-size: 12px;
    text-align: center;
    color: rgba(255, 255, 255, 0);
    margin: 0;
    position: relative;
  }
  footer .edmBox .form .btn a:hover{
    background: #71b9d1;
  }
  footer .edmBox .form .btn a::before{
    content: '';
    width: 21px;
    height: 7px;
    background: url(../images/right-arrow.png) no-repeat;
    position: absolute;
    top: calc(50% - 4px);
    left: calc(50% - 10px);
  }
  footer .edmBox .form .btn a:hover::before{
    background: url(../images/right-arrow-hover.png) no-repeat;
  }
  footer .edmBox .form .btn a::after{
    display: none;
  }
  footer .copyright{
    color: #444;
    font-size: 12px;
    letter-spacing: -0.5px;
    line-height: 1.7;
    display: block;
    text-align: left;
    margin-top: 15px;
  }
  footer .copyright a{
    color: #444;
  }
  footer .copyright a:hover{
    text-decoration: underline;
  }
  footer .copyright address,
  footer .copyright .tel{
    font-size: 13px;
    font-style: normal;
  }
  .translateIbest{
    display: inline-block;
    vertical-align: middle;
    position: relative;
  }
  .translateIbest .design span{
    display: block;
    font-size: 12px;
    color: #444;
  }
  .translateIbest .design a{
    text-decoration: none;
    color: #444;
    display: inline-block;
    font-size: 12px;
  }
  .translateIbest .design a:hover{
    text-decoration: underline;
  }

/*************內頁************/

  .mainArea.ins{
    padding: 0;
    position: relative;
  }
  .mainArea.ins.inspage{
    padding: 0;
  }
  .mainArea.ins .wrap{}
  .mainArea.ins .titleBox{
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -100;
  }
  .mainArea.ins .titleBox::before{
    content: '';
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
  }
  .bg_gray{
    position: relative;
  }
  .bg_gray::before{
    content: '';
    width: 1920px;
    height: 100%;
    background: #f5f7fa;
    position: absolute;
    top: 0;
    left: calc(50% - 960px);
    z-index: -1;
  }

  /*網站導覽bread*/
    .mainArea.ins .bread{
      color: #766a65;
      font-size: 14px;
      font-weight: normal;
      letter-spacing: 2px;
      position: relative;
      z-index: -100;
    }
    .mainArea.ins .bread.top{
      top: 0;
    }
    .mainArea.ins .bread a{
      color: #766a65;
    }
    .mainArea.ins .bread a:hover{
      color: #222;
      text-decoration: underline;
    }
    .mainArea.ins .bread a i{
      color: #222;
      font-size: 14px;
      margin-right: 5px;
    }
    .mainArea.ins .bread span{
      display: inline-block;
      position: relative;
      margin: 0 5px;
    }
    .mainArea.ins .bread strong{
      color: #1b1b1b;
      font-weight: normal;
    }
  
  /*topBreadBox*/
    .topBreadBox{
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      padding: 26px 0;
      position: relative;
      z-index: 1;
    }
    .mainArea.ins .topBreadBox .bread{
      z-index: 1;
    }
    .topBreadBox .bread{
      width: calc(100% - 140px);
      text-align: right;
    }
    .topBreadBox .btn_back{
      width: 140px;
      text-align: center;
      position: relative;
    }
    .topBreadBox .btn_back::before{
      content: '';
      width: 21px;
      height: 7px;
      background: url(../images/right-arrow.png) no-repeat;
      position: absolute;
      top: calc(50% - 3px);
      left: 0;
      -webkit-transform: rotateY(180deg);
      -ms-transform: rotateY(180deg);
      transform: rotateY(180deg);
    }
    .topBreadBox .btn_back:hover::before{
      left: 5px;
      -webkit-transform: rotateY(0deg);
      -ms-transform: rotateY(0deg);
      transform: rotateY(0deg);
    }
    .topBreadBox .btn_back a{
      color: #766a65;
      font-size: 15px;
      letter-spacing: 0.5px;
    }
    .topBreadBox .btn_back a:hover{
      color: #1b1b1b;
    }

  .mainArea .contentBox{
    padding: 0 0 80px;
    position: relative;
    margin-top: 50px;
    z-index: 5;
  }
  .mainArea .contentBox > .wrap{
    max-width: 1140px;
  }
  .mainArea.ins .floatBox{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
  }
  .mainArea.ins .floatBox .outerClass{
    width: 280px;
  }
  .mainArea.ins .floatBox .contentBox{
    width: calc(100% - 280px);
    margin-top: 0;
  }
  .mainArea.ins .sideColumnBox{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
  }
  .mainArea.ins .sideColumnBox .leftColumn{
    width: 430px;
  }
  .mainArea.ins .sideColumnBox .rightColumn{
    width: calc(100% - 430px);
  }

  /*文章標題*/
    .mainArea .contentBox .articleTitle{
      color: #23272a;
      font-size: 30px;
      font-weight: normal;
      line-height: 1.4;
      text-align: center;
      margin: 0;
      padding: 0 0 15px;
      position: relative;
      display: block;
      z-index: 1;
    }
    .mainArea .contentBox .articleTitle::before{
      content: '';
      width: 30px;
      height: 1px;
      background: #d1c0a5;
      position: absolute;
      bottom: 0;
      left: calc(50% - 15px);
      z-index: -1;
    }
    .mainArea .contentBox .articleTitle.hidden{
      position: absolute;
      top: 0;
      left: 0;
      z-index: -100;
    }
    .mainArea .contentBox .articleTitle.hidden::after{
      content: '';
      width: 100%;
      height: 100%;
      background: #fff;
      position: absolute;
      top: 0;
      left: 0;
    }

  /*類別*/
    .m_classLink{
      display: none;
    }
    .classBox{
      width: 100%;
      position: relative;
    }

    /*classLink1*/
      .classBox1{
        padding: 22px 0;
      }
      .classBox1::before{
        content: '';
        width: 1920px;
        height: 100%;
        background: #f5f7fa;
        position: absolute;
        top: 0;
        left: calc(50% - 960px);
      }
      ul.classLink1{
        display: block;
        padding: 0;
        position: relative;
        margin-left: -25px;
        z-index: 50;
      }
      ul.classLink1 li{
        display: inline-block;
        position: relative;
        padding: 0;
      }
      ul.classLink1 li a{
        display: block;
        color: #766a65;
        font-size: 18px;
        line-height: 1.4;
        letter-spacing: 1px;
        position: relative;
        padding: 0 25px;
      }
      ul.classLink1 li:hover > a,
      ul.classLink1 li > a.current{
        color: #71b9d1;
      }
      ul.classLink1 li a::before{
        content: '';
        width: 1px;
        height: 18px;
        background: #766a65;
        position: absolute;
        top: calc(50% - 9px);
        right: 0;
      }
      ul.classLink1 li:last-of-type a::before{
        display: none;
      }

    /*classLink2*/
      ul.classLink2{
        display: block;
        padding: 50px 0;
        position: relative;
        max-width: 220px;
        z-index: 50;
        overflow: hidden;
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
      }
      ul.classLink2::before{
        content: '';
        width: 100%;
        height: 100%;
        background: #ab066b;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
      }
      ul.classLink2::after{
        content: '';
        width: calc(100% + 50px);
        height: calc(100% + 50px);
        background: #71b9d1;
        position: absolute;
        top: 0;
        right: calc(50% - 15px);
        z-index: -1;
        -webkit-transform: skewX(26deg);
        -ms-transform: skewX(26deg);
        transform: skewX(26deg);
      }
      ul.classLink2 li{
        display: block;
        position: relative;
        padding: 0;
        padding-bottom: 10px;
      }
      ul.classLink2 li:last-of-type{
        padding-bottom: 0;
      }
      ul.classLink2 li a{
        display: block;
        color: #ea82c2;
        font-size: 16px;
        line-height: 1.8;
        letter-spacing: 1px;
        position: relative;
        padding: 0 5px 0 70px;
      }
      ul.classLink2 li:hover > a,
      ul.classLink2 li > a.current{
        color: #fff;
      }
      ul.classLink2 li a::before{
        content: '';
        width: 0;
        height: 1px;
        background: #fff;
        position: absolute;
        top: 12px;
        left: 0;
      }
      ul.classLink2 li.current a::before,
      ul.classLink2 li:hover a::before{
        width: 60px;
      }

    ul.classLink li > dl{
      display: none;
    }

  /*類別說明*/
    .mainArea.ins .classNote{
      text-align: center;
      margin: 10px 0;
      padding: 0 50px;
    }
    .mainArea.ins .classNote img{
      max-width: 100%;
    }

  /*分享*/
    .mainArea .side_share{}
    .mainArea .side_share a{
      width: 35px;
      height: 35px;
      border: 1px solid rgba(67, 67, 67, 0);
      color: #434343;
      font-size: 22px;
      line-height: 35px;
      display: inline-block;
      vertical-align: top;
      text-align: center;
      margin: 0 3px;
    }
    .mainArea .side_share a:hover{
      border: 1px solid rgba(67, 67, 67, 0.4);
    }
    .mainArea .side_share a .line_icon{
      width: 100%;
      height: 100%;
      display: inline-block;
      background: url(../images/line_icon_b.png) no-repeat center;
      -webkit-transition: all 0.4s ease;
      -moz-transition: all 0.4s ease;
      -o-transition: all 0.4s ease;
      transition: all 0.4s ease;
    }

  /*頁籤*/
    .tab{
      margin: 35px 0 0;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      border-bottom: 1px solid #ccc;
    }
    .tab a{
      display: block;
      position: relative;
      padding: 8px 25px;
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 1px;
      text-align: center;
      color: #222;
      background: #eee;
    }
    .tab a:hover{
      color: #fff;
      background: #a1937e;
    }
    .tab a.current{
      color: #fff;
      background: #0a0a28;
    }
    ul.tabContent{
      padding: 5px 0 20px;
    }
    ul.tabContent > li{
      display: none;
    }
    ul.tabContent li .textEditor{
      margin: 0;
    }

  /*相簿*/
    ul.side_album{
      padding: 0;
      text-align: center;
      margin: 0;
    }
    ul.side_album li{
      width: 100%;
      padding: 7px 0;
      display: inline-block;
    }
    ul.side_album li a{
      display: block;
      position: relative;
    }
    ul.side_album li a::before{
      content: '';
      width: 100%;
      height: 100%;
      background: rgba(163, 0, 102, 0.75);
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
    }
    ul.side_album li:hover a::before{
      opacity: 1;
    }
    ul.side_album li a::after{
      content: '';
      background: url(../images/detail.png) no-repeat center;
      width: 50px;
      height: 50px;
      position: absolute;
      top: calc(50% - 25px);
      left: calc(50% - 25px);
      opacity: 0;
    }
    ul.side_album li:hover a::after{
      opacity: 1;
      -webkit-transform: scale(0.5);
      -ms-transform: scale(0.5);
      transform: scale(0.5);
    }
    ul.side_album li a img{
      display: block;
      width: 100%;
      box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1); 
    }

  /*標籤*/
    .tagBox{
      padding: 20px 0 30px;
      color: #555;
    }
    .tagBox b{
      display: inline-block;
      margin-right: 10px;
      margin-bottom: 5px;
      text-transform: uppercase;
      letter-spacing: 0.4px;
    }
    .tagBox ul{
      display:inline-block;
    }
    .tagBox ul li{
      display: inline-block;
      margin-bottom: 15px;
    }
    .tagBox ul li a{
      display: block;
      margin: 0 3px;
      font-size: 15px;
      font-weight: 300;
      padding: 0 20px;
      color: #fff;
      height: 45px;
      line-height: 45px;
      letter-spacing: 0.5px;
      background: #222;
      border: 1px solid #f4f4f4;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
      border-radius: 25px;
      position: relative;
      text-transform: uppercase;
      z-index: 5;
    }
    .tagBox ul li a:hover, 
    .tagBox ul li a.current{
      color: #fff;
      background: #ff3333;
      border: 1px solid #ff3333;
    }
    .tagBox ul li a:before{
      content: "\f00d";
      font-family: 'FontAwesome';
      font-size: 12px;
      margin: 0 0 0 -7px;
      opacity: 0;
    }
    .tagBox ul li a.current:before{
      margin: 0 5px 0 0;
      opacity: 1;
    }

  /*頁碼*/
    .pageBox{
      width: 100%;
      margin: 0;
      padding: 0 6px;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -o-flex-wrap: wrap;
      flex-wrap: wrap;
      justify-content: center;
    }
    .pageBox a{
      width: 40px;
      height: 40px;
      line-height: 40px;
      margin: 0 2px;
      text-align: center;
      color: #454647;
      font-size: 13px;
      border-radius: 5px;
      display: inline-block;
    }
    .pageBox a:hover,
    .pageBox a.current{
      color: #fff;
      background: #454647;
    }
    .pageBox a.btns{
      background: #eee;
      border: 1px solid #eee;
      font-size: 15px;
      color: #454647;
    }
    .pageBox a.btns:hover{
      border: 1px solid #454647;
    }

  /*上下頁*/
    .toPageBox{
      text-align: center;
      margin-top: 80px;
    }
    .toPageBox a{
      display: inline-block;
      color: #959595;
      font-size: 14px;
      font-family: 'Times New Roman', sans-serif;
      text-transform: uppercase;
      padding: 3px 45px;
      position: relative;
    }
    .toPageBox a:hover{
      color: #1b1b1b;
    }
    .toPageBox a:nth-of-type(2){
      border-left: 1px solid #434343;
    }
    .toPageBox a::before{
      content: '';
      width: 28px;
      height: 28px;
      border: 1px solid #959595;
      position: absolute;
      top: calc(50% - 14px);
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    .toPageBox a:hover::before{
      border-color: #1b1b1b;
    }
    .toPageBox a.btn_prev::before{
      border-top: 0;
      border-right: 0;
      left: 0;
    }
    .toPageBox a.btn_next::before{
      border-bottom: 0;
      border-left: 0;
      right: 0;
    }

  /*相關訊息*/
    .side_news{
      padding: 50px 5px 50px;
      position: relative;
    }
    .side_news .sectionTitle{
      text-align: center;
      color: #23272a;
      font-size: 23px;
      font-weight: normal;
      letter-spacing: 1.5px;
      margin-bottom: 50px;
    }
    .side_news .rectPrev{
      position: absolute;
      top: calc(50% - 30px);
      left: -45px;
    }
    .side_news .rectNext{
      position: absolute;
      top: calc(50% - 30px);
      right: -45px;
    }
    ul.side_itemList{
      margin: 0;
    }
    ul.side_itemList li{
      text-align: center;
       padding: 0 13px;
    }
    ul.side_itemList li .Img{
      position: relative;
      min-height: 80px;
    }
    ul.side_itemList li .Txt{
      padding: 20px 10px 10px;
    }
    ul.side_itemList li .Txt h3{
      color: #222;
      font-size: 18px;
      font-weight: normal;
      line-height: 25px;
    }
    ul.side_itemList li .Txt h3 a{
      color: #222;
    }
    ul.side_itemList li:hover .Txt h3 a{
      color: #71b9d1;
      text-decoration: underline;
    }
    ul.side_itemList li .txtPeriod{
      color: #71b9d1;
      font-size: 12px;
      font-family: "微軟正黑體", Heiti TC, "メイリオ", sans-serif;
      padding: 0;
      margin-top: 10px;
    }

  /*textEditor*/
    .contentBox .textEditor{
      padding-top: 40px;
      color: #666;
      font-size: 15px;
      font-weight: normal;
      letter-spacing: 1.2px;
      line-height: 31px;
      text-align: justify;
    }
    .textEditor .editorBox{
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -o-flex-wrap: wrap;
      flex-wrap: wrap;
      -ms-align-items: center;
      align-items: center;
    }
    .textEditor .editorBox.reverse{
      -webkit-flex-direction: row-reverse;
      -moz-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
      -o-flex-direction: row-reverse;
      flex-direction: row-reverse;
    }
    .textEditor .editorBox .Img{
      padding: 0;
    }
    .textEditor .editorBox .Img img{
      display: block;
    }
    .textEditor .editorBox .Txt{
      padding: 10px 20px 20px 35px;
    }
    .textEditor .editorBox.reverse .Txt{
      padding: 20px 35px 10px 20px;
    }
    .contentBox .textEditor a{
      color: #1b1b1b;
      display: inline-block;
      position: relative;
    }
    .contentBox .textEditor a:hover{
      color: #71b9d1;
    }
    .contentBox .textEditor a:before{
      content: '';
      width: 101%;
      height: 1px;
      background: #1b1b1b;
      position: absolute;
      top: calc(100% - 7px);
      left: 0;
    }
    .contentBox .textEditor a:hover:before{
      background: rgba(163, 0, 102, 0.75);
    }
    .contentBox .textEditor .btn a{
      color: #fff;
      font-size: 16px;
    }
    .contentBox .textEditor .btn a:before{
      display: none;
    }
    .contentBox .textEditor img{
      display: inline-block;
    }
    .contentBox .textEditor .title{
      color: #23272a;
      font-size: 30px;
      font-weight: normal;
      letter-spacing: 2.5px;
      line-height: 1.2;
      margin: 0 0 15px;
    }
    .contentBox .textEditor .title span{
      display: block;
      font-size: 20px;
      line-height: 1.5;
    }
    .contentBox .textEditor table{
      width: 100%;
    }
    .contentBox .textEditor table th{
      background: #01afb8;
      letter-spacing: 2px;
      font-weight: normal;
      text-align: left;
      padding: 5px 8px;
    }
    .contentBox .textEditor table td{
      padding: 5px 8px;
      letter-spacing: 1px;
      line-height: 1.6;
    }
    .contentBox .textEditor table.noBorderTable td{
      border: 0;
      padding: 5px 0;
      vertical-align: top;
    }
    .contentBox .textEditor ul{
      display: block;
    }
    .contentBox .textEditor strong{
      /*color: #1b1b1b;*/
    }
    .textEditor sup{
      font-size: small;
      vertical-align: super;
    }

  /*slideUnLock*/
    .captchaArea {
      display: inline-block;
      position: relative;
      width: 200px;
      height: 45px;
      margin-right: 10px;
      background-color: #eee;
      vertical-align: top;
      text-align: center;
    }
    .captchaArea.unlocking .sliderBtn {
      transition: none;
    }
    .captchaArea .note {
      color: #717171;
      font-size: 15px;
      font-weight: normal;
      letter-spacing: 1px;
      text-align: center;
      line-height: 45px;
      padding-left: 40px;
      position: relative;
      pointer-events: none;
      z-index: 1;
    }
    .sliderBtn {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 2;
      width: 45px;
      height: inherit;
      border: none;
      outline: none;
      background-color: #71b9d1;
      cursor: pointer;
      box-sizing: border-box;
      transition: all .3s linear;
    }
    .sliderBtn::before {
      content: '\f0da';
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      color: #fff;
      font-size: 14px;
      font-family: FontAwesome;
      pointer-events: none;
    }
  
  table.breakpoint > tbody > tr > td.expand {
    cursor: pointer;
    background: url("../images/plus.png") no-repeat 5px center;
    padding-left: 40px;
  }

/**********響應式**********/
  @media (min-width: 1921px){
    .bannerArea .wrap{
      max-width: 100%;
    }
  }
  @media (max-width: 1750px){
  }
  @media (max-width: 1500px){
    .mainArea.ins .sideColumnBox .leftColumn{
      width: 350px;
    }
    .mainArea.ins .sideColumnBox .rightColumn{
      width: calc(100% - 350px);
    }
  }
  @media (max-width: 1400px){
  }
  @media (max-width: 1350px){
    ul.menu li > a{
      padding: 20px 20px;
    }
  }
  @media (max-width: 1300px){
    .wrap{
      max-width: 100%;
      padding: 0 50px
    }
    .mainArea .contentBox > .wrap{
      padding: 0;
    }
    .mainArea.ins .sideColumnBox .leftColumn{
      width: 300px;
    }
    .mainArea.ins .sideColumnBox .rightColumn{
      width: calc(100% - 300px);
    }

    footer .wrap{
      max-width: 100%;
    }
  }
  @media (max-width: 1250px){
    ul.menu li > a{
      padding: 20px 15px;
    }
  }
  @media (max-width: 1200px){
  }
        @media (min-width: 361px) {
            .m_menu .m_qlinkList{
                position: absolute;
            }
        }
        @media (max-width: 360px) {
            .m_menu .m_qlinkList{
                position: relative;
                margin-left: 3px;
                margin-right: auto;
            }
        }
        @media (max-width: 1180px) and (min-width: 641px) {
            .m_menu .m_qlinkList{
                top: 70px;
                right: calc(50% - 210px);
            }
        }
        @media (max-width: 640px) and (min-width: 481px) {
            .m_menu .m_qlinkList{
                top: 100px;
                right: calc(50% - 220px);
            }
        }
        @media (max-width: 480px) and (min-width: 361px) {
            .m_menu .m_qlinkList{
                top: 100px;
                right: 20px;
            }
        }
  @media (max-width: 1180px){
    .outerWrap{
      padding-top: 70px;
      padding-bottom: 55px;
    }

    .goTopBox{
        display: none;
    }

    /*手機down*/
      ul.float_down{
        
          background: #f4f4f4;
          position: fixed;
          bottom: 0;
          width: 100%;
          height: 55px;
          display: flex;
          z-index: 899;
      }
      ul.float_down li{
          flex: 1;
        padding: 10px 0 5px 0;
        border-left: 1px solid rgba(255, 255, 255, 0.2);
          text-align: center;
      }
      ul.float_down a{
          display: block;
          font-size: 15px;
          background: #f4f4f4;
          color: #000;
          line-height: 15px;
          position: relative;
      }
      ul.float_down a::before{
          content: '';
          width: 1px;
          height: 40px;
          background: #d4d4d4;
          position: absolute;
          top: 0;
          left: 0;
      }
      ul.float_down a span{
          padding-top: 5px;
          display: block;
          font-size: 12px;
      }

    /*header*/
      .menuBox{
        display: none;
      }
      header .logo{
        width: 300px;
        padding: 5px 0 5px 0;
      }
      header .logo a{
        background: url(../images/s_logo.svg) no-repeat center left;
        -webkit-background-size: contain;
        background-size: contain;
        position: relative;
      }
      header .logo a,
      header.shrink .logo a{
        height: 60px;
      }
      header.hide .logo{
        width: 270px;
      }
      header .rightBox{
        -ms-align-items: center;
        align-items: center;
        padding-right: 80px;
        padding-left: 0;
      }
      header .rightBox .topBox{
        width: 100%;
      }
      header .language{
        vertical-align: top;
        margin-right: 20px;
      }
      .weatherBox{
        display: inline-block;
      }
      header .menu_bar{
        width: 70px;
        height: 70px;
        background: #71b9d1;
        cursor: pointer;
        display: inline-block;
        position: absolute;
        top: 0;
        right: 0;
        text-align: center;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
      }
      header .menu_bar:hover{
        background: #71b9d1;
      }
      header .menu_bar::before{
        content: '';
        width: 20px;
        height: 2px;
        background: #fff;
        position: absolute;
        top: calc(50% - 1px);
        left: calc(50% - 6px);
      }
      header .menu_bar:hover::before{
        width: 28px;
        left: calc(50% - 14px);
      }
      header .menu_bar a.main{
        width: 100%;
        height: 100%;
        position: relative;
        display: inline-block;
      }
      header .menu_bar a.main::before,
      header .menu_bar a.main::after{
        content: '';
        width: 28px;
        height: 2px;
        background: #fff;
        position: absolute;
        left: calc(50% - 14px);
      }
      header .menu_bar a.main::before{
        top: calc(50% - 10px);
      }
      header .menu_bar a.main::after{
        top: calc(50% + 8px);
      }
      header .menu_bar a.main:hover::before,
      header .menu_bar a.main:hover::after{
        width: 20px;
        left: calc(50% - 6px);
      }
    .btn_close{
      z-index: 1001;
    }
    .btn_close a{
      width: 75px;
      height: 75px;
      line-height: 75px;
    }
    .btn_close a::before,
    .btn_close a::after{
      width: 30px;
      left: calc(50% - 15px);
    }

    /*手機menu*/
      .m_menu{
        display: block;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1001;
      }
      .m_menu .mask{
        background: #71b9d1;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 10;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.8s ease;
        -moz-transition: all 0.8s ease;
        -o-transition: all 0.8s ease;
        transition: all 0.8s ease;
      }
      .m_menu.active .mask{
        opacity: 1;
        visibility: visible;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
      }
      .m_menu .mask::before{
        content: '';
        width: 100%;
        height: 100%;
        background: #71b9d1;
        position: absolute;
        top: 0;
        left: 50%;
        -webkit-transform: skewX(18deg);
        -ms-transform: skewX(18deg);
        transform: skewX(18deg);
      }

      .m_menu .hideBox{
        width: 100%;
        min-height: 100vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        justify-content: space-between;
        padding: 40px 0;
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        z-index: 11;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: scale(1.5);
        -ms-transform: scale(1.5);
        transform: scale(1.5);
        -webkit-transition: all 0.8s ease, opacity 0.3s ease;
        -moz-transition: all 0.8s ease, opacity 0.3s ease;
        -o-transition: all 0.8s ease, opacity 0.3s ease;
        transition: all 0.8s ease, opacity 0.3s ease;
      }
      .m_menu.active .hideBox{
        opacity: 1;
        visibility: visible;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        -webkit-transition: all 0.5s cubic-bezier(0.07, 0.51, 0.12, 1);
        -moz-transition: all 0.5s cubic-bezier(0.07, 0.51, 0.12, 1);
        -o-transition: all 0.5s cubic-bezier(0.07, 0.51, 0.12, 1);
        transition: all 0.5s cubic-bezier(0.07, 0.51, 0.12, 1);
      }
      .m_menu .hideBox::before{
        content: '';
        width: 100%;
        height: 3px;
        background: #71b9d1;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 51;
      }
      .m_menu .btn_close a{
        width: 70px;
        height: 70px;
        background: #71b9d1;
      }
      .m_menu .btn_close a::before,
      .m_menu .btn_close a::after{
        width: 30px;
        left: calc(50% - 15px);
      }
      .m_menu .bottomBox{
        height: calc(100% - 80px);
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        justify-content: space-between;
      }
      .m_menu .topBox{
        padding: 0 30px;
        height: 80px;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-align-items: flex-start;
        align-items: flex-start;
      }

      /*logo*/
        .m_menu .m_logo{
          display: inline-block;
          width: 269px;
          margin: 0;
          position: relative;
        }
        .m_menu .m_logo a{
          display: block;
          width: 100%;
          height: 75px; 
          background: url(../images/mm_logo.svg) no-repeat center;
          -webkit-background-size: contain;
          background-size: contain;
          text-indent: -9999px;
        }
      /*language*/
        .m_menu .m_language{
            position: relative;
            z-index: 6;
          display: inline-block;
          width: calc(100% - 269px);
          text-align: right;
        }
        .m_menu .m_qlinkList {
            z-index: 5;
        }
        .m_menu .qlinkList,
        .m_menu .language{
          display: inline-block;
          position: relative;
        }
        .m_menu .qlinkList .main,
        .m_menu .language .main{
          width: 100px;
          height: 24px;
          border: 1px solid #e5e5e5;
          cursor: pointer;
          color: #fff;
          font-size: 13px;
          letter-spacing: 1px;
          line-height: 22px;
          text-align: center;
          display: inline-block;
          padding-right: 5px;
          position: relative;
        }
        .m_menu .qlinkList .main::after,
        .m_menu .language .main::after{
          content: '\f0d7';
          color: #fff;
          font-size: 13px;
          font-family: FontAwesome;
          pointer-events: none;
          position: absolute;
          top: 0;
          right: 8px;
        }
        .m_menu .qlinkList .subItem,
        .language .btn_language{
          width: 100px;
          background: #71b9d1;
          border: 1px solid rgba(229, 229, 229, 0.8);
          cursor: pointer;
          color: #fff;
          font-size: 13px;
          letter-spacing: 1px;
          line-height: 26px;
          text-align: center;
          position: absolute;
          top: 100%;
          left: 0;
          display: none;
        }
        .m_menu .qlinkList .subItem a {
            display: block;
          color: #fff;
        }
        .m_menu .qlinkList .subItem a,
        .m_menu .language .btn_language li{
          border-bottom: 1px solid rgba(229, 229, 229, 0.8);
        }
        .m_menu .qlinkList .subItem a:last-of-type,
        .m_menu .language .btn_language li:last-of-type{
          border: 0;
        }

      /*mfun*/
        .m_menu .mfun{
          height: 50px;
          padding: 0;
          position: relative;
          display: -webkit-flex;
          display: -moz-flex;
          display: -ms-flex;
          display: -o-flex;
          display: flex;
          -webkit-flex-wrap: wrap;
          -moz-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
          -o-flex-wrap: wrap;
          flex-wrap: wrap;
          -ms-align-items: flex-start;
          align-items: flex-start;
          justify-content: center;
          z-index: 100;
        }
        .m_menu .mfun a{
          display: inline-block;
          color: #fff;
          width: 50px;
          height: 50px;
          line-height: 50px;
          font-size: 20px;
          background: transparent;
          border: 1px solid transparent;
          border-radius: 50%;
          text-align: center;
          margin: 0 5px;
          opacity: 0;
          visibility: hidden;
          -webkit-transform: translate(-3px,-30px);
          -ms-transform: translate(-3px,-30px);
          transform: translate(-3px,-30px);
          -webkit-transition: all 0.8s ease, opacity 0.3s ease;
          -moz-transition: all 0.8s ease, opacity 0.3s ease;
          -o-transition: all 0.8s ease, opacity 0.3s ease;
          transition: all 0.8s ease, opacity 0.3s ease;
        }
        .m_menu.active .mfun a{
          opacity: 1;
          visibility: visible;
          -webkit-transform: translate(0,0);
          -ms-transform: translate(0,0);
          transform: translate(0,0);
          -webkit-transition: all 0.8s ease;
          -moz-transition: all 0.8s ease;
          -o-transition: all 0.8s ease;
          transition: all 0.8s ease;
        }
        .m_menu.active .mfun a:nth-of-type(1){
          -webkit-transition-delay: 0.4s;
          -moz-transition-delay: 0.4s;
          -o-transition-delay: 0.4s;
          transition-delay: 0.4s;
        }
        .m_menu.active .mfun a:nth-of-type(2){
          -webkit-transition-delay: 0.45s;
          -moz-transition-delay: 0.45s;
          -o-transition-delay: 0.45s;
          transition-delay: 0.45s;
        }
        .m_menu.active .mfun a:nth-of-type(3){
          -webkit-transition-delay: 0.5s;
          -moz-transition-delay: 0.5s;
          -o-transition-delay: 0.5s;
          transition-delay: 0.5s;
        }
        .m_menu.active .mfun a:nth-of-type(4){
          -webkit-transition-delay: 0.55s;
          -moz-transition-delay: 0.55s;
          -o-transition-delay: 0.55s;
          transition-delay: 0.55s;
        }
        .m_menu.active .mfun a:nth-of-type(5){
          -webkit-transition-delay: 0.6s;
          -moz-transition-delay: 0.6s;
          -o-transition-delay: 0.6s;
          transition-delay: 0.6s;
        }
        .m_menu .mfun a.line .line_icon{
          width: 100%;
          height: 100%;
          background: url(../images/line_icon.png) no-repeat center;
          display: inline-block;
        }
        .m_menu .mfun a:hover{        
          background: #71b9d1;
        }

      /*menu*/
        .sp_menu{
          height: 0;
        }
        .m_menu ul.nav{
          padding: 30px 0;
          height: calc(100% - 50px);
          max-height: 650px;
          display: -webkit-flex;
          display: -moz-flex;
          display: -ms-flex;
          display: -o-flex;
          display: flex;
          -webkit-flex-direction: column;
          -moz-flex-direction: column;
          -ms-flex-direction: column;
          -o-flex-direction: column;
          flex-direction: column;
          justify-content: space-between;
          opacity: 0;
          visibility: hidden;
        }
        .m_menu.active ul.nav{
          opacity: 1;
          visibility: visible;
        }
        .m_menu ul.nav li{
          flex: 1;
          text-align: center;
          overflow: hidden;
          opacity: 0;
          visibility: hidden;
          -webkit-transform: translate(-3px,-30px);
          -ms-transform: translate(-3px,-30px);
          transform: translate(-3px,-30px);
          -webkit-transition: all 0.8s ease, opacity 0.3s ease;
          -moz-transition: all 0.8s ease, opacity 0.3s ease;
          -o-transition: all 0.8s ease, opacity 0.3s ease;
          transition: all 0.8s ease, opacity 0.3s ease;
        }
        .m_menu.active ul.nav li{
          opacity: 1;
          visibility: visible;
          -webkit-transform: translate(0,0);
          -ms-transform: translate(0,0);
          transform: translate(0,0);
          -webkit-transition: all 0.8s ease;
          -moz-transition: all 0.8s ease;
          -o-transition: all 0.8s ease;
          transition: all 0.8s ease;
        }
        .m_menu.active ul.nav li:nth-of-type(1){
          -webkit-transition-delay: 0.1s;
          -moz-transition-delay: 0.1s;
          -o-transition-delay: 0.1s;
          transition-delay: 0.1s;
        }
        .m_menu.active ul.nav li:nth-of-type(2){
          -webkit-transition-delay: 0.15s;
          -moz-transition-delay: 0.15s;
          -o-transition-delay: 0.15s;
          transition-delay: 0.15s;
        }
        .m_menu.active ul.nav li:nth-of-type(3){
          -webkit-transition-delay: 0.2s;
          -moz-transition-delay: 0.2s;
          -o-transition-delay: 0.2s;
          transition-delay: 0.2s;
        }
        .m_menu.active ul.nav li:nth-of-type(4){
          -webkit-transition-delay: 0.25s;
          -moz-transition-delay: 0.25s;
          -o-transition-delay: 0.25s;
          transition-delay: 0.25s;
        }
        .m_menu.active ul.nav li:nth-of-type(5){
          -webkit-transition-delay: 0.3s;
          -moz-transition-delay: 0.3s;
          -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
        }
        .m_menu.active ul.nav li:nth-of-type(6){
          -webkit-transition-delay: 0.35s;
          -moz-transition-delay: 0.35s;
          -o-transition-delay: 0.35s;
          transition-delay: 0.35s;
        }
        .m_menu.active ul.nav li:nth-of-type(7){
          -webkit-transition-delay: 0.4s;
          -moz-transition-delay: 0.4s;
          -o-transition-delay: 0.4s;
          transition-delay: 0.4s;
        }
        .m_menu.active ul.nav li:nth-of-type(8){
          -webkit-transition-delay: 0.45s;
          -moz-transition-delay: 0.45s;
          -o-transition-delay: 0.45s;
          transition-delay: 0.45s;
        }
        .m_menu ul.nav li a{
          position: relative;
          padding: 5px 20px;
          display: inline-block;
          font-size: 18px;
          color: #fff;
          letter-spacing: 4px;
          text-align: center; 
        }
        .m_menu ul.nav li a::before,
        .m_menu ul.nav li a::after{
          content: '';
          width: 0;
          height: 1px;
          background: #fff;
          position: absolute;
          top: 50%;
          opacity: 0;
        }
        .m_menu ul.nav li a::before{
          right: 100%;
        }
        .m_menu ul.nav li a::after{
          left: 100%;
        }
        .m_menu ul.nav li.current_hover a::before,
        .m_menu ul.nav li.current_hover a::after{
          opacity: 0.5;
          width: 200%;
          -webkit-transition: all 0.5s ease;
          -moz-transition: all 0.5s ease;
          -o-transition: all 0.5s ease;
          transition: all 0.5s ease;
        }
        .m_menu ul.nav li a i{
          display: block;
          position: absolute;
          right: 10px;
          top: 50%;
          margin-top: -7px;
        }
        .m_menu ul.nav li .submenu{
          display: none;
          padding: 0 40px 10px;
        }
        .m_menu ul.nav li .submenu a{
          padding: 0 15px;
          margin-bottom: 5px;
          color: #000;
          background: #fff;
          border-radius: 15px;
          font-size: 14px;
          font-weight: 300;
          display: inline-block;
        }
        .m_menu ul.nav li .submenu a:hover{
          background: #f67e2a;
          color: #fff;
        }

    /*classLink*/
      .classBox{
        background: transparent;
        max-width: 100%;
        text-align: left;
        padding: 20px 0;
      }
      .classBox::before{
        content: '';
        width: 1920px;
        height: 100%;
        background: #f5f7fa;
        position: absolute;
        top: 0;
        left: calc(50% - 960px);
      }
      ul.classLink{
        display: none;
      }
      .m_classLink{
        display: block;
        background: transparent;
        margin: 10px 0;
        position: relative;
        z-index: 50;
      }
      .m_classLink a.main{
        display: block;
        margin: 0 auto;
        font-size: 16px;
        color: #fff;
        letter-spacing: 1px;
        padding: 12px 40px 12px 30px;
        background: #71b9d1;
        border: 1px solid rgba(204, 204, 204, 0.3);
        position: relative;
      }
      .m_classLink a.main::before{
        content: '';
        width: 10px;
        height: 1px;
        background: #f2dba9;
        position: absolute;
        top: 24px;
        left: 14px;
      }
      .m_classLink a.main b{
        font-weight: normal;  
      }
      .m_classLink a.main i{
        display: block;
        font-size: 16px;      
        position: absolute;
        right: 20px;
        top: 50%;
        margin-top: -6px;
      }
      .m_classLink ul{
        border: 1px solid rgba(204, 204, 204, 0.3);
        padding: 0;
        list-style: none;
        display: none;
        margin: 0;
        width: 100%;
        position: relative;
        left: 0;
        top: 100%;
        z-index: 999;
      }
      .m_classLink ul li{
        padding: 0;
        border-bottom: 1px solid rgba(204, 204, 204, 0.3);
        display: block;
      }
      .m_classLink ul li a{
        color: #222;
        display: block;
        letter-spacing: 1px;
        font-size: 15px;
        padding: 8px 8px 8px 40px;
        background: #fff;
      }
      .m_classLink ul li > a.current{
        color: #222;
      }
      .m_classLink ul li:hover > a{
        color: #fff;
        background: #71b9d1;
      }
      .m_classLink ul > li:first-child > a{
        border: none;
      }
      .m_classLink ul li dl dt a{
        padding: 6px 10px 6px 50px;
        border-top: 1px solid #ddd;
      }
      .m_classLink ul li dl dt a:hover{
        color: #71b9d1;
      }
      .m_classLink ul li dl dt a::before{
        content: '-';
        color: #666;
        font-size: 16px;
        padding-right: 10px;
      }
      .m_classLink ul li a::before{
        display: none;
      }

    .mainArea.ins .floatBox{
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -o-flex-wrap: wrap;
      flex-wrap: wrap;
    }
    .mainArea.ins .floatBox .outerClass{
      width: 100%;
    }
    .mainArea.ins .floatBox .contentBox{
      width: 100%;
    }
    .mainArea.ins .sideColumnBox{
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -o-flex-wrap: wrap;
      flex-wrap: wrap;
    }
    .mainArea.ins .sideColumnBox .leftColumn{
      width: 100%;
      display: none;
    }
    .mainArea.ins .sideColumnBox .rightColumn{
      width: 100%;
    }

    footer .wrap{
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -o-flex-wrap: wrap;
      flex-wrap: wrap;
    }
    footer .infoBox{
      width: 100%;
      margin-bottom: 60px;
      text-align: center;
    }
    footer .infoBox .logo{
      width: 100%;
      display: block;
    }
    footer .scoreBox{
      margin: 0 auto;
    }
    footer .infoBox p{
      max-width: 800px;
      display: inline-block;
    }
    footer .contactBox{
      width: 60%;
    }
    footer .newsBox{
      width: 40%;
    }
  }
  @media (max-width: 1100px){
  }
  @media (max-width: 1024px){
  }
  @media (max-width: 960px){
    .pageBox{
      padding: 0;
    }
    .contentBox .textEditor{
      text-align: left;
    }
  }
  @media (max-width: 800px){
    .wrap{
      padding: 0 30px;
    }
    .side_news .rectPrev{
      left: -25px;
    }
    .side_news .rectNext{
      right: -25px;
    }
  }
  @media (max-width: 768px){


    footer .infoBox{
      text-align: left;
    }
    footer .infoBox .logo{
      width: 269px;
      display: inline-block;
    }
    footer .infoBox p{
      display: block;
    }
    footer .scoreBox{
      margin: 0;
    }
    footer .contactBox{
      width: 100%;
      margin-bottom: 50px;
    }
    footer .contactBox h2{
      max-width: 100%;
    }
    footer .contactList li a{
      word-wrap: break-word;
      word-break: normal;
    }
    footer .newsBox{
      width: 100%;
    }
    .contentBox .textEditor a{
      word-wrap: break-word;
      word-break: normal;
    }
  }
  @media (max-width: 640px){
    .txt_oneLine{
      overflow: visible;
      text-overflow: clip;
      white-space: unset;
    }

    header .language{
      display: none;
    }
    /*手機menu*/
      .m_menu .btn_close a{
        width: 55px;
        height: 55px;
      }
      .m_menu .topBox{
        padding: 0 20px;
        -ms-align-items: center;
        align-items: center;
      }
      .m_menu .m_language{
        width: 100px;
      }
      .m_menu .m_logo{
        width: calc(100% - 100px);
        padding-right: 15px;
      }
    
    ul.side_itemList li{
      padding: 0;
    }

    .side_news .rectPrev,
    .side_news .rectNext{
      background: #fff;
    }
    .side_news .rectPrev{
      left: -20px;
    }
    .side_news .rectNext{
      right: -20px;
    }
    .side_news .rectPrev::before,
    .side_news .rectNext::before{
      width: 18px;
      height: 18px;
      top: calc(50% - 9px);
      right: calc(50% - 9px);
    }
  }
  @media (max-width: 500px){
    .toPageBox a{
      padding: 3px 30px;
    }
    .toPageBox a::before {
      width: 20px;
      height: 20px;
      top: calc(50% - 10px);
    }
  }
  @media (max-width: 480px){
    .wrap{
      padding: 0 0;
    }
    .weatherBox{
      display: none;
    }
    .mainArea .contentBox{
      padding: 0 0 50px;
      margin-top: 30px;
    }
    .contentBox .textEditor{
      padding-top: 30px;
    }
    .side_news .sectionTitle{
      margin-bottom: 30px;
    }
	footer .wrap{
	 font-size:10px;
	 padding: auto 2px;
	 }
  }
  @media (max-width: 400px){
    .m_menu ul.nav li a{
      font-size: 16px;
    }
  }
  @media (max-width: 360px){
    .wrap{
      padding: 0 0;
    }
    /*手機menu*/
      .m_menu .hideBox{
        padding: 20px 0 10px;
      }
      .m_menu .topBox{
        height: 90px;
      }
      .m_menu .bottomBox{
        height: calc(100% - 90px);
      }
      .m_menu .m_logo{
        width: 100%;
      }
      .m_menu .m_logo a{
        max-width: 200px;
      }
      .m_menu .m_language{
        /*width: 100%;*/
        text-align: center;
        position: relative;
        z-index: 10;
        margin-left: auto;
        margin-right: 3px;
      }
      .m_menu .mfun a{
        width: 40px;
        height: 40px;
        line-height: 40px;
      }
      .m_menu ul.nav{
        padding: 30px 0 20px;
      }
      .m_menu ul.nav li a{
        font-size: 15px;
      }

    .toPageBox a{
      padding: 3px 20px;
    }
    .toPageBox a::before {
      width: 12px;
      height: 12px;
      top: calc(50% - 6px);
    }
    .topBreadBox{
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -o-flex-wrap: wrap;
      flex-wrap: wrap;
    }
    .topBreadBox .bread{
      width: 100%;
      margin-top: 10px;
      text-align: left;
    }
}

/* rectPrev,rectNext */
  .arrowsBox{
    display: flex;
  }
  .rectPrev,
  .rectNext{
    position: relative;
    display: block;
    width: 45px;
    height: 45px;
    padding: 0;
    border: 1px solid transparent;
    background-color: transparent;
    color: transparent;
    cursor: pointer;
    margin: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .rectPrev::before,
  .rectNext::before{
    content: '';
    width: 30px;
    height: 30px;
    border: 1px solid #959595;
    position: absolute;
    top: calc(50% - 15px);
    z-index: 1;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .rectPrev::before{
    border-top: 0;
    border-right: 0;
  }
  .rectNext::before{
    border-bottom: 0;
    border-left: 0;
  }
  .rectPrev:hover::before,
  .rectNext:hover::before{
    border-color: #303030;
  }

/* dots */
  .dotsBox ul.dots{
    margin: 0;
    position: relative;
    z-index: 5;
  }
  .dotsBox ul.dots li{
    padding: 0;
    position: relative;
    display: inline-block;
    margin: 8px 0;
  }
  .dotsBox ul.dots li:first-of-type{
    margin-left: 0;
  }
  .dotsBox .dots li button{
    position: relative;
    display: block;
    width: 5px;
    height: 50px;
    padding: 0;
    font-size: 0;
    border: 1px solid transparent;
    border-radius: 0;
    background: transparent;
    color: transparent;
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .dotsBox .dots li.slick-active button,
  .dotsBox .dots li:hover button{}
  .dotsBox .dots li button::before{
    content: '';
    width: 1px;
    height: 100%;
    background: #9d9e9e;
    position: absolute;
    top: 0;
    left: 2px;
  }
  .dotsBox .dots li.slick-active button::before,
  .dotsBox .dots li:hover button::before{
    background: #fff;
  }

/***Hover效果1: 放大淡出***/
  .imh_opacity{
    background-color: #000;
    position: relative;
    overflow: hidden;
  }
  .imh_opacity img{
    -webkit-transition: all 5s linear;
    -moz-transition: all 5s linear;
    -o-transition: all 5s linear;
    transition: all 5s linear;
    /*-webkit-backface-visibility: hidden;
    backface-visibility: hidden;*/
  }
  .imh_opacity:hover img{
    opacity: 0.95;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

/***Hover效果1: 放大淡出Detail***/
  .imh_detail{
    position: relative;
    overflow: hidden;
  }
  .imh_detail img{
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    /*-webkit-backface-visibility: hidden;*/
  }
  .imh_detail:hover img{
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  .imh_detail a::before{
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(163, 0, 102, 0.75);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
  }
  .imh_detail:hover a:before{
    opacity: 1;
  }
  .imh_detail a::after{
    content: '';
    width: 43px;
    height: 45px;
    background: url(../images/detail.png) no-repeat;
    position: absolute;
    top: calc(50% - 23px);
    left: calc(50% - 21px);
    opacity: 0;
    z-index: 99;
    -webkit-transform: scale(3);
    -ms-transform: scale(3);
    transform: scale(3);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .imh_detail:hover a::after{
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.8s cubic-bezier(1, 0.01, 0.04, 0.96);
    -moz-transition: all 0.8s cubic-bezier(1, 0.01, 0.04, 0.96);
    -o-transition: all 0.8s cubic-bezier(1, 0.01, 0.04, 0.96);
    transition: all 0.8s cubic-bezier(0.07, 0.51, 0.12, 1);
  }

/***Hover效果1: 放大淡出zoom***/
  .imh_zoom{
    position: relative;
    overflow: hidden;
  }
  .imh_zoom img{
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    /*-webkit-backface-visibility: hidden;*/
  }
  .imh_zoom:hover img{
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

/*--最新消息icon--*/

/****圖示顏色****/
  .newIcon_green {
    background: #6db801;
  }
  .newIcon_brown {
    background: #ed842e;
  }
  .newIcon_pink {
    background: #f48daf;
  }
  .newIcon_blue {
    background: #01afb8;
  }
  .newIcon_navy {
    background: #3f4c6b;
  }
  .newIcon_orange {
    background: #f67e2a;
  }
  .newIcon_gold {
    background: #eab92d;
  }
  .newIcon_burgundyRed {
    background: #a90329;
  }
  .newIcon_purple {
    background: #cb60b3;
  }
  
  .clo34{
    float:left;
	width:20%;
  }
  .clo34 img{
    width:40%;
  }
  .clo56{
    float:left;
	width:10%;
  }
  @media (max-width: 1180px) {
     .clo34{
    float:left;
	width:25%;
  }
  .clo56{
    float:left;
	width:10%;
  }
    footer{
    background: #e8ce84;
    clear: both;
    position: relative;
    height: 50px;
    margin-top: -50px;
	padding: 30px 10px;
  }
  }
    @media (max-width: 1040px) {
     .clo34{
    float:left;
	width:33.33%;
  }
  .clo56{
    float:left;
	width:10%;
  }
    footer{
    background: #e8ce84;
    clear: both;
    position: relative;
    height: 50px;
    margin-top: -50px;
	padding: 50px 100px;
  }
  }
   @media (max-width: 916px){ 
     .clo34{
    float:left;
	width:100%;
  }
  .clo56{
    float:left;
	width:20%;
  }
    footer{
    background: #e8ce84;
    clear: both;
    position: relative;
    height: 50px;
    margin-top: -50px;
	padding: 30px 10px;
  }
  }